@charset "UTF-8";

:root {
  /* legacy/custom */
  --button-color: #FFD900;
  --menu-icon-color: #212529;
  --color-primary: #0077b6;
  --color-primary-light: #90e0ef;
  --color-primary-dark: #023e8a;
  --color-primary-gradient: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  --color-secondary: #ffb703;
  --color-secondary-light: #ffd166;
  --color-secondary-dark: #fb8500;
  --color-accent: #06d6a0;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-scase: #ffffff;
  --color-surface-mcase: #212529;
  --color-border: #e0e0e0;
  --color-text-primary: #212529;
  --color-text-secondary: #495057;
  --color-text-muted: #6c757d;
  --box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  --box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html,
body {
  overflow: hidden;
  overflow-y: auto;
  background: #ffffff;
}


#main3 {
  width: 100%;
  height: auto;
  float: left
}

#main-inner {
  width: 90%;
  height: auto;
  margin: 0 auto;
  overflow: auto
}

#main-inner1 {
  width: 80%;
  height: auto;
  margin: 0 auto;
  overflow: auto;
}

#main-inner2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: auto;
}

#main-inner3 {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 50px;
  overflow: hidden;
}

#main-inner4 {
  width: 80%;
  height: auto;
  margin: 0 auto;
  overflow: auto;
}

.bg-header {
  background: #212529 !important;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 1024px) {
  .main h2 {
    font-size: 1.875rem;
  }
}

