/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    /* font-family: 'Poppins', sans-serif; */
    /* overflow: hidden; */
	font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
	position: relative;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header{
    /* position: sticky; */
    top: 0px;
    background-color: #f8f9fa;
    width: 100%;
    z-index: 1000;
}

/* section{
    position: relative;
    height: calc(100vh - 3rem);
    width: 100%;
    background: url('bg.jpg') no-repeat top center / cover;
    overflow: hidden;
} */

/* .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #11111111 !important;
} */

.nav-container{
    /* max-width: 120rem; */
	height: 7rem;
    padding: 0 2rem;
    /* margin: 0 auto; */
    display: flex;
    position: relative;
	padding: 1rem 1rem;
	/* background-color: red; */
}

.nav-logo-container{
    flex: 1;
    display: flex;
    align-items: center;
	width: 10rem;
	/* background-color: greenyellow; */
	padding-left: 2rem;
	padding-right: 2rem;
}
.nav-logo-container>img{
    width: 78px;
	height: 27px;
	min-width: 78px;
	min-height: 27px;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    /* flex: 2; */
	flex: initial;
	

}

.log-sign{
    display: flex;
    justify-content: flex-end;
    align-items: right;
    /* flex: 2; */
	flex:auto;
	/* flex: none; */
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    /* display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase; */
	
	background: #b51c21;
		color: #fff !important;
		font-size: 1.8rem;
		margin-left: 10px;
		margin-right: 20px;
		float: right;
		padding: 10px 26px;
	text-decoration: none;
}

.btn.solid, .btn.transparent:hover{
    background-color: #b51c21;
    color: #fff;
}

.btn.transparent, .btn.solid:hover{
    /* background-color: transparent; */
    color: #fff;
}

.nav-btn-store{
	background: #b51c21;
	color: #fff;
	margin-left: 10px;
	margin-right: 20px;
	float: right;
	padding: 10px 26px;
text-decoration: none;
}


.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #80;
    padding: 0.5rem 1.2rem;
    letter-spacing: 1px;
    /* font-size: .95rem; */
	font-size: medium;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
	text-decoration: none !important;
}

.nav-link > a > i{
    margin-left: .2rem;
	/* font-size: large; */
	
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 20rem;
	/* background-color: #fff; */
    transform: translateY(25px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
	z-index: 1000;
	text-decoration: none;
}

.dropdown ul{
    position: relative;
	text-decoration: none;
}

.dropdown ul>li{
    padding: 0rem;
	margin: 0;
	line-height: 2.5rem;
	text-decoration: none;
}


.dropdown-link > a{
    display: flex;
    /* background-color: #80; */
	background-color: #fff;
    color: #80;
    /* padding: .5rem 1rem; */
	padding: .5rem 1rem;
    /* font-size: .9rem; */
	font-size: 1.5rem;
	text-decoration: none !important;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #efefef;
    color: #b51c21;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
	color: aqua;
    background-color: #ffffff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #efefef;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: 1rem;
	width: 35rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second.xl{
    top: 0;
    left: 100%;
    padding-left: 1rem;
	width: 40rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second.xxl{
    top: 0;
    left: 100%;
    padding-left: 1rem;
	width: 42rem;
    cursor: pointer;
    transform: translateX(10px);
}



.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;

}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}



.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 3rem;
    height: 3px;
    border-radius: 3px;
    background-color: #b51c21;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #b51c21;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}



@media (max-width: 990px){
    .hamburger-menu-container{
        display: flex;
		z-index: 1000;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 4rem;
        left: 0;
        width: 100%;
        background-color: #f8f9fa;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
		z-index: 1000;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #f8f9ff;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #ffffff;
        display: none;
		z-index: 1000;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #80;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #f0f0f0;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #ffffff;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #efefef;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #efefef;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}