@charset "UTF-8";
/* breakpoint responsive screen*/
/*Text ellipse*/
/* image fit cover*/
.flex-align-center {
  display: flex;
  align-items: center;
}

.align-img-in-boxPrd {
  vertical-align: top;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@font-face {
  font-family: "vietinsider";
  src: url("../fonts/UTMAptimaBold.woff2") format("woff2"), url("../fonts/UTMAptimaBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "vietinsider";
  src: url("../fonts/UTMAptima-BoldItalic.woff2") format("woff2"), url("../fonts/UTMAptima-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "vietinsider";
  src: url("../fonts/UTMAptima.woff2") format("woff2"), url("../fonts/UTMAptima.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "vietinsider";
  src: url("../fonts/UTMAptima-Italic.woff2") format("woff2"), url("../fonts/UTMAptima-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
input:focus {
  box-shadow: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

ul {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

p {
  margin-top: 0;
}

.clear-fix {
  clear: both;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  color: var(--main-text-color);
}

:root {
  --main-text-color: #232323;
  --header-text-color: #313131;
  --light-gray-text: #737373;
  --green-text: #2dc5a7;
  --purple-color: #e02667;
  --bg-golden-brown: #e1ae4d;
  --bg-light-green: #4ac2aa;
}

.main-page {
  padding-top: 73px;
}
@media (max-width: 1199px) {
  .main-page {
    padding-top: 60px;
  }
}

/* Container */
.container {
  padding: 0 15px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1550px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
}
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* For Firefox */
input[type=date] {
  -moz-appearance: textfield;
}

.form-group {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .form-group {
    margin-bottom: 20px;
  }
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px;
}
.form-group label span {
  color: #F43F5E;
  margin-left: 4px;
}
.form-group .input-wrapper {
  position: relative;
  width: 100%;
}
.form-group .input-wrapper .form-control {
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E2E9E7;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  color: #111827;
  width: 100%;
  transition: all 0.3s;
}
.form-group .input-wrapper .form-control:focus {
  border-color: #4AC2AA;
  outline: none;
  background-color: #fff;
}
.form-group .input-wrapper .form-control::-moz-placeholder {
  color: #9CA3AF;
}
.form-group .input-wrapper .form-control::placeholder {
  color: #9CA3AF;
}
.form-group .input-wrapper .form-control[disabled], .form-group .input-wrapper .form-control[readonly] {
  cursor: not-allowed;
  background: #F3F4F6;
  color: #6B7280;
}
.form-group .input-wrapper textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
}
.form-group .input-wrapper select.form-control {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-color: #FFFFFF;
}
.form-group .input-wrapper .input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.form-group.has-select .input-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.form-group.has-select:focus-within .input-wrapper::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Editor detail */
figure.image {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  background: #f1f1f1;
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px;
  color: rgb(88, 103, 112);
  font-style: italic;
}

figure.image img {
  width: 100%;
}

.ct-editor-web table,
.ct-editor-web td,
.ct-editor-web th {
  border: 1px solid #686868;
}

.ct-editor-web ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 0;
}

.ct-editor-web ul li {
  position: relative;
  padding-left: 15px;
}

.ct-editor-web ol {
  padding-left: 1rem;
}

.ct-editor-web ol,
.ct-editor-web ol li {
  list-style: auto;
}

.ct-editor-web ul li > ul {
  padding: 15px 0;
  margin-bottom: 0;
}

.ct-editor-web ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-light-green);
}

.ct-editor-web ul li > ul li:before {
  border-radius: 0;
  width: 7px;
  height: 1px;
  top: 13px;
  background: #414b5b;
}

.ct-editor-web a {
  text-decoration: underline !important;
  display: inline-block;
}

.ct-editor-web a:hover {
  color: #62b8a7;
}

.ct-editor-web blockquote {
  text-align: center;
  font-size: 20px;
  quotes: "“" "”" "‘" "’";
  color: #5c5e65;
  font-style: italic;
  width: 510px;
  margin: 30px auto;
}
.ct-editor-web blockquote:before {
  color: #d3d2c0;
  content: "";
  font-size: 5em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  background: url(../img-fix/elements/open-quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 41px;
  height: 29px;
  position: relative;
  display: block;
  margin-bottom: -26px;
  margin-left: -44px;
}
.ct-editor-web blockquote:after {
  color: #d3d2c0;
  content: "";
  font-size: 4em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  background: url(../img-fix/elements/close-quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 41px;
  height: 29px;
  position: relative;
  display: block;
  margin-top: -21px;
  margin-right: -44px;
  margin-left: auto;
}
@media (min-width: 576px) and (max-width: 767px) {
  .ct-editor-web blockquote {
    width: 90%;
    font-size: 18px;
  }
  .ct-editor-web blockquote:before {
    width: 32px;
    height: 20px;
    margin-bottom: -19px;
    margin-left: -36px;
  }
  .ct-editor-web blockquote:after {
    width: 32px;
    height: 20px;
    margin-top: -19px;
    margin-right: -36px;
  }
}
@media (max-width: 575px) {
  .ct-editor-web blockquote {
    width: 82%;
    font-size: 18px;
  }
  .ct-editor-web blockquote:before {
    width: 32px;
    height: 20px;
    margin-bottom: -19px;
    margin-left: -36px;
  }
  .ct-editor-web blockquote:after {
    width: 32px;
    height: 20px;
    margin-top: -19px;
    margin-right: -36px;
  }
}

.ct-editor-web blockquote p {
  display: inline;
}

.ct-editor-web p {
  color: rgb(41, 71, 88);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ct-editor-web p img {
  border-radius: 2px;
}

.ct-editor-web h1 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ct-editor-web h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ct-editor-web h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.ct-editor-web h4,
.ct-editor-web h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .ct-editor-web h2 {
    font-size: 26px;
  }
  .ct-editor-web h1 {
    font-size: 28px;
  }
  .ct-editor-web h3 {
    font-size: 22px;
  }
  .ct-editor-web h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .ct-editor-web h2 {
    font-size: 26px;
  }
  .ct-editor-web h1 {
    font-size: 30px;
  }
  .ct-editor-web h3 {
    font-size: 22px;
  }
  .ct-editor-web h4 {
    font-size: 20px;
  }
}
/*end Editor detail */
.btn-bg {
  padding: 4px 12px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  gap: 0 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-bg.btn--primary {
  background: #4ac2aa;
}
.btn-bg.btn--primary:hover {
  background: #3bb79e;
  color: #fff;
}

.btn__icon {
  padding-top: 24px;
  text-align: center;
}
.btn__icon--layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  cursor: pointer;
}
.btn__icon--layout:hover .btn__icon--arrow svg path {
  fill: #e02667;
}
.btn__icon--layout:hover .btn__icon--text {
  color: #e02667;
}
.btn__icon--text {
  font-size: 15px;
  color: var(--main-text-color);
  line-height: 1.2;
  transition: all 0.3s;
}
.btn__icon--arrow svg path {
  transition: all 0.3s;
}

.btn__border {
  padding-top: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn__border .layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #4ac2aa;
  height: 40px;
  padding: 0 16px;
  gap: 0 8px;
  transition: all 0.3s;
  background: #fff;
}
.btn__border .layout .text {
  color: #4ac2aa;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn__border .layout .arrow svg path {
  transition: all 0.3s;
}
.btn__border .layout:hover {
  background: #4ac2aa;
}
.btn__border .layout:hover .text {
  color: #fff;
}
.btn__border .layout:hover .arrow svg path {
  fill: #fff;
}

.filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.filter__form {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 0%;
  position: relative;
}
.filter__sections {
  flex: 1 1 auto;
  padding-bottom: 20px;
}
.filter__sections::-webkit-scrollbar {
  width: 6px;
  border-radius: 100px;
}
.filter__sections::-webkit-scrollbar-track {
  background: transparent;
}
.filter__sections::-webkit-scrollbar-thumb {
  background: #d6dbdd;
  border-radius: 100px;
}
.filter__group {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
.filter__group:first-child {
  padding-top: 0;
}
.filter__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.filter__heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--main-text-color);
  line-height: 22px;
}
.filter__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  width: 100%;
}
.filter__list.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .filter__list.col-2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter__list.col-2 {
    grid-template-columns: 1fr;
  }
}
.filter__item {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.filter__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #fff url("../img-fix/elements/check-input.svg") no-repeat center center;
  background-size: 18px 18px;
  vertical-align: middle;
  margin-right: 9px;
  position: relative;
  transition: border 0.2s, background 0.2s;
  outline: none;
  cursor: pointer;
  margin-top: 3px;
}
.filter__checkbox:checked {
  border-color: var(--purple-color);
  background: var(--purple-color) url("../img-fix/elements/checked-input.svg") no-repeat center center;
  background-size: 18px 18px;
}
.filter__label {
  font-size: 15px;
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.2s;
  flex: 1;
  position: relative;
  top: 2px;
}
.filter__star {
  color: #FFBB1E;
}
.filter .view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: #50ae9c;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s;
}
.filter .view-more img {
  margin-top: 1px;
}
.filter .view-more:hover {
  color: #3bb79e;
  text-decoration: underline;
}
.filter__actions {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgb(229, 229, 229);
  padding: 8px;
  justify-content: center;
  gap: 12px;
  display: flex;
  width: 100%;
  margin: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter__actions {
    gap: 6px;
  }
}
.filter__actions .filter__reset,
.filter__actions .filter__submit {
  width: 100%;
  border-radius: 4px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: 0.2s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter__actions .filter__reset,
  .filter__actions .filter__submit {
    font-size: 13px;
    gap: 4px;
  }
}
.filter__actions .filter__reset {
  background: #fff;
  color: #ce384c;
  font-weight: 400;
}
.filter__actions .filter__reset img {
  position: relative;
  top: -2px;
}
.filter__actions .filter__reset:hover {
  background: #faddeb;
}
.filter__actions .filter__submit {
  background: var(--bg-light-green);
  color: #fff;
}
.filter__actions .filter__submit:hover {
  background: #3bb79e;
}
.filter__actions .filter__submit img {
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .filter__sections {
    max-height: 350px;
    overflow-y: auto;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}
.section-title__big {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--main-text-color);
  margin-bottom: 44px;
  transition: all 0.3s ease;
  position: relative;
}
.section-title__big:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 81px;
  height: 4px;
  background-color: var(--bg-golden-brown);
}
.section-title__sub {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--light-gray-text);
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-title__big {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title__big {
    font-size: 28px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .section-title__big {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-title__big {
    margin-bottom: 22px;
    font-size: 24px;
  }
  .section-title__big::before {
    bottom: -10px;
  }
}

.box-name-search {
  padding-top: 100px;
  border-bottom: 1px solid rgb(228, 228, 228);
  padding-bottom: 32px;
  text-align: center;
}
.box-name-search h3 {
  color: rgb(41, 71, 88);
  font-size: 60px;
  font-weight: 400;
  font-family: "font-custom-title";
}
@media (min-width: 992px) and (max-width: 1199px) {
  .box-name-search h3 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .box-name-search {
    padding-top: 30px;
  }
  .box-name-search h3 {
    font-size: 40px;
  }
}

.wp-menu-homepage.ct-bg-menu .layout-menu-homepage {
  background: rgb(233, 244, 251);
}

header.wp-menu-homepage.ct-bg-menu .menu-homepage.scroll {
  background: rgb(233, 244, 251);
}

@media (max-width: 991px) {
  header.wp-menu-homepage.ct-bg-menu .menu-homepage {
    background: #e9f4fb;
  }
}
.box-nodata {
  padding: 50px 0;
  text-align: center;
}
.box-nodata h3 {
  margin-top: 16px;
  color: rgb(133, 141, 154);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px 8px;
}
.pagination__item.active .pagination__link {
  background-color: var(--bg-light-green);
  color: #fff;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #f4f7f9;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination__link:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  color: #586770;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 14px;
  }
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb__item::after {
  content: "/";
  color: #fff;
  opacity: 0.5;
  margin-right: 4px;
}
.breadcrumb__item:last-child::after {
  content: "";
}
.breadcrumb__item--active .breadcrumb__text {
  color: #fff;
  opacity: 1;
}
.breadcrumb__link {
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.3s;
}
.breadcrumb__link:hover {
  color: #fff;
  opacity: 1;
}
.breadcrumb__text {
  color: white;
  opacity: 0.5;
  transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}
.slider-nav img {
  transform: scale(1);
  filter: brightness(1);
  transition: all 0.3s;
}
.slider-nav:hover {
  background: var(--purple-color);
}
.slider-nav:hover img {
  filter: brightness(9);
  transform: scale(0.45);
}
.slider-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.slider-nav--prev {
  left: 0;
}
.slider-nav--next {
  right: 0;
}
@media (max-width: 1199px) {
  .slider-nav {
    background: var(--purple-color);
  }
  .slider-nav img {
    filter: brightness(9);
    transform: scale(0.45);
  }
  .slider-nav.swiper-button-disabled {
    opacity: 0.6;
    cursor: auto;
    pointer-events: none;
  }
}

.slider-pagination {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.slider-pagination .swiper-pagination-bullet-active {
  background: #e1ae4d;
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper--has-pagination .swiper {
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .slider-wrapper--has-pagination .swiper {
    padding-bottom: 30px;
  }
}

.topbar--homepage {
  height: 48px;
}
.topbar--homepage .container {
  height: 100%;
}
@media (max-width: 991px) {
  .topbar--homepage .container {
    max-width: 100%;
  }
}

.topbar__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 10px 0;
}
@media (max-width: 1199px) {
  .topbar__layout {
    padding: 4px 0;
    height: 100%;
  }
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  top: 0;
}
@media (max-width: 575px) {
  .topbar__left {
    top: 0;
    gap: 8px;
  }
}
.topbar__left .topbar__title {
  font-size: 14px;
  font-weight: 500;
  color: #373737;
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  .topbar__left .topbar__title {
    display: none;
  }
}
.topbar__left .topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .topbar__left .topbar__social {
    gap: 4px;
  }
}
.topbar__left .topbar__social .topbar__social-item {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.topbar__left .topbar__social .topbar__social-item img {
  transition: all 0.3s;
  transform: translateY(0);
}
.topbar__left .topbar__social .topbar__social-item:hover img {
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .topbar__left .topbar__divider {
    display: none;
  }
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .topbar__right {
    gap: 8px;
  }
}

.topbar__divider {
  width: 1px;
  height: 22px;
  background: #dadada;
}
@media (max-width: 575px) {
  .topbar__divider {
    height: 12px;
  }
}

.topbar__search {
  position: relative;
}
.topbar__search-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e1ae4d;
  border-radius: 50%;
  transition: all 0.3s;
}
.topbar__search-inner svg {
  width: 16px;
  height: 16px;
}
.topbar__search-inner svg path {
  stroke: #fff;
}
.topbar__search-inner:hover {
  background: #d4a74d;
}
.topbar__search-popup {
  position: absolute;
  top: calc(100% + 15px);
  right: -12px;
  width: 300px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.topbar__search-popup::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.topbar__search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topbar__search-popup .search-form {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 4px;
}
.topbar__search-popup .search-form .search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  width: 100%;
}
.topbar__search-popup .search-form .search-btn {
  width: 36px;
  height: 36px;
  background: var(--green-text);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.topbar__search-popup .search-form .search-btn:hover {
  background: rgb(40.2582644628, 176.2417355372, 149.402892562);
}
@media (max-width: 575px) {
  .topbar__search-popup {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 30px);
  }
  .topbar__search-popup::after {
    right: 132px;
  }
}

.topbar__lang {
  cursor: pointer;
  position: relative;
}
.topbar__lang-current {
  display: flex;
  align-items: center;
  gap: 4px 8px;
}
.topbar__lang-current .flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.topbar__lang-current .flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.topbar__lang-current .text {
  font-size: 14px;
  font-weight: 500;
  color: #353535;
}
.topbar__lang-current .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  transform-origin: center;
  transform: rotateY(0);
}
.topbar__lang-popup {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 160px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.topbar__lang-popup::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.topbar__lang-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topbar__lang-popup .lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.topbar__lang-popup .lang-list .lang-item {
  margin-bottom: 4px;
}
.topbar__lang-popup .lang-list .lang-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.topbar__lang-popup .lang-list .lang-item a .flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.topbar__lang-popup .lang-list .lang-item a .flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topbar__lang-popup .lang-list .lang-item a .text {
  font-size: 14px;
  font-weight: 500;
  color: #373737;
  transition: all 0.3s;
}
.topbar__lang-popup .lang-list .lang-item:hover a, .topbar__lang-popup .lang-list .lang-item.active a {
  background: rgba(45, 197, 167, 0.08);
}
.topbar__lang-popup .lang-list .lang-item:hover a .text, .topbar__lang-popup .lang-list .lang-item.active a .text {
  color: var(--green-text);
}
.topbar__lang-popup .lang-list .lang-item:last-child {
  margin-bottom: 0;
}
.topbar__lang.active .icon {
  transform: rotateX(180deg);
}

.topbar__news {
  display: flex;
  align-items: center;
  gap: 0 6px;
}
@media (max-width: 991px) {
  .topbar__news {
    display: none;
  }
}

.topbar__news-link {
  color: #ffffff;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  font-style: italic;
  max-width: 700px;
  border-bottom: 1px solid #fff;
}
.topbar__news-link:hover {
  color: #fff;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .topbar__news-link {
    max-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar__news-link {
    max-width: 350px;
  }
}

/* ------------------------------------------- */
/* ===== Header Menu (desktop + mobile with mmenu) ===== */
.menu-homepage {
  position: absolute;
  z-index: 10;
  top: 48px;
  width: 100%;
  left: 0;
  transition: all 0.4s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  background: #fff;
  border-top: 1px solid #e3e3e3;
}
.menu-homepage.scroll {
  border-top: transparent;
  position: fixed;
  top: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.menu-homepage.scroll .layout-menu-homepage {
  border-radius: 0;
}
@media (max-width: 991px) {
  .menu-homepage .container {
    max-width: 100%;
  }
}

.layout-menu-homepage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  height: 72px;
}

.logo-menu-homepage {
  margin: 0;
  margin-left: -10px;
  display: flex;
  align-items: center;
  gap: 0 6px;
  position: relative;
  background: #4AC2AA;
  height: 100%;
}
.logo-menu-homepage:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  background: #4AC2AA;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mm-opened .logo-menu-homepage:before {
    display: none;
  }
}
.logo-menu-homepage a {
  width: 175px;
  align-items: center;
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-menu-homepage a {
    width: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .logo-menu-homepage {
    margin-left: -5px;
  }
  .logo-menu-homepage a {
    width: auto;
  }
}
@media (max-width: 991px) {
  .logo-menu-homepage {
    margin-left: -5px;
  }
  .logo-menu-homepage a {
    width: auto;
  }
  .logo-menu-homepage:before {
    left: -10px;
    width: 12px;
  }
}
@media (max-width: 575px) {
  .logo-menu-homepage a {
    width: 120px;
  }
}

.texture-logo {
  position: absolute;
  top: 0;
  right: -90px;
  height: 100%;
  width: 90px;
}
.texture-logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .texture-logo {
    right: -60px;
    width: 60px;
  }
}

.block-menu-homepage-pc {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  margin-left: 60px;
}

.item-menu-homepage {
  position: relative;
}
.item-menu-homepage.item-menu-homepage + .item-menu-homepage {
  margin-left: 4px;
}
.item-menu-homepage .txt-menu-homepage {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: #313131;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  gap: 0 6px;
}
.item-menu-homepage .txt-menu-homepage .txt {
  white-space: nowrap;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .item-menu-homepage .txt-menu-homepage {
    padding: 8px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .item-menu-homepage .txt-menu-homepage {
    padding: 8px;
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .item-menu-homepage .txt-menu-homepage {
    font-size: 13.5px;
    padding: 8px;
  }
}
.item-menu-homepage .txt-menu-homepage .icon svg path {
  transition: all 0.3s;
}
.item-menu-homepage.active .txt-menu-homepage .txt {
  color: var(--green-text);
}
.item-menu-homepage.active .txt-menu-homepage .icon svg path {
  fill: var(--green-text);
}

.item-menu-homepage.active .txt-menu-homepage,
.item-menu-homepage .txt-menu-homepage:hover {
  color: var(--green-text);
  background: transparent;
}

.item-menu-homepage.active .txt-menu-homepage .icon svg path,
.item-menu-homepage .txt-menu-homepage:hover .icon svg path {
  fill: var(--green-text);
}

/* Submenu (desktop) */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 36px rgba(12, 53, 85, 0.18);
  display: none;
  z-index: 30;
}

.submenu__item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--main-text-color);
  font-weight: 400;
  transition: all 0.3s;
}

/* Mega Menu Styles */
.submenu-mega {
  left: 50% !important;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  max-width: 600px;
  display: none;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 16px !important;
}
.submenu-mega.sub-menu-column-2 {
  width: 400px;
}
.submenu-mega.sub-menu-column-2 .submenu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}
.submenu-mega .submenu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.submenu-mega .submenu-title {
  font-size: 16px;
  font-weight: 700;
  color: #00816D;
  margin: 0;
  text-transform: none;
}
.submenu-mega .submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.submenu-mega .submenu-list li {
  padding: 0;
}
.submenu-mega .submenu-list .submenu__item {
  padding: 8px 0;
  color: #313131;
  font-size: 15px;
  font-weight: 400;
  background: transparent !important;
}
.submenu-mega .submenu-list .submenu__item:hover {
  color: #50AE9C;
}