.main .box-filters {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 1.5rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.main .box-filters .filters-grid {
  margin-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .box-filters .filters-grid {
    display: block;
  }

  .main .box-filters .filters-grid>* {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .box-filters .filters-grid>*:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .main .box-filters .filters-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .main .box-filters .filters-grid {
    display: block;
  }

  .main .box-filters .filters-grid>* {
    display: inline-block;
    width: calc(50% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .main .box-filters .filters-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .main .box-filters .filters-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .main .box-filters .filters-grid {
    display: block;
  }

  .main .box-filters .filters-grid>* {
    display: inline-block;
    width: calc(100% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .main .box-filters .filters-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .box-filters .filter-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.main .box-filters .filter-group .filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
}

.main .box-filters .filter-group .filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #ffffff;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -ms-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.main .box-filters .filter-group .filter-select:focus {
  outline: none;
  border-color: #0077b6;
}

.main .box-filters .filter-group .filter-clear {
  background: transparent;
  color: #0077b6;
  border: 1px solid #0077b6;
  padding: 0.5rem 1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .box-filters .filter-group .filter-clear:hover {
  background: #0077b6;
  color: #ffffff;
}

.main .main-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(1, 1fr);
  grid-template-columns: repeat(1, 1fr);
  gap: 8rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content {
    display: block;
  }

  .main .main-content>* {
    display: inline-block;
    width: calc(100% - 8rem);
    margin-right: 8rem;
    vertical-align: top;
  }

  .main .main-content>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .top-destinations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main .main-content .top-destinations .box-destinations {
  max-width: 960px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.main .main-content .top-destinations .box-destinations .destination {
  width: 300px;
  height: 348px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(184, 183, 183, 0.5);
  overflow: hidden;
  padding: 10px;
}

.main .main-content .top-destinations .box-destinations .destination .box-image {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.main .main-content .top-destinations .box-destinations .destination .box-image .star-rate {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: #0077b6;
  padding: 0px 5px;
  border-radius: 15px;
}

.main .main-content .top-destinations .box-destinations .destination .box-image .star-rate svg {
  width: 20px;
  height: 20px;
  color: var(--button-color);
}

.main .main-content .top-destinations .box-destinations .destination .box-image .star-rate .tag {
  color: #fff;
}

.main .main-content .top-destinations .box-destinations .destination .box-image .star-rate .rate {
  font-size: 0.9rem;
  color: #212529;
}

.main .main-content .top-destinations .box-destinations .destination .box-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .main-content .top-destinations .box-destinations .destination .box-info {
  display: grid;
  gap: 10px;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .detail {
  height: 60px;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .detail .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  margin: 0px;
  padding-bottom: 5px;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .detail .title svg {
  width: 20px;
  height: 20px;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .detail .text {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .price-action {
  height: 43px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .top-destinations .box-destinations .destination .box-info .price-action .price {
  font-weight: 600;
  font-size: 0.9rem;
  color: #212529;
}

.main .main-content .destinations {
  position: relative;
}

.main .main-content .destinations .title-above {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.main .main-content .destinations .all-destinations .section-description {
  font-size: 1.125rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .main .main-content .destinations .all-destinations .section-description {
    font-size: 1rem;
  }
}

.main .main-content .destinations .box-destinations {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1030px;
  height: auto;
  padding-top: 10px;
  margin: 0px auto;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .main .main-content .destinations .box-destinations {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 576px) {
  .main .main-content .destinations .box-destinations {
    grid-template-columns: repeat(1, 300px);
  }
}

.main .main-content .destinations .box-destinations .destination {
  max-width: 300px;
  height: 348px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(184, 183, 183, 0.5);
  overflow: hidden;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .destinations .box-destinations .destination:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
  .main .main-content .destinations .box-destinations .destination {
    width: 100%;
    max-width: 350px;
  }
}

.main .main-content .destinations .box-destinations .destination .box-image {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.main .main-content .destinations .box-destinations .destination .box-image .star-rate {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: #ffffff;
  padding: 0px 5px;
  border-radius: 15px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main .main-content .destinations .box-destinations .destination .box-image .star-rate svg {
  width: 20px;
  height: 20px;
  color: var(--button-color);
}

.main .main-content .destinations .box-destinations .destination .box-image .star-rate .rate {
  font-size: 0.9rem;
  color: #212529;
  font-weight: 600;
}

.main .main-content .destinations .box-destinations .destination .box-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.main .main-content .destinations .box-destinations .destination .box-info {
  display: grid;
  gap: 10px;
}

.main .main-content .destinations .box-destinations .destination .box-info .detail {
  height: 60px;
}

.main .main-content .destinations .box-destinations .destination .box-info .detail .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  left: -5px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0px;
  padding-bottom: 5px;
  color: #212529;
}

.main .main-content .destinations .box-destinations .destination .box-info .detail .title svg {
  width: 20px;
  height: 20px;
  fill: #0077b6;
  margin-right: 4px;
}

.main .main-content .destinations .box-destinations .destination .box-info .detail .text {
  font-weight: 400;
  font-size: 0.75rem;
  text-align: left;
  color: #495057;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.main .main-content .destinations .box-destinations .destination .box-info .price-action {
  height: 43px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .destinations .box-destinations .destination .box-info .price-action .price {
  font-weight: 500;
  font-size: 0.9rem;
  color: #0077b6;
}

.main .main-content .our-experience .description {
  text-align: left;
}

.main .main-content .our-experience .ourexp-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 100px;
}

.main .main-content .our-experience .ourexp-content .ourexp-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .our-experience .ourexp-content .ourexp-image .box-image {
  width: 500px;
  height: 500px;
}

@media (max-width: 1024px) {
  .main .main-content .our-experience .ourexp-content .ourexp-image .box-image {
    width: 300px;
    height: 300px;
  }
}

.main .main-content .our-experience .ourexp-content .ourexp-image .box-image .image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .main-content .our-experience .ourexp-content .ourexp-info {
  max-width: 670px;
}

.main .main-content .our-experience .ourexp-content .ourexp-info .box-items-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.main .main-content .our-experience .ourexp-content .ourexp-info .box-items-num .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 200px;
  border-radius: 10px;
  padding: 10px;
  background-color: #e0e0e0;
}

.main .main-content .our-experience .ourexp-content .ourexp-info .box-items-num .item .num {
  font-weight: 600;
  font-size: 3rem;
  color: #fb8500;
}

.main .main-content .our-experience .ourexp-content .ourexp-info .box-items-num .item .text {
  font-weight: 400;
  font-size: 1rem;
}

.main .main-content .popular-packages-tours .description {
  max-width: 700px;
  margin: 1rem auto 3rem;
  font-size: 1.125rem;
  color: #495057;
}

.main .main-content .popular-packages-tours .tours-collage {
  display: grid;
  grid-template-columns: 300px 600px;
  gap: 1rem;
  grid-template-rows: 300px 300px;
  gap: 10px;
  width: 100%;
  padding: 5px 10px;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.main .main-content .popular-packages-tours .tours-collage .tour-card:hover .image {
  transform: scale(1.05);
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .bottom .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .bottom .btn-gradient {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .bottom .btn-gradient:hover {
  opacity: 0.85;
}

.main .main-content .popular-packages-tours .tours-collage .tour-card .tour-info .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 999px;
}

.main .main-content .popular-packages-tours .tours-collage .tall {
  grid-column: 1;
  grid-row: 1/span 2;
}

.main .main-content .popular-packages-tours .tours-collage .wide {
  grid-column: 2;
  grid-row: 1;
}

.main .main-content .popular-packages-tours .tours-collage .box-two-column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content .popular-packages-tours .tours-collage .box-two-column {
    display: block;
  }

  .main .main-content .popular-packages-tours .tours-collage .box-two-column>* {
    display: inline-block;
    width: calc(50% - 10px);
    margin-right: 10px;
    vertical-align: top;
  }

  .main .main-content .popular-packages-tours .tours-collage .box-two-column>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .main .main-content .popular-packages-tours .tours-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .main .main-content .popular-packages-tours .tours-collage .tall,
  .main .main-content .popular-packages-tours .tours-collage .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .main .main-content .popular-packages-tours .tours-collage .box-two-column {
    height: 610px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.main .main-content .packages-tours {
  position: relative;
}

.main .main-content .packages-tours .all-tour .box-tours {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  height: auto;
  margin: 0px auto;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .main .main-content .packages-tours .all-tour .box-tours {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 576px) {
  .main .main-content .packages-tours .all-tour .box-tours {
    grid-template-columns: repeat(1, 300px);
  }
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card:hover .image {
  transform: scale(1.05);
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .bottom .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .bottom .btn-gradient {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .bottom .btn-gradient:hover {
  opacity: 0.85;
}

.main .main-content .packages-tours .all-tour .box-tours .tour-card .tour-info .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 999px;
}

.main .main-content .news {
  padding: 10px;
}

.main .main-content .news .include-aside {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.main .main-content .news .box-news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.main .main-content .news .box-news.two-column {
  max-width: 840px;
}

.main .main-content .news .box-news .blog-news-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 400px;
}

@media (max-width: 1024px) {
  .main .main-content .news .box-news .blog-news-card {
    max-width: 100%;
  }
}

.main .main-content .news .box-news .blog-news-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.main .main-content .news .box-news .blog-news-card:hover .blog-image img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.main .main-content .news .box-news .blog-news-card .blog-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.main .main-content .news .box-news .blog-news-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.main .main-content .news .box-news .blog-news-card .blog-image .blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0077b6;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main .main-content .news .box-news .blog-news-card .blog-image .blog-category.featured {
  background: #ffb703;
  animation: pulse 2s infinite;
}

.main .main-content .news .box-news .blog-news-card .blog-content {
  padding: 1.5rem;
}

.main .main-content .news .box-news .blog-news-card .blog-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}

.main .main-content .news .box-news .blog-news-card .blog-meta .blog-date,
.main .main-content .news .box-news .blog-news-card .blog-meta .blog-read-time {
  font-size: 0.75rem;
  color: #495057;
  font-weight: 500;
}

.main .main-content .news .box-news .blog-news-card .blog-meta .blog-date {
  color: #0077b6;
}

.main .main-content .news .box-news .blog-news-card .blog-title {
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.main .main-content .news .box-news .blog-news-card .blog-title a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  text-decoration: none;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
}

.main .main-content .news .box-news .blog-news-card .blog-title a:hover {
  color: #0077b6;
}

.main .main-content .news .box-news .blog-news-card .blog-excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.main .main-content .news .box-news .blog-news-card .blog-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.main .main-content .news .box-news .blog-news-card .blog-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.main .main-content .news .box-news .blog-news-card .blog-author .author-avatar {
  width: 32px;
  height: 32px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.main .main-content .news .box-news .blog-news-card .blog-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .main-content .news .box-news .blog-news-card .blog-author .author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #212529;
}

.main .main-content .news .box-news .blog-news-card .blog-engagement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}

.main .main-content .news .box-news .blog-news-card .blog-engagement .engagement-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 4px;
  color: #495057;
  font-size: 0.75rem;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}

.main .main-content .news .box-news .blog-news-card .blog-engagement .engagement-item:hover {
  color: #0077b6;
}

.main .main-content .news .box-news .blog-news-card .blog-engagement .engagement-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 576px) {
  .main .main-content .news .box-news .blog-news-card .blog-content {
    padding: 1rem;
  }

  .main .main-content .news .box-news .blog-news-card .blog-title a {
    font-size: 1.125rem;
  }

  .main .main-content .news .box-news .blog-news-card .blog-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .main .main-content .news .box-news .blog-news-card .blog-engagement {
    align-self: stretch;
    justify-content: flex-start;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 183, 3, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
  }
}

.main .main-content .news .box-news .blog-news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content .news .box-news .blog-news-grid {
    display: block;
  }

  .main .main-content .news .box-news .blog-news-grid>* {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .news .box-news .blog-news-grid>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .main .main-content .news .box-news .blog-news-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .main .main-content .news .box-news .blog-news-grid {
    display: block;
  }

  .main .main-content .news .box-news .blog-news-grid>* {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .news .box-news .blog-news-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .main .main-content .news .box-news .blog-news-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
  .main .main-content .news .box-news .blog-news-grid {
    display: block;
  }

  .main .main-content .news .box-news .blog-news-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .news .box-news .blog-news-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .news .box-news .blog-news-card.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 600px;
}

.main .main-content .news .box-news .blog-news-card.horizontal .blog-image {
  width: 200px;
  height: 150px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.main .main-content .news .box-news .blog-news-card.horizontal .blog-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  padding: 1.5rem;
}

@media (max-width: 576px) {
  .main .main-content .news .box-news .blog-news-card.horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main .main-content .news .box-news .blog-news-card.horizontal .blog-image {
    width: 100%;
    height: 200px;
  }
}

.main .main-content .news .blog-aside {
  max-width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .main .main-content .news .blog-aside {
    max-width: 100%;
  }
}

.main .main-content .news .blog-aside .aside-widget {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.main .main-content .news .blog-aside .aside-widget .widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  padding-bottom: 1rem;
  border-bottom: 2px solid #0077b6;
}

.main .main-content .news .blog-aside .aside-widget .widget-description {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.main .main-content .news .blog-aside .search-widget .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-input {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  padding: 0.5rem 1rem;
  padding-right: 50px;
  border: 1px solid #e0e0e0;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -ms-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-input:focus {
  outline: none;
  border-color: #0077b6;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-input::placeholder {
  color: #495057;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  background: #0077b6;
  border: none;
  -webkit-border-radius: 0 0.5rem 0.5rem 0;
  -moz-border-radius: 0 0.5rem 0.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2px;
}

.main .main-content .news .blog-aside .search-widget .search-form .search-btn:hover {
  background: #023e8a;
}

.main .main-content .news .blog-aside .categories-widget .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main .main-content .news .blog-aside .categories-widget .categories-list li {
  margin-bottom: 0.5rem;
}

.main .main-content .news .blog-aside .categories-widget .categories-list li:last-child {
  margin-bottom: 0;
}

.main .main-content .news .blog-aside .categories-widget .categories-list .category-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .categories-widget .categories-list .category-item:hover {
  background: rgba(0, 119, 182, 0.05);
}

.main .main-content .news .blog-aside .categories-widget .categories-list .category-item:hover .category-name {
  color: #0077b6;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.main .main-content .news .blog-aside .categories-widget .categories-list .category-item .category-name {
  font-size: 0.875rem;
  color: #212529;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .categories-widget .categories-list .category-item .category-count {
  background: #e0e0e0;
  color: #495057;
  padding: 2px 8px;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-posts-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-link:hover .recent-post-title {
  color: #0077b6;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-link:hover .recent-post-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-image {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  min-width: 0;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.main .main-content .news .blog-aside .recent-posts-widget .recent-post-item .recent-post-date {
  font-size: 0.75rem;
  color: #495057;
}

.main .main-content .news .blog-aside .tags-widget .tags-cloud {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.main .main-content .news .blog-aside .tags-widget .tag-item {
  padding: 0.25rem 0.5rem;
  background: #e0e0e0;
  color: #495057;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .tags-widget .tag-item:hover {
  background: #0077b6;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main .main-content .news .blog-aside .newsletter-widget {
  background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
}

.main .main-content .news .blog-aside .newsletter-widget .widget-title {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.main .main-content .news .blog-aside .newsletter-widget .widget-description {
  color: rgba(255, 255, 255, 0.9);
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form .newsletter-input {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form .newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form .newsletter-btn {
  padding: 0.5rem;
  background: #ffb703;
  color: #ffffff;
  border: none;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .newsletter-widget .newsletter-form .newsletter-btn:hover {
  background: #fb8500;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main .main-content .news .blog-aside .social-widget .social-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.main .main-content .news .blog-aside .social-widget .social-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .news .blog-aside .social-widget .social-link svg {
  width: 20px;
  height: 20px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.main .main-content .news .blog-aside .social-widget .social-link.facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.main .main-content .news .blog-aside .social-widget .social-link.facebook svg {
  fill: #1877f2;
}

.main .main-content .news .blog-aside .social-widget .social-link.facebook:hover {
  background: #1877f2;
  color: #ffffff;
}

.main .main-content .news .blog-aside .social-widget .social-link.facebook:hover svg {
  fill: #ffffff;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.main .main-content .news .blog-aside .social-widget .social-link.instagram {
  background: rgba(228, 64, 95, 0.1);
  color: #e4405f;
}

.main .main-content .news .blog-aside .social-widget .social-link.instagram svg {
  fill: #e4405f;
}

.main .main-content .news .blog-aside .social-widget .social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.main .main-content .news .blog-aside .social-widget .social-link.instagram:hover svg {
  fill: #ffffff;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.main .main-content .news .blog-aside .social-widget .social-link.twitter {
  background: rgba(29, 161, 242, 0.1);
  color: #1da1f2;
}

.main .main-content .news .blog-aside .social-widget .social-link.twitter svg {
  fill: #1da1f2;
}

.main .main-content .news .blog-aside .social-widget .social-link.twitter:hover {
  background: #1da1f2;
  color: #ffffff;
}

.main .main-content .news .blog-aside .social-widget .social-link.twitter:hover svg {
  fill: #ffffff;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.main .main-content .news .blog-aside .social-widget .social-link.youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.main .main-content .news .blog-aside .social-widget .social-link.youtube svg {
  fill: #ff0000;
}

.main .main-content .news .blog-aside .social-widget .social-link.youtube:hover {
  background: #ff0000;
  color: #ffffff;
}

.main .main-content .news .blog-aside .social-widget .social-link.youtube:hover svg {
  fill: #ffffff;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 1280px) {
  .main .main-content .news .blog-aside {
    gap: 1.5rem;
  }

  .main .main-content .news .blog-aside .aside-widget {
    padding: 1rem;
  }
}

.main .main-content .booking-form {
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.main .main-content .booking-form .form-status {
  grid-column: 1/-1;
  margin-bottom: 0.5rem;
}

.main .main-content .booking-form .form-status .form-success,
.main .main-content .booking-form .form-status .form-error-general {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.main .main-content .booking-form .form-status .form-success svg,
.main .main-content .booking-form .form-status .form-error-general svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.main .main-content .booking-form .form-status .form-success {
  background: rgba(6, 214, 160, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.main .main-content .booking-form .form-status .form-success svg {
  fill: #22c55e;
}

.main .main-content .booking-form .form-status .form-error-general {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.main .main-content .booking-form .form-status .form-error-general svg {
  fill: #dc3545;
}

.main .main-content .booking-form .form-error {
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 2px;
  display: none;
}

.main .main-content .booking-form .form-error.show {
  display: block;
}

@media (max-width: 1024px) {
  .main .main-content .booking-form__container {
    padding: 10px;
  }

  .main .main-content .booking-form__title {
    font-size: 1.5rem;
  }
}

.main .main-content .booking-form__container {
  max-width: 700px;
  width: 100%;
  background: #ffffff;
  color: #212529;
  border-radius: 1rem;
  box-shadow: "0 10px 15px -3px rgba(0, 0, 0, 0.1)";
  padding: 20px;
}

.main .main-content .booking-form__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #0077b6;
}

.main .main-content .booking-form__subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #495057;
}

.main .main-content .booking-form__form {
  display: grid;
  gap: 10px;
}

.main .main-content .booking-form__field {
  display: flex;
  flex-direction: column;
}

.main .main-content .booking-form__field label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #212529;
}

.main .main-content .booking-form__field input,
.main .main-content .booking-form__field textarea,
.main .main-content .booking-form__field select {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  color: #212529;
}

.main .main-content .booking-form__field input:focus,
.main .main-content .booking-form__field textarea:focus,
.main .main-content .booking-form__field select:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

.main .main-content .booking-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.main .main-content .booking-form__field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.main .main-content .booking-form__btn {
  background: #0077b6;
  color: #ffffff;
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.main .main-content .booking-form__btn:hover {
  background: rgb(0, 92.3230769231, 141.2);
  transform: translateY(-2px);
}

.main .main-content .about-us .title-above {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.main .main-content .about-us .our-story {
  margin-bottom: 6rem;
}

.main .main-content .about-us .our-story .story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-story .story-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-story .story-content {
    display: block;
  }

  .main .main-content .about-us .our-story .story-content>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-story .story-content>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .about-us .our-story .story-stats {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content .about-us .our-story .story-stats {
    display: block;
  }

  .main .main-content .about-us .our-story .story-stats>* {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-story .story-stats>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .main .main-content .about-us .our-story .story-stats {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-story .story-stats {
    display: block;
  }

  .main .main-content .about-us .our-story .story-stats>* {
    display: inline-block;
    width: calc(100% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-story .story-stats>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .about-us .our-story .story-stats .stat-item {
  text-align: center;
  padding: 1rem;
}

.main .main-content .about-us .our-story .story-stats .stat-item .stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 1024px) {
  .main .main-content .about-us .our-story .story-stats .stat-item .stat-number {
    font-size: 1.875rem;
  }
}

.main .main-content .about-us .our-story .story-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #495057;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main .main-content .about-us .our-story .story-image {
  position: relative;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main .main-content .about-us .our-story .story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-story .story-image img {
    height: 400px;
  }
}

.main .main-content .about-us .our-story .story-image .image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffb703;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
  -moz-box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.main .main-content .about-us .our-mission {
  margin-bottom: 6rem;
}

.main .main-content .about-us .our-mission .mb-6 {
  margin-bottom: 4rem;
}

.main .main-content .about-us .our-mission .mission-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content .about-us .our-mission .mission-grid {
    display: block;
  }

  .main .main-content .about-us .our-mission .mission-grid>* {
    display: inline-block;
    width: calc(50% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-mission .mission-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .main .main-content .about-us .our-mission .mission-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-mission .mission-grid {
    display: block;
  }

  .main .main-content .about-us .our-mission .mission-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-mission .mission-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .about-us .our-mission .mission-item {
  background: #ffffff;
  padding: 3rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .main-content .about-us .our-mission .mission-item:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.main .main-content .about-us .our-mission .mission-item .mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0077b6 0%, #90e0ef 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto 1rem;
}

.main .main-content .about-us .our-mission .mission-item .mission-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.main .main-content .about-us .our-mission .mission-item .mission-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.main .main-content .about-us .our-mission .mission-item .mission-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #495057;
}

.main .main-content .about-us .our-team {
  margin-bottom: 6rem;
}

.main .main-content .about-us .our-team .team-intro {
  font-size: 1.125rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.main .main-content .about-us .our-team .team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .main .main-content .about-us .our-team .team-grid {
    display: block;
  }

  .main .main-content .about-us .our-team .team-grid>* {
    display: inline-block;
    width: calc(33.3333333333% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-team .team-grid>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-team .team-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-team .team-grid {
    display: block;
  }

  .main .main-content .about-us .our-team .team-grid>* {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-team .team-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .main .main-content .about-us .our-team .team-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-team .team-grid {
    display: block;
  }

  .main .main-content .about-us .our-team .team-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-team .team-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.main .main-content .about-us .our-team .team-member {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .main-content .about-us .our-team .team-member:hover {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.main .main-content .about-us .our-team .team-member:hover .member-social {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.main .main-content .about-us .our-team .team-member .member-photo {
  position: relative;
  overflow: hidden;
}

.main .main-content .about-us .our-team .team-member .member-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .main-content .about-us .our-team .team-member .member-photo .member-social {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main .main-content .about-us .our-team .team-member .member-photo .member-social .social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main .main-content .about-us .our-team .team-member .member-photo .member-social .social-link svg {
  width: 16px;
  height: 16px;
  fill: #0077b6;
}

.main .main-content .about-us .our-team .team-member .member-photo .member-social .social-link:hover {
  background: #0077b6;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.main .main-content .about-us .our-team .team-member .member-photo .member-social .social-link:hover svg {
  fill: #ffffff;
}

.main .main-content .about-us .our-team .team-member .member-info {
  padding: 1.5rem;
  text-align: center;
}

.main .main-content .about-us .our-team .team-member .member-info .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
}

.main .main-content .about-us .our-team .team-member .member-info .member-position {
  color: #0077b6;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.main .main-content .about-us .our-team .team-member .member-info .member-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #495057;
}

.main .main-content .about-us .our-values {
  margin-bottom: 6rem;
}

.main .main-content .about-us .our-values .values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-values .values-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .main .main-content .about-us .our-values .values-content {
    display: block;
  }

  .main .main-content .about-us .our-values .values-content>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .main .main-content .about-us .our-values .values-content>*:nth-child(1n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-values .values-content .values-image {
    order: -1;
  }
}

.main .main-content .about-us .our-values .values-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.main .main-content .about-us .our-values .value-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}

.main .main-content .about-us .our-values .value-item .value-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06d6a0 0%, #90e0ef 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.main .main-content .about-us .our-values .value-item .value-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.main .main-content .about-us .our-values .value-item .value-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.main .main-content .about-us .our-values .value-item .value-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #495057;
}

.main .main-content .about-us .our-values .values-image {
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main .main-content .about-us .our-values .values-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .main .main-content .about-us .our-values .values-image img {
    height: 400px;
  }
}

.main .main-content .about-us .about-cta {
  background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  padding: 6rem 4rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .main .main-content .about-us .about-cta {
    padding: 4rem 1.5rem;
  }
}

.main .main-content .about-us .about-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.main .main-content .about-us .about-cta .cta-content .cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 1024px) {
  .main .main-content .about-us .about-cta .cta-content .cta-title {
    font-size: 1.875rem;
  }
}

.main .main-content .about-us .about-cta .cta-content .cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .main .main-content .about-us .about-cta .cta-content .cta-description {
    font-size: 1rem;
  }
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 576px) {
  .main .main-content .about-us .about-cta .cta-content .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons .btn {
  padding: 1rem 3rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

@media (max-width: 576px) {
  .main .main-content .about-us .about-cta .cta-content .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons .btn.btn-primary {
  background: #ffb703;
  color: #ffffff;
  border: 2px solid #ffb703;
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons .btn.btn-primary:hover {
  background: #fb8500;
  border-color: #fb8500;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
  -moz-box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
  box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.main .main-content .about-us .about-cta .cta-content .cta-buttons .btn.btn-outline:hover {
  background: #ffffff;
  color: #0077b6;
  border-color: #ffffff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main .main-content .about-us .text-center {
  text-align: center;
}

.main .main-content .about-us .mb-6 {
  margin-bottom: 4rem;
}

.pricing .pricing-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .pricing .pricing-grid {
    display: block;
  }

  .pricing .pricing-grid>* {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .pricing .pricing-grid>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .pricing .pricing-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .pricing .pricing-grid {
    display: block;
  }

  .pricing .pricing-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .pricing .pricing-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.pricing .pricing-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.pricing .pricing-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing .pricing-card.featured {
  border-color: #0077b6;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.pricing .pricing-card.featured:hover {
  -webkit-transform: scale(1.05) translateY(-5px);
  -moz-transform: scale(1.05) translateY(-5px);
  -ms-transform: scale(1.05) translateY(-5px);
  -o-transform: scale(1.05) translateY(-5px);
  transform: scale(1.05) translateY(-5px);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #0077b6;
  color: #ffffff;
  padding: 0.25rem 1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing .pricing-card .package-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .package-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .package-price .price {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0077b6;
}

.pricing .pricing-card .package-price .per {
  font-size: 0.875rem;
  color: #495057;
}

.pricing .pricing-card .package-features {
  margin-bottom: 3rem;
}

.pricing .pricing-card .package-features .feature {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.875rem;
  color: #495057;
}

.pricing .pricing-card .package-features .feature:last-child {
  border-bottom: none;
}

.pricing .pricing-card .btn-select {
  width: 100%;
  background: #0077b6;
  color: #ffffff;
  border: none;
  padding: 1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-card .btn-select:hover {
  background: #023e8a;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.pricing .pricing-card.featured .btn-select {
  background: #ffb703;
}

.pricing .pricing-card.featured .btn-select:hover {
  background: #fb8500;
}

.call-action-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  height: 500px;
  padding: 10px;
  overflow: hidden;
}

.call-action-image .image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.call-action-image .image.brightness {
  filter: brightness(0.8);
}

.call-action-image .central-info {
  position: relative;
  text-align: center;
  z-index: 1;
}

.call-action-image .central-info .text {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  max-width: 800px;
  text-transform: capitalize;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 576px) {
  .call-action-image .central-info .text {
    font-size: 1.3rem;
  }
}

.testimonial-image-bg {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.testimonial-image-bg .box-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonial-image-bg .box-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
}

.destination-detail .header-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  background-color: #000;
  width: 100%;
  height: 600px;
}

.destination-detail .header-detail .box-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.destination-detail .header-detail .box-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.destination-detail .header-detail .detail-info {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.destination-detail .header-detail .detail-info .heading-lg {
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.destination-detail .header-detail .detail-info p {
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.destination-detail .title-above {
  position: relative;
  display: inline-block;
  color: #fb8500;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.destination-detail .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1.5rem;
}

.destination-detail .destination-overview {
  margin-bottom: 6rem;
}

.destination-detail .destination-overview .overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

@media (max-width: 1280px) {
  .destination-detail .destination-overview .overview-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .destination-detail .destination-overview .overview-content {
    display: block;
  }

  .destination-detail .destination-overview .overview-content>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .destination-detail .destination-overview .overview-content>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .destination-overview .destination-facts {
  margin-top: 3rem;
}

.destination-detail .destination-overview .destination-facts h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.destination-detail .destination-overview .destination-facts .facts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .destination-detail .destination-overview .destination-facts .facts-grid {
    display: block;
  }

  .destination-detail .destination-overview .destination-facts .facts-grid>* {
    display: inline-block;
    width: calc(50% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .destination-detail .destination-overview .destination-facts .facts-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .destination-detail .destination-overview .destination-facts .facts-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .destination-detail .destination-overview .destination-facts .facts-grid {
    display: block;
  }

  .destination-detail .destination-overview .destination-facts .facts-grid>* {
    display: inline-block;
    width: calc(100% - 0.5rem);
    margin-right: 0.5rem;
    vertical-align: top;
  }

  .destination-detail .destination-overview .destination-facts .facts-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .destination-overview .destination-facts .fact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.destination-detail .destination-overview .destination-facts .fact-item svg {
  width: 20px;
  height: 20px;
  color: #0077b6;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.destination-detail .destination-overview .destination-facts .fact-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.destination-detail .destination-overview .destination-facts .fact-item span {
  font-size: 0.875rem;
  color: #495057;
}

.destination-detail .destination-overview .info-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  position: sticky;
  top: 1.5rem;
}

.destination-detail .destination-overview .info-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.destination-detail .destination-overview .info-card .info-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.destination-detail .destination-overview .info-card .info-item:last-of-type {
  border-bottom: none;
}

.destination-detail .destination-overview .info-card .info-item svg {
  width: 24px;
  height: 24px;
  fill: #0077b6;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.destination-detail .destination-overview .info-card .info-item strong {
  display: block;
  margin-bottom: 4px;
}

.destination-detail .destination-overview .info-card .info-item p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
}

.destination-detail .destination-overview .info-card .btn-primary-full {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.destination-detail .top-attractions {
  margin-bottom: 6rem;
  text-align: center;
}

.destination-detail .top-attractions .attractions-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .destination-detail .top-attractions .attractions-grid {
    display: block;
  }

  .destination-detail .top-attractions .attractions-grid>* {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .top-attractions .attractions-grid>*:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .destination-detail .top-attractions .attractions-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .destination-detail .top-attractions .attractions-grid {
    display: block;
  }

  .destination-detail .top-attractions .attractions-grid>* {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .top-attractions .attractions-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .destination-detail .top-attractions .attractions-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .destination-detail .top-attractions .attractions-grid {
    display: block;
  }

  .destination-detail .top-attractions .attractions-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .top-attractions .attractions-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .top-attractions .attraction-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  -webkit-transition: transform 0.3s, box-shadow 0.3s;
  -moz-transition: transform 0.3s, box-shadow 0.3s;
  -ms-transition: transform 0.3s, box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-detail .top-attractions .attraction-card:hover {
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.destination-detail .top-attractions .attraction-card .attraction-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-detail .top-attractions .attraction-card .attraction-info {
  padding: 1.5rem;
}

.destination-detail .top-attractions .attraction-card .attraction-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-detail .top-attractions .attraction-card .attraction-info p {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1rem;
}

.destination-detail .top-attractions .attraction-card .attraction-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: #212529;
}

.destination-detail .top-attractions .attraction-card .attraction-meta .meta-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.25rem;
}

.destination-detail .top-attractions .attraction-card .attraction-meta .meta-item svg {
  width: 14px;
  height: 14px;
  color: #0077b6;
}

.destination-detail .culture-food {
  margin-bottom: 6rem;
}

.destination-detail .culture-food .culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 1280px) {
  .destination-detail .culture-food .culture-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .destination-detail .culture-food .culture-grid {
    display: block;
  }

  .destination-detail .culture-food .culture-grid>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .destination-detail .culture-food .culture-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .culture-food .culture-item,
.destination-detail .culture-food .food-item {
  margin-bottom: 1.5rem;
}

.destination-detail .culture-food .culture-item h4,
.destination-detail .culture-food .food-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.destination-detail .culture-food .food-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}

.destination-detail .culture-food .food-item .food-icon {
  font-size: 2rem;
}

.destination-detail .recommended-hotels {
  margin-bottom: 6rem;
  text-align: center;
}

.destination-detail .recommended-hotels .hotels-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .destination-detail .recommended-hotels .hotels-grid {
    display: block;
  }

  .destination-detail .recommended-hotels .hotels-grid>* {
    display: inline-block;
    width: calc(33.3333333333% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .recommended-hotels .hotels-grid>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .destination-detail .recommended-hotels .hotels-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .destination-detail .recommended-hotels .hotels-grid {
    display: block;
  }

  .destination-detail .recommended-hotels .hotels-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .recommended-hotels .hotels-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .recommended-hotels .hotel-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  overflow: hidden;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image {
  position: relative;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image .hotel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 6px 12px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image .hotel-badge.luxury {
  background: #fb8500;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image .hotel-badge.mid {
  background: #0077b6;
}

.destination-detail .recommended-hotels .hotel-card .hotel-image .hotel-badge.budget {
  background: #06d6a0;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info {
  padding: 1.5rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-rating {
  margin-bottom: 0.5rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-rating svg {
  width: 18px;
  height: 18px;
  fill: #ffb703;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info p {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-features span {
  background-color: #e0e0e0;
  padding: 4px 10px;
  font-size: 0.75rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-footer .hotel-price {
  font-weight: 700;
  font-size: 1.125rem;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-footer .btn-hotel {
  background: #90e0ef;
  color: #0077b6;
  padding: 8px 16px;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.destination-detail .recommended-hotels .hotel-card .hotel-info .hotel-footer .btn-hotel:hover {
  background: #0077b6;
  color: #ffffff;
}

.destination-detail .travel-tips {
  text-align: center;
}

.destination-detail .travel-tips .tips-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .destination-detail .travel-tips .tips-grid {
    display: block;
  }

  .destination-detail .travel-tips .tips-grid>* {
    display: inline-block;
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .travel-tips .tips-grid>*:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  .destination-detail .travel-tips .tips-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .destination-detail .travel-tips .tips-grid {
    display: block;
  }

  .destination-detail .travel-tips .tips-grid>* {
    display: inline-block;
    width: calc(50% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .travel-tips .tips-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .destination-detail .travel-tips .tips-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .destination-detail .travel-tips .tips-grid {
    display: block;
  }

  .destination-detail .travel-tips .tips-grid>* {
    display: inline-block;
    width: calc(100% - 1.5rem);
    margin-right: 1.5rem;
    vertical-align: top;
  }

  .destination-detail .travel-tips .tips-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.destination-detail .travel-tips .tip-card {
  background: #e0e0e0;
  padding: 3rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  text-align: center;
}

.destination-detail .travel-tips .tip-card .tip-icon {
  display: inline-flex;
  background: #0077b6;
  color: #ffffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}

.destination-detail .travel-tips .tip-card .tip-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.destination-detail .travel-tips .tip-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-detail .travel-tips .tip-card p {
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.6;
}

.tour-detail .header-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  background-color: #000;
  width: 100%;
  height: 600px;
}

.tour-detail .header-detail .box-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tour-detail .header-detail .box-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.tour-detail .header-detail .detail-info {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.tour-detail .header-detail .detail-info .heading-lg {
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.tour-detail .header-detail .detail-info p {
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .tour-detail .header-detail .detail-info p {
    font-size: 1.125rem;
  }
}

.tour-detail .container {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .tour-detail .container {
    padding: 4rem 1rem;
  }
}

.tour-detail .title-above {
  position: relative;
  display: inline-block;
  color: #fb8500;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tour-detail .title-above.left {
  margin-left: 0;
}

.tour-detail .title-above::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fb8500;
}

.tour-detail .heading-lg {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .tour-detail .heading-lg {
    font-size: 1.875rem;
  }
}

.tour-detail .tour-overview {
  margin-bottom: 6rem;
}

.tour-detail .tour-overview .overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

@media (max-width: 1280px) {
  .tour-detail .tour-overview .overview-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1280px) and (-ms-high-contrast: active),
(max-width: 1280px) and (-ms-high-contrast: none) {
  .tour-detail .tour-overview .overview-content {
    display: block;
  }

  .tour-detail .tour-overview .overview-content>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .tour-detail .tour-overview .overview-content>*:nth-child(1n) {
    margin-right: 0;
  }
}

.tour-detail .tour-overview .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 3rem;
}

.tour-detail .tour-overview .tour-highlights h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
}

.tour-detail .tour-overview .tour-highlights .highlights-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .tour-detail .tour-overview .tour-highlights .highlights-grid {
    display: block;
  }

  .tour-detail .tour-overview .tour-highlights .highlights-grid>* {
    display: inline-block;
    width: calc(50% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .tour-detail .tour-overview .tour-highlights .highlights-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .tour-detail .tour-overview .tour-highlights .highlights-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .tour-detail .tour-overview .tour-highlights .highlights-grid {
    display: block;
  }

  .tour-detail .tour-overview .tour-highlights .highlights-grid>* {
    display: inline-block;
    width: calc(100% - 0.5rem);
    margin-right: 0.5rem;
    vertical-align: top;
  }

  .tour-detail .tour-overview .tour-highlights .highlights-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.tour-detail .tour-overview .tour-highlights .highlight-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.tour-detail .tour-overview .tour-highlights .highlight-item svg {
  width: 20px;
  height: 20px;
  fill: #06d6a0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.tour-detail .tour-overview .tour-highlights .highlight-item span {
  font-size: 1rem;
  color: #495057;
}

.tour-detail .tour-overview .booking-card {
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  position: sticky;
  top: 1.5rem;
}

.tour-detail .tour-overview .booking-card .price-section {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.tour-detail .tour-overview .booking-card .price-section .price-info {
  margin-bottom: 1rem;
}

.tour-detail .tour-overview .booking-card .price-section .price-info .price-from {
  display: block;
  font-size: 0.875rem;
  color: #495057;
}

.tour-detail .tour-overview .booking-card .price-section .price-info .price-amount {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0077b6;
  margin: 0.25rem 0;
}

.tour-detail .tour-overview .booking-card .price-section .price-info .price-per {
  font-size: 0.875rem;
  color: #495057;
}

.tour-detail .tour-overview .booking-card .price-section .rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.tour-detail .tour-overview .booking-card .price-section .rating .stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 2px;
}

.tour-detail .tour-overview .booking-card .price-section .rating .stars svg {
  width: 16px;
  height: 16px;
  color: var(--button-color);
}

.tour-detail .tour-overview .booking-card .price-section .rating .rating-text {
  font-size: 0.875rem;
  color: #495057;
}

.tour-detail .tour-overview .booking-card .tour-details {
  margin-bottom: 1.5rem;
}

.tour-detail .tour-overview .booking-card .tour-details .detail-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tour-detail .tour-overview .booking-card .tour-details .detail-row svg {
  width: 18px;
  height: 18px;
  fill: #0077b6;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.tour-detail .tour-overview .booking-card .tour-details .detail-row span {
  font-size: 0.875rem;
  color: #495057;
}

.tour-detail .tour-overview .booking-card .btn-book,
.tour-detail .tour-overview .booking-card .btn-wishlist {
  width: 100%;
  padding: 1rem;
  border: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tour-detail .tour-overview .booking-card .btn-book:last-child,
.tour-detail .tour-overview .booking-card .btn-wishlist:last-child {
  margin-bottom: 0;
}

.tour-detail .tour-overview .booking-card .btn-book {
  background: #0077b6;
  color: #ffffff;
}

.tour-detail .tour-overview .booking-card .btn-book:hover {
  background: #023e8a;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
  -moz-box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.tour-detail .tour-overview .booking-card .btn-wishlist {
  background: transparent;
  color: #0077b6;
  border: 2px solid #0077b6;
}

.tour-detail .tour-overview .booking-card .btn-wishlist:hover {
  background: #0077b6;
  color: #ffffff;
}

.tour-detail .tour-itinerary {
  margin-bottom: 6rem;
}

.tour-detail .tour-itinerary .itinerary-timeline {
  margin-top: 3rem;
}

.tour-detail .tour-itinerary .timeline-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.tour-detail .tour-itinerary .timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: calc(100% + 4rem);
  background: #e0e0e0;
}

@media (max-width: 576px) {
  .tour-detail .tour-itinerary .timeline-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }

  .tour-detail .tour-itinerary .timeline-item:after {
    display: none;
  }
}

.tour-detail .tour-itinerary .timeline-marker {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  background: #0077b6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.tour-detail .tour-itinerary .timeline-marker .day-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.tour-detail .tour-itinerary .timeline-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}

.tour-detail .tour-itinerary .timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.tour-detail .tour-itinerary .timeline-content .time-badge {
  display: inline-block;
  background: #ffd166;
  color: #fb8500;
  padding: 0.25rem 0.5rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tour-detail .tour-itinerary .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1rem;
}

.tour-detail .tour-itinerary .timeline-content .day-highlights {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tour-detail .tour-itinerary .timeline-content .day-highlights .highlight {
  background: #90e0ef;
  color: #023e8a;
  padding: 0.25rem 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.tour-detail .tour-services {
  margin-bottom: 6rem;
}

.tour-detail .tour-services .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .tour-detail .tour-services .services-grid {
    display: block;
  }

  .tour-detail .tour-services .services-grid>* {
    display: inline-block;
    width: calc(50% - 4rem);
    margin-right: 4rem;
    vertical-align: top;
  }

  .tour-detail .tour-services .services-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .tour-detail .tour-services .services-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
  .tour-detail .tour-services .services-grid {
    display: block;
  }

  .tour-detail .tour-services .services-grid>* {
    display: inline-block;
    width: calc(100% - 3rem);
    margin-right: 3rem;
    vertical-align: top;
  }

  .tour-detail .tour-services .services-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.tour-detail .tour-services .services-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.tour-detail .tour-services .service-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 1rem;
}

.tour-detail .tour-services .service-item svg {
  width: 24px;
  height: 24px;
  fill: #06d6a0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-detail .tour-services .service-item .service-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
}

.tour-detail .tour-services .service-item .service-info p {
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.5;
}

.tour-detail .tour-services .bring-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.tour-detail .tour-services .bring-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.tour-detail .tour-services .bring-item svg {
  width: 16px;
  height: 16px;
  color: var(--button-color);
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.tour-detail .tour-services .bring-item span {
  font-size: 0.875rem;
  color: #495057;
}

.tour-detail .tour-gallery {
  margin-bottom: 6rem;
}

.tour-detail .tour-gallery .gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .tour-detail .tour-gallery .gallery-grid {
    display: block;
  }

  .tour-detail .tour-gallery .gallery-grid>* {
    display: inline-block;
    width: calc(33.3333333333% - 1rem);
    margin-right: 1rem;
    vertical-align: top;
  }

  .tour-detail .tour-gallery .gallery-grid>*:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .tour-detail .tour-gallery .gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast: active),
(max-width: 1024px) and (-ms-high-contrast: none) {
  .tour-detail .tour-gallery .gallery-grid {
    display: block;
  }

  .tour-detail .tour-gallery .gallery-grid>* {
    display: inline-block;
    width: calc(50% - 0.5rem);
    margin-right: 0.5rem;
    vertical-align: top;
  }

  .tour-detail .tour-gallery .gallery-grid>*:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .tour-detail .tour-gallery .gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}

@media screen and (max-width: 576px) and (-ms-high-contrast: active),
(max-width: 576px) and (-ms-high-contrast: none) {
  .tour-detail .tour-gallery .gallery-grid {
    display: block;
  }

  .tour-detail .tour-gallery .gallery-grid>* {
    display: inline-block;
    width: calc(100% - 0.5rem);
    margin-right: 0.5rem;
    vertical-align: top;
  }

  .tour-detail .tour-gallery .gallery-grid>*:nth-child(1n) {
    margin-right: 0;
  }
}

.tour-detail .tour-gallery .gallery-item {
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tour-detail .tour-gallery .gallery-item:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-detail .tour-gallery .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tour-detail .tour-gallery .gallery-item img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: transparent;
  position: relative;
  height: auto;
}

.contact-info .contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-info .contact-header {
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .contact-info .contact-header {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-info .contact-header {
    margin-bottom: 1rem;
  }
}

.contact-info .contact-header .contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .contact-info .contact-header .contact-title {
    font-size: 1.5rem;
  }
}

.contact-info .contact-header .contact-description {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contact-info .contact-header .contact-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-info .contact-header .contact-description {
    font-size: 0.875rem;
  }
}

.contact-info .contact-actions .contact-cta {
  margin-bottom: 0.5rem;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
  .contact-info .contact-actions .contact-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-info .contact-actions .contact-cta {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 280px;
  }
}

.contact-info .contact-actions .contact-cta:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
  -moz-box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
  box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
}

.privacy-policy {
  margin: 0 auto;
  line-height: 1.7;
  color: #212529;
}

.privacy-policy .policy-section {
  max-width: 1000px;
  margin: 0px auto;
  padding-bottom: 20px;
  animation: fadeInUp 0.6s ease-out both;
}

.privacy-policy .policy-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.privacy-policy .policy-section p {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 0.5rem;
}

.privacy-policy .policy-section ul {
  list-style: none;
  padding: 0;
}

.privacy-policy .policy-section ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.privacy-policy .policy-section ul li::before {
  content: "•";
  color: #0077b6;
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.2rem;
}

.privacy-policy .policy-section a {
  color: #0077b6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy .policy-section a:hover {
  color: #ffb703;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .privacy-policy {
    padding: 3rem 0.5rem;
  }

  .privacy-policy .hero {
    padding: 4rem 0;
  }

  .privacy-policy .hero .hero-title {
    font-size: 2rem;
  }

  .privacy-policy .hero .hero-subtitle {
    font-size: 1rem;
  }
}

.page-header {
  position: relative;
  height: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.page-header .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.7;
}

.page-header .page-header-bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-header .page-header-content .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-header .page-header-content .breadcrumb .breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page-header .page-header-content .breadcrumb .breadcrumb-link:hover {
  color: white;
}

.page-header .page-header-content .breadcrumb .breadcrumb-separator svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.page-header .page-header-content .breadcrumb .breadcrumb-current {
  color: white;
  font-weight: 600;
}

.page-header .page-header-content .page-title {
  color: #0077b6;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@keyframes particleMove {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
}

@keyframes rotateSquare {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes blinkTriangle {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes vibrateEllipse {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(5px, -5px);
  }

  50% {
    transform: translate(-5px, 5px);
  }

  75% {
    transform: translate(5px, 5px);
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(-150%);
  }

  100% {
    transform: translateX(150%);
  }
}

@keyframes floatCircle {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  33% {
    transform: translateY(-20px) translateX(15px);
  }

  66% {
    transform: translateY(15px) translateX(-10px);
  }
}

.shadow_one {
  text-align: center;
}

#page_header {
  background: url(../images/bg3.jpg) left center no-repeat;
  background-size: 100% auto;
  margin-top: 0px;
  padding: 100px 0 45px 0;
}

#page_header h2 {
  color: #fff;
  font-size: 36px;
  margin: 18px 0;
  font-family: "Poppins", sans-serif, sans-serif;
  font-weight: 600 !important;
}

#page_header p {
  color: #fff
}

.page_header_breadcum {
  color: #fff
}

.page_header_breadcum .fa {
  color: #fff;
  font-size: 16px
}

.page_header_breadcum a.active_page {
  color: #fdb92e
}

.page_header_breadcum a {
  color: #fff
}

#static {
  width: 100%;
  height: auto;
  float: left;
  margin: 30px 0
}

#static img {
  width: auto;
  height: auto;
  float: left;
  margin: 1% 1% 1% 0
}

#static h2 {
  color: #183a6e
}

#static h3 {
  color: #183a6e
}

#static h4 {
  color: #183a6e
}

#static p {
  margin: 1% 0;
  line-height: 175%;
  text-align: justify;
  color: #1d1d1d;
  font-size: 15px;
}

#static span {
  margin: 1% 0;
  line-height: 175%;
  text-align: justify;
  font-size: 15px;
  color: #1d1d1d;
}

#static div {
  margin: 1% 0;
  line-height: 175%;
  text-align: justify;
  font-size: 15px;
  color: #1d1d1d;
}

#static ul {
  list-style-image: url('../images/tick.png') !important;
  text-align: justify;
  color: #1d1d1d;
}

#static ul li {
  font-size: 15px;
}

#static .contact {
  width:100%;
  height:auto;
  float:left;
}

#static .contact .con{
  width:30%;
  height:250px;
  float:left;
  margin:1%;
  background:#f5f5f5;
  border-radius:15px;
  padding:15px;
}
#static .contact .con .icon{
  width:50%;
  height:auto;
  float:left;
  text-align:center;  
  margin:1% 25%;
}
#static .contact .con .icon i {
    background: #0077b6;
    color: #fff;
    border-radius: 50%;
    padding:10px;
    font-size: 24px;
    text-align:center;
    transition: .4s;
}

#static .contact .con:hover .icon i {
    background: #0c4759;
    transform: rotate(360deg);
}

#static .contact .con h4 {
    width:100%;
    height:auto;
    float:left;
    font-size: 22px;
    color: #111;
    font-weight: 700;
    text-align:center;    
    margin: 20px 0;
}

#static .contact .con p {
    width:100%;
    height:auto;
    float:left;
    color: #555;
    line-height: 1.5;
    font-size: 16px;
    text-align:center;    
    margin: 0;
}

#tdetails {
  width: 100%;
  height: auto;
  float: left;
  margin: 20px 0 0 0;
}

#tdetails .topcon {
  width: 100%;
  height: auto;
  float: left;
}

#tdetails .left {
  width: 72%;
  height: auto;
  float: left;
}

#tdetails .container2 {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 0;
}

#tdetails .big {
  grid-row: span 2;
  position: relative;
  height: 400px;
}

#tdetails .small {
  position: relative;
  height: 195px;
}

#tdetails .card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#tdetails .overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

@media(max-width: 768px) {
  #tdetails .container2 {
    grid-template-columns: 1fr;
  }

  #tdetails .big {
    grid-row: auto;
  }
}

#tdetails .right {
  width: 25%;
  height: 375px;
  float: left;
  margin: 0 0 0 1%;
  padding: 1%;
  background: #064371;
  border-radius: 8px;
}

#tdetails .right .leftimg {
  width: 12%;
  height: auto;
  float: left;
  margin: 0 5% 0 0;
}

#tdetails .right .textright {
  width: 83%;
  height: auto;
  float: left;
  margin: 0;
}

#tdetails .right .textright p {
  color: #fff !important;
  margin: 0;
  font-size: 13px;
}

#tdetails .right .textright h3 {
  color: #fff !important;
  margin: 0;
  font-size: 22px;
}

#tdetails .right .low {
  width: 90%;
  height: auto;
  float: left;
  margin: 10px 0 0 0;
  background: #fff;
  padding: 5%;
  border-radius: 3px;
}

#tdetails .right .low h3 {
  width: 100%;
  height: auto;
  float: left;
  margin: 5px 0;
  color: #064371 !important;
}

#tdetails .right .low p {
  width: 100%;
  height: auto;
  float: left;
  margin: 0;
  padding: 5px 0;
  color: #064371 !important;
  border-bottom: 1px solid #e1e2e3;
  font-size: 13px;
}

#tdetails .right .low p:last-child {
  border-bottom: none
}

#tdetails .right .low p b {
  float: right;
  text-align: right;
  color: #064371 !important;
  font-size: 16px;
}

#tdetails .right .lowbtn {
  width: 49%;
  height: auto;
  float: left;
  margin: 10px 1% 0 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 3px;
  color: #064371 !important;
  text-align: center;
  font-weight: 500;
}

#tdetails .right .lowbtn1 {
  width: 49%;
  height: auto;
  float: left;
  margin: 10px 0 0 1%;
  background: #fff;
  padding: 10px 0;
  border-radius: 3px;
  color: #064371 !important;
  text-align: center;
  font-weight: 500;
}

#tdetails .right .lowbtn2 {
  width: 100%;
  height: auto;
  float: left;
  margin: 10px 0 0 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 3px;
  color: #064371 !important;
  text-align: center;
  font-weight: 500;
}

#tdetails .lowcon {
  width: 100%;
  height: auto;
  float: left;
}

#tdetails .lowcon .h1 {
  width: 100%;
  height: auto;
  float: left;
  padding: 10px 0;
  border-bottom: 1px solid #b0b0b0;
  color: #232323;
}

#tdetails .lowcon .what {
  width: 92%;
  height: auto;
  float: left;
  background: url('../images/icon/8.png') left center no-repeat;
  background-size: 80px auto;
  padding: 0 0 20px 8%;
  margin: 10px 0;
}

#tdetails .lowcon .what h1 {
  color: #001d34;
  margin: 0;
}

#tdetails .lowcon .what p {
  margin: 0;
}

#tdetails .lowcon .conmain {
  width: 100%;
  height: auto;
  float: left;
}

#tdetails .lowcon .conmain .con {
  width: 18.7%;
  height: auto;
  float: left;
  margin: 5px 0.5px;
  background: url('../images/icon/9.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con1 {
  background: url('../images/icon/10.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con2 {
  background: url('../images/icon/11.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con3 {
  background: url('../images/icon/12.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con4 {
  background: url('../images/icon/13.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con5 {
  background: url('../images/icon/14.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con6 {
  background: url('../images/icon/15.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con7 {
  background: url('../images/icon/16.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con8 {
  background: url('../images/icon/17.png') left center no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 6%;
}

#tdetails .lowcon .conmain .con p {
  margin: 0;
}


#tdetails .lowcon .conmain .con h4 {
  margin: 0;
  color: #001d34;
}

#tdetails .lowcon .relate {
  width: 100%;
  height: auto;
  float: left;
  margin: 5px 0 50px 0;
  border-bottom: 1px solid #b0b0b0;
  padding: 0 0 30px 0;
}

#tdetails .lowcon .relate h4 {
  width: 100%;
  height: auto;
  float: left;
  margin: 30px 0 10px 0
}

#tdetails .lowcon .relate .rcon {
  width: 10%;
  height: auto;
  float: left;
  margin: 0 2% 0 0;
}

#tdetails .lowcon .relate .rcon span {
  width: 100%;
  height: auto;
  float: left;
  margin: 0;
  color: #434343;
}

#tdetails .lowcon .relate .rcon h4 {
  width: 100%;
  height: auto;
  float: left;
  margin: 0;
}

#tdetails .lowcon .relate .container3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 13px;
}

#tdetails .lowcon .relate .container3:hover {
  border: 2px solid #ea7d08;
}

#tdetails .lowcon .relate .container3 .small {
  position: relative;
  height: 120px;
}

#tdetails .lowcon .relate .container3 .card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#tdetails .lowcon .relate .container3 .overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

@media(max-width: 768px) {
  #tdetails .lowcon .relate .container3 {
    grid-template-columns: 1fr;
  }

  #tdetails .lowcon .relate .container3 .big {
    grid-row: auto;
  }
}

#tdetails .end {
  width: 100%;
  height: auto;
  float: left;
  margin: 50px 0;
}

#tdetails .end b {
  width: 20%;
  height: auto;
  float: left;
  padding: 0.5px 0;
  background: #064371;
}

#tdetails .end h1 {
  width: 60%;
  height: auto;
  float: left;
  margin: -40px 0 0 0;
  color: #064371;
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
}

#tdetails .inside {
  width: 95%;
  height: auto;
  float: left;
  margin: 0 0 50px 0;
  border: 1px solid #e1e2e2;
  border-radius: 10px;
  padding: 2%;
}

#tdetails .inside h3 {
  width: 100%;
  height: auto;
  float: left;
  border-bottom: 1px solid #e1e2e2;
  padding-bottom: 10px;
  color: #343535;
}

#tdetails .inside .left1 {
  width: 50%;
  height: auto;
  float: left;
  margin: 0;
  border-right: 1px solid #e1e2e2;
}

#tdetails .inside .left1 h3 {
  border: none;
  margin: 0;
}

#tdetails .inside .left1 p {
  width: 90%;
  height: auto;
  float: left;
  background: url('../images/tick.png') left center no-repeat;
  background-size: 13px 13px;
  margin: 5px 0;
  padding: 0 5% 0 30px;
}

#tdetails .inside .right1 {
  width: 46%;
  height: auto;
  float: left;
  margin: 0 0 0 3%;
  border-right: none;
}

