
/*-----------------------
  header start
-------------------------*/
.header__section{
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: white;
  transition: padding .3s ease;
}
.header__section.sticky{
  padding: 5px 0;
  /* box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15);
  -webkit-box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15);
  -moz-box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15); */
}
.header__section .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  position: relative;
}
.header__left{
  display: flex;
  align-items: center;
  grid-column-gap: 30px;
}
.header__logo{
  width: 70px;
}

.header__search{
  position: relative;
}
.header__search-input{
  max-width: 338px;
  width: 100%;
  height: 52px;
  background-color: #F6F7F8;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 0 24px 0 52px;
  color: #262626;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2
}
.header__search svg{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
}

.header__right{
  display: flex;
  align-items: center;
}
.header__btns{
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.header__btn{
  border-radius: 10px;
  background: #009348;
  height: 52px;
  padding: 0 20px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.header__shop-btn{
  position: relative;
  background: transparent;
  margin-right: 30px;
}
.header__shop-btn p{
  position: absolute;
  color: #fff;
  display: flex;
  justify-content: center;
  background-color: #FF4242;
  height: 14px;
  min-width: 14px;
  padding: 4px;
  padding-top: 1px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  top: -4px;
  margin-bottom: 0;
  right: -4px;
}
.header__lang-btn{
  background-color: transparent;
  height: 52px;
}
.header__lang-menu{
  position: relative;
  margin-right: 30px;
}
.header__lang-menu-list{
  position: absolute;
  border-radius: 4px;
  border: 1px solid #E4E5E7;
  background: #FFF;
  box-shadow: 0px 16px 32px -5px rgba(0, 0, 0, 0.05);
  width: 155px;
  padding: 8px 0;
  z-index: 10;
  top: 120%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: top .4s ease-in-out;
}
.header__lang-menu:hover .header__lang-menu-list{
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header__lang-menu-item a{
  display: block;
  padding: 4px 20px;
  color:  #171100;
  font-size: 18px;
  font-weight: 500;
}
.header__lang-menu-item a:hover{
  background: #e6ebf0;
  color:  #00A34A;
}

.header__course-menu-btn{
  background-color: transparent;
  height: 52px;
}
.header__course-menu-btn svg{
  margin-left: 8px;
}
.header__course-menu-list{
  position: absolute;
  z-index: 11; 
  top: 120%;
  left: 110px;
  display: flex;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: top .4s ease-in-out;
}
.header__course-menu-main{
  position: relative;
  max-width: 880px;
  width: 100%;
}
.header__course-menu:hover .header__course-menu-list{
  opacity: 1;
  visibility: visible;
  top: calc(100% - 7px);
}
.menu__list-col{
  min-width: 310px;
  padding: 20px 0;
  background-color: white;
  border: 1px solid #d0dce9;
}
.menu__list-item a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #262626;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding: 6px 14px 6px 24px;
}
.menu__list-item a:hover{
  color: #4099D4;
}
.menu__list-item a:hover path{
  stroke: #4099D4;
}
.menu__list-col-title{
  color: #262626;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 14px 6px 24px;
}
.menu__list-col.submenu{
  display: none;
}
.menu__list-item:hover .menu__list-col.submenu{
 display: block;
 position: absolute;
 left: 310px;
 background-color: white;
 top: 0;
 height: 100%;
 border-left: 0;
}
.menu__list-col.popular{
  display: none;
  min-width: 260px !important;
}
.submenu .menu__list-item:hover .menu__list-col.popular{
  display: block;
  position: absolute;
  left: 310px;
  background-color: white;
  top: -1px;
  height: calc(100% + 2px);
  border-left: 0;
}

/* --------------------------- */

.mob-header__serction{
  box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15);
  -webkit-box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15);
  -moz-box-shadow: 2px 7px 16px -4px rgba(0,0,0,0.15);
  padding-bottom: 12px;
  display: none;
}
.mob-header__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.mob-header__top .logo img{
  max-width: 60px;
  width: 100%;
}
.mob-header__top .bar{
  background: transparent;

}
.mob-header__menu-main{
  display: block;
  max-width: 400px;
  width: 100%;
  background: white;
  position: absolute;
  top: 0;
  right: -100%;
  transition: all .4s ease;
  z-index: 999;
  height: 100vh;
  overflow-y: auto !important;
}
.mob-header__menu-trans-bg{
  position: absolute;
  inset: 0;
  background-color: #161614c5;
  width: 100%;
  height: 100vh;
  z-index: 99;
  display: none;
}
.mob-header__menu-trans-bg.active{
  display: block;
}
.mob-header__menu-wrap{
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #171100d0;
  opacity: 0;
  visibility: hidden;
  transition: all .8s ease;
}
.mob-header__menu-wrap.active{
  opacity: 1;
  visibility: visible;
  transition: all .0s ease;
}
.mob-header__menu-wrap.active .mob-header__menu-main{
  right: 0;
}
.mob__header__close-btn{
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  justify-content: end;
  padding-top: 15px;
  padding-right: 15px;
}
.mob-header__menu-top{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 15px;
}
.mob-header__menu-top .header__search{
  margin-right: 20px;
}
.mob-header__menu-top .header__search-input {
  max-width: 338px;
  width: 100%;
  height: 45px;
  background-color: #F6F7F8;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 0 12px 0 42px;
  color: #262626;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.mob-header__menu-top .header__search svg {
  left: 10px;
  width: 20px;
}
.mob-header__menu-top .header__lang-menu {
  margin-right: 0;
}

