*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}
a{
    text-decoration: none;
}
ul li{
    list-style: none;
}
h1, h2, h3, h4, h5 {
    font-family: "Poppins" !important;
    font-weight: 700;
}
a:hover{
    text-decoration: none !important;
}


/*menu mobile*/
.menu__mobile{
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: none;
    z-index: 20;
}
.main__menu__mobile{
    width: 95%;
    margin: auto;
}
.dropdown__menu__mobile li a{
    font-family: "Poppins";
    font-size: 13px;
    color: #8d8d8d;
    font-weight: 700;
}
.dropdown__menu__mobile li{
    padding: 7px 30px;
    border-top: 1px solid #eaeaea;
}
.dropdown__menu__mobile li:last-child{
    padding-bottom: 0;
}
.dropdown__menu__mobile li:first-child{
    margin-top: 10px;
}
.sub__menu__mobile{
    padding: 10px 0;
}
.sub__menu__mobile:not(:last-child){
    border-bottom: 1px solid #eaeaea;
}
.menu__title__mobile{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins";
    font-size: 13px;
    color: #8d8d8d !important;
    font-weight: 700;
}
.menu__title__mobile i{
    margin-left: 5px;
}
.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.rotate__icons i{
    transform: rotate(180deg);
    transition: all linear 0.2s;
}
/*end menu mobile*/


/*address header*/
.address__header{
    background-color: #00bdbb;
    padding: 6px 0;
}
.main__address__header{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.follow__us{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow__us h4{
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
}
.follow__us ul{
    margin-bottom: 0;
}
.follow__us ul,
.follow__us ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow__us ul li a i{
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.follow__us ul li p{
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}
.language__select{
    position: relative;
}
.language__select p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0;
}
.language__select img{
    width: 20px;
    object-fit: cover;
    margin-right: 5px;
}
.language__select i{
    margin-left: 5px;
}
.list__language{
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    padding: 0 15px;
    background-color: #242625;
    transition: all ease-in-out 0.3s;
    z-index: 6;
}
.language__select:hover .list__language{
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s;
}
.list__language li{
    font-size: 12px;
    color: #fff;
    padding: 8px 0;
    cursor: pointer;
}
/*end address header*/



/*header*/
header{
    width: 100%;
    height: 90px;
    background-color: #fff;
}
.header{
    position: relative;
    width: 85%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
    margin: 0 auto;
    z-index: 5;
}
header{
    position: relative;
}
header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #00bdbb;
}
.menu__bar{
    display: none;
}
.menu__bar i{
    color: #5c5e5c;
    font-size: 25px;
    cursor: pointer;
}
.logo{
    width: 10%;
}
.logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.menu{
    width: 50%;
    height: 100%;
}
.nav__bar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub__menu{
    padding: 0 10px;
    position: relative;
}
.sub__menu > a{
    font-size: 13px;
    color: #656565 !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 90px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sub__menu__title i{
    color: #727272;
    font-size: 13px;
}
.sub__menu__title:hover,
.sub__menu__title:hover i{
    color: #00bdbb;
}



.dropdown__menu{
    visibility: hidden;
    background-color: #2a2a2a;
    position: absolute;
    top: 110%;
    left: 0;
    width: 180px;
    z-index: 3;
    opacity: 0;
    transition: all linear 0.2s;
}
.sub__menu:hover .dropdown__menu{
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: all linear 0.2s;
}
.dropdown__menu li{
    padding: 7px 10px;
}
.dropdown__menu li a{
    font-size: 13px;
    color: #bbb;
    font-weight: 500;
    padding-left: 10px;
}


.dropdown__menu li:hover a{
    color: #fff;
}
.icon__search{
    cursor: pointer;
}
/*end header*/

/*fixed search*/

.main__fixed__search.active{
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s;
}
.main__fixed__search{
    position: fixed;
    left: 0;
    top: 0;
    background-color: transparent;
    background-image: url('../image/search-image.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
    z-index: 20;
}
.form-fixed-search input{
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 3px solid #67707b;
}
.form-fixed-search input::placeholder{
    color: #fff;
}
.form-fixed-search{
    position: fixed;
    width: max-content;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 40;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.form-fixed-search.active{
    opacity: 1;
    top: 50%;
    visibility: visible;
    transition: all ease-in-out 0.5s;
}
.form-fixed-search button{
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
    outline: none !important;
    background-color: transparent;
    font-size: 33px;
    color: #fff;
    transform: rotateY(180deg);
    cursor: pointer;
}

/*end fixed search*/

/*footer*/
footer{
    background-color: #333333;
    padding-top: 50px;
}
.main__footer{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.footer__link{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.footer__link__content img{
    width: 125px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}
.footer__link__content p{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    margin-bottom: 15px;
}
.addr__footer li{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    margin-bottom: 10px;
}
.footer__link h5{
    font-size: 15px;
    color: #fff;
    line-height: 23px;
    margin-bottom: 15px;
}
.news__footer{
    margin-bottom: 15px;
}
.news__footer a{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    display: block;
    margin-bottom: 10px;
}
.news__footer span{
    font-size: 13px;
    color: #6b6b6b;
}
.follow__us__footer a{
    font-size: 15px;
    color: #bdbdbd;
    line-height: 27px;
    display: block;
}
.ins__feed{
    display: flex;
    flex-wrap: wrap;
}
.ins__feed__img{
    width: 33.333%;
    padding: 0 5px;
    margin-bottom: 10px;
}
.ins__feed__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.social__footer{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.social__footer li a i{
    color: #fff;
}
.social__footer li a:hover i{
    color: #00bdbb;
    transition: all ease-in-out 0.2s;
}
.copyright{
    background-color: #282828;
    padding: 20px 0;
    text-align: center;
}
.copyright p{
    font-size: 15px;
    color: #00bdbb;
}
/*end footer*/

.back-to-top{
    height: 58px;
    width: 58px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    border: none;
    background-color: #2e2f2e;
    color: #FFF;
    transition: all linear 0.3s;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    outline: none !important;
    z-index: 10;
}
.top p{
    font-family: "Poppins";
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    transition: all linear 0.3s;
}

.back-to-top i{
    font-size: 20px;
    transition: all ease-in-out 0.3s;
}
.back-to-top:hover i{
    transform: translateY(10px);
    transition: all ease-in-out 0.3s;
}
.back-to-top:hover p{
    opacity: 0;
    transition: all linear 0.3s;
}

.btn-active.animate{
    opacity: 1;
    bottom: 30px;
    transition: all .35s cubic-bezier(.81,-.65,0,1.24)
}


@media only screen and (max-width: 1200px){
    .address__header,
    .nav__bar,
    header::before{
        display: none;
    }
    .header{
        width: 95%;
        padding: 0;
    }
    .logo{
        width: 30%;
    }
    .menu__bar{
        display: block;
    }



    .main__footer{
        width: 95%;
    }
    .footer__link{
        width: 50%;
    }
}


@media only screen and (max-width: 767.98px){
    .footer__link{
        width: 100%;
    }
    .ins__feed__img{
        width: 50%;
    }
}

@media only screen and (max-width: 991px){
    .owl-theme .owl-nav{
        display: none;
    }
}