/* Section - Header */
.thesierra-section-header {
  position: relative;
}
.thesierra-section-header .tsr-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  z-index: 2;
}
.thesierra-section-header .tsr-background img {
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

/* Section - About */
.thesierra-section.thesierra-section-about {
  position: relative;
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  overflow: hidden;
  padding: 64px 0 0px;
  border-top: 3px solid #d0c0a1;
}
.thesierra-section.thesierra-section-about .container {
  max-width: 800px;
}
.thesierra-section.thesierra-section-about .tsr-about-logo {
  max-width: 206px;
}
.thesierra-section.thesierra-section-about .digital-card-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .thesierra-section.thesierra-section-about {
    padding: 64px 0 0px;
  }
}

/* Section - Privilege Book */
.tsr-section-privilege-book {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-gray04);
  min-height: 400px;
}
.tsr-section-privilege-book .tsr-section-privilege-book__title {
  font-family: Trirong;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 96px */
}
.tsr-section-privilege-book > .container {
  position: relative;
  z-index: 1;
}
.tsr-section-privilege-book img {
  width: 100%;
  z-index: 1;
}
.tsr-section-privilege-book .tsr-logo {
  max-width: 510px;
}
@media screen and (max-width: 576px) {
  .tsr-section-privilege-book {
    padding-top: 64px;
    padding-bottom: 64px;
    min-height: auto;
  }
  .tsr-section-privilege-book .tsr-section-privilege-book__title {
    font-size: 33px;
    margin-bottom: 1rem;
  }
}

.tsr-feature-logo {
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
}

/* Tier */
.tsr-tier-card-wrapper {
  display: flex;
  column-gap: 24px;
  row-gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
}

.tsr-tier-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 40px 16px;
  height: fit-content;
  border: 3px solid #edcd86;
  border-radius: 8px;
  background: url("../img/ui/thesierra-background-fade.png") #fcfaef;
  background-size: cover;
  box-shadow: 0px 250px 70px 0px rgba(0, 0, 0, 0), 0px 160px 64px 0px rgba(0, 0, 0, 0.01), 0px 90px 54px 0px rgba(0, 0, 0, 0.05), 0px 40px 40px 0px rgba(0, 0, 0, 0.09), 0px 10px 22px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .tsr-tier-card {
    width: calc(50% - 12px);
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .tsr-tier-card {
    padding: 64px 40px;
    max-width: 460px;
  }
}
.tsr-tier-card .tsr-tier-card__title * {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.tsr-tier-card hr {
  border-color: var(--color-gray03);
  opacity: 1;
  margin: 24px 0;
}
.tsr-tier-card li {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}
.tsr-tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem; /* Adjust to align the icon with text */
  width: 40px; /* Icon width */
  height: 40px; /* Icon height */
  background-size: contain;
  background-repeat: no-repeat;
}
.tsr-tier-card li.li-icon-plane::before {
  background-image: url("../img/pages/home/icon/icon-plane-black.svg");
}
.tsr-tier-card li.li-icon-tao::before {
  background-image: url("../img/pages/home/icon/icon-tao-black.svg");
}
.tsr-tier-card li.li-icon-luggage::before {
  background-image: url("../img/pages/home/icon/icon-luggage-black.svg");
}
.tsr-tier-card li.li-icon-consult::before {
  background-image: url("../img/pages/home/icon/icon-consult-black.svg");
}
.tsr-tier-card:hover {
  background: url("../img/ui/thesierra-background-fade.png") rgba(84, 117, 86, 0.9);
  background-size: cover;
  transition: all 0.5s ease;
}
.tsr-tier-card:hover hr {
  border-color: var(--color-gold12);
}
.tsr-tier-card:hover li.li-icon-plane::before {
  background-image: url("../img/pages/home/icon/icon-plane-gold.svg");
}
.tsr-tier-card:hover li.li-icon-tao::before {
  background-image: url("../img/pages/home/icon/icon-tao-gold.svg");
}
.tsr-tier-card:hover li.li-icon-luggage::before {
  background-image: url("../img/pages/home/icon/icon-luggage-gold.svg");
}
.tsr-tier-card:hover li.li-icon-consult::before {
  background-image: url("../img/pages/home/icon/icon-consult-gold.svg");
}
.tsr-tier-card:hover .tsr-tier-card__title,
.tsr-tier-card:hover .tsr-tier-card__list {
  color: var(--color-gold12);
}
@media screen and (max-width: 768px) {
  .tsr-tier-card {
    background: url("../img/ui/thesierra-background.jpg") rgba(84, 117, 86, 0.9);
    background-size: cover;
    transition: all 1.5s ease;
  }
  .tsr-tier-card hr {
    border-color: var(--color-gold12);
  }
  .tsr-tier-card li.li-icon-plane::before {
    background-image: url("../img/pages/home/icon/icon-plane-gold.svg");
  }
  .tsr-tier-card li.li-icon-tao::before {
    background-image: url("../img/pages/home/icon/icon-tao-gold.svg");
  }
  .tsr-tier-card li.li-icon-luggage::before {
    background-image: url("../img/pages/home/icon/icon-luggage-gold.svg");
  }
  .tsr-tier-card li.li-icon-consult::before {
    background-image: url("../img/pages/home/icon/icon-consult-gold.svg");
  }
  .tsr-tier-card .tsr-tier-card__title,
  .tsr-tier-card .tsr-tier-card__list {
    color: var(--color-gold12);
    padding-left: 0;
  }
  .tsr-tier-card .tsr-tier-card__title * {
    font-size: 20px;
  }
}

.tsr-section-digital-card {
  padding-top: 157px;
  padding-bottom: 157px;
}
.tsr-section-digital-card img {
  width: 100%;
}
.tsr-section-digital-card .tsr-section-digital-card__title {
  font-family: Trirong;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 96px */
  position: relative;
  background: linear-gradient(180deg, #ffe6b4 13.41%, #b99650 37.35%, #ffda91 63.77%, #b3955a 93.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tsr-section-digital-card .tsr-section-digital-card__title:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.1), 1px 1px 0 rgba(0, 0, 0, 0.1), 3px 3px 3px rgba(0, 0, 0, 0.1), 5px 5px 10px rgba(0, 0, 0, 0.1), 10px 20px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 576px) {
  .tsr-section-digital-card {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .tsr-section-digital-card .tsr-section-digital-card__title {
    font-size: 33px;
  }
}
.tsr-section-digital-card .tsr-logo {
  max-width: 307px;
}

.tsr-line {
  max-width: 100%;
}

@media screen and (max-width: 576px) {
  .thesierra-section-campaigns .tsr-features .tsr-feature-card {
    padding-left: 0;
    padding-right: 0;
  }
}

/*# sourceMappingURL=home-2024.css.map */