#tdetails .inside .right1 h3 {
  border: none;
  margin: 0;
}

#tdetails .inside .right1 p {
  width: 100%;
  height: auto;
  float: left;
  background: url('../images/cross.png') left center no-repeat;
  background-size: 12px 12px;
  margin: 5px 0;
  padding: 0 0 0 30px;
}

#tdetails .add-ons {
  width: 95%;
  height: auto;
  float: left;
  margin: 0;
  border: 1px solid #e1e2e2;
  border-radius: 10px;
  padding: 2%;
}

#tdetails .add-ons h1 {
  width: auto;
  height: auto;
  float: left;
  margin: -45px 0 0 0;
  padding: 0 20px;
  color: #343535;
  background: #fff
}

#tdetails .add-ons p {
  width: 100%;
  height: auto;
  float: left;
  margin: 10px 0;
}

#tdetails .add-ons p img {
  margin: 0 0 -3px 0;
}

#tdetails .dates {
  width: 96.2%;
  height: auto;
  float: left;
  margin: 50px 0 15px 0;
}

#tdetails .dates .head {
  width: 92%;
  height: auto;
  float: left;
  background: url('../images/icon/27.png') left top no-repeat;
  background-size: 60px auto;
  padding: 0 0 20px 8%;
  margin: 0;
}

