

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



ul{
    list-style: none;
}


header{
    position: sticky;                
    background-color: #fff !important;
    top: 0px;
    width: 100%;
    z-index: 1000;
    height: 100%;
}



.container1{
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 6;
    display: flex;
}

.nav-links{
    flex: 10;
    
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.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;
}         
.btn1{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: 0.7rem;
    align-content: center;
    justify-content: center;
    background-color: black;
    color:white;
    display: none;
    border: 2px solid #fff;
    border-radius: 1rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}


.btn.transparent, .btn1.solid:hover{
    background-color: #fff;   
    border: 2px solid #050505;
    color: #000000;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.nav-link{
    position: relative;
    padding: 10px;
}

.nav-link > a{
    line-height: 3rem;
    color: #900505;
    padding: 0 .2rem;
    letter-spacing: 1px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);       
   
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width:15rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;

}

.dropdown ul{
    position: relative;
    
}

.dropdown-link > a{
    display: flex;
    background-color: #990012;
    color: #FFF;
    padding: .5rem 1rem;
    width:16rem;
    font-size: .8rem;
    align-items: center;
    border-bottom: 1px solid #b7acac;
    transition: .3s;
}
.dropdown-link-link > a{
    display: flex;
    background-color: #990012;
    color: #FFF;
    padding: .5rem 1rem;
    width:26rem;
    font-size: .8rem;
    align-items: center;
    border-bottom: 1px solid #efefef;
    transition: .3s;
}
.dropdown-link-link:hover > a{
    background-color: #b3404d;
    color: #070707;
}
.dropdown-link:hover > a{
    background-color: #b3404d;
    color: #070707;
}


.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 104%;
    padding-left: .5rem;
    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;
    position: relative;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #6d0000;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #6d0000;
    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;
    }
    to{
        opacity: 1;
    }
}

@media (max-width: 990px){
    .hamburger-menu-container{
     display: flex;
}
#check{
display: block;
}
#check:checked ~ body {
display: none;
}
.nav-btn{
position:fixed ;
height: calc(100vh - 12rem);
top: 8rem;
left: 0;
width: 100%;
background-color: #ffffff;
flex-direction: column;
align-items: center;
overflow-x: hidden;
overflow-y:unset;
transform: translateX(100%);
transition: .65s;
}



#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;
 padding-left: 5px;
}

.nav-link{
width: 100%;
opacity: 0;
transform: translateY(15px);
}

.nav-link > a{
line-height: 1;
padding: 0.5rem 0.5em 0.5rem;
}

.nav-link:hover > a{
transform: none;
background-color: none;
}

.dropdown, .dropdown.second{
position: initial;
top: initial;
left: initial;
transform: initial;
opacity: 1;
pointer-events: auto;
justify-content: center;
width: 100%;
display: flex;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
display: flex;
}

.nav-link:hover > a > i,
.dropdown-link:hover > a > i{

transform: rotate(360deg);
}

.dropdown-link{
display:block;
color: #0d0d0d;
background-color: white;
padding-left: 0;
width:50vh;

font-size: 1rem;
line-height: 1;
transform: none;
transition: none;
}
.dropdown .dropdown-link > a {
display:block;
color: inherit;
padding: none;
padding-left: 0rem;
margin-left: 1.3rem;
font-size: 1rem;
background-color: inherit;
transform: none;
transition: none;
}



.dropdown-link-link {
    display: block;
    color: rgb(3, 3, 3);
   /* background-color: #6d0000;*/
    width:auto;
    float: -30;
    padding-left: 2rem;
    align-items: center;
    transform: none;
    transition: none;

}

.dropdown.second .dropdown-link-link >a{
    transform: none;
    transition: none;
    font-size: .7rem;
    background-color: inherit;
    color: inherit;
}
.dropdown.second .dropdown-link-link >a:active
{
    background-color: #b3404d;
}
.arrow{
z-index: 1;
left: 10%;
transform: scale(1.1) rotate(45deg);
transition: .5s;
}


.dropdown .dropdown .arrow{
display: none;
}

/*  its Arrow icon*/
.nav-link > a > i{
font-size: 1.1rem;
transform: rotate(360deg);
transition: .7s;
}

.dropdown i{
display : none;
}


.log-sign{
flex: initial;
width: 100%;
padding: 1.5rem 1.9rem;
justify-content: flex-start;
opacity: 1;
transform: translateY(15px);
}
.btn1{
display: flex;
}
.logo-container{
    flex: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.dropdown-link > a:active{
     background-color: #b3404d;
}


   }     