.mob-header__menu-top .header__lang-menu-list {
  left: unset;
  transform: unset;
  right: 0;
}


.mob-header__menu-title{
  width: 100%;
  padding: 12px 0;
  text-align: center;
}
.mob-header__menu{
  text-align: center;
  padding: 10px 0;
}

.mob-header__menu{
  font-size: 16px;
  font-weight: 500;
}
.mob-header__menu .menu__item a{
  border: 1px solid #ddd;
  border-right: none;
  border-left: none;
  padding: 10px 15px;
}
.mob-header__menu .menu__item:first-child a{
  border-top: 1px solid #ddd;
}
.mob-header__menu .menu__item a{
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #009348;
  font-size: 16px;
  justify-content: space-between;
}
.mob-header__menu .menu__item a svg{
  width: 16px;
  padding-top: 4px;
}
.sub__menu-one{
  background-color: #f7f3f3;
  display: none;
  margin: 0 15px;
}
.mob-header__menu .menu__item:hover .sub__menu-one{
  display: block;
}
.sub__menu-one .sub-menu__item a{
  color: #262626;
  padding: 6px 15px;
}
.sub__menu-two{
  background-color: #eae6ec;
  display: none;
}
.sub__menu-one .sub-menu__item:hover .sub__menu-two{
  display: block;
}
.sub__menu-two li a{
  color: #009348 !important;
  padding: 2px 0;
}
.mob-header__menu-main .header__btns{
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 5px 0 25px;
  padding: 0 15px;
}

.mob-header__menu-main .header__btns .header__btn {
  border-radius: 7px;
  height: 48px;
  padding: 0 16px;
  font-size: 16px;
}
/* ------------------- */
.header__gap{
  height: 107px;
}

/*-----------------------
  header end
-------------------------*/


/*-----------------------
  footer start
-------------------------*/
.footer__section{
  background-color: #00A34A;
  padding: 60px 0 35px;
}
.footer__logo{
  max-width: 72px;
  width: 100%;
  margin-bottom: 20px;
}
.footer__desc{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 268px;
  margin-bottom: 20px;
}
.footer__social{
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
}

.footer__social-link{
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.footer__social-link:hover{
  background-color: white;
}
.footer__social-link path{
  transition: all .2s ease;
}
.footer__social-link:hover path{
  fill: #00A34A;
}

.footer__menu-title{
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 26px;
}
.footer__menu-title::after{
  position: absolute;
  content: "";
  width: 130px;
  height: 1px;
  background-color: white;
  top: 100%;
  left: 0;
}
.footer__menu-item{
  margin-bottom: 12px;
}
.footer__menu-link{
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.footer__menu-link span{
  font-weight: 600;
}
.footer__menu-link:hover {
  color: #deb4f3;
}
.footer__copyright-text{
  text-align: center;
  color:  #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  border-top: 1px solid #fff;
  padding-top: 35px;
   margin-top: 40px;
}

/*-----------------------
  footer end
-------------------------*/


/* ----------------------------------------- */
 /* ---------- RESPONSIVE ---------- */
/* ------------------------------------------*/


/* -------- Header -------- */

@media only screen and (max-width: 1199px) {
  .header__section{
    display: none;
  }
  .mob-header__serction{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: white;
  }
  .header__gap{
    height: 80px;
  }
}


@media only screen and (max-width: 1199px) {
  .header__section{
    display: none;
  }
}


/* -------- footer -------- */

@media only screen and (max-width: 991px) {
  .footer__desc {
    max-width: 100%;
}
.footer__social-link{
  margin-bottom: 20px;
}
.footer__menu-list{
  margin-bottom: 20px;
}
.footer__copyright-text {
  margin-top: 20px;
}
}
@media only screen and (max-width: 575px) {
  .footer__copyright-text {
    font-size: 16px;
  }
  .mob-header__top .logo img {
    max-width: 48px;
  }
}