#tdetails .dates .head h1 {
  color: #001d34;
  margin: 0;
}

#tdetails .dates h2 {
  width: 100%;
  height: auto;
  float: left;
  color: #333434;
  margin: 5px 0;
  font-size: 16px;
}

#tdetails .dates .head p {
  margin: 0;
}

#tdetails .ask {
  width: 93.2%;
  height: auto;
  float: left;
  margin: 0;
  border-radius: 10px;
  padding: 3%;
  background: #203b72;
}

#tdetails .ask a {
  width: auto;
  height: auto;
  float: left;
  margin: 0 10px 0 0;
  border-radius: 25px;
  padding: 10px 20px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #203b72;
}

#tdetails .ask a:hover {
  background: #cce1f1;
  color: #203b72;
}


#tdetails .ask .submit {
  width: auto;
  height: auto;
  cursor: pointer;
  float: left;
  margin: 0 10px 0 0;
  border-radius: 25px;
  padding: 10px 20px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #203b72;
  border: none;
}

#tdetails .ask .submit:hover {
  background: #cce1f1;
  color: #203b72;
}


#tdetails .checklist {
  width: 95.2%;
  height: auto;
  float: left;
  margin: 25px 0 50px 0;
  padding: 2%;
  background: #e8ebf1;
}

#tdetails .checklist h1 {
  width: 100%;
  height: auto;
  float: left;
  margin: 0 0 10px 0;
  color: #203b72;
  font-size: 24px;
}

