/*
Theme Name: Hello Elementor Child
Theme URI: https://website.com
Description: Elementor Child Theme
Author: Kim
Author URI: https://website.com
Template: hello-elementor
Version: 1.0.0
*/

.nfd-site-preview-warning {
    display: none;
}

@font-face {
    font-family: 'headers';
    src: url('fonts/headers.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
    font-family: 'headers', Roboto;
    margin: 0;
}

h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

body main .page-content a {
	text-decoration: none;
}

.second-nav {
	height: 50px;
	width: 100%;
	margin-top: -50px;
}
.second-nav .second-nav-cont {
	width: 100%;
	position: relative;
    display: flex;
    justify-content: center;
	background: linear-gradient(to right, #121212 50%, transparent 50%);
	z-index: 9;
}
.second-nav .second-nav-cont.second-sticky-nav {
	position: fixed;
	top: 50px;
}
.second-nav .second-nav-inner {
	width: calc(100% - 100px);
	max-width: 1440px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #141414;
}
.second-nav .second-nav-inner::after {
    content: "";
    position: absolute;
    height: 0;
    right: -25px;
    border-left: 25px solid #141414;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}
.second-nav ul {
	height: 50px;
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-x: scroll;
}
.second-nav ul a {
	display: block;
	color: #FFAA3B;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	padding: 13px;
	box-sizing: border-box;
	white-space: nowrap;
}
.second-nav ul a:hover {
	color: #fff;
	background-color: #FF6700;
}

@media (max-width: 768px) { 
	.second-nav .second-nav-inner {
		width: 100%;
	}
	.second-nav .second-nav-inner::after {
        content: "⟶";
        font-size: 28px;
        color: #ff6701;
        right: 10px;
        top: 15px;
        border-left: none;
        border-top: none;
        border-bottom: none;
    }
}