.section__header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition: all 0.3s linear;
  /* height: 131px; */
  height: 120px;
}


.section__header .header__logo {
  transition: all 0.3s linear;
}

.section__header .container {
  height: 100%;
}

.section__header .container .row {
  height: 100%;
}

.section__header .header__container {
  height: 100%;
}

.section__header .header__container .header__menu {
  height: 100%;
  /* justify-content: space-between; */
  justify-content: flex-end;
  position: relative;
}

.section__header .header__container {
  position: relative;
  gap: 100px;
}

.section__header.active {
  transition: all 3s linear;
}

.section__header .header__logo .header__logo--img {
  /* width: 281px; */
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.section__header .header__menu {
  display: flex;
  align-items: center;
  gap: 0 40px;
  flex: 1;
  justify-content: flex-end;
}



.section__header .header__menu--list {
  gap: 0 25px;
  display: flex;
  height: 100%;
  /* display: none; */
}

.section__header .header__menu--list img {
  width: 23px;
  height: 18px;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.section__header .header__menu--option {
  display: flex;
  gap: 0 15px !important;
  justify-content: flex-end;
}

.section__header .header__menu--item {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__menu--item.active img {
  visibility: visible;
  opacity: 1;
}

.section__header .header__menu--item:hover img,
.section__header .header__menu--item:active img {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}



.section__header .header__language .language__dropdown,
.section__header .header__menu--option .header__menu-booking,
.section__header .header__menu--item .header__menu--link {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Be Vietnam Pro-Light';
  letter-spacing: 0.32px;
}


.section__header .header__menu--option .header__menu-booking {
  border: none;
  background-color: transparent;
  color: #8681ed;
  padding: 0px;
  font-family: 'Be Vietnam Pro-Bold';
}




/* 
.section__header .header__menu--item .header__menu--link {
  font-size: 15px;
  line-height: 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Be Vietnam Pro-Light';
  letter-spacing: 0.32px;
} */

/* .section__header .header__menu--option .header__menu-booking {
  border: none;
  background-color: transparent;
  color: #8681ed;
  font-size: 16px;
  line-height: 20px;
  padding: 0px;
  font-family: 'Be Vietnam Pro-Bold';
} */

.section__header .header__menu--item::before {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  bottom: -0.5px;
  height: 4px;
  background-color: #8681ed;
}

.section__header .header__menu--item:hover:before,
.section__header .header__menu--item.active:before {
  width: 100%;
  transition: all 0.3s linear;
}

.section__header .header__language {
  gap: 0 12px;
  cursor: pointer;
  position: relative;
  justify-content: center;
}

.section__header .language__dropdown--menus {
  position: absolute;
  z-index: 11;
  top: 120%;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}

.section__header .language__dropdown--icon {
  height: 6px;
}

.section__header .language__dropdown--iconsearch {
  height: 17px;
  cursor: pointer;
  display: block;
}


.section__header .language__dropdown--iconsearch img {
  object-fit: contain;
}

.section__header .language__dropdown--icon img {
  height: 100%;
  vertical-align: top;
  transform: rotate(0);
  transition: all 0.2s linear;
  object-fit: contain;
}

.section__header .language__dropdown--icon img.active {
  transform: rotate(180deg);
  transition: all 0.2s linear;
}

.section__header .language__dropdown--menus.show {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s linear;
}

.section__header .language__dropdown--menus .dropdown-items {
  width: 100%;
  display: block;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 350;
  color: var(--primary-color);
  text-decoration: none;
}

.section__header .header__language .language__dropdown {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.64px;
  font-family: 'Be Vietnam Pro-Regular';
}


/* .section__header .header__search {
  display: none;
} */

/* For tablet  & Mobile */
.header__mobile,
.header__menu-mobile {
  display: none;
}



@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}



@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}



.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}


@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}




@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}



@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}


.fadeInRight {
  display: flex !important;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}


.header__search {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 1px solid #897CF4;
  border-radius: 28px;
  height: 43px;
  z-index: 9999;
  left: 150%;
  transition: all 1.2s linear;
  opacity: 0;
  visibility: hidden;
}

.header__search.active {
  opacity: 1;
  visibility: visible;
  transition: all 1.2s linear;
  left: 0;
}

.header__search form {
  flex: 1;
}


.header__search input {
  /* flex: 1; */
  width: 100%;
  background-color: transparent;
  border: 0px solid;
  background: none;
  border-radius: 0;
  outline-color: transparent;
  margin: 0 0 0 0;
  outline: none;
  border: none;
  color: var(--four-color);
  font-family: 'Be Vietnam Pro-SemiBold';
  font-size: 16px;
  line-height: 40px;
}