#tdetails .checklist ul {
  list-style-image: url('../images/icon/right-hand.png') !important;
  line-height: 160%;
  text-align: justify;
  color: #1d1d1d;
}

#tdetails .checklist ul li {
  margin: 1.5% 0;
  font-size: 14px;
}

#tdetails .checklist .downl {
  width: auto;
  height: auto;
  float: left;
  padding: 10px 50px 10px 20px;
  background: url('../images/icon/download.png') #fff right center no-repeat;
  border-radius: 50px;
  color: #203b72;
  font-weight: 500;
}

#tdetails .checklist .downl:hover {
  background: url('../images/icon/download.png') #c3dcee right center no-repeat;
}

#tdetails .faq {
  width: 100%;
  height: auto;
  float: left;
  margin: 0 0 60px 0;
  padding: 0
}

#tdetails .faq .head {
  width: 92%;
  height: auto;
  float: left;
  background: url('../images/icon/faq.png') left top no-repeat;
  background-size: 75px auto;
  padding: 0 0 20px 8%;
  margin: 0;
}

#tdetails .faq .head h1 {
  color: #001d34;
  margin: 0;
}

#tdetails .faq h3 {
  width: 100%;
  height: auto;
  float: left;
  color: #323131;
  font-size: 20px;
  margin: 20px 0 0 0;
}

