
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

header{
    position: fixed;
    top: 0px;
    background-color: #ffffff00;
    width: 100%;
    z-index: 1000;
}
.navbar.nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(56, 165, 238, 0.5);
}

header.sticky {
    box-shadow: 0px 0px 17px 0px #0e0e0e2e;

    background-color: #fff;
}
header.sticky .navbar.nav{
    border-bottom: 1px solid #fff;
}
.logo{
  height: 35px;
}
.logo-container{
    height: 35px;
    display: flex;
    align-items: center;
    margin-right: 112px;
}

.nav-btn{
    display: flex;
    align-items: center;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 25px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    border-bottom: 2px solid #fff;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a,.nav-link.active > a{
    color: #DB812D;
    border-bottom: 2px solid #DB812D;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    box-shadow: 0px 5px 17px 0px #ddddddd1;
    border-radius: 10px;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #010101;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{

    color: #DB812D;
}

.dropdown-link:not(:nth-last-child(1)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #0e62cb;
    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: 100%;
    padding-left: .8rem;
    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;
    padding-right: 31px;
}

.hamburger-menu-container2{
    flex: .8;
    display: none;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #DB812D;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #DB812D;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    left: 0;
    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);
}

#check2{
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check2:checked ~ .hamburger-menu-container2 .hamburger-menu div{
    background-color: transparent;
}

#check2:checked ~ .hamburger-menu-container2 .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check2:checked ~ .hamburger-menu-container2 .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

/* @keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
} */
.cart-icon{
    height: 32px;
    width: 42px;
    display: inline-block;
}
.cart-icon{
    position: relative;
}
.cart-icon span{
    background: #DB812D;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn{
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}
.find-area{
    padding: 10px 10px 10px 25px;
    width: 446px;
    height: 53px;
    background: #FFFFFF;
    border-radius: 50px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
}
.search-control{
    height: 33px;
    font-weight: 300;
    color: #636A88 !important;
    font-size: 14px !important;
    padding-right: 100px;
    border: 0 !important;
    padding: 0 !important;
    padding-right: 110px !important;

}
.search-control:focus{
    box-shadow: none;
}
.search-btn{
    padding: 10px 15px;
    background:#DB812D;
    border: 1px solid #DB812D;
    border-radius: 25px;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    outline: none;
    position: absolute;
    top: 7px;
    right: 12px;
    
}
.search-btn:hover{
    background-color: #000;


}
/* .search-btn:hover img{
    filter: none;
    -webkit-filter: none;
} */
.search-btn img{
    filter: brightness(0) invert(1);

}
.search-btn img{
    margin-right: 2px;
}
@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
        position: absolute;
    }

    .hamburger-menu-container2{
        display: flex;
    }

    #check{
        display: block;
    }

    #check2{
        display: block;
    }

    .nav-btn{
    position: fixed;
    height: calc(100vh - 0rem);
    top: 0rem;
    left: 0;
    width: 70%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: .65s;
    padding-top: 3rem;
    box-shadow: 0px 0px 20px 0px #0000003b;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

    #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);
        -webkit-animation: animation .5s ease forwards var(--i);
}

.left .nav-btn{
    transform: translateX(-100%);
    top: 6rem;
}
    #check2:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check2:checked ~ .nav-btn .nav-link,
    #check2: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: 1;
        transform: translateY(15px);
        padding-top: 0;
    padding-bottom: 0;
    }

    .nav-link > a{
        line-height: 1;
        padding: 1rem 1rem;
        border-bottom: 1px solid #C7DDEB;
    }
    .nav-link > a.primary-btn{
        color: #fff;
        display: inline-block;
        font-weight: 400;
        margin: 0;
        margin-right: 0 !important;
    }
    .overlay-content {
        position: relative;
        top: 46%;
        width: 100%;
        text-align: center;
        margin-top: 0px;
        margin: auto;
    }
    
    .nav-link:hover > a{
        transform: scale(1);
        
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3BB3C3;
        display: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
    
    .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: #da8038;
        color: #fff;
        padding: 1rem 1rem;
        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(1)){
        border-bottom: none;
    } */

    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #50a9d6;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
       
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }

    .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);
    }
    .nav-link > a.menu-btn{
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 5px 20px;
        gap: 10px;
        width: 106px;
        height: 40px;
        background: rgba(59, 179, 195, 0.2);
        border: 1px solid #3BB3C3 !important;
        color: #3BB3C3;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        border-radius: 50px;
        margin-left: 20px;
        transition: all .4s;
        -webkit-transition: all .4s;
        -moz-transition: all .4s;
        -ms-transition: all .4s;
        -o-transition: all .4s;
    }
    .nav-link > a.menu-btn:hover{
        background-color: #3BB3C3;
        color: #fff;
    }
}