.header__search input::placeholder {
  color: var(--text-color);
}




.header__search img {
  width: 15px;
  /* height: 15px; */
  object-fit: contain;
  height: 100%;
}


.header__search .header--search--img {
  padding-left: 24px;
  height: 100%;
}

.header__search .header__search-btn {
  background: none;
  border: transparent;
  outline: none;
  height: 100%;
  padding: 0px 24px 0px 12px;
}



@media (max-width: 1024px) {
  .section__header .header__menu--list {
    display: none;
  }

  .language__dropdown--iconsearch,
  .section__header .header__menu--option .header__menu-booking {
    display: none;
  }

  .header__mobile {
    display: block;
  }

  .header__menu-mobile {
    display: block;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
  }

  .section__header .header__logo .header__logo--img {
    max-width: 190px;
  }

  /* .section__header .header__menu--option {
    gap: 0 20px;
  } */

  .header__mobile {
    top: 100%;
    left: 100%;
    width: 60%;
    position: absolute;
    background-color: var(--primary-color);
    padding-inline: 24px;
    padding-top: 30px;
    height: 100vh;
    transition: all 0.3s linear;
  }

  .header__mobile.active {
    left: 40%;
    transition: all 0.3s linear;
  }

  .header__mobile .header__mobile-item {
    border-bottom: 1px solid #897cf4;
    margin-bottom: 11px;
    padding-bottom: 11px;
    text-align: right;
  }

  .header__mobile .header__mobile-item:last-child {
    border-bottom: 0px;
  }

  .header__mobile .header__mobile-item .header__mobile-item--link {
    color: var(--secondary-color);
    font-family: 'Be Vietnam Pro-Light';
    font-size: 16px;
    line-height: 24px;
    display: block;
  }
}

@media (min-width: 1500px) {
  .section__header .header__container {
    gap: 40px;
  }

  /* .section__header .header__language .language__dropdown,
  .section__header .header__menu--option .header__menu-booking,
  .section__header .header__menu--item .header__menu--link {
    font-size: 16px;
  } */
}

@media (min-width: 1400px) and (max-width: 1500px) {
  .section__header .header__container {
    gap: 40px;
  }

  .section__header .header__menu--list {
    gap: 0 30px;
  }

  .section__header .header__menu {
    gap: 0 30px;
    /* flex: 1; */
  }

  /* .section__header .header__menu--option{
    gap: 0 15px;
  } */



}

@media (max-width: 1399px) {
  .section__header .header__container {
    gap: 60px;
  }

  /* .section__header .header__language .language__dropdown,
  .section__header .header__menu--option .header__menu-booking,
  .section__header .header__menu--item .header__menu--link {
    font-size: 15px;
  } */
}

@media (min-width: 1200px) and (max-width: 1400px) {
  /* .section__header .header__menu--option,
  .section__header .header__menu,
  .section__header .header__menu--list {
    gap: 0 30px;
  } */

  .section__header .header__logo .header__logo--img {
    max-width: 200px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {

  .section__header .header__menu--list,
  .section__header .header__menu,
  .section__header .header__container {
    gap: 35px;
  }

  /* .section__header .header__menu--option {
    gap: 0 15px;
  } */

  .header__menu--list {
    flex: 1;
    justify-content: center;
  }

  .section__header .header__logo .header__logo--img {
    max-width: 200px;
  }

  /* .section__header .header__language .language__dropdown,
  .section__header .header__menu--option .header__menu-booking,
  .section__header .header__menu--item .header__menu--link {
    font-size: 14px;
  } */

  /* .section__header .header__menu--list,
  .section__header .header__menu--option,
  .section__header .header__menu {
    gap: 0 25px;
  } */
}

@media (max-width: 1150px) {

  /* .section__header .header__language .language__dropdown,
  .section__header .header__menu--option .header__menu-booking,
  .section__header .header__menu--item .header__menu--link {
    font-size: 13px;
  } */

  .section__header .header__menu--list,
  .section__header .header__menu,
  .section__header .header__container {
    gap: 30px;
  }

  /* .section__header .header__menu--option {
    gap: 0 30px;
  } */
}

@media (max-width : 576px) {
  .section__header .language__dropdown--icon {
    width: auto;
    height: 8px;
  }

  .section__header .language__dropdown--icon img {
    object-fit: contain;
  }
}

@media (max-width: 400px) {

  .section__header .header__logo .header__logo--img {
    max-width: 150px;
  }


  .section__header .language__dropdown--icon {
    width: 14px;
    height: 8px;
  }


  .section__header .language__dropdown--iconsearch {
    height: 16px;
    width: 20px;
  }

  .section__header .header__menu-mobile {
    width: 20px;
    height: auto;
  }
}