#tdetails .faq .accordion2 {
  background-color: #fff;
  color: #001d34;
  cursor: pointer;
  padding: 1.2% 1.2% 0.8% 1.2%;
  width: 98%;
  margin: 1% 0.5% 0 0.5%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-family: "Poppins", sans-serif, sans-serif;
  transition: 0.4s;
}
#tdetails .faq .accordion-item h2 {
  font-family: "Poppins", sans-serif, sans-serif!important;
}
#tdetails .faq .active,
#tdetails .faq .accordion2:hover {}

#tdetails .faq .accordion2:after {
  content: '\002B';
  color: #777;
  font-weight: 500;
  float: right;
  margin-left: 5px;
  font-size: 22px;
  margin-top: -4px;
}

#tdetails .faq .active:after {
  content: "\2212";
}

#tdetails .faq .panel {
  width: 96%;
  padding: 0 1%;
  max-height: 0;
  margin: 0 0 0 0.5%;
  overflow: hidden;
  background: #efeded;
  color: #000;
  transition: max-height 0.2s ease-out;
  border-radius: 0 0 5px 5px;
}

#destination {
  width: 100%;
  height: auto;
  float: left;
  margin: 2% 0
}

#destination .side {
  width: 100%;
  height: auto;
  float: left;
}

#destination .side a {
  width: 32%;
  height: auto;
  float: left;
  margin: 0.5%;
  background: black
}