.block-account-header {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.block-account-header .account-not-login,
.block-account-header .account-logged {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
@media (max-width: 575px) {
  .block-account-header .account-not-login,
  .block-account-header .account-logged {
    gap: 0 6px;
  }
}
.block-account-header .btn-design {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #4ac2aa;
  border-radius: 6px;
  color: #4ac2aa;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.block-account-header .btn-design:hover {
  background: rgba(74, 194, 170, 0.05);
}
@media (max-width: 1199px) {
  .block-account-header .btn-design {
    padding: 0 12px;
    height: 40px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .block-account-header .btn-design {
    height: 36px;
    padding: 0 8px;
  }
}
.block-account-header .btn-login,
.block-account-header .account-user__current {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  background: #4ac2aa;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.block-account-header .btn-login:hover,
.block-account-header .account-user__current:hover {
  background: rgb(61.1260330579, 181.3739669421, 157.3243801653);
}
@media (max-width: 1199px) {
  .block-account-header .btn-login,
  .block-account-header .account-user__current {
    padding: 0 12px;
    height: 40px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .block-account-header .btn-login,
  .block-account-header .account-user__current {
    height: 36px;
    padding: 0 8px;
  }
}
.block-account-header .account-user {
  position: relative;
}
.block-account-header .account-user__current {
  gap: 0 6px;
}
.block-account-header .account-user__current .icon-user {
  display: flex;
  align-items: center;
  width: 16px;
}
.block-account-header .account-user__current .icon-arrow {
  display: flex;
  align-items: center;
  margin-left: 10px;
  transition: transform 0.3s;
}
.block-account-header .account-user__current .txt {
  flex: 1;
}
@media (max-width: 575px) {
  .block-account-header .account-user__current {
    gap: 0 4px;
    width: 36px;
  }
  .block-account-header .account-user__current .icon-arrow {
    display: none;
  }
  .block-account-header .account-user__current .txt {
    display: none;
  }
}
.block-account-header .account-user__popup {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.block-account-header .account-user__popup::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 30px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.block-account-header .account-user__popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.block-account-header .account-user__popup .account-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block-account-header .account-user__popup .account-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #313131;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: capitalize;
}
.block-account-header .account-user__popup .account-menu li a .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-account-header .account-user__popup .account-menu li a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0.2);
}
.block-account-header .account-user__popup .account-menu li:hover a {
  background: rgba(74, 194, 170, 0.08);
  color: var(--green-text);
}
.block-account-header .account-user__popup .account-menu li:hover a .icon img {
  filter: none;
}
.block-account-header .account-user.active .icon-arrow {
  transform: rotate(180deg);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account-header {
    margin-left: 12px;
  }
}
@media (max-width: 1199px) {
  .block-account-header {
    margin-left: 12px;
  }
}
@media (max-width: 575px) {
  .block-account-header {
    margin-left: 6px;
  }
}

.submenu__item:hover {
  background: rgba(45, 197, 167, 0.08);
  color: var(--green-text);
}

.item-menu-homepage:hover > .submenu {
  display: block;
}

.item-menu-homepage:hover > .submenu-mega {
  display: flex;
}

@media (max-width: 991px) {
  .submenu {
    display: none !important;
  }
}
/* Mobile hamburger */
.nav-menu {
  display: none;
}

.toggle-bar-menu {
  display: inline-flex;
  align-items: center;
}

.menu-line {
  width: 32px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lines {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--main-text-color);
}

.lines .line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--main-text-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lines .horizontal {
  top: 0;
  transform: translateY(0);
}

.lines .diagonal.part-1 {
  top: -6px;
}

.lines .diagonal.part-2 {
  top: 6px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .block-menu-homepage-pc {
    margin-left: 50px;
  }
}
@media (max-width: 1199px) {
  .block-menu-homepage-pc {
    display: none;
  }
  .nav-menu {
    display: block;
  }
  .layout-menu-homepage {
    border-radius: 8px;
    height: 60px;
  }
  .menu-line {
    width: 36px;
    height: 32px;
  }
  .lines,
  .lines .line,
  .lines .horizontal {
    background: var(--main-text-color);
  }
  /* MMenu */
  #mm-blocker {
    background: rgba(3, 2, 1, 0.8);
    z-index: 3;
  }
  .mm-listview li a {
    color: var(--main-text-color);
    font-size: 17px;
    padding: 15px 10px 8px 20px;
  }
  .mm-hasnavbar-bottom-1 .mm-panels {
    background: #fff;
  }
  .mm-navbars-top,
  .mm-navbar {
    background: #fff;
  }
  .mm-menu .mm-navbar a,
  .mm-menu .mm-navbar > * {
    color: var(--main-text-color);
    font-size: 17px;
    top: 0;
  }
  .mm-clear:after,
  .mm-close:after,
  .mm-clear:after,
  .mm-clear:before,
  .mm-close:after,
  .mm-close:before {
    display: none;
  }
  .mm-close.mm-btn {
    background-image: url(../img-fix/icon/icon-close.png);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    position: absolute;
    top: 3px;
    right: 13px !important;
  }
  .mm-navbars-bottom {
    display: none;
  }
  .mm-menu {
    background: #fff;
  }
}
.nav-menu {
  margin-left: 10px;
}

.layout-menu-homepage .nav-menu {
  margin-left: auto;
}

.logo-menu-homepage .name {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.logo-menu-homepage .name p {
  color: var(--green-text);
  letter-spacing: -0.5px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-menu-homepage .name {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .logo-menu-homepage .name {
    display: none;
  }
}
@media (max-width: 991px) {
  .logo-menu-homepage .name p {
    font-size: 15px;
  }
}

.block-footer-links {
  position: relative;
  padding: 42px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.block-footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(19, 49, 45, 0.9);
}
.block-footer-links .footer-links__layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.block-footer-links .footer-links__title {
  color: var(--green-text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 24px;
}
.block-footer-links .footer-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block-footer-links .footer-links__list li {
  margin-bottom: 16px;
}
.block-footer-links .footer-links__list li:last-child {
  margin-bottom: 0;
}
.block-footer-links .footer-links__list li a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.3s;
}
.block-footer-links .footer-links__list li a:hover {
  color: var(--green-text);
  padding-left: 5px;
}

@media (max-width: laptop-width-1px) {
  .block-footer-links {
    padding: 50px 0;
  }
  .block-footer-links .footer-links__layout {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .block-footer-links .footer-links__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 575px) {
  .block-footer-links {
    padding: 30px 0;
  }
  .block-footer-links .footer-links__list li {
    margin-bottom: 8px;
  }
  .block-footer-links .footer-links__list li a {
    font-size: 15px;
  }
  .block-footer-links .footer-links__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .block-footer-links .footer-links__title {
    margin-bottom: 15px;
  }
}
.block-footer-main {
  background: #2cad93;
  padding: 42px 0;
  color: #fff;
}
.block-footer-main .footer-main__layout {
  display: grid;
  grid-template-columns: 380px 350px 1fr;
  gap: 30px 100px;
}
.block-footer-main .footer-main__logo a {
  display: inline-block;
}
.block-footer-main .footer-main__cert {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.block-footer-main .footer-main__cert .cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-footer-main .footer-main__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}
.block-footer-main .footer-main__social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
.block-footer-main .footer-main__social .social-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: #f2d339;
}
.block-footer-main .footer-main__social .social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-footer-main .footer-main__social .social-list .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}
.block-footer-main .footer-main__social .social-list .social-item:hover {
  transform: translateY(-4px);
}
.block-footer-main .footer-main__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block-footer-main .footer-main__nav-list li {
  margin-bottom: 24px;
}
.block-footer-main .footer-main__nav-list li:last-child {
  margin-bottom: 0;
}
.block-footer-main .footer-main__nav-list li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  transition: all 0.3s;
}
.block-footer-main .footer-main__nav-list li a:hover {
  text-decoration: underline;
  color: #f2d339;
}
.block-footer-main .footer-main__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 5px;
}
.block-footer-main .footer-main__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: #f2d339;
}
.block-footer-main .footer-main__contact-list .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex: 1;
  line-height: 1.2;
  text-transform: none;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
}
.block-footer-main .footer-main__contact-list .contact-item:last-child {
  margin-bottom: 0;
}
.block-footer-main .footer-main__contact-list .contact-item .icon {
  width: 26px;
  height: 26px;
  background: #289b84;
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-footer-main .footer-main__contact-list .contact-item .text {
  font-size: 15px;
  color: #fff;
  border: none;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
}
.block-footer-main .footer-main__contact-list .contact-item .text a:hover {
  text-decoration: underline;
}
.block-footer-main .footer-main__address-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 16px 0;
}
.block-footer-main .footer-main__address-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-footer-main .footer-main__address-list .address-item .city-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.block-footer-main .footer-main__address-list .address-item .city-title .icon {
  width: 26px;
  height: 26px;
  background: #289b84;
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-footer-main .footer-main__address-list .address-item .city-title .text {
  font-size: 16px;
  font-weight: 600;
}
.block-footer-main .footer-main__address-list .address-item .address-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .block-footer-main .footer-main__layout {
    gap: 80px;
    grid-template-columns: 350px 300px 1fr;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-footer-main .footer-main__layout {
    grid-template-columns: 320px 240px 1fr;
    gap: 20px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-footer-main .footer-main__layout {
    grid-template-columns: 320px 220px 1fr;
    gap: 20px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-footer-main {
    padding: 30px 0;
  }
  .block-footer-main .footer-main__layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px 80px;
  }
  .block-footer-main .footer-main__col-contact {
    grid-column: 1/3;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-footer-main {
    padding: 30px 0;
  }
  .block-footer-main .footer-main__layout {
    grid-template-columns: 200px 1fr;
    gap: 20px 30px;
  }
  .block-footer-main .footer-main__col-branding {
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .block-footer-main .footer-main__social .social-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .block-footer-main {
    padding: 30px 0;
  }
  .block-footer-main .footer-main__layout {
    grid-template-columns: 1fr;
  }
  .block-footer-main .footer-main__nav-list li {
    margin-bottom: 12px;
  }
}
.block-footer-bottom {
  background: #edf6f4;
  padding: 24px 0;
}
.block-footer-bottom .footer-bottom__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-wrap: wrap;
}
.block-footer-bottom .footer-bottom__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--header-text-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 5px;
}
.block-footer-bottom .footer-bottom__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--bg-golden-brown);
}
.block-footer-bottom .footer-bottom__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.block-footer-bottom .footer-bottom__logo-item {
  background: #deedea;
  padding: 8px;
  border-radius: 4px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
}
.block-footer-bottom .footer-bottom__logo-item img {
  max-height: 100%;
  height: auto;
  width: auto;
}
.block-footer-bottom .footer-bottom__payment {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
}
.block-footer-bottom .footer-bottom__divider {
  width: 100%;
  height: 1px;
  background: #e1e8e7;
  margin: 20px 0;
}
.block-footer-bottom .footer-bottom__info p {
  font-size: 14px;
  color: var(--light-gray-text);
  line-height: 1.3;
  margin-bottom: 5px;
}
.block-footer-bottom .footer-bottom__info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .block-footer-bottom .footer-bottom__top {
    gap: 30px 50px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-footer-bottom .footer-bottom__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .block-footer-bottom .footer-bottom__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .block-footer-bottom .footer-bottom__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .block-footer-bottom .footer-bottom__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .block-footer-bottom .footer-bottom__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .block-footer-bottom .footer-bottom__title {
    margin-bottom: 16px;
  }
}
.slide-banner {
  position: relative;
  overflow: hidden;
}
.slide-banner .image-banner {
  height: 650px;
  position: relative;
}
.slide-banner .image-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(84.18deg, rgba(14, 54, 46, 0.6) 40.86%, rgba(14, 54, 46, 0) 95.54%);
  z-index: 1;
  pointer-events: none;
}
.slide-banner .image-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}
.slide-banner .image-banner .banner-content .title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 800px;
}
.slide-banner .image-banner .banner-content .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 48px;
  background-color: #4ac2aa;
  color: #fff;
  font-size: 14px;
  min-width: 180px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}