#destination .side span {
  margin: -120px 0 0 20px;
  float: left;
  color: white;
  font-size: xx-large;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
  opacity: 1;
}

#destination .side a img {
  width: 100%;
  height: auto;
  float: left;
  opacity: 0.4;
  transition: 0.5s
}

#destination .side a img:hover {
  opacity: 0.3
}

#destination .p {
  width: 100%;
  height: auto;
  float: left;
  line-height: 150%;
  text-align: justify;
}

#destination .img {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 20px;
}

#destination .con {
  width: 100%;
  height: auto;
  float: left;
  margin: 20px 0;
  background: #ece9e2;
  padding: 10px;
}

#destination .con h3 {
  width: 100%;
  height: auto;
  float: left;
  color: #018db0;
  margin-bottom: 8px;
}

#destination .con .con1 {
  width: 23%;
  height: auto;
  float: left;
  margin: 1%;
  border: #c4c4c4 3px solid;
}

#destination .con .con1 img {
  width: 100%;
  height: auto;
  float: left;
  margin: 0;
}

.tour-card{
    background:#064371;
    width:100%;
    color:#fff;
}

.tour-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.tour-icon{
    font-size:28px;
    color:#ffb347;
}

.tour-header small{
    display:block;
    font-size:13px;
    opacity:.8;
}

.tour-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.tour-content{
    background:#fff;
    color:#003b73;
    border-radius:4px;
    padding:10px 15px;
    margin-bottom:12px;
}

.tour-row{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #ddd;
}
.tour-row span{width:100%;
}
.tour-row strong{width:100%;
}
.tour-row:last-child{
    border-bottom:none;
}

.enquire-btn{
    width:100%;
    background:#fff;
    color:#0d4a7c;
    border:none;
    padding:12px;
    font-size:18px;
    cursor:pointer;
    border-radius:4px;
    font-weight:600;
    transition:.3s;
}

.enquire-btn:hover{
    background:#f0f0f0;
}

#bookf h1 {
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 -15px 0;
    color: #011a2d;
    text-align: center;
}

#bookf form {
    width: 60%;
    height: auto;
    float: left;
    margin: 3% 20%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#bookf .form2 {
    width: 57%;
    height: auto;
    float: left;
    margin: 50px 2% 3% 1%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#bookf .form3 {
    width: 30%;
    height: auto;
    float: left;
    margin: 50px 1% 3% 1%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#bookf .form3 .topdiv{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0;
}
#bookf .form3 .topdiv img{
    width: 25%;
    height: auto;
    float: left;
    margin: 0 1% 0 0;
    border-radius:10px;
}
#bookf .form3 .topdiv h3{
    width: 60%;
    height: auto;
    float: left;
    margin: 0 0 0 5%;
    text-align:left;
}
#bookf .form3 .topdiv p{
    width: 100%;
    height: auto;
    float: left;
    margin: 1px;
    text-align:left;
    font-size:14px;
}
#bookf .form3 .topdiv .con{
    width: 100%;
    height: auto;
    float: left;
    margin: 7px 0;
    padding-top:15px;
    border-top:1px dashed #e5e5e5;
}
#bookf .form3 .topdiv .con h3{
    width: 60%;
    height: auto;
    float: left;
    margin:0;
    text-align:left;
    font-weight:500;
}
#bookf .form3 .topdiv .con h3 span{
font-size:14px;
padding:0;
font-weight:normal;
}
#bookf .form3 .topdiv .con h2{
    width: 40%;
    height: auto;
    float: left;
    margin:0;
    text-align:right;
    color:#030303;
    font-weight:600;    
    font-size:18px;
}
#bookf .form3 .tcen{width: 100%; height: auto; float: left; margin:20px 0; text-align:center;}
#bookf .form3 .imgdiv{width: 50%; height: auto; float: left; margin:0 25%;}
#bookf .form3 .imgdiv img{width: 23%; height: auto; float: left; margin:1%;}

#bookf .form1 {
    width: 38%;
    height: auto;
    float: left;
    margin: 3% 30%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#bookf .form1 .con1 {
    width: 97%;
    height: auto;
    float: left;
    margin: 1% 2% 1% 0;
}

#bookf .form1 .con2 {
    width: 98%;
    height: auto;
    float: left;
    margin: 1% 0 1% 0;
}

#bookf form h2 {
    margin: 10px 0;
    color: #064371;
    text-align: left;
}

#bookf form .con {
    width: 48%;
    height: auto;
    float: left;
    margin: 1%;
}

#bookf form .con1 {
    width: 100%;
    height: auto;
    float: left;
    margin: 1% 0;
}

#bookf form .con3 {
    width: 23%;
    height: auto;
    float: left;
    margin: 1%;
}

#bookf form h3 {
    margin: 0;
    color: #2f2f2f;
    text-align: center;
}

#bookf form label {
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 0 0;
}

#bookf form label span {
    color: red;
}

#bookf form .box {
    width: 98%;
    height: auto;
    float: left;
    margin: 1.5% 1%;
    padding: 3.5% 2%;
    border: 1px #E5E4E4 solid;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    font-family: "Poppins", sans-serif, sans-serif;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    transition: 0.5s
}

#bookf form .box:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box2 {
    width: 97%;
    height: auto;
    float: left;
    margin: 10px 1%;
    padding: 8px 1.5%;
    border: 1px #E5E4E4 solid;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    font-family: "Poppins", sans-serif, sans-serif;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    transition: 0.5s
}

#bookf form .box2:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box2:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box1 {
    width: 95%;
    height: 90px;
    float: left;
    margin: 10px 2% 10px 1%;
    padding: 2.5% 2%;
    border: 1px #E5E4E4 solid;
    font-size: 14px;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    font-family: "Poppins", sans-serif, sans-serif;
    font-size: small;
    transition: 0.5s
}

#bookf form .box1:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box1:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box3 {
    width: 97.7%;
    height: auto;
    float: left;
    margin: 10px 1%;
    padding: 8px 1.5%;
    border: 1px #E5E4E4 solid;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    font-family: "Poppins", sans-serif, sans-serif;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    transition: 0.5s
}

#bookf form .box3:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box3:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box4 {
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 1%;
    padding: 8px 1.5%;
    border: 1px #E5E4E4 solid;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    font-family: "Poppins", sans-serif, sans-serif;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: 0.5s
}

#bookf form .box4:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box4:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box5 {
    width: 31%;
    height: auto;
    float: left;
    margin: 10px 1%;
    padding: 8px 1.5%;
    border: 1px #E5E4E4 solid;
    border-radius: 5px;
    font-weight: normal;
    color: #333333;
    font-family: "Poppins", sans-serif, sans-serif;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    transition: 0.5s
}

#bookf form .box5:hover {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .box5:focus {
    border: 1px #C9C8C8 solid;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

#bookf form .submit {
    padding: 15px 6%;
    margin: 2% 0;
    font-size: 16px;
    background: #064371;
    color: white;
    float: left;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Poppins", sans-serif, sans-serif;
    transition: 0.5s
}

#bookf form .submit:hover {
    background: #01275c
}

#bookf form span {
    padding-left: 5px;
}

#bookf form .box::placeholder {
    color: #7d7d7d;
    opacity: 1;
}

#bookf form .box1::placeholder {
    color: #7d7d7d;
    opacity: 1;
}

#bookf form .box2::placeholder {
    color: #7d7d7d;
    opacity: 1;
}

#bookf form .box3::placeholder {
    color: #7d7d7d;
    opacity: 1;
}

@media all and (max-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    
#static .contact .con{
  width:98%;
  height:auto;
  float:left;
  margin:10px 1%;
  background:#f5f5f5;
  border-radius:15px;
  padding:15px 1%;
}    

    #bookf form {
        width: 92%;
        height: auto;
        float: left;
        margin: 20px 2%;
        background: #fff;
        border-radius: 5px;
        padding: 2%;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

#bookf .form2 {
    width: 94%;
    height: auto;
    float: left;
    margin: 30px 1% 3% 1%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#bookf .form3 {
    width: 94%;
    height: auto;
    float: left;
    margin: 20px 1% 3% 1%;
    background: #fff;
    border-radius: 5px;
    padding: 2%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#bookf .form3 .imgdiv{width: 70%; height: auto; float: left; margin:0 15%;}

    #bookf form .con {
        width: 95%;
        height: auto;
        float: left;
        margin: 1%;
    }

    #bookf form .con3 {
        width: 95%;
        height: auto;
        float: left;
        margin: 1%;
    }
    #bookf form .submit {
        width: 70%;
        height: auto;
        float: left;
        padding: 10px 0;
        margin: 10px 15%;
        font-size: 16px;
        background: #064371;
        color: white;
        float: left;
        text-decoration: none;
        font-weight: 500;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        font-family: "Poppins", sans-serif, sans-serif;
        text-align: center;
        transition: 0.5s
    }

    #bookf .form1 {
        width: 92%;
        height: auto;
        float: left;
        margin: 20px 2%;
        background: #fff;
        border-radius: 5px;
        padding: 2%;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
  
    
}