.slide-banner .image-banner .banner-content .btn-explore:hover {
  background-color: rgb(51.8565022422, 184.1434977578, 156.6278026906);
}
.slide-banner .image-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .slide-banner .image-banner {
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
  }
  .slide-banner .image-banner .banner-content .title {
    font-size: 46px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .slide-banner .image-banner {
    height: 520px;
  }
  .slide-banner .image-banner .banner-content .title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .slide-banner .image-banner {
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
  }
  .slide-banner .image-banner .banner-content .title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .slide-banner .image-banner {
    height: 500px;
  }
  .slide-banner .image-banner .banner-content .title {
    font-size: 28px;
  }
}
.slide-banner .slider-pagination {
  display: flex;
  position: absolute;
  bottom: 32px;
  z-index: 2;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.slide-banner .slider-pagination span {
  background: #fff;
}
.slide-banner .slider-pagination .swiper-pagination-bullet-active {
  background: #e1ae4d;
}
@media (max-width: 991px) {
  .slide-banner .slider-nav {
    display: none;
  }
}
@media (max-width: 575px) {
  .slide-banner .slider-pagination {
    bottom: 10%;
  }
}

.section-search {
  background-color: #fff;
  padding-top: 40px;
}
@media (max-width: 575px) {
  .section-search {
    padding-top: 20px;
  }
}

.tour-search {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.tour-search__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
@media (max-width: 991px) {
  .tour-search__tabs {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .tour-search__tabs {
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 -15px;
    border-bottom: 1px solid #dadada;
  }
}
.tour-search__tabs .tab-item {
  font-size: 16px;
  font-weight: 700;
  color: #454545;
  text-transform: uppercase;
  cursor: pointer;
  padding-bottom: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.tour-search__tabs .tab-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #e1ae4d;
  transition: all 0.3s ease;
}
.tour-search__tabs .tab-item:hover, .tour-search__tabs .tab-item.active {
  color: #2f2f2f;
}
.tour-search__tabs .tab-item:hover::after, .tour-search__tabs .tab-item.active::after {
  width: 100%;
}
@media (max-width: 991px) {
  .tour-search__tabs .tab-item {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tour-search__tabs .tab-item {
    padding-bottom: 16px;
    font-size: 15px;
  }
}
.tour-search__form-wrapper {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
@media (max-width: 1199px) {
  .tour-search__form-wrapper {
    border: none;
  }
}
@media (max-width: 575px) {
  .tour-search__form-wrapper {
    border-bottom: 1px solid #dadada;
  }
}
.tour-search__form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 180px;
  background: #fff;
  border-radius: 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-search__form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tour-search__form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .tour-search__form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .tour-search__form {
    grid-template-columns: 1fr;
  }
}
.tour-search .form-group {
  margin: 0;
  position: relative;
  border-right: 1px solid #dadada;
}
@media (min-width: 1200px) {
  .tour-search .form-group:last-of-type {
    border-right: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-search .form-group {
    border: 1px solid #dadada;
    margin-top: -1px;
    margin-right: -1px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tour-search .form-group {
    border: 1px solid #dadada;
    margin-top: -1px;
    margin-right: -1px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .tour-search .form-group {
    border: 1px solid #dadada;
    margin-top: -1px;
    margin-right: -1px;
  }
}
@media (max-width: 575px) {
  .tour-search .form-group {
    border-right: none;
    border-bottom: 1px solid #dadada;
  }
}
.tour-search .form-group .select-control {
  height: 76px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.tour-search .form-group .select-control:hover {
  background: #fcfcfc;
}
.tour-search .form-group .select-control .icon-tsl {
  width: 24px;
  flex-shrink: 0;
}
.tour-search .form-group .select-control .icon-tsl img {
  width: 100%;
  height: auto;
}
.tour-search .form-group .select-control .text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-search .form-group .select-control .icon-arrow {
  width: 18px;
  transition: transform 0.3s;
}
.tour-search .form-group .select-control .icon-arrow img {
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .tour-search .form-group .select-control {
    height: 70px;
  }
}
@media (max-width: 575px) {
  .tour-search .form-group .select-control {
    height: 52px;
    padding: 0;
  }
  .tour-search .form-group .select-control:hover {
    background: #fff;
  }
}
.tour-search .form-group.active {
  z-index: 1;
}
@media (min-width: 1200px) {
  .tour-search .form-group.active .select-control {
    background: #f9f9f9;
  }
}
.tour-search .form-group.active .select-control .icon-arrow {
  transform: rotate(180deg);
}
.tour-search .form-group.active .popup-list {
  display: block;
}
.tour-search .form-group .popup-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  z-index: 100;
  display: none;
}
.tour-search .form-group .popup-list ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.tour-search .form-group .popup-list ul li {
  padding: 10px 20px;
  font-size: 15px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
}
.tour-search .form-group .popup-list ul li:hover {
  background: #f5f5f5;
  color: #e1ae4d;
}
.tour-search .form-group.form-group-submit {
  display: flex;
  align-items: center;
  padding-left: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-search .form-group.form-group-submit {
    padding: 0 12px;
  }
}
@media (max-width: 991px) {
  .tour-search .form-group.form-group-submit {
    padding: 0 12px;
  }
}
@media (max-width: 575px) {
  .tour-search .form-group.form-group-submit {
    padding: 12px 0;
    border: none;
  }
}
.tour-search .btn-search-now {
  background-color: #e1ae4d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  height: 48px;
  width: 100%;
}
.tour-search .btn-search-now:hover {
  background-color: rgb(221.3221153846, 164.0697115385, 55.1778846154);
}
@media (max-width: 991px) {
  .tour-search .btn-search-now {
    grid-column: 1/-1;
  }
}

.block-who-we-are {
  padding: 60px 0;
}
.block-who-we-are .who-we-are__box {
  background-color: #3bb79e;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.block-who-we-are .who-we-are__content {
  flex: 1;
  color: #fff;
}
.block-who-we-are .who-we-are__content .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.block-who-we-are .who-we-are__content .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #f2d339;
  border-radius: 2px;
}
.block-who-we-are .who-we-are__content .desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
  color: #fff;
}
.block-who-we-are .who-we-are__content .desc p {
  margin-bottom: 16px;
}
.block-who-we-are .who-we-are__content .desc p:last-child {
  margin-bottom: 0;
}
.block-who-we-are .who-we-are__content .btn-meet-teams {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #35a790;
  padding: 0 16px;
  height: 48px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.block-who-we-are .who-we-are__content .btn-meet-teams:hover {
  background-color: #f2d339;
  color: black;
}
.block-who-we-are .who-we-are__images {
  width: 680px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
}
.block-who-we-are .who-we-are__images .img-back {
  width: 274px;
  height: 274px;
  border-radius: 6px;
  overflow: hidden;
}
.block-who-we-are .who-we-are__images .img-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.block-who-we-are .who-we-are__images .img-front {
  width: 388px;
  height: 388px;
  border-radius: 6px;
  overflow: hidden;
}
.block-who-we-are .who-we-are__images .img-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .block-who-we-are .who-we-are__box {
    padding: 32px;
    gap: 32px;
  }
  .block-who-we-are .who-we-are__content .section-title {
    font-size: 32px;
  }
  .block-who-we-are .who-we-are__images {
    width: 540px;
  }
  .block-who-we-are .who-we-are__images .img-back {
    width: 200px;
    height: 200px;
  }
  .block-who-we-are .who-we-are__images .img-front {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 1199px) {
  .block-who-we-are {
    padding: 40px 0;
  }
  .block-who-we-are .who-we-are__box {
    flex-direction: column;
    padding: 32px;
    gap: 16px;
  }
  .block-who-we-are .who-we-are__images {
    display: none;
  }
}
@media (max-width: 767px) {
  .block-who-we-are {
    padding: 32px 0;
  }
  .block-who-we-are .who-we-are__box {
    flex-direction: column;
    padding: 30px 20px;
    gap: 40px;
  }
  .block-who-we-are .who-we-are__content .section-title {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
  .block-who-we-are .who-we-are__content .desc {
    font-size: 15px;
  }
}
.block-explore-video {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 750px;
  background-color: #0c1c1f;
}
.block-explore-video .explore-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.block-explore-video .explore-video__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .block-explore-video {
    height: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-explore-video {
    height: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-explore-video {
    height: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-explore-video {
    height: 500px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-explore-video {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .block-explore-video {
    padding: 50px 0;
    height: 250px;
  }
}
.block-why-travel {
  padding: 60px 0 40px 0;
  position: relative;
}
.block-why-travel::before {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #fff;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}
.block-why-travel .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.block-why-travel .why-travel-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.block-why-travel .why-travel-item {
  background-color: #f2f7f6;
  padding: 24px;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #4bc2ab;
  min-height: 240px;
}
.block-why-travel .why-travel-item .icon {
  width: 72px;
  height: 72px;
  background-color: #4bc2ab;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}
.block-why-travel .why-travel-item .text {
  font-size: 20px;
  font-weight: 500;
  color: #2f2f2f;
  line-height: 1.3;
  margin-top: auto;
}
.block-why-travel .why-travel-item--stats {
  background: linear-gradient(180deg, rgba(225, 174, 77, 0.2) 0%, rgba(225, 174, 77, 0) 100%);
  border-bottom: 6px solid #efb851;
  padding: 24px;
  justify-content: space-between;
}
.block-why-travel .why-travel-item--stats .stat-row:not(:last-child) {
  margin-bottom: 24px;
}
.block-why-travel .why-travel-item--stats .stat-number {
  font-size: 22px;
  font-weight: 700;
  color: #d09c38;
  margin-bottom: 4px;
  line-height: 1.2;
}
.block-why-travel .why-travel-item--stats .stat-text {
  font-size: 15px;
  color: #2f2f2f;
  line-height: 1.4;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .block-why-travel .why-travel-list {
    gap: 16px;
  }
  .block-why-travel .why-travel-item {
    padding: 16px;
    min-height: 200px;
  }
  .block-why-travel .why-travel-item .text {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-why-travel .why-travel-list {
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
  }
  .block-why-travel .why-travel-item {
    padding: 16px;
    min-height: 200px;
  }
  .block-why-travel .why-travel-item .text {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-why-travel .why-travel-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-why-travel {
    padding: 40px 0;
  }
  .block-why-travel .why-travel-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .block-why-travel .why-travel-item {
    padding: 16px;
    min-height: 200px;
  }
  .block-why-travel .why-travel-item .text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .block-why-travel {
    padding: 30px 0 20px 0;
  }
  .block-why-travel .section-title {
    margin-bottom: 40px;
  }
  .block-why-travel .why-travel-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .block-why-travel .why-travel-item {
    min-height: auto;
    padding: 16px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-width: 0;
    border-radius: 12px;
  }
  .block-why-travel .why-travel-item .icon {
    margin-bottom: 0;
    width: 52px;
    height: 52px;
  }
  .block-why-travel .why-travel-item .icon img {
    transform: scale(0.7);
  }
  .block-why-travel .why-travel-item .text {
    flex: 1;
    list-style: 1.2;
    font-size: 18px;
    margin-top: 0;
  }
  .block-why-travel .why-travel-item--stats {
    gap: 16px;
    border-width: 2px;
    border-radius: 12px 12px 0 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .block-why-travel .why-travel-item--stats .stat-row {
    margin-bottom: 0 !important;
  }
}
.block-featured-trips {
  position: relative;
  padding: 80px 0 60px 0;
  overflow: hidden;
}
.block-featured-trips__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.block-featured-trips__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 49, 45, 0.7);
  z-index: 1;
}
.block-featured-trips__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.block-featured-trips .container {
  position: relative;
  z-index: 2;
}
.block-featured-trips .section-title__big {
  color: #fff;
  position: relative;
  display: inline-block;
}
.block-featured-trips .featured-trips-slider {
  position: relative;
  padding: 0;
}
.block-featured-trips .slider-pagination {
  margin-top: 30px;
}
.block-featured-trips .slider-nav {
  background-color: #efb851;
  border-radius: 6px;
}
.block-featured-trips .slider-nav:hover {
  background-color: rgb(234.7052631579, 164.9421052632, 34.2947368421);
}
.block-featured-trips .slider-nav:hover img {
  filter: none;
  transform: scale(1);
}
.block-featured-trips .slider-nav:hover.slider-nav--prev img {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .block-featured-trips .slider-nav {
    display: none;
  }
}
.block-featured-trips .slider-nav.slider-nav--prev {
  left: -60px;
}
@media (min-width: 1600px) and (max-width: 1699px) {
  .block-featured-trips .slider-nav.slider-nav--prev {
    left: -20px;
  }
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .block-featured-trips .slider-nav.slider-nav--prev {
    left: -20px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .block-featured-trips .slider-nav.slider-nav--prev {
    left: -44px;
  }
}
@media (max-width: 1199px) {
  .block-featured-trips .slider-nav.slider-nav--prev {
    display: none;
  }
}
.block-featured-trips .slider-nav.slider-nav--next {
  right: -60px;
}
@media (min-width: 1600px) and (max-width: 1699px) {
  .block-featured-trips .slider-nav.slider-nav--next {
    right: -20px;
  }
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .block-featured-trips .slider-nav.slider-nav--next {
    right: -20px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .block-featured-trips .slider-nav.slider-nav--next {
    right: -44px;
  }
}
@media (max-width: 1199px) {
  .block-featured-trips .slider-nav.slider-nav--next {
    display: none;
  }
}
.block-featured-trips .trip-card {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.block-featured-trips .trip-card__img {
  position: relative;
  padding-top: 64%;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.block-featured-trips .trip-card__img .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.block-featured-trips .trip-card__img .swiper-slide {
  width: 100%;
  height: 100%;
}
.block-featured-trips .trip-card__img .swiper-slide img.main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #f0f0f0;
}
.block-featured-trips .trip-card__img .trip-card__badges {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.block-featured-trips .trip-card__img .trip-card__badges-list {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  pointer-events: auto;
  flex-wrap: wrap;
  max-width: calc(100% - 20px);
}
.block-featured-trips .trip-card__img .trip-card__badges-list .badge-item {
  font-size: 13px;
  font-weight: 500;
  color: #313131;
  display: flex;
  align-items: center;
  gap: 4px;
}
.block-featured-trips .trip-card__img .trip-card__badges-list .badge-item img {
  width: 14px;
  height: 14px;
}
.block-featured-trips .trip-card__img .swiper-pagination-card {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}
.block-featured-trips .trip-card__img .swiper-pagination-card .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.block-featured-trips .trip-card__img .swiper-pagination-card .dot.active {
  background: #efb851;
  transform: scale(1.3);
  border-color: #efb851;
}
.block-featured-trips .trip-card__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.block-featured-trips .trip-card__content .trip-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #232323;
}
.block-featured-trips .trip-card__content .trip-title a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
.block-featured-trips .trip-card__content .trip-title a:hover {
  color: #4ac2aa;
}
.block-featured-trips .trip-card__content .trip-info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.block-featured-trips .trip-card__content .trip-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #737373;
  line-height: 1.4;
}
.block-featured-trips .trip-card__content .trip-info li img {
  margin-top: -2px;
}
.block-featured-trips .trip-card__content .trip-price .price {
  font-size: 20px;
  font-weight: 700;
  color: #e02667;
}
.block-featured-trips .trip-card__content .trip-price .unit {
  font-size: 15px;
  color: #313131;
}
.block-featured-trips .btn-more-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4ac2aa;
  color: #fff;
  padding: 0 32px;
  height: 48px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  min-width: 180px;
}
.block-featured-trips .btn-more-featured:hover {
  background-color: rgb(93.0723140496, 200.4276859504, 178.9566115702);
}

@media (max-width: 991px) {
  .block-featured-trips {
    padding: 60px 0 40px 0;
  }
  .block-featured-trips .section-title__big {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .block-featured-trips .featured-trips-slider {
    padding: 0;
  }
}
.block-best-cruises {
  background: #fff;
  padding: 60px 0;
}
.block-best-cruises .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.block-best-cruises .best-cruises-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.block-best-cruises .cruise-item {
  position: relative;
  display: flex;
  align-items: center;
}
.block-best-cruises .cruise-item__img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1300/443;
  position: relative;
}
.block-best-cruises .cruise-item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(19, 49, 45, 0.7) 0%, rgba(19, 49, 45, 0) 100%);
  border-radius: 8px;
  z-index: 1;
}
.block-best-cruises .cruise-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.block-best-cruises .cruise-item__img .cruise-item__img-title {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  left: 30px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  line-height: 1.1;
  pointer-events: none;
}
.block-best-cruises .cruise-item__content {
  background-color: #e5f2ee;
  padding: 40px 56px;
  border-radius: 8px;
  width: 420px;
  position: absolute;
  right: 60px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  max-height: 500px;
  overflow-y: auto;
}
.block-best-cruises .cruise-item__content::-webkit-scrollbar {
  width: 4px;
}
.block-best-cruises .cruise-item__content::-webkit-scrollbar-track {
  background: transparent;
}
.block-best-cruises .cruise-item__content::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 2px;
}
.block-best-cruises .cruise-item__content .title {
  font-size: 22px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 16px;
}
.block-best-cruises .cruise-item__content .desc {
  font-size: 16px;
  color: #232323;
  line-height: 1.4;
  margin-bottom: 24px;
}
.block-best-cruises .cruise-item__content .btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4ac2aa;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s ease;
  letter-spacing: 0.5px;
}
.block-best-cruises .cruise-item__content .btn-detail:hover {
  background-color: #3ba38e;
}
.block-best-cruises .cruise-item--reverse {
  justify-content: flex-end;
}
.block-best-cruises .cruise-item--reverse .cruise-item__content {
  right: auto;
  left: 60px;
}
.block-best-cruises .cruise-item--reverse .cruise-item__img-title {
  left: auto;
  right: 30px;
  text-align: right;
}
@media (min-width: 1600px) {
  .block-best-cruises .container {
    max-width: 1330px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .block-best-cruises .container {
    max-width: 1090px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-best-cruises .container {
    max-width: 990px;
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .block-best-cruises .best-cruises-list {
    gap: 50px;
  }
  .block-best-cruises .cruise-item__content {
    width: 360px;
    padding: 30px;
    max-height: 400px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-best-cruises {
    padding: 40px 0;
  }
  .block-best-cruises .best-cruises-list {
    gap: 50px;
  }
  .block-best-cruises .cruise-item__content {
    width: 330px;
    padding: 30px;
    max-height: 360px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-best-cruises .best-cruises-list {
    gap: 50px;
  }
  .block-best-cruises .cruise-item__content {
    width: 330px;
    padding: 30px;
    max-height: 360px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-best-cruises {
    padding: 40px 0;
  }
  .block-best-cruises .best-cruises-list {
    gap: 40px;
  }
  .block-best-cruises .cruise-item {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item__img {
    width: 100%;
  }
  .block-best-cruises .cruise-item__img .cruise-item__img-title {
    bottom: auto;
    top: 20px;
    right: auto;
    left: 24px;
    text-align: left;
  }
  .block-best-cruises .cruise-item__content {
    width: 90%;
    position: relative;
    right: auto;
    left: auto;
    margin: -80px auto 0;
    padding: 24px;
    top: 0;
    transform: none;
    max-height: 300px;
  }
  .block-best-cruises .cruise-item--reverse {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item--reverse .cruise-item__content {
    right: auto;
    left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-best-cruises {
    padding: 40px 0;
  }
  .block-best-cruises .best-cruises-list {
    gap: 40px;
  }
  .block-best-cruises .cruise-item {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item__img {
    width: 100%;
    aspect-ratio: 16/8;
  }
  .block-best-cruises .cruise-item__img .cruise-item__img-title {
    bottom: auto;
    top: 20px;
    right: auto;
    left: 24px;
    text-align: left;
  }
  .block-best-cruises .cruise-item__content {
    width: 90%;
    position: relative;
    right: auto;
    left: auto;
    margin: -80px auto 0;
    padding: 24px;
    top: 0;
    transform: none;
    max-height: 300px;
  }
  .block-best-cruises .cruise-item--reverse {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item--reverse .cruise-item__content {
    right: auto;
    left: auto;
  }
}
@media (max-width: 575px) {
  .block-best-cruises {
    padding: 40px 0;
  }
  .block-best-cruises .section-title {
    margin-bottom: 30px;
  }
  .block-best-cruises .best-cruises-list {
    gap: 30px;
  }
  .block-best-cruises .cruise-item {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item__img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px 8px 0 0;
  }
  .block-best-cruises .cruise-item__img::before {
    border-radius: 8px 8px 0 0;
  }
  .block-best-cruises .cruise-item__img .cruise-item__img-title {
    bottom: 14px;
    top: auto;
    right: auto;
    left: 16px;
    text-align: left;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    opacity: 0.4;
  }
  .block-best-cruises .cruise-item__content {
    width: 100%;
    position: relative;
    right: auto;
    left: auto;
    margin: 0 auto 0;
    padding: 20px;
    top: 0;
    transform: none;
    max-height: auto;
    border-radius: 0 0 8px 8px;
  }
  .block-best-cruises .cruise-item--reverse {
    flex-direction: column;
  }
  .block-best-cruises .cruise-item--reverse .cruise-item__content {
    right: auto;
    left: auto;
  }
}
.block-top-destinations {
  padding: 60px 0;
  position: relative;
}
.block-top-destinations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(360deg, rgba(237, 244, 242, 0) 0%, #e6eeec 100%);
  opacity: 0.6;
}
.block-top-destinations .destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 992px) {
  .block-top-destinations .destinations-grid .dest-item:nth-child(6),
  .block-top-destinations .destinations-grid .dest-item:nth-child(8) {
    margin-top: -58.6301369863%;
  }
}
.block-top-destinations .destinations-grid .dest-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
  min-width: 0;
}
@media (max-width: 991px) {
  .block-top-destinations .destinations-grid .dest-col {
    gap: 24px;
  }
}
.block-top-destinations .destinations-grid .dest-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  transition: background 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item__img img.bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.block-top-destinations .destinations-grid .dest-item__num {
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: #fff;
  opacity: 0.8;
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: linear-gradient(180deg, rgba(6, 42, 37, 0.4) 0%, #062a25 82.41%);
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item__overlay p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-top-destinations .destinations-grid .dest-item__bottom {
  color: #343434;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.block-top-destinations .destinations-grid .dest-item__bottom .title {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  text-align: left;
  line-height: 1.3;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item__bottom .icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-top-destinations .destinations-grid .dest-item:hover {
  background-color: #4ac2aa;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__img img.bg-img {
  transform: scale(1.05);
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__num {
  opacity: 0;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__overlay {
  opacity: 1;
  visibility: visible;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__overlay p {
  transform: translateY(0);
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__bottom {
  background-color: #4ac2aa;
  color: #fff;
  padding: 10px 16px;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__bottom .title {
  color: #fff;
}
.block-top-destinations .destinations-grid .dest-item:hover .dest-item__bottom .icon {
  opacity: 1;
  transform: translateX(0);
}
.block-top-destinations .destinations-grid .dest-item--tall .dest-item__img {
  aspect-ratio: 365/495;
}
.block-top-destinations .destinations-grid .dest-item--short .dest-item__img {
  aspect-ratio: 365/281;
}
.block-top-destinations .destinations-grid .dest-item--special {
  overflow: hidden;
  flex: 1;
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__img {
  margin-bottom: 0;
  border-radius: 0;
  flex: 1;
  aspect-ratio: auto;
  min-height: 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__bottom {
  background-color: #4ac2aa;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__bottom .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__bottom .icon {
  opacity: 1;
  transform: translateX(0);
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__overlay {
  opacity: 1;
  visibility: visible;
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__overlay p {
  transform: translateY(0);
}
.block-top-destinations .destinations-grid .dest-item--special .dest-item__num {
  opacity: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .block-top-destinations {
    padding: 40px 0;
  }
  .block-top-destinations .destinations-grid .dest-item__num {
    font-size: 36px;
    left: 16px;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-top-destinations {
    padding: 40px 0;
  }
  .block-top-destinations .destinations-grid {
    gap: 16px;
  }
  .block-top-destinations .destinations-grid .dest-item__num {
    font-size: 32px;
    left: 16px;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .title {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-top-destinations {
    padding: 40px 0;
  }
  .block-top-destinations .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .block-top-destinations .destinations-grid .dest-item:nth-child(4),
  .block-top-destinations .destinations-grid .dest-item:nth-child(8) {
    margin-top: -58.6301369863%;
  }
  .block-top-destinations .destinations-grid .dest-item:nth-child(6) {
    margin-top: -117.2602739726%;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__num,
  .block-top-destinations .destinations-grid .dest-item .dest-item__overlay {
    display: none;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__bottom {
    background-color: #4ac2aa;
    color: #fff;
    padding: 10px 12px;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__bottom .title {
    font-size: 18px;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__bottom .icon {
    display: block;
    opacity: 1;
  }
  .block-top-destinations .destinations-grid .dest-item__num {
    font-size: 32px;
    left: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-top-destinations {
    padding: 40px 0;
  }
  .block-top-destinations .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .block-top-destinations .destinations-grid .dest-item:nth-child(4),
  .block-top-destinations .destinations-grid .dest-item:nth-child(8) {
    margin-top: -58.6301369863%;
  }
  .block-top-destinations .destinations-grid .dest-item:nth-child(6) {
    margin-top: -117.2602739726%;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__num,
  .block-top-destinations .destinations-grid .dest-item .dest-item__overlay {
    display: none;
  }
  .block-top-destinations .destinations-grid .dest-item__num {
    font-size: 32px;
    left: 16px;
  }
  .block-top-destinations .destinations-grid .dest-item__img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom {
    background-color: #4ac2aa;
    color: #fff;
    padding: 10px 16px;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .title {
    font-size: 18px;
    text-align: center;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .icon {
    display: none;
  }
}
@media (max-width: 575px) {
  .block-top-destinations {
    padding: 36px 0;
  }
  .block-top-destinations .destinations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .block-top-destinations .destinations-grid .dest-item {
    margin-top: 0 !important;
  }
  .block-top-destinations .destinations-grid .dest-item--tall .dest-item__img {
    aspect-ratio: 1/1;
  }
  .block-top-destinations .destinations-grid .dest-item--short .dest-item__img {
    aspect-ratio: 1/1;
  }
  .block-top-destinations .destinations-grid .dest-item .dest-item__num,
  .block-top-destinations .destinations-grid .dest-item .dest-item__overlay {
    display: none;
  }
  .block-top-destinations .destinations-grid .dest-item__num {
    font-size: 36px;
    left: 12px;
    bottom: 12px;
  }
  .block-top-destinations .destinations-grid .dest-item__img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom {
    background-color: #4ac2aa;
    color: #fff;
    padding: 10px 12px;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .title {
    font-size: 16px;
    text-align: center;
  }
  .block-top-destinations .destinations-grid .dest-item__bottom .icon {
    display: none;
  }
}
.block-travel-guide {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.block-travel-guide .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.block-travel-guide .guide-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.block-travel-guide .guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 24px;
}
.block-travel-guide .card-featured {
  display: block;
}
.block-travel-guide .card-featured__media {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/9;
}
.block-travel-guide .card-featured__media .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.block-travel-guide .card-featured__content .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-text);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-travel-guide .card-featured__content .excerpt {
  font-size: 16px;
  color: #898989;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-travel-guide .card-featured:hover .card-featured__media .bg-img {
  transform: scale(1.05);
}
.block-travel-guide .card-featured:hover .title {
  color: var(--green-text);
}
.block-travel-guide .card-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.block-travel-guide .card-item__media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.block-travel-guide .card-item__media .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.block-travel-guide .card-item__content .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-text);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-travel-guide .card-item__content .meta {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.block-travel-guide .card-item:hover .card-item__media .bg-img {
  transform: scale(1.05);
}
.block-travel-guide .card-item:hover .title {
  color: var(--green-text);
}
.block-travel-guide .meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.block-travel-guide .meta .category-tag {
  background: #f0f0f0;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #777777;
  font-weight: 500;
  display: -webkit-inline-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
.block-travel-guide .meta .date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #737373;
}
.block-travel-guide .meta .date .icon-cal {
  position: relative;
  top: -1px;
}
.block-travel-guide .view-more-container {
  text-align: center;
}
.block-travel-guide .view-more-container .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  min-width: 180px;
  height: 48px;
  background: #4ac2aa;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.block-travel-guide .view-more-container .btn-more:hover {
  background: rgb(53.3787234043, 170.6212765957, 136.3063829787);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .block-travel-guide {
    padding: 40px 0;
  }
  .block-travel-guide .guide-layout {
    grid-template-columns: 1.2fr 2fr;
  }
  .block-travel-guide .card-item {
    grid-template-columns: 150px 1fr;
  }
  .block-travel-guide .card-item__content .title {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-travel-guide {
    padding: 40px 0;
  }
  .block-travel-guide .guide-layout {
    grid-template-columns: 1.8fr 1.5fr;
  }
  .block-travel-guide .guide-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .block-travel-guide .card-item {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }
  .block-travel-guide .card-item__content .title {
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-travel-guide {
    padding: 40px 0;
  }
  .block-travel-guide .guide-layout {
    grid-template-columns: 1.8fr 1.5fr;
  }
  .block-travel-guide .guide-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .block-travel-guide .card-item {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }
  .block-travel-guide .card-item__content .title {
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 767px) {
  .block-travel-guide {
    padding: 40px 0;
  }
  .block-travel-guide .guide-layout {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .block-travel-guide .guide-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .block-travel-guide .card-item {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }
  .block-travel-guide .card-item__content .title {
    -webkit-line-clamp: 2;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .block-travel-guide .view-more-container .btn-more {
    min-width: 150px;
    height: 44px;
  }
}
.block-client-reviews {
  padding: 70px 0;
  position: relative;
}
.block-client-reviews:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: linear-gradient(360deg, rgba(237, 244, 242, 0) 0%, #e6eeec 67.91%);
}
.block-client-reviews .review-slider {
  margin-top: 50px;
  position: relative;
}
.block-client-reviews .review-card {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.block-client-reviews .review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.block-client-reviews .review-card__header .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.block-client-reviews .review-card__header .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-client-reviews .review-card__header .quote-icon {
  flex: 1;
  left: 90px;
  position: absolute;
  bottom: 0;
}
.block-client-reviews .review-card__header .stars {
  display: flex;
  gap: 4px;
}
@media (max-width: 575px) {
  .block-client-reviews .review-card__header .avatar {
    width: 60px;
    height: 60px;
  }
  .block-client-reviews .review-card__header .quote-icon {
    left: 70px;
  }
}
.block-client-reviews .review-card__body {
  font-size: 18px;
  color: #232323;
  line-height: 28px;
  margin-bottom: 24px;
  flex: 1;
}
@media (max-width: 575px) {
  .block-client-reviews .review-card__body {
    font-size: 16px;
    line-height: 24px;
  }
}
.block-client-reviews .review-card__media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 326/194;
  cursor: pointer;
}
.block-client-reviews .review-card__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.3s;
}
.block-client-reviews .review-card__media .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.block-client-reviews .review-card__media .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.block-client-reviews .review-card__media .play-btn::before, .block-client-reviews .review-card__media .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.block-client-reviews .review-card__media .play-btn::before {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5);
}
.block-client-reviews .review-card__media .play-btn::after {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.2);
}
.block-client-reviews .review-card__media .play-btn img {
  width: 13px;
  position: relative;
  left: 1px;
}
.block-client-reviews .review-card__media:hover .play-btn::before {
  transform: translate(-50%, -50%) scale(1.15);
}
.block-client-reviews .review-card__media:hover .play-btn::after {
  transform: translate(-50%, -50%) scale(1.25);
}
.block-client-reviews .review-card__footer {
  border-left: 3px solid var(--green-text);
  padding-left: 12px;
}
.block-client-reviews .review-card__footer .author-name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #232323;
  margin-bottom: 4px;
}
.block-client-reviews .review-card__footer .review-date {
  font-size: 15px;
  line-height: 1.2;
  color: #737373;
}
.block-client-reviews .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-client-reviews {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .block-client-reviews {
    padding: 50px 0;
  }
  .block-client-reviews .review-card {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .block-client-reviews {
    padding: 30px 0;
  }
  .block-client-reviews .review-card {
    padding: 16px;
  }
}
.block-popular-tags {
  padding: 40px 0;
  border-top: 1px solid #eee;
}
.block-popular-tags .tags-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 100px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-popular-tags .tags-layout {
    gap: 30px 50px;
  }
}
.block-popular-tags .tags-title {
  font-size: 18px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 20px;
}
.block-popular-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.block-popular-tags .tags-list .tag-item {
  display: inline-block;
  padding: 6px 8px;
  background: #edf1f3;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
  color: #4a5257;
  transition: all 0.3s ease;
}
.block-popular-tags .tags-list .tag-item:hover {
  background: var(--green-text);
  color: #fff;
}

@media (max-width: 1199px) {
  .block-popular-tags {
    padding: 30px 0;
  }
  .block-popular-tags .tags-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.banner-list {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.banner-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(84.18deg, rgba(14, 54, 46, 0.7) 40.86%, rgba(14, 54, 46, 0.3) 95.54%);
}
.banner-list__container {
  position: relative;
  z-index: 2;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}
.banner-list__content {
  position: relative;
}
.banner-list__title {
  font-size: 41px;
  line-height: 1.3;
  font-weight: 700;
}
.banner-list__desc {
  font-size: 20px;
  line-height: 1.3;
  max-width: 570px;
  margin: 0 auto;
  font-weight: 400;
  color: #fff;
}
.banner-list__texture {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.banner-list__texture-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-list__desc {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-list__desc {
    max-width: 400px;
    font-size: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner-list__title {
    font-size: 36px;
  }
  .banner-list__desc {
    max-width: 400px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .banner-list__title {
    font-size: 36px;
  }
  .banner-list__desc {
    max-width: 500px;
    font-size: 16px;
  }
}

.product-list__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-list__layout {
    grid-template-columns: 270px 1fr;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-list__layout {
    grid-template-columns: 270px 1fr;
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .product-list__layout {
    display: flex;
    flex-direction: column;
  }
}
.product-list__sidebar {
  min-width: 0;
}

.product-list__filter {
  margin-bottom: 20px;
}

.product-list {
  padding: 50px 0;
}
.product-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 8px;
}
.product-list__filter-item {
  list-style: none;
}
.product-list__filter-item.is-active .product-list__filter-link {
  background: rgb(225, 174, 77);
  border-color: rgb(225, 174, 77);
  color: #fff;
}
.product-list .view-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #50ae9c;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s;
}
.product-list .view-more img {
  margin-top: 1px;
}
.product-list .view-more:hover {
  color: #3bb79e;
  text-decoration: underline;
}
.product-list__filter-link {
  display: block;
  padding: 6px 12px;
  color: rgb(88, 103, 112);
  font-weight: 400;
  font-size: 15px;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  transition: all 0.3s;
}
.product-list__filter-link:hover {
  background: rgb(225, 174, 77);
  border-color: rgb(225, 174, 77);
  color: #fff;
}
@media (max-width: 1199px) {
  .product-list {
    padding: 30px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-list__filter-link {
    font-size: 14px;
    padding: 6px 10px;
  }
}
@media (max-width: 575px) {
  .product-list__filter-list {
    margin: 0 -15px 16px -15px;
    padding: 0 15px;
  }
}

.product-list__intro {
  background: rgb(236, 243, 241);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 24px;
}
.product-list__intro-text {
  font-size: 15px;
  line-height: 1.6;
  color: #313131;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.product-list__intro-more {
  display: inline-block;
  color: #ebae4d;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
}
.product-list__intro-more:hover {
  color: #d19a44;
  text-decoration: underline;
}
.product-list__intro.is-expanded .product-list__intro-text {
  -webkit-line-clamp: initial;
  line-clamp: initial;
  display: block;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .grid-products {
    gap: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-products {
    grid-template-columns: 1fr 1fr;
  }
}

.products-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.products-summary__results {
  flex: 1;
  color: #939393;
  font-size: 16px;
  font-weight: 500;
}
.products-summary__sort {
  position: relative;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  overflow: hidden;
}
.products-summary__select {
  height: 32px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 34px 0 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  font-size: 15px;
  color: #3C434D;
}
.products-summary__icon {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-list__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 0;
}
.product-list__toolbar .product-list__results {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
}
.product-list__toolbar .sort-select-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product-list__toolbar .sort-select-wrapper {
    gap: 8px;
  }
}
.product-list__toolbar .sort-select-wrapper .sort-icon {
  display: flex;
  align-items: center;
}
.product-list__toolbar .sort-select-wrapper .sort-icon img {
  width: 32px;
  height: 32px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .product-list__toolbar .sort-select-wrapper .sort-icon img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 575px) {
  .product-list__toolbar .sort-select-wrapper .sort-icon img {
    width: 20px;
    height: 20px;
  }
}
.product-list__toolbar .sort-select-wrapper .sort-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  color: #3C434D;
  padding: 0 25px 0 0;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
@media (max-width: 767px) {
  .product-list__toolbar .sort-select-wrapper .sort-select {
    font-size: 14px;
  }
}
.product-list__toolbar .sort-select-wrapper .arrow-icon {
  position: absolute;
  right: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.product-list__toolbar .sort-select-wrapper .arrow-icon img {
  width: 14px;
}
@media (max-width: 767px) {
  .product-list__toolbar .sort-select-wrapper .arrow-icon img {
    width: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tour-list-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tour-list-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .tour-list-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .tour-list-flex {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tour-card-flex {
  display: flex;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.tour-card-flex:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #50ae9c;
}
.tour-card-flex__left {
  width: 400px;
  flex-shrink: 0;
  position: relative;
}
.tour-card-flex__left .tour-card-flex__slider {
  height: 100%;
  overflow: hidden;
}
.tour-card-flex__left .tour-card-flex__slider .image-tour-slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 280px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .tour-card-flex__left .tour-card-flex__slider .image-tour-slide {
    height: 240px;
  }
}
.tour-card-flex__left .tour-card-flex__slider .swiper-button-next,
.tour-card-flex__left .tour-card-flex__slider .swiper-button-prev {
  width: 30px;
  height: 30px;
  color: #fff;
  margin-top: 0;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  border-radius: 3px;
}
.tour-card-flex__left .tour-card-flex__slider .swiper-button-next:hover,
.tour-card-flex__left .tour-card-flex__slider .swiper-button-prev:hover {
  background: rgba(80, 174, 156, 0.8);
}
.tour-card-flex__left .tour-card-flex__slider .swiper-button-next {
  right: 10px;
  padding-left: 2px;
}
.tour-card-flex__left .tour-card-flex__slider .swiper-button-prev {
  left: 10px;
}
.tour-card-flex__left .tour-card-flex__slider:hover .swiper-button-next,
.tour-card-flex__left .tour-card-flex__slider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.tour-card-flex__right {
  flex: 1;
  padding: 16px 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-card-flex__right {
    padding: 12px;
  }
}
.tour-card-flex__title {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
  line-height: 1.3;
}
.tour-card-flex__title a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
.tour-card-flex__title a:hover {
  color: #2cbba0;
}
.tour-card-flex__locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.tour-card-flex__locations .loc-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2cbba0;
  font-size: 14px;
  font-weight: 600;
}
.tour-card-flex__locations .loc-item img {
  width: 14px;
}
.tour-card-flex__locations .sep {
  color: #4AC2AA;
  font-size: 12px;
}
.tour-card-flex__locations .tour-stars {
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card-flex__locations .tour-stars img {
  width: 14px;
  height: 14px;
}
.tour-card-flex__locations .standard-item {
  font-size: 15px;
  font-weight: 600;
  color: #232323;
}
.tour-card-flex__details {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  flex: 1;
}
.tour-card-flex__details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #737373;
  margin-bottom: 8px;
}
.tour-card-flex__details li img {
  position: relative;
  top: -1px;
  width: 24px;
  height: 24px;
}
.tour-card-flex__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tour-card-flex__footer .price-box {
  font-size: 16px;
  color: #313131;
}
.tour-card-flex__footer .price-box .price {
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  color: #e02667;
  margin-left: 5px;
}
.tour-card-flex__footer .rating-box {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #313131;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.tour-card-flex__footer .rating-box .score {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.tour-card-flex__footer .rating-box img {
  top: -2px;
  position: relative;
  width: 20px;
  height: 20px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .tour-card-flex__left {
    width: 360px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .tour-card-flex__left {
    width: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-card-flex {
    flex-direction: column;
    margin: 0;
  }
  .tour-card-flex__left {
    width: 100%;
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tour-card-flex {
    flex-direction: column;
    margin: 0;
  }
  .tour-card-flex__left {
    width: 100%;
    height: 220px;
  }
  .tour-card-flex__right {
    padding: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .tour-card-flex {
    flex-direction: column;
    margin: 0;
  }
  .tour-card-flex__left {
    width: 100%;
    height: 220px;
  }
  .tour-card-flex__right {
    padding: 12px;
  }
}
@media (max-width: 575px) {
  .tour-card-flex {
    flex-direction: column;
    margin: 0;
  }
  .tour-card-flex__left {
    width: 100%;
    height: 220px;
  }
  .tour-card-flex__right {
    padding: 12px;
  }
  .tour-card-flex__footer {
    gap: 4px;
  }
  .tour-card-flex__footer .price-box {
    font-size: 16px;
    color: #313131;
  }
  .tour-card-flex__footer .price-box .price {
    font-size: 24px;
    line-height: 20px;
    font-weight: 700;
    color: #e02667;
    margin-left: 5px;
  }
}

.contact-item {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  color: rgb(224, 38, 103);
}
.contact-item:hover {
  color: #e02667;
  text-decoration: none;
}

.tour-cta {
  background: #EDF6F4;
  padding: 24px 0;
}
.tour-cta__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991px) {
  .tour-cta__layout {
    flex-direction: column;
    text-align: center;
  }
}
.tour-cta__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tour-cta__icon {
  flex-shrink: 0;
}
.tour-cta__icon svg {
  display: block;
}
.tour-cta__title {
  font-size: 20px;
  font-weight: 600;
  color: #30BEA2;
  margin: 0;
}
.tour-cta__right {
  display: flex;
  gap: 12px;
}
@media (max-width: 575px) {
  .tour-cta__right {
    flex-direction: column;
    width: 100%;
  }
}
.tour-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #4AC2AA;
  text-transform: uppercase;
  background: transparent;
  color: #4AC2AA;
}
@media (max-width: 575px) {
  .tour-cta .btn-cta {
    min-width: auto;
    width: 100%;
  }
}
.tour-cta .btn-cta:hover {
  background: #4AC2AA;
  color: #fff;
}

.tour-quick-links {
  padding: 50px 0;
}
@media (max-width: 991px) {
  .tour-quick-links {
    padding: 30px 0;
  }
}
.tour-quick-links__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
@media (max-width: 991px) {
  .tour-quick-links__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.tour-quick-links .quick-links-group .quick-links-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #313131;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .tour-quick-links .quick-links-group .quick-links-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.tour-quick-links .quick-links-group .quick-links-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tour-quick-links .quick-links-group .quick-links-tags a {
  display: block;
  padding: 3px 8px;
  background: #ECF0F4;
  border-radius: 6px;
  color: #4A5257;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tour-quick-links .quick-links-group .quick-links-tags a:hover {
  background: #ebae4d;
  color: #fff;
}

.banner-detail {
  padding: 60px 0 80px 0;
  background: linear-gradient(180deg, #ECF3F1 0%, rgba(236, 243, 241, 0.8) 100%);
}
.banner-detail .container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-detail .section-title__big {
  font-size: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-detail .section-title__big {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .banner-detail .section-title__big {
    font-size: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-detail {
    padding: 40px 0 80px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-detail {
    padding: 40px 0 80px 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner-detail {
    padding: 40px 0 80px 0;
  }
}
@media (max-width: 575px) {
  .banner-detail {
    padding: 30px 0 60px 0;
  }
}

.block-detail-products {
  position: relative;
}

.gallery {
  width: 100%;
}
.gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
  gap: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gallery__list {
    grid-template-rows: repeat(2, 160px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallery__list {
    grid-template-rows: repeat(2, 160px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .gallery__list {
    grid-template-rows: repeat(2, 100px);
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
.gallery__item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 575px) {
  .gallery__item {
    height: 120px;
  }
  .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 200px;
  }
}
.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}
.gallery__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(219, 157, 37, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 575px) {
  .gallery__number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tour-detail-nav {
  background: transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  position: sticky;
  top: 72px;
  z-index: 5;
  margin-bottom: 40px;
  transition: all 0.3s;
}
.tour-detail-nav.open-sticky {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-nav {
    top: 60px;
  }
}
@media (max-width: 991px) {
  .tour-detail-nav {
    top: 60px;
  }
}
.tour-detail-nav .nav-tabs-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}
.tour-detail-nav .nav-tabs-list::-webkit-scrollbar {
  display: none;
}
.tour-detail-nav .nav-tabs-list li {
  flex-shrink: 0;
}
.tour-detail-nav .nav-tabs-list li a {
  display: block;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #2F2F2F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.tour-detail-nav .nav-tabs-list li a:hover {
  color: #efb851;
}
.tour-detail-nav .nav-tabs-list li.active a {
  color: #efb851;
}
.tour-detail-nav .nav-tabs-list li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #efb851;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-nav .nav-tabs-list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .tour-detail-nav .nav-tabs-list {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .tour-detail-nav .nav-tabs-list {
    margin: 0 -15px;
    padding: 0 15px;
    flex-wrap: nowrap;
  }
  .tour-detail-nav .nav-tabs-list li a {
    padding: 12px 0;
  }
}

.block-tour-detail {
  margin-top: -60px;
  padding: 0 0 40px 0;
  background: #fff;
  overflow: visible !important;
}
.block-tour-detail .container-flex {
  display: flex;
  gap: 40px;
  overflow: visible !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-tour-detail .container-flex {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .block-tour-detail .container-flex {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .block-tour-detail {
    margin-top: -46px;
  }
}

.tour-detail-left {
  flex: 1;
  min-width: 0;
}
@media (max-width: 991px) {
  .tour-detail-left {
    width: 100%;
  }
}

.tour-detail-right {
  width: 360px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .tour-detail-right {
    width: 100%;
  }
}

.detail-section {
  margin-bottom: 60px;
  scroll-margin-top: 150px;
}
@media (max-width: 991px) {
  .detail-section {
    scroll-margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .detail-section {
    scroll-margin-top: 100px;
    margin-bottom: 40px;
  }
}
.detail-section__title {
  font-size: 34px;
  font-weight: 700;
  color: #383838;
  margin-bottom: 24px;
  font-family: "vietinsider", sans-serif;
}
.detail-section__title .icon {
  position: relative;
  top: -2px;
  margin-left: 6px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .detail-section__title {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .detail-section__title {
    font-size: 24px;
  }
}

.overview-card {
  display: flex;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 576px) and (max-width: 767px) {
  .overview-card {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .overview-card {
    flex-direction: column;
  }
}

.overview-map {
  width: 280px;
  height: 386px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border-right: 1px solid #e1e8ed;
}
.overview-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .overview-map {
    width: 200px;
    height: 280px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .overview-map {
    width: 100%;
    height: 280px;
  }
}
@media (max-width: 575px) {
  .overview-map {
    width: 100%;
    height: 200px;
    border-right: none;
  }
}

.overview-info {
  flex: 1;
  padding: 20px 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .overview-info {
    padding: 12px 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .overview-info {
    padding: 12px 0 0 0;
  }
}
@media (max-width: 575px) {
  .overview-info {
    padding: 16px 0 0 0;
    gap: 16px;
  }
}
.overview-info .tour-card-flex__locations {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.overview-info .tour-card-flex__locations .loc-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #30BEA2;
}
.overview-info .tour-card-flex__locations .loc-item img {
  width: 11px;
}
.overview-info .tour-card-flex__locations .sep {
  color: #4AC2AA;
  font-size: 14px;
  margin: 0 2px;
}
.overview-info .tour-card-flex__locations .standard-item {
  position: relative;
  top: 2px;
}
.overview-info .tour-card-flex__locations .tour-stars img {
  width: 20px;
  height: 20px;
}
.overview-info .tour-card-flex__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overview-info .tour-card-flex__details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #737373;
  margin: 0;
}
.overview-info .tour-card-flex__details li img {
  width: 24px;
  flex-shrink: 0;
}

.highlight-note {
  background: #FBF6E7;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.highlight-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-note ul li {
  position: relative;
  color: #C28A07;
  font-weight: 400;
  margin-bottom: 6px;
  list-style: none;
  padding-left: 16px;
}
.highlight-note ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #E0A10E;
  border-radius: 50%;
}
.highlight-note ul li:last-child {
  margin-bottom: 0;
}

.highlight-content p {
  font-size: 15px;
  line-height: 26px;
  color: #323232;
  margin-bottom: 20px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-list li {
  position: relative;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.highlight-list li:last-child {
  margin-bottom: 0;
}
.highlight-list li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  display: inline-block;
  width: 120px;
  height: 24px;
  background: linear-gradient(270deg, rgba(48, 190, 162, 0) 0%, #30BEA2 100%);
  opacity: 0.2;
  border-radius: 50px 0px 0px 50px;
}
.highlight-list li .text {
  font-size: 15px;
  line-height: 1.3;
  color: #343434;
  flex: 1;
  position: relative;
  top: 2px;
}
.highlight-list li .icon {
  width: 16px;
}

.booking-sticky {
  position: sticky;
  top: 146px;
}
@media (max-width: 991px) {
  .booking-sticky {
    position: static;
  }
}

.booking-card {
  border: 4px solid #48c1a6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  max-height: calc(100vh - 166px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .booking-card {
    max-height: none;
    overflow-y: visible;
  }
}
.booking-card__header {
  margin-bottom: 12px;
}
.booking-card__header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
}
.booking-card__header .date-input {
  position: relative;
}
.booking-card__header .date-input input {
  width: 100%;
  height: 48px;
  border: 1px solid #e1e8ed;
  border-radius: 6px;
  padding: 0 16px 0 15px;
  font-size: 16px;
  color: #232323;
  background: #fff;
  cursor: pointer;
}
.booking-card__header .date-input .calendar-icon {
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.booking-card__header .date-input .calendar-icon img {
  width: 24px;
}

.price-table {
  margin-bottom: 12px;
}
.price-table .price-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
}
.price-table .price-row .name {
  width: 80px;
  font-size: 16px;
  font-weight: 500;
  color: #383838;
}
.price-table .price-row .price strong {
  color: #E02667;
  font-size: 16px;
  font-weight: 700;
}
.price-table .price-row .flex-1 {
  flex: 1;
  text-align: right;
  font-size: 15px;
  color: #383838;
}
.price-table .price-row.highlight {
  padding-top: 15px;
  border-bottom: none;
}
.price-table .price-row.highlight .badge-price {
  background: #fff9ea;
  color: #D77500;
  height: 28px;
  border-radius: 100px;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-view-prices {
  width: 100%;
  height: 48px;
  background: #48c1a6;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.btn-view-prices:hover {
  background: #36a68d;
}

.video-web {
  margin-top: 24px;
}
.video-web .layout-video-web {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  height: 600px;
}
.video-web .layout-video-web .img-video-web {
  width: 100%;
  height: 100%;
}
.video-web .layout-video-web .img-video-web img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-web .layout-video-web .play-control-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-web .layout-video-web .play-control-intro::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%), url(image.png);
  border-radius: 8px;
  transition: 0.4s;
}
.video-web .layout-video-web .play-control-intro .ct-control {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-web .layout-video-web .play-control-intro .ct-control .wp-btn {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
}
.video-web .layout-video-web .play-control-intro .ct-control .wp-btn .icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-web .layout-video-web .play-control-intro .ct-control .wp-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.video-web .layout-video-web .play-control-intro .ct-control .wp-btn .circle-ani-small {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  border-radius: 50%;
  transform: scale(1);
  transition: 0.5s;
}
.video-web .layout-video-web .play-control-intro .ct-control .wp-btn .circle-ani-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.5);
  transition: 0.7s;
  border-radius: 50%;
  opacity: 1;
  z-index: 2;
}
.video-web .layout-video-web .play-control-intro:hover::before {
  opacity: 0.7;
}
.video-web .layout-video-web .play-control-intro:hover .ct-control .wp-btn .circle-ani-small {
  transform: scale(1.3);
}
.video-web .layout-video-web .play-control-intro:hover .ct-control .wp-btn .circle-ani-large {
  transform: scale(3);
  opacity: 0;
}
.video-web .layout-video-web .video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.video-web .layout-video-web .video-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-web .layout-video-web.is-active .img-video-web,
.video-web .layout-video-web.is-active .play-control-intro {
  display: none;
}
.video-web .layout-video-web.is-active .video-iframe {
  display: block;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .video-web .layout-video-web {
    height: 500px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .video-web .layout-video-web {
    height: 400px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .video-web .layout-video-web {
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-web .layout-video-web {
    height: 450px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .video-web .layout-video-web {
    height: 300px;
  }
  .video-web .layout-video-web .play-control-intro .ct-control {
    width: 50px;
    height: 50px;
  }
  .video-web .layout-video-web .play-control-intro .ct-control .wp-btn .icon {
    width: 15px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .video-web .layout-video-web {
    height: 300px;
  }
  .video-web .layout-video-web .play-control-intro .ct-control {
    width: 45px;
    height: 45px;
  }
  .video-web .layout-video-web .play-control-intro .ct-control .wp-btn .icon {
    width: 15px;
    height: 20px;
  }
}

.price-filter {
  margin-bottom: 24px;
}
.price-filter .date-input {
  position: relative;
  width: 280px;
}
@media (max-width: 575px) {
  .price-filter .date-input {
    width: 100%;
  }
}
.price-filter .date-input input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  padding-right: 40px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background: #fff;
  cursor: pointer;
}
.price-filter .date-input .calendar-icon {
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  pointer-events: none;
}
.price-filter .date-input .calendar-icon img {
  width: 100%;
}

.price-table-container {
  overflow-x: auto;
}
.price-table-container::-webkit-scrollbar {
  height: 6px;
}
.price-table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.price-table-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.price-tour-table {
  width: 100%;
  border-collapse: collapse;
}
.price-tour-table thead tr {
  background: #2CAD93;
}
.price-tour-table thead th {
  padding: 16px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.price-tour-table thead th img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.price-tour-table tbody tr:last-child {
  border-bottom: none;
}
.price-tour-table tbody tr:nth-child(even) {
  border-radius: 4px;
  background: #F5F8F7;
}
.price-tour-table tbody td {
  padding: 10px 20px;
  vertical-align: middle;
  color: #383838;
  font-size: 16px;
}
.price-tour-table tbody .group-name {
  font-weight: 500;
  color: #2F2F2F;
}
.price-tour-table tbody .price-val {
  color: #E02667;
  font-size: 16px;
  font-weight: 700;
}
.price-tour-table tbody .price-val span {
  font-size: 15px;
  font-weight: 400;
  color: #737373;
  margin-left: 2px;
}
.price-tour-table tbody .btn-book-now-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #4ac2aa;
  border-radius: 4px;
  color: #4ac2aa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: #fff;
  min-width: 110px;
}
.price-tour-table tbody .btn-book-now-table:hover {
  background: #4ac2aa;
  color: #fff;
}
.price-tour-table tbody .price-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF1DC;
  padding: 4px 8px;
  border-radius: 20px;
  color: #D68C00;
  font-size: 15px;
  font-weight: 400;
}
.price-tour-table tbody .price-alert img {
  width: 24px;
}

.itinerary-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 24px;
}
.itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  bottom: 10px;
  width: 1px;
  border-left: 1px dashed #2CAD93;
  opacity: 0.5;
  height: calc(100% - 36px);
}

.itinerary-day {
  position: relative;
  margin-bottom: 12px;
  background: #F5F8F7;
  border-radius: 8px;
  padding: 12px;
}
.itinerary-day:last-child {
  margin-bottom: 0;
}
.itinerary-day .dot {
  position: absolute;
  left: -28px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #62B8A7;
  border-radius: 50%;
  z-index: 1;
}
.itinerary-day__header {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  border-radius: 8px 8px 0 0;
}
.itinerary-day__header .header-content {
  display: flex;
  align-items: center;
  width: 100%;
}
.itinerary-day__header .day-title {
  font-size: 15px;
  font-weight: 700;
  color: #383838;
  flex: 1;
  margin-left: 8px;
}
.itinerary-day__header .icon-toggle {
  transition: transform 0.3s;
}
.itinerary-day__header .icon-toggle svg path {
  stroke: #383838;
}
.itinerary-day.is-active .itinerary-day__header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.itinerary-day.is-active .itinerary-day__header .icon-toggle {
  transform: rotate(180deg);
}
.itinerary-day.is-active .itinerary-day__body {
  display: block;
}
.itinerary-day__body {
  margin-top: 8px;
  border-radius: 6px;
  padding: 16px 24px;
  background: #fff;
  display: none;
  font-size: 16px;
  color: #2E2E2E;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .itinerary-day__body {
    padding: 12px;
  }
}

.day-desc {
  margin-bottom: 24px;
}
.day-desc p {
  color: #2E2E2E;
  margin: 0;
}

.day-options {
  margin-bottom: 24px;
}
.day-options .option-item {
  margin-bottom: 20px;
}
.day-options .option-item:last-child {
  margin-bottom: 0;
}
.day-options .option-title {
  font-size: 16px;
  font-weight: 700;
  color: #D9A808;
  margin-bottom: 10px;
}
.day-options .time-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day-options .time-list li {
  font-size: 14px;
  color: #383838;
  margin-bottom: 6px;
}
.day-options .time-list li strong {
  font-weight: 700;
}

.day-gallery {
  margin-bottom: 24px;
}
.day-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .day-gallery .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .day-gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .day-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .day-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.day-gallery .gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.day-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.day-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.day-gallery .gallery-item .has-more {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.day-gallery .gallery-item .more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 157, 37, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .day-gallery .gallery-item .more-overlay {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .day-gallery .gallery-item .more-overlay {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.day-meta .meta-block {
  margin-bottom: 24px;
}
.day-meta .meta-block:last-child {
  margin-bottom: 0;
}
.day-meta .meta-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #AFAFAF;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.day-meta .meta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
}
@media (max-width: 991px) {
  .day-meta .meta-list {
    grid-template-columns: 1fr;
  }
}
.day-meta .meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.day-meta .meta-list li .text {
  line-height: 1.3;
  font-size: 16px;
  color: #2E2E2E;
  flex: 1;
}
.day-meta .meta-list li img {
  width: 16px;
  margin-top: 2px;
}
.day-meta .accommodation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
@media (max-width: 991px) {
  .day-meta .accommodation-grid {
    grid-template-columns: 1fr;
  }
}
.day-meta .acc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.day-meta .acc-item .icon-acc {
  width: 26px;
  height: 26px;
  background: #289B84;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.day-meta .acc-item .acc-val {
  position: relative;
  top: 2px;
  flex: 1;
  font-size: 15px;
  color: #232323;
  line-height: 1.4;
}
.day-meta .acc-item .acc-val strong {
  font-weight: 700;
}

.itinerary-timeline.itinerary-timeline-duthuyen {
  padding: 0;
}
.itinerary-timeline.itinerary-timeline-duthuyen:before {
  display: none;
}
.itinerary-timeline.itinerary-timeline-duthuyen .itinerary-day__body {
  display: block;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.booking-card--alt {
  border: 3px solid #38C4A8;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}
.booking-card--alt .booking-card__header {
  margin-bottom: 20px;
}
.booking-card--alt .booking-card__header h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.price-item.price-row.highlight .v-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.btn-book-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border: 1.5px solid #38C4A8;
  border-radius: 4px;
  padding: 0 12px;
  color: #4AC2AA;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-left: 8px;
}
.btn-book-small:hover {
  background: #38C4A8;
  color: #fff;
  text-decoration: none;
}

.badge-price--alt {
  margin-left: 0;
  background: #FFF8EE;
  color: #F8931F;
  padding: 0 8px;
  height: 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.badge-price--alt img {
  width: 15px;
}

.inclusions-box {
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  display: flex;
}
@media (max-width: 991px) {
  .inclusions-box {
    flex-direction: column;
  }
}

.inclusions-col {
  flex: 1;
  padding: 20px 28px;
}
@media (max-width: 767px) {
  .inclusions-col {
    padding: 12px;
  }
}

.inclusions-title {
  font-size: 16px;
  font-weight: 600;
  color: #AFAFAF;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.inclusions-list li:last-child {
  margin-bottom: 0;
}
.inclusions-list li img {
  width: 14px;
  margin-top: 5px;
}
.inclusions-list li .text {
  font-size: 16px;
  color: #2E2E2E;
  line-height: 1.5;
  flex: 1;
}

.inclusions-divider {
  width: 1px;
  background: #EEEEEE;
}
@media (max-width: 991px) {
  .inclusions-divider {
    width: 100%;
    height: 1px;
  }
}

.review__summary {
  display: flex;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .review__summary {
    flex-direction: column;
    gap: 12px;
  }
}
.review__score {
  width: 240px;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #e4e4e4;
}
@media (min-width: 576px) and (max-width: 767px) {
  .review__score {
    width: 210px;
    margin-right: 15px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .review__score {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
  }
}
.review__number {
  color: #383838;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .review__number {
    font-size: 28px;
  }
}
.review__label {
  color: #294758;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  width: 120px;
}
.review__stars {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.review__star {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__note {
  color: #5c5c5c;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 8px;
}
.review__action .review__write {
  display: inline-flex;
  color: #ff2c79;
  font-size: 16px;
  letter-spacing: 0.15px;
  font-weight: 600;
  text-decoration: underline;
}
.review__action .review__write:hover {
  text-decoration: underline;
}
.review__stats {
  flex: 1;
  display: grid;
  gap: 12px;
}
@media (max-width: 575px) {
  .review__stats {
    flex: none;
    width: 100%;
  }
}
.review__stat {
  display: flex;
  align-items: center;
}
.review__stat-name {
  color: #383838;
  width: 95px;
  font-size: 16px;
  line-height: 18px;
}
.review__stat-bar {
  flex: 1;
  background: #e9ebed;
  border-radius: 100px;
  height: 8px;
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}
.review__progress {
  position: absolute;
  left: 0;
  height: 100%;
  background: #38C4A8;
  border-radius: 100px;
}
.review__stat-count {
  width: 36px;
  text-align: left;
  color: #919ba1;
  font-size: 16px;
}
.review__comments {
  padding-top: 16px;
  display: grid;
  gap: 24px 0;
}
.review__comment {
  display: flex;
  align-items: flex-start;
}
.review__comment .review__stars {
  gap: 4px;
}
.review__comment .review__stars .review__star {
  width: 14px;
  height: 14px;
}
.review__avatar {
  width: 32px;
  height: 32px;
}
.review__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.review__content {
  flex: 1;
  margin-left: 8px;
}
.review__name {
  color: #141414;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.review__text {
  color: #294758;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 8px;
}
.review__text .tag {
  color: #437bde;
}
.review__date {
  color: #a3a3a3;
  font-size: 12px;
}
.review__view-more {
  margin-left: 40px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #50AE9C;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.review__view-more:hover {
  text-decoration: underline;
}
.review__media {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.review__media-item.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.review__media-item.video:hover::before {
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.review__media-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
  transition: all 0.3s ease;
}
.review__media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.review__media-item:hover img {
  transform: scale(1.05);
}
.review__media-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.review__media-item .play-icon img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .review__media {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .review__media {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .review__media {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .review__media {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .review__media {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 575px) {
  .review__media {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.is-active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-item.is-active .icon-toggle {
  transform: rotate(180deg);
}
.faq-item.is-active .faq-body {
  display: block;
}

.faq-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: #fff;
}
.faq-header .faq-title {
  font-size: 16px;
  font-weight: 500;
  color: #383838;
  flex: 1;
}
.faq-header .icon-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.faq-header .icon-toggle svg path {
  stroke: #737373;
}
.faq-header:hover {
  background: #F9F9F9;
}

.faq-body {
  padding: 8px 20px 20px 44px;
  display: none;
}
.faq-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 575px) {
  .faq-body {
    padding: 8px 16px 16px 20px;
  }
}

.pricing-container {
  background: #fff;
  padding: 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pricing-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pricing-card {
  border-radius: 6px;
  overflow: hidden;
  background: #F0F4F3;
  padding: 12px;
}
.pricing-card__header {
  background: #505978;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card__body {
  padding-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.pricing-card__body .price-val {
  font-size: 15px;
  line-height: 20px;
  color: #313131;
  display: flex;
  align-items: flex-end;
  flex: 1;
}
.pricing-card__body .price-val strong {
  margin-left: 4px;
  color: #FF2C79;
  font-size: 16px;
  display: block;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
}
.quantity-selector .btn-qty {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: none;
  background: #F1F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.quantity-selector .btn-qty:hover {
  background: #E8ECEC;
}
.quantity-selector .btn-qty svg {
  display: block;
}
.quantity-selector .qty-input {
  width: 38px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #3A3A3A;
  background: transparent;
  padding: 0;
  margin: 0 5px;
  -moz-appearance: textfield;
  -webkit-appearance: none;
          appearance: none;
}
.quantity-selector .qty-input::-webkit-outer-spin-button, .quantity-selector .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .pricing-footer {
    flex-direction: column;
    align-items: flex-end;
  }
}
.pricing-footer .date-selector {
  flex: 1;
  max-width: 280px;
}
@media (max-width: 767px) {
  .pricing-footer .date-selector {
    max-width: 100%;
    width: 100%;
  }
}
.pricing-footer .date-selector .date-input {
  position: relative;
}
.pricing-footer .date-selector .date-input input {
  width: 100%;
  height: 48px;
  border: 1px solid #DDD;
  border-radius: 8px;
  padding: 0 16px 0 15px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  background: #fff;
}
.pricing-footer .date-selector .date-input .calendar-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.6;
}

.pricing-total-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .pricing-total-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.pricing-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.pricing-total .total-label {
  font-size: 15px;
  font-weight: 600;
  color: #232323;
}
.pricing-total .total-value {
  font-size: 22px;
  font-weight: 600;
  color: #E02667;
  line-height: 1;
}
@media (max-width: 575px) {
  .pricing-total {
    width: 100%;
  }
}

.cabin-booking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cabin-booking-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}
.cabin-booking-item:hover .cabin-booking-item__name {
  color: #50AE9C;
}
.cabin-booking-item__img {
  width: 97px;
  height: 73px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.cabin-booking-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cabin-booking-item__info {
  flex: 1;
}
.cabin-booking-item__name {
  font-size: 15px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 2px;
  line-height: 1.3;
  transition: all 0.3s;
}
.cabin-booking-item__price {
  font-size: 14px;
  color: #666;
}
.cabin-booking-item__price strong {
  color: #E02667;
  font-size: 16px;
  font-weight: 700;
}

.btn-more-cabins {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #50AE9C !important;
  text-decoration: none;
  font-weight: 400;
}
.btn-more-cabins:hover {
  text-decoration: underline;
}

.btn-book-now-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4AC2AA;
  color: #fff;
  border: none;
  border-radius: 4px;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  min-width: 100px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(56, 196, 168, 0);
}
.btn-book-now-large:hover {
  background: rgb(50.3333333333, 176.1666666667, 151);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 196, 168, 0.3);
}
@media (max-width: 575px) {
  .btn-book-now-large {
    width: 100%;
  }
}

.cabin-filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cabin-filter-bar .cabin-filter__group {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.cabin-filter-bar .cabin-filter__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}
.cabin-filter-bar .date-input {
  position: relative;
}
.cabin-filter-bar .date-input input {
  width: 100%;
  height: 48px;
  border: 1px solid #DDD;
  border-radius: 6px;
  padding: 0 40px 0 15px;
  font-size: 15px;
  color: #333;
  background: #fff;
  cursor: pointer;
}
.cabin-filter-bar .date-input .calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
}
.cabin-filter-bar .date-input .calendar-icon img {
  width: 20px;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cabin-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

.cabin-persons-popup .form-select-trip {
  padding: 4px 23px 4px 12px;
}

.trip-select-box .cabin-persons-popup .arrow {
  width: 11px;
  right: 8px;
}

.cabin-filter__btn-check {
  height: 48px;
  padding: 0 20px;
  border: 1.5px solid #4AC2AA;
  border-radius: 6px;
  background: #fff;
  color: #4AC2AA;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cabin-filter__btn-check:hover {
  background: #4AC2AA;
  color: #fff;
}
@media (max-width: 991px) {
  .cabin-filter__btn-check {
    width: 100%;
  }
}

.cabin-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.cabin-accordion-item {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}

.cabin-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cabin-accordion-header:hover {
  background: #F9FAFB;
}
@media (max-width: 767px) {
  .cabin-accordion-header {
    flex-wrap: wrap;
  }
}

.cabin-accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.cabin-accordion-item.is-open .cabin-accordion-icon {
  transform: rotate(180deg);
}

.cabin-accordion-name {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  flex: 1;
}

.cabin-accordion-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 250px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cabin-accordion-header-right {
    width: 100%;
    justify-content: flex-start;
  }
}

.cabin-accordion-price-collapsed {
  font-size: 20px;
  font-weight: 700;
  color: #E02667;
  flex-shrink: 0;
}
.cabin-accordion-item.is-open .cabin-accordion-price-collapsed {
  display: none;
}

.cabin-accordion-badge-collapsed {
  font-size: 12px;
  font-weight: 600;
  color: #4AC2AA;
  border: 1.5px solid #4AC2AA;
  border-radius: 4px;
  padding: 3px 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.cabin-accordion-item.is-open .cabin-accordion-badge-collapsed {
  display: none;
}

.cabin-accordion-body {
  display: none;
  padding: 0 20px 20px;
  background: #fff;
}
.cabin-accordion-item.is-open .cabin-accordion-body {
  display: block;
}
@media (max-width: 575px) {
  .cabin-accordion-body {
    padding: 0 12px 12px;
  }
}

.cabin-detail-grid {
  display: grid;
  grid-template-columns: 376px 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .cabin-detail-grid {
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cabin-detail-grid {
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cabin-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .cabin-detail-grid {
    grid-template-columns: 1fr;
  }
}

.cabin-detail-slider {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.cabin-swiper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cabin-swiper .image-tour-slide {
  width: 100%;
  height: 278px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .cabin-swiper .image-tour-slide {
    height: 200px;
  }
}
.cabin-swiper .swiper-button-prev,
.cabin-swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  color: #fff;
  margin-top: 0;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  border-radius: 3px;
  z-index: 1;
}
.cabin-swiper .swiper-button-prev::after,
.cabin-swiper .swiper-button-next::after {
  display: none;
}
.cabin-swiper .swiper-button-prev:hover,
.cabin-swiper .swiper-button-next:hover {
  background: rgba(80, 174, 156, 0.8);
}
.cabin-swiper .swiper-button-prev {
  left: 8px;
}
.cabin-swiper .swiper-button-next {
  right: 8px;
  padding-left: 2px;
}

.cabin-detail-info {
  display: flex;
  flex-direction: column;
}
.cabin-detail-info .tour-card-flex__details {
  flex: none;
}

.cabin-detail-desc {
  margin-bottom: 12px;
}
.cabin-detail-desc p {
  font-size: 15px;
  color: #323232;
  line-height: 1.6;
  margin: 0;
}

.cabin-view-more {
  color: #E89C16;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.cabin-view-more:hover {
  text-decoration: underline;
  color: #E89C16;
}

.cabin-pricing-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  flex-wrap: wrap;
}

.cabin-price-pink {
  color: #E02667;
  font-weight: 400;
  font-size: 15px;
}

.cabin-pricing-divider {
  color: #ccc;
}
@media (max-width: 575px) {
  .cabin-pricing-divider {
    display: none;
  }
}

.cabin-selected-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cabin-selected-tags {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .cabin-selected-tags {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cabin-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F0F4F3;
  border-radius: 6px;
  padding: 18px;
  font-size: 16px;
  color: #232323;
  flex: 1;
  min-width: 200px;
}

.cabin-tag-count {
  font-weight: 600;
  color: #34C1A5;
  white-space: nowrap;
}

.cabin-tag-desc {
  color: #555;
}

.cabin-accordion-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cabin-footer-badge {
  font-size: 13px;
  font-weight: 600;
  color: #4AC2AA;
  border: 1.5px solid #4AC2AA;
  border-radius: 4px;
  padding: 5px 14px;
  white-space: nowrap;
}

.cabin-footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .cabin-footer-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}

.cabin-footer-price {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #E02667;
}

html.popup-open,
.popup-open {
  overflow: hidden;
}

.review-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.review-popup.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
}
.review-popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  pointer-events: none;
}
.review-popup__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 32px;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .review-popup__dialog {
    max-width: calc(100% - 32px);
    padding: 24px 20px;
  }
}
.review-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.review-popup__close:hover {
  background: #F0F0F0;
}
.review-popup__title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 24px;
  padding-right: 32px;
}
.review-popup__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-popup__rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-popup__comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-popup__comment .form-control-trip {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.review-popup__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.review-stars-input {
  display: flex;
  gap: 6px;
}

.review-star {
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}
.review-star:hover {
  transform: scale(1.15);
}
.review-star img {
  width: 30px;
  height: 30px;
  position: absolute;
  transition: opacity 0.15s;
}
.review-star .star-off {
  opacity: 1;
}
.review-star .star-on {
  opacity: 0;
}
.review-star.is-active .star-off, .review-star.is-hover .star-off {
  opacity: 0;
}
.review-star.is-active .star-on, .review-star.is-hover .star-on {
  opacity: 1;
}

.btn-review-cancel {
  height: 44px;
  padding: 0 24px;
  border: 1.5px solid #D0D0D0;
  border-radius: 6px;
  background: #fff;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-review-cancel:hover {
  border-color: #999;
  color: #333;
}

.btn-review-submit {
  height: 44px;
  padding: 0 28px;
  border: none;
  border-radius: 6px;
  background: #4AC2AA;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-review-submit:hover {
  background: rgb(57.2694214876, 169.9305785124, 147.3983471074);
}

.cabin-filter__item--persons {
  position: relative;
}

.cabin-persons-trigger {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cabin-persons-trigger .cabin-persons-label {
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.cabin-persons-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 3;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 20px;
  width: 320px;
}
.cabin-persons-popup.is-open {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cabin-persons-popup {
    left: auto;
    right: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .cabin-persons-popup {
    left: auto;
    right: 0;
  }
}

.cpp-row--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EFEFEF;
}

.cpp-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.cpp-select-wrap {
  width: 80px;
}

.cpp-cabins-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 400px;
  overflow-y: auto;
  margin-right: -12px;
  padding-right: 12px;
}
.cpp-cabins-list::-webkit-scrollbar {
  width: 6px;
}
.cpp-cabins-list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 3px;
}
.cpp-cabins-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.cpp-cabins-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (max-width: 575px) {
  .cpp-cabins-list {
    max-height: 300px;
  }
}

.cpp-cabin {
  padding: 16px 0;
  border-bottom: 1px solid #EFEFEF;
}
.cpp-cabin:first-child {
  padding-top: 0;
}
.cpp-cabin:last-child {
  border-bottom: none;
}
.cpp-cabin__title {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cpp-cabin__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cpp-cabin__row:last-child {
  margin-bottom: 0;
}
.cpp-cabin__row--bed {
  align-items: flex-start;
  margin-top: 4px;
}
.cpp-cabin__label {
  width: 80px;
  font-size: 14px;
  color: #444;
}

.cpp-bed-types {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}

.cpp-bed-btn {
  height: 32px;
  padding: 0 14px;
  border: 1.5px solid #DDD;
  border-radius: 20px;
  background: #fff;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.cpp-bed-btn:hover {
  border-color: #4AC2AA;
  color: #4AC2AA;
}
.cpp-bed-btn.is-active {
  background: #4AC2AA;
  border-color: #4AC2AA;
  color: #fff;
  font-weight: 600;
}

.cpp-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #EFEFEF;
  padding-top: 16px;
}

.cpp-btn-apply {
  height: 40px;
  padding: 0 28px;
  background: #4AC2AA;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cpp-btn-apply:hover {
  background: rgb(57.2694214876, 169.9305785124, 147.3983471074);
}

.cpp-ages-wrap {
  padding: 10px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cpp-ages-title {
  font-size: 13px;
  color: #888;
  width: 100%;
  margin-bottom: 0;
}

.cpp-age-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cpp-age-label {
  font-size: 14px;
  color: #555;
}

.itinerary-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .itinerary-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .itinerary-tabs::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  .itinerary-tabs {
    margin: 0 -15px;
    padding: 0 15px;
  }
}

.itinerary-tab {
  height: 38px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1.5px solid #D0D0D0;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.itinerary-tab:hover {
  border-color: #4AC2AA;
  color: #4AC2AA;
}
.itinerary-tab.is-active {
  background: #4AC2AA;
  border-color: #4AC2AA;
  color: #fff;
  font-weight: 600;
}

.itinerary-tab-panel {
  display: none;
}
.itinerary-tab-panel.is-active {
  display: block;
}

.review-popup__upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-review-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: 1.5px dashed #4AC2AA;
  border-radius: 8px;
  background: #F4FDFB;
  color: #4AC2AA;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-review-upload:hover {
  background: #E8F9F5;
  border-style: solid;
}

.review-media-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.review-media-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  flex-shrink: 0;
}
.review-media-item img, .review-media-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.review-media-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.review-media-remove:hover {
  background: rgba(224, 38, 103, 0.85);
}

.design-trip {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.design-trip__left {
  width: 50%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip__left {
    width: 40%;
    padding: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .design-trip__left {
    width: 40%;
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .design-trip__left {
    display: none;
  }
}
.design-trip__left .left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(14, 54, 46, 0.9) 15.29%, rgba(14, 54, 46, 0.2) 100%);
}
.design-trip__left .left-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}
.design-trip__left .logo-box .logo-white {
  width: 180px;
}
.design-trip__left .bottom-box .title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.design-trip__left .bottom-box .desc {
  font-size: 16px;
  opacity: 1;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .design-trip__left .bottom-box .title {
    font-size: 36px;
  }
  .design-trip__left .bottom-box .desc {
    font-size: 15px;
  }
}
.design-trip__right {
  flex: 1;
  min-width: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 991px) {
  .design-trip__right {
    overflow: visible;
  }
}
.design-trip__header {
  height: 70px;
  background: #EAF2F1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .design-trip__header {
    padding: 0 20px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .design-trip__header {
    padding: 0 15px;
  }
}
.design-trip__header .btn-home {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #313131;
}
.design-trip__header .btn-home .icon {
  width: 24px;
  display: flex;
}
.design-trip__header .btn-home .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  top: 2px;
}
@media (max-width: 575px) {
  .design-trip__header .btn-home .text {
    display: none;
  }
}
.design-trip__header .btn-home:hover {
  color: #4AC2AA;
}
.design-trip__header .btn-close-trip:hover svg path {
  stroke: #FA4040;
}
@media (max-width: 575px) {
  .design-trip__header .btn-close-trip svg {
    width: 16px;
  }
}
.design-trip__body {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 50px;
}
.design-trip__body::-webkit-scrollbar {
  width: 6px;
}
.design-trip__body::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip__body {
    padding: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .design-trip__body {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .design-trip__body {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .design-trip__body {
    padding: 20px 15px;
  }
}
.design-trip__body .section-title {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 40px;
  position: relative;
}
.design-trip__body .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #E1AE4D;
}
@media (max-width: 991px) {
  .design-trip__body .section-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
}
.design-trip__footer {
  height: 70px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  flex-shrink: 0;
  background: #fff;
}
@media (max-width: 991px) {
  .design-trip__footer {
    padding: 0 30px;
    height: 52px;
  }
}
@media (max-width: 575px) {
  .design-trip__footer {
    padding: 0 15px;
  }
}
.design-trip__footer .btn-prev-step {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #313131;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .design-trip__footer .btn-prev-step {
    font-size: 12px;
  }
}
.design-trip__footer .btn-prev-step svg path {
  transition: all 0.3s;
}
.design-trip__footer .btn-prev-step:hover {
  color: #4AC2AA;
}
.design-trip__footer .btn-prev-step:hover svg path {
  fill: #4AC2AA;
}
.design-trip .btn-next-step {
  background: #4AC2AA;
  color: #fff;
  border: none;
  height: 48px;
  min-width: 190px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.design-trip .btn-next-step:hover {
  background: #3eb59d;
  box-shadow: 0 4px 12px rgba(74, 194, 170, 0.3);
  color: #fff;
}
@media (max-width: 991px) {
  .design-trip .btn-next-step {
    min-width: 110px;
    height: 36px;
    letter-spacing: 0.2px;
  }
}
@media (max-width: 575px) {
  .design-trip .btn-next-step {
    min-width: 90px;
    padding: 0 12px;
  }
}

.step-progress {
  display: flex;
  align-items: center;
}

.step-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid #4AC2AA;
  transition: all 0.3s;
}
.step-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
  border: 2px dashed #4AC2AA;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.step-item .step-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item .step-icon img {
  filter: brightness(1) invert(0);
  transition: all 0.3s;
}
.step-item.is-completed {
  background: #4BC6B0;
}
.step-item.is-completed .step-icon img {
  filter: brightness(0) invert(1);
}
.step-item.is-active {
  background: #4BC6B0;
}
.step-item.is-active .step-icon img {
  filter: brightness(0) invert(1) grayscale(0) opacity(1);
}
.step-item.is-active::before {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .step-item {
    width: 32px;
    height: 32px;
  }
  .step-item .step-icon img {
    transform: scale(0.7);
  }
}

.step-line {
  width: 20px;
  height: 1px;
  background: #eee;
  margin: 0 10px;
}
.step-line span {
  display: block;
  height: 100%;
  background: #4BC6B0;
  width: 100%;
}
@media (max-width: 575px) {
  .step-line {
    width: 12px;
    margin: 0 6px;
  }
}

.form-label-trip {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px;
  display: block;
}
.form-label-trip .required {
  color: #FA4040;
}

.trip-radio-group, .trip-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trip-custom-radio, .trip-custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #313131;
  font-weight: 500;
  margin: 0;
}
.trip-custom-radio input, .trip-custom-checkbox input {
  display: none;
}
.trip-custom-radio .radio-mark, .trip-custom-radio .checkbox-mark, .trip-custom-checkbox .radio-mark, .trip-custom-checkbox .checkbox-mark {
  width: 18px;
  height: 18px;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}
.trip-custom-radio .radio-mark, .trip-custom-checkbox .radio-mark {
  background-image: url("../img-fix/elements/check-radio.svg");
}
.trip-custom-radio .checkbox-mark, .trip-custom-checkbox .checkbox-mark {
  background-image: url("../img-fix/elements/check-input.svg");
  border-radius: 0;
}
.trip-custom-radio input:checked + .radio-mark, .trip-custom-checkbox input:checked + .radio-mark {
  background-image: url("../img-fix/elements/checked-radio.svg");
}
.trip-custom-radio input:checked + .radio-mark:after, .trip-custom-checkbox input:checked + .radio-mark:after {
  display: none;
}
.trip-custom-radio input:checked + .checkbox-mark, .trip-custom-checkbox input:checked + .checkbox-mark {
  background-image: url("../img-fix/elements/checked-input.svg");
  background-color: transparent;
}
.trip-custom-radio input:checked + .checkbox-mark:after, .trip-custom-checkbox input:checked + .checkbox-mark:after {
  display: none;
}

.form-help-trip {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
  line-height: 1.6;
}

.form-control-trip {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  color: #313131;
  transition: all 0.3s;
  background: #fff;
}
.form-control-trip:focus {
  border-color: #4AC2AA;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 194, 170, 0.1);
}
.form-control-trip::-moz-placeholder {
  color: #bbb;
}
.form-control-trip::placeholder {
  color: #bbb;
}

textarea.form-control-trip {
  height: 140px;
  resize: none;
}

.form-bottom-help {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}

.trip-date-input, .trip-select-box {
  position: relative;
}
.trip-date-input .icon, .trip-select-box .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 20px;
  display: flex;
}
.trip-date-input .arrow, .trip-select-box .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.6;
  width: 18px;
  display: flex;
}

.form-select-trip {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 36px 12px 12px;
  font-size: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  color: #313131;
  cursor: pointer;
}
.form-select-trip:focus {
  border-color: #4AC2AA;
  outline: none;
}

.design-trip.visa-page .design-trip__left {
  width: 35%;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .design-trip.visa-page .design-trip__left {
    width: 30%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip.visa-page .design-trip__left {
    width: 30%;
  }
}
.design-trip.visa-page .visa-container {
  display: flex;
  gap: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip.visa-page .visa-container {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .design-trip.visa-page .visa-container {
    flex-direction: column;
    gap: 40px;
  }
}
.design-trip.visa-page .visa-process {
  flex: 1;
  border-right: 1px solid #eee;
  padding-right: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip.visa-page .visa-process {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .design-trip.visa-page .visa-process {
    border-right: none;
    padding-right: 0;
  }
}
.design-trip.visa-page .visa-steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .design-trip.visa-page .visa-steps-list {
    gap: 20px;
    margin-top: 30px;
  }
}
.design-trip.visa-page .visa-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.design-trip.visa-page .visa-step-icon {
  width: 58px;
  height: 58px;
  background: #4BC6B0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.design-trip.visa-page .visa-step-icon img {
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .design-trip.visa-page .visa-step-icon {
    width: 44px;
    height: 44px;
  }
  .design-trip.visa-page .visa-step-icon img {
    transform: scale(0.7);
  }
}
.design-trip.visa-page .visa-step-info {
  flex: 1;
}
.design-trip.visa-page .visa-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .design-trip.visa-page .visa-step-title {
    font-size: 16px;
  }
}
.design-trip.visa-page .visa-step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .design-trip.visa-page .visa-step-desc {
    font-size: 13px;
  }
}
.design-trip.visa-page .visa-fee-check {
  width: 420px;
  flex-shrink: 0;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .design-trip.visa-page .visa-fee-check {
    width: 350px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .design-trip.visa-page .visa-fee-check {
    width: 320px;
  }
}
@media (max-width: 1199px) {
  .design-trip.visa-page .visa-fee-check {
    width: 100%;
  }
}
.design-trip.visa-page .visa-fee-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 25px;
}
.design-trip.visa-page .visa-fee-result .fee-text .price {
  font-size: 22px;
  font-weight: 700;
  color: #E02667;
}
.design-trip.visa-page .visa-fee-result .fee-text .unit {
  font-size: 15px;
  color: #313131;
}
.design-trip.visa-page .visa-fee-result .btn-next-step {
  min-width: 160px;
}
@media (max-width: 575px) {
  .design-trip.visa-page .visa-fee-result .btn-next-step {
    min-width: 120px;
  }
}
.design-trip.visa-page .visa-fee-note {
  display: flex;
  gap: 12px;
  background: #FFF6EA;
  padding: 8px 12px;
  border-radius: 4px;
  align-items: center;
}
.design-trip.visa-page .visa-fee-note .note-icon {
  width: 24px;
  flex-shrink: 0;
  display: flex;
}
.design-trip.visa-page .visa-fee-note .note-icon img {
  width: 100%;
}
.design-trip.visa-page .visa-fee-note .note-text {
  font-size: 14px;
  color: #313131;
  line-height: 1.4;
  margin: 0;
}
.design-trip.visa-page .visa-fee-note .note-text a {
  color: #E1AE4D;
  font-weight: 600;
  text-decoration: underline;
}
.design-trip.visa-page .visa-fee-note .note-text a:hover {
  text-decoration: none;
}
.design-trip.visa-page .step-progress-visa {
  display: flex;
  align-items: center;
  gap: 0;
}
.design-trip.visa-page .step-progress-visa .step-item {
  width: 48px;
  height: 48px;
}
@media (max-width: 991px) {
  .design-trip.visa-page .step-progress-visa .step-item {
    width: 36px;
    height: 36px;
  }
}
.design-trip.visa-page .visa-accordion-item {
  margin-bottom: 15px;
  overflow: hidden;
  background: #F4F9F8;
}
.design-trip.visa-page .visa-accordion-item.is-active {
  background: #fff;
  border-color: #4BC6B0;
}
.design-trip.visa-page .visa-accordion-item.is-active .visa-accordion-header {
  background: #EAF2F1;
}
.design-trip.visa-page .visa-accordion-item.is-active .visa-accordion-header .arrow svg {
  transform: rotate(180deg);
}
.design-trip.visa-page .visa-accordion-item.is-active .visa-accordion-body {
  display: block;
}
.design-trip.visa-page .visa-accordion-header {
  padding: 15px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EAF2F1;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .design-trip.visa-page .visa-accordion-header {
    padding: 12px 15px;
  }
}
.design-trip.visa-page .visa-accordion-header .left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.design-trip.visa-page .visa-accordion-header .left .icon {
  width: 24px;
}
.design-trip.visa-page .visa-accordion-header .left .name {
  font-size: 18px;
  font-weight: 700;
  color: #23997E;
}
.design-trip.visa-page .visa-accordion-header .arrow {
  display: flex;
}
.design-trip.visa-page .visa-accordion-header .arrow img {
  transition: transform 0.3s;
  width: 14px;
}
.design-trip.visa-page .visa-accordion-body {
  padding: 16px 0;
  display: none;
  background: #fff;
}
.design-trip.visa-page .btn-delete-person {
  display: inline-flex;
  padding: 10px;
}
.design-trip.visa-page .btn-delete-person img {
  width: 24px;
}
.design-trip.visa-page .btn-delete-person:hover img {
  filter: invert(34%) sepia(87%) saturate(5833%) hue-rotate(345deg) brightness(98%) contrast(106%);
}
.design-trip.visa-page .btn-add-more {
  background: #fff;
  border: 1px solid #4BC6B0;
  color: #4BC6B0;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}
.design-trip.visa-page .btn-add-more:hover {
  background: #4BC6B0;
  color: #fff;
}
.design-trip.visa-page .visa-section-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #289B84;
  text-transform: uppercase;
}
.design-trip.visa-page .footer-total {
  margin-left: auto;
  margin-right: 30px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 991px) {
  .design-trip.visa-page .footer-total {
    margin-right: 15px;
  }
}
.design-trip.visa-page .footer-total .label {
  font-size: 15px;
  color: #232323;
  font-weight: 600;
  line-height: 20px;
}
.design-trip.visa-page .footer-total .price {
  font-size: 22px;
  font-weight: 600;
  color: #E02667;
  line-height: 20px;
}
@media (max-width: 575px) {
  .design-trip.visa-page .footer-total .label {
    display: none;
  }
  .design-trip.visa-page .footer-total .price {
    font-size: 20px;
  }
}
.design-trip.visa-page .visa-table-responsive {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #E2E9E7;
  -webkit-overflow-scrolling: touch;
  position: relative;
  margin-bottom: 20px;
}
.design-trip.visa-page .visa-data-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
.design-trip.visa-page .visa-data-table thead {
  background: #F2F7F7;
}
.design-trip.visa-page .visa-data-table thead tr th {
  padding: 8px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #7F8F8C;
  border-bottom: 1px solid #E2E9E7;
  border-right: 1px solid #E2E9E7;
  white-space: nowrap;
}
.design-trip.visa-page .visa-data-table thead tr th:last-child {
  border-right: none;
}
.design-trip.visa-page .visa-data-table tbody tr td {
  padding: 12px 10px;
  font-size: 15px;
  color: #1C1C1C;
  border-bottom: 1px solid #E2E9E7;
  border-right: 1px solid #E2E9E7;
  vertical-align: middle;
}
.design-trip.visa-page .visa-data-table tbody tr td:last-child {
  border-right: none;
}
.design-trip.visa-page .visa-data-table tbody tr:last-child td {
  border-bottom: none;
}
.design-trip.visa-page .arrival-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 991px) {
  .design-trip.visa-page .arrival-info-grid {
    grid-template-columns: 1fr;
  }
}
.design-trip.visa-page .arrival-box {
  background: #fff;
  border: 1px solid #E2E9E7;
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}
.design-trip.visa-page .arrival-box .label {
  background: #F2F7F7;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #7F8F8C;
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .design-trip.visa-page .arrival-box .label {
    width: 110px;
    padding: 10px 15px;
  }
}
.design-trip.visa-page .arrival-box .value {
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #1C1C1C;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .design-trip.visa-page .arrival-box .value {
    padding: 10px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .design-trip.visa-page .arrival-box {
    flex-direction: column;
  }
  .design-trip.visa-page .arrival-box .label {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .design-trip.visa-page .arrival-box {
    flex-direction: column;
  }
  .design-trip.visa-page .arrival-box .label {
    width: 100%;
  }
}
.design-trip.visa-page .price-summary-card {
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  overflow: hidden;
}
.design-trip.visa-page .price-summary-body {
  display: flex;
  background: #fff;
}
@media (max-width: 575px) {
  .design-trip.visa-page .price-summary-body {
    flex-direction: column;
  }
}
.design-trip.visa-page .summary-col {
  flex: 1;
  padding: 0;
  border-right: 1px solid #EFEFEF;
}
.design-trip.visa-page .summary-col:last-child {
  border-right: none;
}
@media (max-width: 575px) {
  .design-trip.visa-page .summary-col {
    border-right: none;
    border-bottom: 1px solid #EFEFEF;
  }
  .design-trip.visa-page .summary-col:last-child {
    border-bottom: none;
  }
}
.design-trip.visa-page .summary-col .col-header {
  background: #F8FBFB;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #7F8F8C;
  border-bottom: 1px solid #EFEFEF;
  text-align: center;
}
.design-trip.visa-page .summary-col .price-item {
  padding: 10px 20px;
  display: flex;
  align-items: flex-start;
}
.design-trip.visa-page .summary-col .price-item .name {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1C;
}
.design-trip.visa-page .summary-col .price-item .amount {
  width: 120px;
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  color: #E02667;
}
.design-trip.visa-page .summary-col .price-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.design-trip.visa-page .summary-col .price-item .info .sub {
  font-size: 15px;
  color: #7F8F8C;
}
.design-trip.visa-page .summary-col .price-item .info .sub .price-unit {
  color: #E02667;
}
@media (min-width: 576px) and (max-width: 767px) {
  .design-trip.visa-page .summary-col .price-item {
    flex-direction: column;
  }
  .design-trip.visa-page .summary-col .price-item .amount {
    width: 100%;
    text-align: left;
  }
}
.design-trip.visa-page .price-summary-footer {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #EFEFEF;
}
.design-trip.visa-page .price-summary-footer .label {
  font-size: 15px;
  font-weight: 600;
  color: #232323;
}
.design-trip.visa-page .price-summary-footer .total-amount {
  font-size: 18px;
  font-weight: 600;
  color: #E02667;
}

.contact-map {
  width: 100%;
  line-height: 0;
  height: 450px;
}
@media (max-width: 991px) {
  .contact-map {
    height: 300px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2);
}

.contact-page {
  border-bottom: 1px solid #DFDFDF;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: flex;
}
@media (max-width: 991px) {
  .contact-layout {
    flex-direction: column;
  }
}

.contact-form-side {
  flex: 1.4;
  background: #fff;
  padding: 50px 50px 50px 15px;
  padding-left: calc((100vw - 1550px) / 2 + 15px);
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .contact-form-side {
    padding-left: calc((100vw - 1380px) / 2 + 15px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-side {
    padding: 30px 15px 30px 30px;
    padding-left: calc((100vw - 1140px) / 2 + 15px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form-side {
    padding: 30px 15px 30px 30px;
    padding-left: calc((100vw - 960px) / 2 + 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-side {
    padding: 50px 0;
  }
  .contact-form-side .contact-form-box {
    width: 720px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .contact-form-side {
    padding: 50px 0;
  }
  .contact-form-side .contact-form-box {
    width: 540px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .contact-form-side {
    padding: 50px 20px;
  }
}
.contact-form-side .contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .contact-form-side .contact-title {
    font-size: 24px;
  }
}
.contact-form-side .title-line {
  width: 60px;
  height: 3px;
  background: #F2C94C;
  margin-bottom: 40px;
}
.contact-form-side .btn-send-contact {
  background: #4BC6B0;
  color: #fff;
  border: none;
  min-width: 190px;
  height: 48px;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.contact-form-side .btn-send-contact:hover {
  background: #23997E;
  box-shadow: 0 4px 15px rgba(75, 198, 176, 0.3);
}
@media (max-width: 575px) {
  .contact-form-side .btn-send-contact {
    width: 100%;
  }
}

.contact-info-side {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 50px 15px 50px 50px;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding-right: calc((100vw - 1550px) / 2 + 15px);
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .contact-info-side {
    padding-right: calc((100vw - 1380px) / 2 + 15px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-info-side {
    padding: 30px 15px 30px 30px;
    padding-right: calc((100vw - 1140px) / 2 + 15px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info-side {
    padding: 30px 15px 30px 30px;
    padding-right: calc((100vw - 960px) / 2 + 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info-side {
    padding: 50px 0;
  }
  .contact-info-side .info-content {
    width: 720px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .contact-info-side {
    padding: 50px 0;
  }
  .contact-info-side .info-content {
    width: 540px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .contact-info-side {
    padding: 50px 20px;
  }
}
.contact-info-side .info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(360deg, rgba(14, 54, 46, 0.9) 15.29%, rgba(14, 54, 46, 0.5) 100%);
}
.contact-info-side .info-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-info-side .contact-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .contact-info-side .contact-title {
    font-size: 24px;
  }
}
.contact-info-side .contact-title.color-white {
  color: #fff;
}
.contact-info-side .title-line {
  width: 60px;
  height: 3px;
  margin-bottom: 40px;
}
.contact-info-side .title-line.bg-yellow {
  background: #F2C94C;
}
.contact-info-side .contact-detail-list {
  margin-bottom: 40px;
}
.contact-info-side .contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}
.contact-info-side .contact-detail-item .icon-box {
  width: 44px;
  height: 44px;
  background: #289B84;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-side .contact-detail-item .icon-box img {
  transform: scale(1.5);
}
.contact-info-side .contact-detail-item .text-box .label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.contact-info-side .contact-detail-item .text-box .value {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}
.contact-info-side .contact-social {
  display: flex;
  gap: 12px;
}
.contact-info-side .contact-social .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.contact-info-side .contact-social .social-btn:hover {
  transform: translateY(-3px);
  background: #F2C94C;
}

.block-our-team .team-slider {
  position: relative;
}
.block-our-team .team-slider .team-slide-img {
  width: 100%;
  height: 540px;
  overflow: hidden;
}
.block-our-team .team-slider .team-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: top center;
     object-position: top center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-our-team .team-slider .team-slide-img {
    height: 450px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-our-team .team-slider .team-slide-img {
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-our-team .team-slider .team-slide-img {
    height: 350px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-our-team .team-slider .team-slide-img {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .block-our-team .team-slider .team-slide-img {
    height: 300px;
  }
}

.block-about-mission-vision {
  padding: 80px 0 120px 0;
}
@media (max-width: 1199px) {
  .block-about-mission-vision {
    padding: 10px 0 40px 0;
  }
}
@media (max-width: 575px) {
  .block-about-mission-vision {
    padding: 0 0 30px 0;
  }
}
@media (min-width: 1600px) {
  .block-about-mission-vision .container {
    max-width: 1350px;
  }
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding: 30px 40px 30px 70px;
  margin-bottom: 30px;
  background: transparent;
  border: 4px solid #DEEAE8;
  border-radius: 8px;
}
.about-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-item {
    gap: 40px;
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-item {
    gap: 20px;
    padding: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .about-item {
    padding: 20px;
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .about-item {
    padding: 16px;
    gap: 24px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-item__image {
  flex-shrink: 0;
  width: 480px;
  height: 464px;
  margin-top: -120px;
  position: relative;
  border-radius: 8px;
  border: 20px solid #fff;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-item__image {
    width: 380px;
    height: 364px;
  }
}
@media (max-width: 1199px) {
  .about-item__image {
    margin: 0 !important;
    border: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-item__image {
    height: 364px !important;
    width: 350px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-item__image {
    height: 350px !important;
    width: 300px !important;
  }
}
@media (max-width: 767px) {
  .about-item__image {
    width: 100%;
    height: auto !important;
  }
}
.about-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.about-item__image .vertical-text {
  position: absolute;
  top: 20px;
  left: 15px;
  transform: rotate(0);
  font-size: 76px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-lr;
  line-height: 1;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-item__image .vertical-text {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .about-item__image .vertical-text {
    font-size: 60px;
    left: 10px;
  }
}
.about-item__content {
  flex: 1;
}
.about-item__content .title {
  font-size: 36px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 30px;
}
.about-item__content .title span {
  color: #E1AE4D;
}
@media (max-width: 991px) {
  .about-item__content .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about-item__content .title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.about-item__content .subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
  display: block;
}
.about-item__content .desc {
  font-size: 16px;
  line-height: 25px;
  color: #232323;
}
.about-item__content .desc p {
  margin-bottom: 24px;
}
.about-item__content .desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .about-item__content .desc {
    font-size: 15px;
  }
}
.about-item.item-reverse {
  flex-direction: row-reverse;
}
.about-item.item-reverse::before {
  left: 0;
  right: 200px;
}
@media (max-width: 991px) {
  .about-item.item-reverse::before {
    right: 0;
  }
}
.about-item.item-reverse .about-item__image {
  height: 500px;
  margin-top: 0px;
  margin-bottom: -120px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-item.item-reverse .about-item__image {
    height: 484px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-item.item-reverse .about-item__image {
    height: 424px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-item.item-reverse .about-item__image {
    height: 364px !important;
  }
}
@media (max-width: 767px) {
  .about-item.item-reverse {
    flex-direction: column;
  }
}
.about-item.item-reverse .about-item__image .vertical-text {
  transform: rotate(180deg);
  left: auto;
  right: 15px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 575px) {
  .about-item.item-reverse .about-item__image .vertical-text {
    right: 10px;
  }
}

.block-about-apart {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .block-about-apart {
    padding-bottom: 50px;
  }
}
.block-about-apart .apart-header {
  background-color: #0d3b2e;
  background-size: cover;
  background-position: top center;
  padding: 40px 15px 320px;
  position: relative;
  min-height: 550px;
  border-radius: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-about-apart .apart-header {
    padding: 40px 15px 140px;
    min-height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-about-apart .apart-header {
    padding: 40px 20px 140px;
    min-height: 350px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-about-apart .apart-header {
    padding: 40px 20px 140px;
    min-height: 350px;
  }
}
@media (max-width: 575px) {
  .block-about-apart .apart-header {
    padding: 40px 15px 140px;
    min-height: 300px;
  }
}
.block-about-apart .apart-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(4, 36, 29, 0.6), rgba(4, 36, 29, 0.6));
}
.block-about-apart .apart-header__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.block-about-apart .apart-header__content .section-title__big::before {
  background-color: #e1ae4d;
}
.block-about-apart .apart-header__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  opacity: 1;
  font-weight: 400;
}
.block-about-apart .apart-header__desc p {
  margin-bottom: 0;
}
.block-about-apart .apart-grid-wrapper {
  margin-top: -306px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 50px;
    margin-top: -120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 20px;
    margin-top: -120px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 20px;
    margin-top: -120px;
  }
}
@media (max-width: 575px) {
  .block-about-apart .apart-grid-wrapper {
    padding: 0 15px;
    margin-top: -100px;
  }
}
.block-about-apart .apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-about-apart .apart-grid {
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-about-apart .apart-grid {
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-about-apart .apart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-about-apart .apart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .block-about-apart .apart-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.block-about-apart .apart-card {
  background: #fff;
  padding: 30px;
  background: linear-gradient(180deg, #ECF4F2 0%, #FFFFFF 100%);
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-direction: column;
  border-bottom: 5px solid #4AC2AA;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .block-about-apart .apart-card {
    padding: 16px;
  }
}
.block-about-apart .apart-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.block-about-apart .apart-card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.block-about-apart .apart-card__icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.block-about-apart .apart-card:nth-child(odd) .apart-card__icon {
  background-color: #E1AE4D;
}
.block-about-apart .apart-card:nth-child(even) .apart-card__icon {
  background-color: #4AC2AA;
}
.block-about-apart .apart-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #232323;
  line-height: 1.3;
}
.block-about-apart .apart-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #232323;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-about-apart .apart-card {
    padding: 16px;
  }
  .block-about-apart .apart-card__icon {
    width: 50px;
    height: 50px;
  }
  .block-about-apart .apart-card__icon img {
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  .block-about-apart .apart-card {
    padding: 16px;
  }
  .block-about-apart .apart-card__icon {
    width: 50px;
    height: 50px;
  }
  .block-about-apart .apart-card__icon img {
    transform: scale(0.7);
  }
}

.block-about-team {
  padding: 0 0 50px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .block-about-team {
    padding: 0 0 50px 0;
  }
}
.block-about-team .team-header {
  margin-bottom: 40px;
}
.block-about-team .team-header__title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.block-about-team .team-header__title-wrap .bg-title {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: #EEF1F0;
  opacity: 0.7;
  white-space: nowrap;
  z-index: 1;
  text-transform: capitalize;
  letter-spacing: 2px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-about-team .team-header__title-wrap .bg-title {
    font-size: 50px;
    top: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-about-team .team-header__title-wrap .bg-title {
    font-size: 40px;
    top: 0;
  }
}
@media (max-width: 575px) {
  .block-about-team .team-header__title-wrap .bg-title {
    font-size: 30px;
    top: 0;
  }
}
.block-about-team .team-header__title-wrap .section-title__big {
  position: relative;
  z-index: 2;
  padding-bottom: 0px;
  margin-bottom: 10px;
}
.block-about-team .team-header__title-wrap .section-title__big::before {
  bottom: -10px;
}
.block-about-team .team-header__desc {
  max-width: 600px;
  margin: 0 auto;
  color: #737373;
  font-size: 15px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}
.block-about-team .team-slider-wrapper {
  position: relative;
  padding-bottom: 50px;
}
@media (max-width: 575px) {
  .block-about-team .team-slider-wrapper {
    padding: 0 0 50px 0;
    margin: 0 -15px;
  }
  .block-about-team .team-slider-wrapper .swiper {
    padding: 0 15px;
  }
}
.block-about-team .team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 257/315;
  border-radius: 8px;
}
.block-about-team .team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 34, 57, 0) 0%, #252239 100%);
  z-index: 1;
  border-radius: 8px;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-about-team .team-card__image {
  height: 100%;
}
.block-about-team .team-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.block-about-team .team-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.block-about-team .team-card__content .role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.block-about-team .team-card__content .name {
  font-size: 30px;
  font-weight: 700;
  color: #4AC2AA;
  line-height: 1.2;
}
.block-about-team .team-card__content .name span {
  display: block;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-about-team .team-card__content {
    padding: 12px;
  }
  .block-about-team .team-card__content .role {
    font-size: 14px;
  }
  .block-about-team .team-card__content .name {
    font-size: 26px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-about-team .team-card__content {
    padding: 12px;
  }
  .block-about-team .team-card__content .role {
    font-size: 14px;
  }
  .block-about-team .team-card__content .name {
    font-size: 26px;
  }
}
.block-about-team .team-card:hover .team-card__image img {
  transform: scale(1.05);
}
.block-about-team .about-team-pagination {
  bottom: 0 !important;
}
.block-about-team .about-team-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  opacity: 1;
  transition: all 0.3s;
}
.block-about-team .about-team-pagination .swiper-pagination-bullet-active {
  background: #E1AE4D;
}

.block-news-list {
  padding: 60px 0;
  background-color: #fff;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-news-list {
    padding: 40px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-news-list {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .block-news-list {
    padding: 30px 0;
  }
}
.block-news-list .news-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .block-news-list .news-layout {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-news-list .news-layout {
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-news-list .news-layout {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .block-news-list .news-layout {
    flex-direction: column;
    gap: 30px;
  }
}
.block-news-list .news-column-left {
  flex: 0 0 32%;
  max-width: 32%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-news-list .news-column-left {
    flex: 0 0 38%;
    max-width: 38%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-news-list .news-column-left {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-news-list .news-column-left {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .block-news-list .news-column-left {
    flex: 1;
    max-width: 100%;
  }
}
.block-news-list .news-column-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-news-list .news-column-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-news-list .news-column-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .block-news-list .news-column-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.block-news-list .post-card {
  transition: all 0.3s;
  cursor: pointer;
}
.block-news-list .post-card__img {
  border-radius: 4px;
  overflow: hidden;
}
.block-news-list .post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.block-news-list .post-card__title {
  font-weight: 600;
  color: #232323;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.3s ease;
}
.block-news-list .post-card__title:hover {
  color: var(--green-text);
}
.block-news-list .post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-news-list .post-card__meta .category {
  background: #F0F0F0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #777777;
  font-weight: 400;
}
.block-news-list .post-card__meta .date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.block-news-list .post-card__meta .date .icon {
  display: inline-flex;
}
.block-news-list .post-card__meta .date .icon img {
  width: 16px;
  opacity: 0.8;
}
.block-news-list .post-card__meta .date .txt {
  font-size: 15px;
  color: #737373;
  position: relative;
  top: 1px;
}
.block-news-list .post-card:hover .post-card__img img {
  transform: scale(1.05);
}
.block-news-list .post-card:hover .post-card__title {
  color: var(--green-text);
}
.block-news-list .post-card--hero .post-card__img {
  border-radius: 6px;
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.block-news-list .post-card--hero .post-card__title {
  font-size: 22px;
  margin-bottom: 12px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-news-list .post-card--hero .post-card__title {
    font-size: 20px;
  }
}
.block-news-list .post-card--hero .desc {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.block-news-list .post-card--hero .post-card__meta {
  flex-direction: row;
}
.block-news-list .post-card--horizontal {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.block-news-list .post-card--horizontal .post-card__img {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  aspect-ratio: 1/1;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .block-news-list .post-card--horizontal .post-card__img {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-news-list .post-card--horizontal .post-card__img {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 1199px) {
  .block-news-list .post-card--horizontal .post-card__img {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }
}
.block-news-list .post-card--horizontal .post-card__content {
  flex: 1;
}
.block-news-list .post-card--horizontal .post-card__title {
  font-size: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #232323;
}
.block-news-list .post-card--horizontal .post-card__meta {
  align-items: flex-start;
  gap: 8px;
  flex-direction: column;
}

.block-plan-trip {
  background: linear-gradient(360deg, rgba(237, 244, 242, 0) 0%, rgba(230, 238, 236, 0.6) 100%);
  padding: 40px 0 60px 0;
}
.block-plan-trip.block-about-apart .apart-header {
  background-color: transparent;
  min-height: 375px;
  padding: 0;
}
.block-plan-trip.block-about-apart .apart-header::before {
  display: none;
}
.block-plan-trip .apart-grid-wrapper {
  margin-top: -150px;
}

.plan-trip-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-trip-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #232323;
  transition: color 0.3s;
}
.plan-trip-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3CC0A2;
}
.plan-trip-card__list li a {
  color: inherit;
  display: block;
}
.plan-trip-card__list li a:hover {
  color: #3CC0A2;
}

.block-destinations-news {
  padding: 50px 0 60px 0;
  border-top: 1px solid #DFDFDF;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-destinations-news {
    padding: 30px 0 40px 0;
  }
}
@media (max-width: 991px) {
  .block-destinations-news {
    padding: 30px 0 40px 0;
  }
}
.block-destinations-news .destinations-news-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-rows: repeat(2, 240px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .block-destinations-news .destinations-news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }
}
.block-destinations-news .destinations-news-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-destinations-news .destinations-news-item {
    padding: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-destinations-news .destinations-news-item {
    padding: 16px;
  }
}
@media (max-width: 991px) {
  .block-destinations-news .destinations-news-item {
    grid-row: auto !important;
    grid-column: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-destinations-news .destinations-news-item {
    height: 260px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-destinations-news .destinations-news-item {
    height: 200px;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .block-destinations-news .destinations-news-item {
    height: 220px;
    padding: 16px;
  }
}
.block-destinations-news .destinations-news-item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-destinations-news .destinations-news-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 36, 29, 0) 49.47%, rgba(4, 36, 29, 0.9) 100%);
  border-radius: 6px;
  z-index: 2;
}
.block-destinations-news .destinations-news-item__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.block-destinations-news .destinations-news-item__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-destinations-news .destinations-news-item__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .block-destinations-news .destinations-news-item__title {
    font-size: 20px;
  }
}
.block-destinations-news .destinations-news-item__num {
  font-size: 45px;
  font-weight: 600;
  opacity: 0.2;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .block-destinations-news .destinations-news-item__num {
    font-size: 36px;
  }
}
.block-destinations-news .destinations-news-item:hover .destinations-news-item__img {
  transform: scale(1.08);
}
.block-destinations-news .destinations-news-item--01 {
  grid-column: 1/2;
  grid-row: 1/3;
}
.block-destinations-news .destinations-news-item--02 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.block-destinations-news .destinations-news-item--03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.block-destinations-news .destinations-news-item--04 {
  grid-column: 3/4;
  grid-row: 1/3;
}

.news-list__content .news-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list__content .news-list__grid {
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-list__content .news-list__grid {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .news-list__content .news-list__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.news-list__content .news-list__grid .post-card--horizontal {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.news-list__content .news-list__grid .post-card--horizontal:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--green-text);
}
.news-list__content .news-list__grid .post-card--horizontal:hover .post-card__title {
  color: var(--green-text);
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__img {
  flex: 0 0 170px;
  width: 170px;
  height: 170px;
  overflow: hidden;
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__img {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__img {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__img {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 575px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__img {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
  }
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__content {
  padding: 12px 20px;
  flex: 1;
}
@media (max-width: 575px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__content {
    padding: 12px;
  }
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__title {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #232323;
  margin-bottom: 8px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__title {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__title {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__title {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 575px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__title {
    -webkit-line-clamp: 3;
  }
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta .category {
  background: #F0F0F0;
  padding: 4px 6px;
  font-size: 13px;
  line-height: 1.2;
  color: #777777;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-flex;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__meta .category {
    font-size: 12px;
  }
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta .date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta .date .icon {
  display: inline-flex;
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta .date .icon img {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}
.news-list__content .news-list__grid .post-card--horizontal .post-card__meta .date .txt {
  font-size: 14px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-list__content .news-list__grid .post-card--horizontal .post-card__meta .date .txt {
    font-size: 13px;
  }
}

.tour-detail-right .sidebar-widget {
  margin-bottom: 24px;
}
.tour-detail-right .sidebar-widget__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #232323;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget__title {
    font-size: 18px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion {
  border: 2px solid #4AC2AA;
  border-radius: 12px;
  padding: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-suggestion {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .tour-detail-right .sidebar-widget.widget-suggestion {
    padding: 16px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__title {
    font-size: 16px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card:hover .tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__title {
  color: #48C7B5;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__img {
  flex: 0 0 110px;
  width: 110px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__img {
    flex: 0 0 80px;
    width: 80px;
    height: 72px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .meta-item {
    font-size: 13px;
    gap: 6px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .meta-item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .meta-item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .meta-item .text {
  flex: 1;
  font-size: 15px;
  color: #737373;
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .price-item {
  font-size: 15px;
  color: #313131;
  margin-top: 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .price-item {
    font-size: 13px;
  }
}
.tour-detail-right .sidebar-widget.widget-suggestion .suggestion-card__info .price-item .price {
  color: #E02667;
  font-weight: 700;
  font-size: 18px;
}
.tour-detail-right .sidebar-widget.widget-topics {
  background: #EFF6F4;
  border-radius: 12px;
  padding: 20px 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-topics {
    padding: 16px;
  }
}
.tour-detail-right .sidebar-widget.widget-topics .topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-detail-right .sidebar-widget.widget-topics .topic-list li {
  position: relative;
  padding-left: 20px;
}
.tour-detail-right .sidebar-widget.widget-topics .topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #4AC2AA;
  border-radius: 50%;
}
.tour-detail-right .sidebar-widget.widget-topics .topic-list li a {
  font-size: 16px;
  color: #232323;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-right .sidebar-widget.widget-topics .topic-list li a {
    font-size: 15px;
  }
}
.tour-detail-right .sidebar-widget.widget-topics .topic-list li a:hover {
  color: #4AC2AA;
  padding-left: 4px;
}

.news-header {
  display: flex;
  overflow: hidden;
  background: #4AC2AA;
}
@media (max-width: 767px) {
  .news-header {
    flex-direction: column-reverse;
  }
}
.news-header__content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 50px 100px 50px calc((100vw - 1380px) / 2 + 15px);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1600px) {
  .news-header__content {
    padding-left: calc((100vw - 1550px) / 2 + 15px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-header__content {
    padding-left: calc((100vw - 1140px) / 2 + 15px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-header__content {
    padding: 30px;
    padding-left: calc((100vw - 960px) / 2 + 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-header__content {
    padding: 30px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news-header__content {
    padding: 30px 15px;
    flex: 0 0 100%;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .news-header__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 15px;
  }
}
.news-header__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #FFFFFF;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-header__title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-header__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .news-header__title {
    font-size: 22px;
  }
}
.news-header__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .news-header__meta {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }
}
.news-header__meta .category-badge {
  background: rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
}
.news-header__meta .date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.news-header__meta .date .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.news-header__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-header__intro p {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .news-header__intro p {
    font-size: 14px;
  }
}
.news-header__img {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 500px;
  position: relative;
}
@media (max-width: 767px) {
  .news-header__img {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 300px;
  }
}
@media (max-width: 575px) {
  .news-header__img {
    min-height: 250px;
  }
}
.news-header__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.block-news-detail {
  margin-top: 0 !important;
  padding: 30px 0 50px 0;
}
@media (max-width: 767px) {
  .block-news-detail {
    padding: 10px 0 30px 0;
  }
}

.related-posts {
  padding-top: 40px;
  border-top: 1px dashed #D1D1D1;
}
@media (max-width: 575px) {
  .related-posts {
    margin-top: 40px;
    padding-top: 30px;
  }
}
.related-posts__title {
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .related-posts__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.related-posts .post-card--horizontal {
  display: flex;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.related-posts .post-card--horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.related-posts .post-card--horizontal .post-card__img {
  flex: 0 0 180px;
  width: 180px;
  height: 160px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .related-posts .post-card--horizontal .post-card__img {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 575px) {
  .related-posts .post-card--horizontal .post-card__img {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }
}
.related-posts .post-card--horizontal .post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-posts .post-card--horizontal .post-card__content {
  flex: 1;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .related-posts .post-card--horizontal .post-card__content {
    padding: 15px 15px 15px 0;
  }
}
.related-posts .post-card--horizontal .post-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .related-posts .post-card--horizontal .post-card__title {
    font-size: 15px;
  }
}
.related-posts .post-card--horizontal:hover .post-card__title {
  color: #4AC2AA;
}
.related-posts .post-card--horizontal .post-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-posts .post-card--horizontal .post-card__meta .category-badge {
  align-self: flex-start;
  background: #F1F1F1;
  color: #737373;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
.related-posts .post-card--horizontal .post-card__meta .date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #737373;
}
.related-posts .post-card--horizontal .post-card__meta .date .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
}

.news-detail-content {
  position: relative;
  padding-bottom: 30px;
}
.news-detail-content .toc-wrapper {
  position: absolute;
  left: -54px;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 3;
  width: 36px;
  pointer-events: none;
}
.news-detail-content .toc-wrapper .toc-sticky-nav {
  position: sticky;
  top: 100px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: auto;
}
.news-detail-content .toc-wrapper .toc-sticky-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.news-detail-content .toc-wrapper .toc-toggle {
  width: 36px;
  height: 36px;
  background: #4AC2AA;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.news-detail-content .toc-wrapper .toc-toggle:hover {
  transform: scale(1.1);
  background: #3eb199;
  box-shadow: 0 4px 15px rgba(74, 194, 170, 0.4);
}
.news-detail-content .toc-wrapper .toc-toggle img {
  width: 20px;
  filter: brightness(0) invert(1);
}
.news-detail-content .toc-wrapper .toc-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  width: 380px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: top left;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-detail-content .toc-wrapper .toc-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
@media (max-width: 575px) {
  .news-detail-content .toc-wrapper .toc-dropdown {
    width: calc(100vw - 30px);
    max-width: 380px;
  }
}
.news-detail-content .toc-wrapper .toc-dropdown__title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f7;
}
.news-detail-content .toc-wrapper .toc-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li a {
  text-decoration: none;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.4;
  transition: all 0.2s;
  display: block;
  font-weight: 500;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li a:hover {
  color: #e53e3e;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li ul li {
  position: relative;
  padding-left: 15px;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #718096;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #718096;
}
.news-detail-content .toc-wrapper .toc-dropdown__list li.is-selected > a {
  color: #e53e3e;
}
@media (min-width: 1400px) and (max-width: 1449px) {
  .news-detail-content .toc-wrapper {
    left: -20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-detail-content .toc-wrapper {
    left: -40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-detail-content .toc-wrapper {
    left: -30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-detail-content .toc-wrapper {
    left: -40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news-detail-content .toc-wrapper {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .news-detail-content .toc-wrapper {
    left: -5px;
  }
  .news-detail-content .toc-wrapper .toc-sticky-nav {
    top: 70px;
  }
}
.news-detail-content .content-title {
  font-size: 24px;
  font-weight: 700;
  color: #294758;
  margin: 30px 0 20px;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .news-detail-content .content-title {
    font-size: 22px;
  }
}
.news-detail-content .content-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #313131;
  margin: 25px 0 15px;
}
@media (max-width: 991px) {
  .news-detail-content .content-subtitle {
    font-size: 18px;
  }
}
.news-detail-content .content-text {
  font-size: 16px;
  line-height: 1.6;
  color: #294758;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .news-detail-content .content-text {
    font-size: 15px;
  }
}
.news-detail-content .content-text p {
  margin-bottom: 15px;
}
.news-detail-content .content-text p:last-child {
  margin-bottom: 0;
}
.news-detail-content .content-text em {
  color: #232323;
}
.news-detail-content .custom-num-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail-content .custom-num-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.news-detail-content .custom-num-list li .num {
  position: relative;
  top: -2px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: #FFF5E2;
  color: #D79F34;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.news-detail-content .custom-num-list li .txt {
  flex: 1;
  font-size: 16px;
  color: #35434B;
}
.news-detail-content .custom-num-list li .txt strong {
  color: #232323;
}
.news-detail-content .content-figure {
  margin: 30px 0;
}
.news-detail-content .content-figure img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.news-detail-content .content-figure figcaption {
  text-align: center;
  font-size: 14px;
  color: #737373;
  font-style: italic;
}
.news-detail-content .tip-box {
  background: #ECF8F6;
  border-radius: 8px;
  padding: 12px 24px;
  margin: 30px 0;
  border-left: 5px solid #2CAD93;
}
.news-detail-content .tip-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #348F7D;
  font-style: italic;
}
@media (max-width: 991px) {
  .news-detail-content .tip-box {
    padding: 16px;
  }
}

.flex-share-mxh {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}
.flex-share-mxh .item {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
}

.auth-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 44, 41, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.auth-popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.auth-popup-overlay.is-active .auth-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.auth-popup-overlay .auth-modal {
  position: relative;
  width: 100%;
  max-width: 950px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 991px) {
  .auth-popup-overlay .auth-modal {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
}
.auth-popup-overlay .auth-modal .btn-close-auth {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  border: none;
}
.auth-popup-overlay .auth-modal .btn-close-auth:hover {
  background: #E0E0E0;
  transform: rotate(90deg);
}
.auth-popup-overlay .auth-modal .btn-close-auth svg {
  width: 14px;
  height: 14px;
  stroke: #4F4F4F;
}
.auth-popup-overlay .auth-sidebar {
  width: 470px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  flex-shrink: 0;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .auth-popup-overlay .auth-sidebar {
    display: none;
  }
}
.auth-popup-overlay .auth-sidebar .sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  z-index: 1;
}
.auth-popup-overlay .auth-form-container {
  flex: 1;
  padding: 20px 32px;
  display: none;
}
.auth-popup-overlay .auth-form-container.is-active {
  display: block;
  animation: authFadeIn 0.4s ease-out;
}
@media (max-width: 575px) {
  .auth-popup-overlay .auth-form-container {
    padding: 20px 7px;
  }
}
.auth-popup-overlay .auth-form-container .auth-title {
  font-size: 32px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: -0.5px;
}
@media (max-width: 575px) {
  .auth-popup-overlay .auth-form-container .auth-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.auth-popup-overlay .auth-form-container .form-group {
  margin-bottom: 12px;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E0E3E9;
  border-radius: 8px;
  height: 58px;
  padding: 0 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-popup-overlay .auth-form-container .form-group:focus-within, .auth-popup-overlay .auth-form-container .form-group.is-active {
  border-color: #4AC2AA;
  box-shadow: 0 0 0 4px rgba(74, 194, 170, 0);
}
.auth-popup-overlay .auth-form-container .form-group .form-label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #9CA3AF;
  margin-bottom: 0;
  display: block;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.auth-popup-overlay .auth-form-container .form-group .form-control {
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #1C2B33;
  width: 100%;
  box-shadow: none;
  transition: opacity 0.2s;
}
.auth-popup-overlay .auth-form-container .form-group .form-control:focus {
  outline: none;
}
.auth-popup-overlay .auth-form-container .form-group .form-control::-moz-placeholder {
  color: transparent;
}
.auth-popup-overlay .auth-form-container .form-group .form-control::placeholder {
  color: transparent;
}
.auth-popup-overlay .auth-form-container .form-group .form-control[tag=select], .auth-popup-overlay .auth-form-container .form-group .form-control {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.auth-popup-overlay .auth-form-container .form-group.is-active .form-label {
  top: 12px;
  transform: translateY(0);
  font-size: 11px;
  color: #9CA3AF;
}
.auth-popup-overlay .auth-form-container .form-group.is-active .form-control::-moz-placeholder {
  color: #B0B0B0;
}
.auth-popup-overlay .auth-form-container .form-group.is-active .form-control::placeholder {
  color: #B0B0B0;
}
.auth-popup-overlay .auth-form-container .form-group.has-select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.auth-popup-overlay .auth-form-container .form-group.has-select.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.auth-popup-overlay .auth-form-container .form-group .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  z-index: 10;
}
.auth-popup-overlay .auth-form-container .form-group .toggle-password:hover {
  color: #4AC2AA;
}
.auth-popup-overlay .auth-form-container .form-group .toggle-password svg {
  width: 18px;
  height: 18px;
}
.auth-popup-overlay .auth-form-container .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 14px;
}
.auth-popup-overlay .auth-form-container .form-actions .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #6B7280;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.auth-popup-overlay .auth-form-container .form-actions .form-check input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  margin: 0;
  flex-shrink: 0;
}
.auth-popup-overlay .auth-form-container .form-actions .form-check input[type=checkbox]:checked {
  background: #4AC2AA;
  border-color: #4AC2AA;
  background-image: url("../img-fix/icon/checked-blue.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.auth-popup-overlay .auth-form-container .form-actions .form-check input[type=checkbox]:hover {
  border-color: #4AC2AA;
}
.auth-popup-overlay .auth-form-container .form-actions .forgot-password {
  color: #30BEA2;
  font-size: 14px;
  font-weight: 400;
}
.auth-popup-overlay .auth-form-container .form-actions .forgot-password:hover {
  text-decoration: underline;
}
@media (max-width: 575px) {
  .auth-popup-overlay .auth-form-container .form-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.auth-popup-overlay .auth-form-container .btn-auth {
  width: 100%;
  height: 48px;
  background: #4AC2AA;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 25px;
}
.auth-popup-overlay .auth-form-container .btn-auth:hover {
  background: #3EA691;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 194, 170, 0.2);
}
.auth-popup-overlay .auth-form-container .social-divider {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.auth-popup-overlay .auth-form-container .social-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E0E3E9;
  z-index: 1;
}
.auth-popup-overlay .auth-form-container .social-divider span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 8px;
  color: #858D9A;
  font-size: 14px;
}
.auth-popup-overlay .auth-form-container .social-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.auth-popup-overlay .auth-form-container .social-buttons .btn-social {
  flex: 1;
  height: 44px;
  border: 1.5px solid #E0E3E9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #4F4F4F;
  background: #fff;
  transition: all 0.3s;
}
.auth-popup-overlay .auth-form-container .social-buttons .btn-social:hover {
  background: #E0E3E9;
}
.auth-popup-overlay .auth-form-container .social-buttons .btn-social img {
  width: 24px;
}
@media (max-width: 767px) {
  .auth-popup-overlay .auth-form-container .social-buttons .btn-social span {
    display: none;
  }
}
.auth-popup-overlay .auth-form-container .auth-footer {
  text-align: center;
  color: #232323;
  font-size: 16px;
}
.auth-popup-overlay .auth-form-container .auth-footer a {
  color: #30BEA2;
  font-weight: 500;
  text-decoration: underline;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.filter__label .color {
  color: #DD9D22;
  text-decoration: underline;
}

.block-account {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .block-account {
    padding: 40px 0;
  }
}
.block-account .account-layout {
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .block-account .account-layout {
    flex-direction: column;
    gap: 40px;
  }
}
.block-account .account-sidebar {
  width: 250px;
  flex-shrink: 0;
  text-align: center;
  position: sticky;
  top: 120px;
  border-right: 1px dashed #C9C9C9;
}
@media (max-width: 991px) {
  .block-account .account-sidebar {
    width: 100%;
    position: static;
    border: none;
    padding-bottom: 24px;
  }
}
.block-account .account-sidebar .user-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  position: relative;
}
.block-account .account-sidebar .user-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E2EBEF;
  z-index: 1;
  transform: scale(1.1);
}
.block-account .account-sidebar .user-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E2EBEF;
  opacity: 0.4;
  z-index: 1;
  transform: scale(1.2);
}
.block-account .account-sidebar .user-avatar__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.block-account .account-sidebar .user-avatar .btn-edit-avatar {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 32px;
  height: 32px;
  background: #4AC2AA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
  padding-left: 1px;
  padding-bottom: 1px;
  z-index: 3;
}
.block-account .account-sidebar .user-avatar .btn-edit-avatar:hover {
  background: #3EA691;
}
.block-account .account-sidebar .user-name {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 0;
}
.block-account .account-main {
  flex: 1;
  background: #FFFFFF;
  border-radius: 12px;
}
.block-account .account-tabs-nav {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.block-account .account-tabs-nav::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .block-account .account-tabs-nav {
    gap: 16px;
  }
}
.block-account .account-tabs-nav .tab-item {
  font-size: 16px;
  font-weight: 700;
  color: #454545;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.block-account .account-tabs-nav .tab-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E1AE4D;
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 1px;
}
.block-account .account-tabs-nav .tab-item.is-active {
  color: #1C2B38;
}
.block-account .account-tabs-nav .tab-item.is-active::after {
  transform: scaleX(1);
}
.block-account .account-tabs-nav .tab-item:hover:not(.is-active) {
  color: #E1AE4D;
}
@media (max-width: 767px) {
  .block-account .account-tabs-nav .tab-item {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.block-account .account-tab-content {
  display: none;
}
.block-account .account-tab-content.is-active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}
.block-account .account-form .row {
  margin: 0 -10px;
}
.block-account .account-form .row > [class*=col-] {
  padding: 0 10px;
}
.block-account .account-form .forgot-link {
  display: inline-block;
  color: #30BEA2;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}
.block-account .account-form .forgot-link:hover {
  color: #3EA691;
  text-decoration: underline;
}
.block-account .account-form .btn-save {
  min-width: 160px;
  height: 48px;
  background: #4AC2AA;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  margin-top: 10px;
  padding: 0 20px;
}
.block-account .account-form .btn-save:hover {
  background: #3EA691;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 194, 170, 0.3);
}
.block-account .service-history-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account .service-history-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-account .service-history-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-account .service-history-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.block-account .service-card {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.block-account .service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #E5E7EB;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account .service-card {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-account .service-card {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .block-account .service-card {
    flex-direction: column;
  }
}
.block-account .service-card__img {
  width: 420px;
  height: 320px;
  flex-shrink: 0;
}
.block-account .service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account .service-card__img {
    width: 100%;
    height: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-account .service-card__img {
    width: 100%;
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-account .service-card__img {
    width: 100%;
    height: 200px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-account .service-card__img {
    width: 100%;
    height: 240px;
  }
}
@media (max-width: 575px) {
  .block-account .service-card__img {
    width: 100%;
    height: 200px;
  }
}
.block-account .service-card__content {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-account .service-card__content {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .block-account .service-card__content {
    padding: 16px;
  }
}
.block-account .service-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .block-account .service-card__header {
    margin-bottom: 4px;
  }
}
@media (max-width: 575px) {
  .block-account .service-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.block-account .service-card__header .title {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  flex: 1;
  padding-right: 20px;
}
.block-account .service-card .status-badge {
  height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.block-account .service-card .status-badge--waiting {
  background: #ECF4F7;
  color: #718790;
}
.block-account .service-card .status-badge--confirmed {
  background: #DCECFF;
  color: #2D77CD;
}
.block-account .service-card .status-badge--completed {
  background: #D5F5E2;
  color: #15B053;
}
.block-account .service-card .status-badge--inprogress {
  background: #FFF1D4;
  color: #D09119;
}
.block-account .service-card .status-badge--cancelled {
  background: #FFDDE1;
  color: #DC364A;
}
.block-account .service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #737373;
}
.block-account .service-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-account .service-card__meta .meta-item img {
  width: 24px;
  opacity: 1;
}
@media (max-width: 1199px) {
  .block-account .service-card__meta {
    gap: 8px;
  }
}
.block-account .service-card__journey {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account .service-card__journey {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 1199px) {
  .block-account .service-card__journey {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .block-account .service-card__journey {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.block-account .service-card__journey .point .label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.block-account .service-card__journey .point .label .label-text {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
}
.block-account .service-card__journey .point .label .location-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.block-account .service-card__journey .point .label .location-wrapper img {
  width: 11px;
}
.block-account .service-card__journey .point .label .location-wrapper .location {
  font-size: 14px;
  color: #30BEA2;
  font-weight: 600;
}
.block-account .service-card__journey .point .date {
  display: block;
  font-size: 15px;
  color: #232323;
  margin-top: 2px;
}
.block-account .service-card__journey .connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: #DD9D22;
  font-size: 21px;
  font-weight: 700;
  font-family: "vietinsider";
}
@media (max-width: 767px) {
  .block-account .service-card__journey .connector {
    display: none;
  }
}
.block-account .service-card__journey .connector .line {
  margin-bottom: 8px;
  width: 100%;
  height: 15px;
  position: relative;
}
.block-account .service-card__people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-account .service-card__people {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1199px) {
  .block-account .service-card__people {
    grid-template-columns: 1fr;
  }
}
.block-account .service-card__people .meta-item {
  padding-left: 12px;
  border-left: 3px solid #34C1A5;
  font-size: 15px;
}
.block-account .service-card__people .meta-item .label {
  color: #7D7D7D;
}
.block-account .service-card__people .meta-item strong {
  display: block;
  color: #232323;
  font-weight: 600;
}
.block-account .service-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.block-account .service-card__footer .price .amount {
  font-size: 24px;
  font-weight: 600;
  color: #E02667;
}
.block-account .service-card__footer .footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-account .service-card__footer .btn-detail {
  padding: 0 12px;
  border: 1px solid #4AC2AA;
  color: #4AC2AA;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  height: 28px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.block-account .service-card__footer .btn-detail:hover {
  background: #34C1A5;
  color: #FFFFFF;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.block-booking {
  padding: 60px 0 100px;
  background-color: #fff;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-booking {
    padding: 40px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-booking {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .block-booking {
    padding: 30px 0;
  }
}
.block-booking .booking-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-booking .booking-layout {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .block-booking .booking-layout {
    flex-direction: column;
    gap: 20px;
  }
}
.block-booking .booking-left {
  flex: 1;
  min-width: 0;
}
.block-booking .booking-sidebar-wrap {
  width: 360px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-booking .booking-sidebar-wrap {
    width: 320px;
  }
}
@media (max-width: 991px) {
  .block-booking .booking-sidebar-wrap {
    width: 100%;
    position: static;
  }
}
.block-booking .booking-header {
  margin-bottom: 40px;
}
.block-booking .booking-header__title {
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-booking .booking-header__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .block-booking .booking-header__title {
    font-size: 24px;
  }
}
.block-booking .booking-header__title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #E1AE4D;
  margin-bottom: 12px;
}
.block-booking .booking-header__info {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .block-booking .booking-header__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.block-booking .booking-header__info .info-item .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 4px;
}
.block-booking .booking-header__info .info-item .label span {
  font-size: 14px;
  color: #4AC2AA;
  font-weight: 700;
  margin-left: 0;
}
.block-booking .booking-header__info .info-item .date {
  font-size: 16px;
  color: #232323;
}
.block-booking .booking-header__info .journey-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
  position: relative;
}
.block-booking .booking-header__info .journey-indicator .line {
  width: 100%;
  position: relative;
  text-align: center;
}
.block-booking .booking-header__info .journey-indicator .days {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  color: #DD9D22;
  margin-top: 4px;
  font-family: "vietinsider";
}
@media (max-width: 1199px) {
  .block-booking .booking-header__info .journey-indicator {
    max-width: 100%;
  }
}
.block-booking .selection-box {
  background: #F0F5F4;
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
.block-booking .selection-box__title {
  font-size: 22px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
  font-family: "vietinsider";
}
.block-booking .selection-box__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  flex: 1;
}
.block-booking .selection-box__item {
  display: flex;
  align-items: flex-start;
  transition: all 0.3s;
  gap: 4px;
  margin-bottom: 16px;
}
.block-booking .selection-box__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .block-booking .selection-box__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.block-booking .selection-box__item .content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.block-booking .selection-box__item .content .name {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  flex: 1;
}
.block-booking .selection-box__item .content .price-info {
  width: 130px;
  font-size: 16px;
  font-weight: 700;
  color: #E02667;
  text-align: right;
}
.block-booking .selection-box__item .content .price-info .sub {
  font-weight: 400;
  color: #313131;
  margin-left: 4px;
  font-size: 15px;
}
@media (max-width: 575px) {
  .block-booking .selection-box__item .content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    justify-content: flex-start;
  }
  .block-booking .selection-box__item .content .price-info {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}
.block-booking .selection-box__item-header {
  margin-bottom: 16px;
  width: 100%;
}
.block-booking .selection-box__item--radio {
  cursor: pointer;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.block-booking .selection-box__item--radio input[type=radio] {
  display: none;
}
.block-booking .selection-box__item--radio .radio-mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("../img-fix/elements/check-radio.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.block-booking .selection-box__item--radio input[type=radio]:checked ~ .radio-mark {
  background-image: url("../img-fix/elements/checked-radio.svg");
}
.block-booking .selection-box__item--radio .content {
  text-align: left;
  align-items: flex-start;
}
.block-booking .selection-box__item--radio:hover .name {
  color: #2DC5A7;
}
.block-booking .selection-box__footer {
  width: 100%;
}
.block-booking .selection-box__footer .form-group {
  margin-bottom: 0;
}
.block-booking .selection-box__footer .form-group label {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px;
  display: block;
}
.block-booking .selection-box--cabin .cabin-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.block-booking .selection-box--cabin .cabin-header__img {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.block-booking .selection-box--cabin .cabin-header__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-booking .selection-box--cabin .cabin-header .name {
  font-size: 17px;
  font-weight: 700;
  color: #232323;
  margin: 0;
}
.block-booking .selection-box--cabin .cabin-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.block-booking .selection-box--cabin .cabin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #FFFFFF;
  border: 1px solid #E2E9E7;
  border-radius: 8px;
  gap: 4px 8px;
}
.block-booking .selection-box--cabin .cabin-item__type {
  font-size: 15px;
  font-weight: 600;
  color: #34C1A5;
  width: 80px;
  flex-shrink: 0;
}
.block-booking .selection-box--cabin .cabin-item__desc {
  font-size: 15px;
  color: #7D7D7D;
  flex: 1;
}
.block-booking .selection-box--cabin .cabin-item__price {
  font-size: 16px;
  font-weight: 700;
  color: #E02667;
  text-align: right;
  width: 100px;
}
@media (max-width: 767px) {
  .block-booking .selection-box--cabin .cabin-item {
    flex-direction: column;
  }
  .block-booking .selection-box--cabin .cabin-item__type {
    width: 100%;
  }
  .block-booking .selection-box--cabin .cabin-item__desc {
    width: 100%;
  }
  .block-booking .selection-box--cabin .cabin-item__price {
    width: 100%;
    text-align: left;
  }
}
.block-booking .qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #E2E9E7;
  border-radius: 6px;
  overflow: hidden;
  margin-left: 12px;
  height: 38px;
  padding: 6px;
  background: #FFFFFF;
  margin-top: -8px;
}
@media (max-width: 575px) {
  .block-booking .qty-selector {
    margin-left: 0;
  }
}
.block-booking .qty-selector .btn-qty {
  width: 26px;
  height: 26px;
  background: #E9ECEB;
  display: flex;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #6D6A6A;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
}
.block-booking .qty-selector .btn-qty:hover {
  background: #D1D8D7;
  color: #232323;
}
.block-booking .qty-selector .btn-qty.disabled {
  opacity: 1;
  cursor: not-allowed;
  color: #fff;
  background: #E9ECEB;
}
.block-booking .qty-selector .qty-input {
  width: 40px;
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #3A3A3A;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-booking .extend-section {
  margin-top: 20px;
}
.block-booking .extend-section__title {
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 30px;
  font-family: "vietinsider";
}
@media (max-width: 767px) {
  .block-booking .extend-section__title {
    font-size: 24px;
  }
}
.block-booking .extend-section .extend-card {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #E2E9E7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.block-booking .extend-section .extend-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-booking .extend-section .extend-card {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .block-booking .extend-section .extend-card {
    flex-direction: column;
  }
}
.block-booking .extend-section .extend-card__img {
  width: 350px;
  height: 255px;
  flex-shrink: 0;
  border-radius: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-booking .extend-section .extend-card__img {
    width: 300px;
    height: 245px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .block-booking .extend-section .extend-card__img {
    width: 100%;
    height: 255px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-booking .extend-section .extend-card__img {
    width: 250px;
    height: 225px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-booking .extend-section .extend-card__img {
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 575px) {
  .block-booking .extend-section .extend-card__img {
    width: 100%;
    height: 200px;
  }
}
.block-booking .extend-section .extend-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-booking .extend-section .extend-card__content {
  flex: 1;
  padding: 24px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .block-booking .extend-section .extend-card__content {
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .block-booking .extend-section .extend-card__content {
    padding: 12px;
  }
}
.block-booking .extend-section .extend-card__header {
  margin-bottom: 16px;
}
.block-booking .extend-section .extend-card__header .name {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
  display: block;
}
.block-booking .extend-section .extend-card__header .loc {
  font-size: 14px;
  color: #4AC2AA;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.block-booking .extend-section .extend-card__header .duration {
  font-size: 14px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-booking .extend-section .extend-card__header .duration img {
  width: 24px;
}
.block-booking .extend-section .extend-card__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.block-booking .extend-section .extend-card__options .option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F0F4F3;
  border-radius: 6px;
  padding: 4px 4px 4px 12px;
  gap: 6px;
}
.block-booking .extend-section .extend-card__options .option-item .name {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 1.2;
  flex: 1;
}
.block-booking .extend-section .extend-card__options .option-item .price-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 260px;
}
.block-booking .extend-section .extend-card__options .option-item .price-wrap .price {
  font-size: 16px;
  font-weight: 700;
  color: #E02667;
}
.block-booking .extend-section .extend-card__options .option-item .price-wrap .price span {
  font-size: 15px;
  font-weight: 400;
  color: #313131;
  margin-left: 2px;
}
.block-booking .extend-section .extend-card__options .option-item .price-wrap .qty-selector {
  margin: 0;
  border: none;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .block-booking .extend-section .extend-card__options .option-item {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .block-booking .extend-section .extend-card__options .option-item .price-wrap {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .block-booking .extend-section .extend-card__options .option-item {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .block-booking .extend-section .extend-card__options .option-item .price-wrap {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .block-booking .extend-section .extend-card__options .option-item {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .block-booking .extend-section .extend-card__options .option-item .price-wrap {
    width: 100%;
    justify-content: flex-start;
  }
}
.block-booking .contact-form-section {
  margin-top: 40px;
}
.block-booking .contact-form-section__title {
  font-size: 34px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 30px;
  font-family: "vietinsider";
}
@media (max-width: 767px) {
  .block-booking .contact-form-section__title {
    font-size: 26px;
  }
}
.block-booking .order-summary {
  background: #FFFFFF;
  border: 3px solid #4AC2AA;
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .block-booking .order-summary {
    max-height: none;
    overflow-y: visible;
  }
}
.block-booking .order-summary__header {
  padding: 0;
}
.block-booking .order-summary .summary-block-wrap {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 8px;
}
.block-booking .order-summary .summary-block {
  margin-bottom: 8px;
}
.block-booking .order-summary .summary-block__toggle {
  padding: 4px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #F0F5F4;
  border-radius: 5px;
  gap: 4px;
}
.block-booking .order-summary .summary-block__toggle .text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-booking .order-summary .summary-block__toggle .text .arrow {
  transform: rotate(0);
  transition: all 0.3s;
}
.block-booking .order-summary .summary-block__toggle .text .arrow img {
  width: 12px;
}
.block-booking .order-summary .summary-block__toggle .text .name {
  font-size: 17px;
  font-weight: 700;
  color: #232323;
}
.block-booking .order-summary .summary-block__toggle .total {
  font-size: 16px;
  font-weight: 600;
  color: #E02667;
  width: 100px;
  text-align: right;
}
.block-booking .order-summary .summary-block__toggle.is-active .text .arrow {
  transform: rotate(-180deg);
}
.block-booking .order-summary .summary-block__content {
  padding: 12px 12px 8px 12px;
  display: none;
}
.block-booking .order-summary .summary-block__content.is-active {
  display: block;
}
.block-booking .order-summary .summary-block__content .item {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 8px;
  color: #363636;
  gap: 4px;
}
.block-booking .order-summary .summary-block__content .item .name {
  flex: 1;
}
.block-booking .order-summary .summary-block__content .item .qty {
  color: #727272;
  font-weight: 400;
  font-size: 14px;
  margin-right: 4px;
  flex: 1;
}
.block-booking .order-summary .summary-block__content .item .val {
  font-weight: 400;
  color: #F43F5E;
  width: 140px;
  text-align: right;
  font-size: 15px;
}
.block-booking .order-summary .summary-total {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 16px;
}
.block-booking .order-summary .summary-total .label {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
}
.block-booking .order-summary .summary-total .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #E02667;
}
@media (max-width: 575px) {
  .block-booking .order-summary .summary-total .price {
    font-size: 20px;
  }
}
.block-booking .order-summary .summary-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 8px;
}
.block-booking .order-summary .summary-trust-badges .highlight-list li {
  margin-bottom: 12px;
}
.block-booking .order-summary .summary-trust-badges .highlight-list li::before {
  background: linear-gradient(270deg, rgba(54, 194, 117, 0) 0%, #36C275 100%);
  opacity: 0.2;
  top: -1px;
}
.block-booking .order-summary .summary-agreement {
  padding: 0;
  margin-bottom: 12px;
}
.block-booking .order-summary .summary-agreement .checkbox-wrap {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #232323;
  line-height: 1.5;
}
.block-booking .order-summary .summary-agreement .checkbox-wrap input {
  margin-top: 4px;
}
.block-booking .order-summary .summary-agreement .checkbox-wrap a {
  color: #E1AE4D;
  text-decoration: underline;
}
.block-booking .order-summary .summary-agreement .filter__item .filter__icon a {
  color: #C5872B;
  font-size: 15px;
  text-decoration: underline;
  transition: all 0.3s;
}
.block-booking .order-summary .btn-pay {
  width: 100%;
  height: 48px;
  background: #4AC2AA;
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0;
  border-radius: 4px;
}
.block-booking .order-summary .btn-pay:hover {
  background: #3EA691;
}
.block-booking .order-summary .pay-note {
  margin-bottom: 12px;
  font-size: 14px;
  color: #7D7D7D;
  line-height: 22px;
  font-style: italic;
}