/* Section - Header */
.thesierra-section-header {
  position: relative;
  background-color: #151f0e;
  overflow-x: hidden;
  /* &:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(51,80,32,.79), rgba(0,0,0,.18))
  } */
}

.thesierra-section-header .container {
  padding: 10vh 0;
  min-height: 600px;
  z-index: 2;
}

/* Section - About */
.thesierra-section-about {
  position: relative;
  background: var(--gradient-green01);
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  overflow: hidden;
  /* &:before {
    content: "";
    background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg1-glyph.svg) repeat;
    background-size: contain;
    width: 40rem;
    height: 40rem;
    max-width: 40vw;
    max-height: 40vw;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: bg1-glyph 60s infinite;
    pointer-events: none;
    opacity: 0.03;
  } */
}

.thesierra-section-about .container {
  max-width: 800px;
}

.thesierra-section-about .digital-card-container {
  height: 195px;
  position: relative;
  width: 100%;
}

.thesierra-section-about .digital-card-container img {
  position: absolute;
  width: 400px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* @keyframes bg1-glyph {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
} */
/* Section - Privilege */
.thesierra-section-privilege {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thesierra-section-privilege p {
  line-height: 2.25;
  max-width: none;
}

.thesierra-section-privilege .swiper-button-next {
  padding: 1rem;
  background: #FFF;
  width: auto;
  height: auto;
  text-align: center;
  border-radius: 5rem;
}

.thesierra-section-privilege .swiper-button-next:after {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  transform: translateX(0.1rem);
  color: var(--color-gold02);
}

.thesierra-section-privilege .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.thesierra-section-privilege .swiper-button-prev {
  padding: 1rem;
  background: #FFF;
  width: auto;
  height: auto;
  text-align: center;
  border-radius: 5rem;
}

.thesierra-section-privilege .swiper-button-prev:after {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  transform: translateX(-0.1rem);
  color: var(--color-gold02);
}

.thesierra-section-privilege .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.thesierra-privilege-swiper {
  overflow: visible;
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .thesierra-privilege-swiper {
    clip-path: inset(-100vw -100vw -100vw 0);
  }
}

.thesierra-privilege-swiper .swiper-wrapper .swiper-slide h2 {
  display: flex;
  gap: 5px;
  font-size: 1.7rem;
  font-family: var(--font-primary);
}

.thesierra-privilege-swiper .swiper-wrapper .swiper-slide .thesierra-swiper-image-container {
  margin-bottom: 1rem;
  cursor: url(/SiteCollectionDocuments/kbankthesierra/assets/img/ui/swiping-indicator.png) 64 64, auto;
}

.thesierra-privilege-swiper .swiper-wrapper .swiper-slide .thesierra-swiper-image-container img {
  width: 100%;
  border-radius: 0.625rem;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.thesierra-privilege-swiper .swiper-wrapper .swiper-slide .thesierra-swiper-image-container .swiper-overlay-mobile {
  position: absolute;
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: center;
  justify-items: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  aspect-ratio: 465/520;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.625rem;
  font-size: 16px;
}

@media (max-width: 991px) {
  .thesierra-privilege-swiper .swiper-navigation {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .thesierra-section-privilege p {
    max-width: none;
  }
}

.swiper-overlay-mobile .pulse {
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  background: white;
  margin: 10px;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  transform: scale(1);
  animation: pulse-white 1.5s infinite;
}

.swiper-overlay-mobile .pulse img {
  margin-top: 33px;
}

@media screen and (min-width: 768px) {
  .swiper-overlay-mobile {
    display: none !important;
  }

  .swiper-overlay-mobile .pulse {
    display: none !important;
  }
}

@keyframes pulse-white {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.thesierra-section-privilege .thesierra-privilege-swiper .swiper-wrapper .swiper-slide .thesierra-link {
  font-size: 1rem;
  padding: 0;
}

/* Section - Privilege Book */
.thesierra-section-privilege-book {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-gray04);
  /* &:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 0;
    background-image: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg-privilege-book.svg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
  } */
}

.thesierra-section-privilege-book>.container {
  position: relative;
  z-index: 1;
}

.thesierra-section-privilege-book img {
  max-height: 450px;
  width: 100%;
  z-index: 1;
}

/* Section - Digital Card */
.thesierra-section-digital-card {
  position: relative;
  /* background: var(--gradient-green01); */
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  font-size: 1.25rem;
  overflow: hidden;
  /* .container:before {
    content: "";
    background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg1-glyph.svg) repeat;
    background-size: contain;
    width: 30rem;
    height: 30rem;
    max-width: 30vw;
    max-height: 30vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: bg1-glyph 60s infinite;
    pointer-events: none;
    opacity: 0.03;
  } */
}

.thesierra-section-digital-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
  background-image: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg-digital-card.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.thesierra-section-digital-card>.container {
  position: relative;
  z-index: 1;
}

.thesierra-section-digital-card .thesierra-section-digital-card-sierra-headding {
  color: #ffffff;
  margin-bottom: 40px;
}

.thesierra-section-digital-card .thesierra-section-digital-card-sierra-content {
  color: #ffffff;
  margin-bottom: 35px;
}

.thesierra-section-digital-card a {
  font-family: var(--font-content);
}

/* Section - Campaigns - Biz */
.c-brown {
  color: #91836e !important;
}

.c-white {
    color: #fff !important;
}

.bg-lightbrown {
  background-color: #fbfaee !important;
}

.thesierra-btn-secondary.thesierra-btn-dark.btn-brown {
  background-color: transparent;
  box-shadow: 0 0 0 1px #91836e inset;
  color: #91836e;
}

@media screen and (min-width:991px) {
  .a-left-pc {
    text-align: left;
  }
}

.thesierra-section-campaigns-biz {
  background-color: var(--color-green05);
  background-size: cover;
  color: var(--color-white);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper {
  overflow: visible;
  position: relative;
  padding: 1rem 0 0;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image {
  margin-bottom: 1.5rem;
  position: relative;
  transition: 0.5s transform;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image img {
  transition: 0.5s transform, 0.5s box-shadow;
  max-width: 100%;
  position: relative;
  z-index: 2;
  transform: scale(0.9);
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:before {
  content: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/campaignSwiper/frame-left.svg?v2);
  display: block;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(1.1);
  transition: 0.35s ease-in-out;
  z-index: 1;
}

@media (max-width: 1199px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:before {
    transform: translateY(-50%) scale(0.9);
  }
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:after {
  content: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/campaignSwiper/frame-right.svg?v2);
  display: block;
  height: 360px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(1.1);
  transition: 0.35s ease-in-out;
  z-index: 1;
}

@media (max-width: 1199px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:after {
    transform: translateY(-50%) scale(0.9);
  }
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide a {
  color: var(--color-white);
  text-decoration: none;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide h3 {
  font-size: 1.25rem;
  font-family: var(--font-content);
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  transition: 0.5s transform;
  /* width: 100% !important; */
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image {
  transform: translate(0, -7%);
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image img {
  transform: scale(0.9);
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:before {
  left: 20px;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 991px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:before {
    transform: translateY(-50%) scale(1.25);
  }
}

@media (max-width: 767px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:before {
    left: 3px;
    transform: translateY(-50%) scale(0.75);
  }
}

@media (max-width: 414px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:before {
    left: 3px;
    transform: translateY(-50%) scale(0.6);
  }
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:after {
  right: 20px;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 991px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:after {
    transform: translateY(-50%) scale(1.25);
  }
}

@media (max-width: 767px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:after {
    right: 3px;
    transform: translateY(-50%) scale(0.75);
  }
}

@media (max-width: 414px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .thesierra-campaigns-swiper-image:after {
    right: 3px;
    transform: translateY(-50%) scale(0.6);
  }
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active:hover {
  transform: scale(1.05);
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-wrapper .swiper-slide.swiper-slide-active:hover .thesierra-campaigns-swiper-image img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide {
    transition: 0.5s transform;
  }

  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image {
    transform: translate(0, 0);
  }

  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image img {
    transform: scale(0.9);
  }

  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:before {
    left: 15px;
    transform: translateY(-50%) scale(1.1);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:before {
    transform: translateY(-50%) scale(0.9);
  }
}

@media (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:after {
    right: 15px;
    transform: translateY(-50%) scale(1.1);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide .thesierra-campaigns-swiper-image:after {
    transform: translateY(-50%) scale(0.9);
  }
}

@media (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide:hover {
    transform: scale(1.05);
  }

  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-twin .swiper-wrapper .swiper-slide:hover .thesierra-campaigns-swiper-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-single {
    padding-top: 0;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-single .swiper-wrapper .swiper-slide h3 {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-single .swiper-wrapper .swiper-slide>a {
    display: grid;
    grid-template: 1fr/1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper.thesierra-campaigns-swiper-single .swiper-wrapper .swiper-slide>a .thesierra-campaigns-swiper-image {
    max-width: 640px;
    transform: none;
  }
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation {
  position: relative;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-button-prev {
  position: relative;
  display: inline-block;
  right: auto;
  left: auto;
  color: var(--color-white);
  transition: 0.35s opacity;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-button-prev:after {
  content: none;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-pagination {
  position: relative;
  display: inline-block;
  width: auto;
  bottom: auto;
  left: auto;
  font-family: var(--font-content);
  min-width: 4rem;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-pagination .swiper-pagination-current {
  font-size: 1.25rem;
  font-weight: 500;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-pagination .swiper-pagination-total {
  font-size: 0.875rem;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-button-next {
  position: relative;
  display: inline-block;
  right: auto;
  left: auto;
  color: var(--color-white);
  transition: 0.35s opacity;
}

.thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation .swiper-button-next:after {
  content: none;
}

@media screen and (min-width: 992px) {
  .thesierra-section-campaigns-biz .thesierra-campaigns-swiper .swiper-navigation {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/* Section - Campaigns - Investment */
.thesierra-section-campaigns-investment {
  background-color: var(--color-gray04);
  background-image: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg4-m.svg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-gray03);
}

.thesierra-section-campaigns-investment:before {
  content: url("/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg4-text.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 12vw;
}

.thesierra-section-campaigns-investment .container {
  max-width: 1068px;
}

.thesierra-section-campaigns-investment p {
  width: 100%;
  font-family: var(--font-content);
}

.thesierra-section-campaigns-investment .thesierra-campaigns-investment-profile {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(7px);
}

.thesierra-section-campaigns-investment .thesierra-campaigns-investment-profile .thesierra-campaigns-investment-logo-inline {
  display: inline-block;
  width: auto;
  height: 2.125rem;
}

.thesierra-section-campaigns-investment .thesierra-campaigns-investment-profile h3 {
  font-size: 1.375rem;
}

.thesierra-section-campaigns-investment .thesierra-campaigns-investment-profile p {
  font-size: 1.25rem;
  font-weight: 500;
  width: 100%;
}

.thesierra-section-campaigns-investment .thesierra-campaigns-investment-profile .thesierra-campaign-investment-metadata {
  list-style: none;
  padding: 0;
  font-family: var(--font-content);
}

@media screen and (min-width: 992px) {
  .thesierra-section-campaigns-investment:before {
    top: 50%;
    transform: translateY(-50%);
    width: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .thesierra-section-campaigns-investment p {
    width: 75%;
  }
}

@media screen and (min-width: 992px) {
  .thesierra-section-campaigns-investment {
    background-image: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg4.svg);
    background-position: bottom center;
    background-size: contain;
  }
}

/* Section - Events */
/* Section - Article */
.thesierra-section-article {
  background: var(--color-gray04);
  overflow-x: hidden;
}

.thesierra-section-article .thesierra-article-grid .swiper-wrapper .swiper-slide {
  border-bottom: var(--color-gold02) 1px solid;
}

@media (min-width: 992px) {
  .thesierra-section-article .thesierra-article-grid .swiper-wrapper {
    display: grid;
    grid-template: 1fr/2fr 1fr;
    gap: 50px;
  }

  .thesierra-section-article .thesierra-article-grid .swiper-wrapper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }

  .thesierra-section-article .thesierra-article-grid .swiper-wrapper .swiper-slide:first-child {
    grid-row-end: span 2;
  }
}

.thesierra-section-article .thesierra-article-entry {
  margin-bottom: 1rem;
}

.thesierra-section-article .thesierra-article-entry>a {
  text-decoration: none;
  color: inherit;
}

.thesierra-section-article .thesierra-article-entry .thesierra-article-thumbnail {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}

.thesierra-section-article .thesierra-article-entry .thesierra-article-metadata small {
  font-family: var(--font-content);
  color: var(--color-gray01);
  font-size: 0.81rem;
}

.thesierra-section-article .thesierra-article-entry .thesierra-article-metadata h3 {
  margin: 1rem 0;
  font-size: 1.06rem;
  font-family: var(--font-content);
  line-height: 1.7;
  font-weight: 500;
}

.thesierra-section-article .thesierra-article-entry .thesierra-article-metadata p {
  font-family: var(--font-content);
}

.thesierra-section-article .thesierra-article-entry:not(.thesierra-article-entry-lead) {
  clear: both;
}

.thesierra-section-article .thesierra-article-entry:not(.thesierra-article-entry-lead) .thesierra-article-thumbnail {
  float: left;
  width: 46%;
  margin-right: 4%;
}

.thesierra-section-article .thesierra-article-entry:not(.thesierra-article-entry-lead) .thesierra-article-metadata h3 {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 992px) {
  .thesierra-section-article .thesierra-article-entry:not(.thesierra-article-entry-lead) .thesierra-article-thumbnail {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}

/* Section - K Wealth */
.thesierra-section-kwealth {
  position: relative;
  background-image: var(--color-white);
  align-items: stretch;
  overflow: hidden;
}

.thesierra-section-kwealth .thesierra-section-kwealth-column {
  color: var(--color-gray03);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* &:before {
    content: "";
    background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg1-glyph.svg) repeat;
    background-size: contain;
    width: 70rem;
    height: 70rem;
    max-width: 70vw;
    max-height: 70vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translate(-50%, -50%);
    transform-origin: center;
    animation: bg1-glyph 60s infinite;
    pointer-events: none;
    opacity: 0.03;
  } */
}

.thesierra-section-kwealth .thesierra-section-kwealth-column .thesierra-section-kwealth-column-inner {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 450px;
  margin: auto;
  padding: 5rem 0;
  height: auto;
}

.thesierra-section-kwealth .thesierra-section-kwealth-column .thesierra-text-subtitle-1 {
  font-size: 1.37rem;
}

.thesierra-section-kwealth .thesierra-section-kwealth-column .thesierra-text-subtitle-2 {
  font-size: 2.37rem;
  line-height: 1;
  margin: 0;
}

.thesierra-section-kwealth .thesierra-section-kwealth-column p {
  line-height: 2.25;
  font-size: 1.06rem;
}

.thesierra-section-kwealth .thesierra-kwealth-background {
  background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg7.jpg) center center;
  background-size: cover;
  min-height: 38vh;
}

@keyframes bg1-glyph {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (min-width: 992px) {
  .thesierra-section-kwealth .thesierra-section-kwealth-column .thesierra-section-kwealth-column-inner {
    padding: 7rem 0;
  }

  .thesierra-section-kwealth .thesierra-section-kwealth-column:before {
    width: 30rem;
    height: 30rem;
    max-width: 30vw;
    max-height: 30vw;
  }

  .thesierra-section-kwealth .thesierra-kwealth-background {
    min-height: 70vh;
  }
}

/* Section - Questionaire */
.thesierra-questionaire {
  position: relative;
  /* background: var(--gradient-green01); */
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* &:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 0;
    background-image: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg-questionaire-1.svg), url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg-questionaire-2.svg), url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/bg-questionaire-primary.svg);
    background-size: 99px auto, 147px auto, cover;
    background-position: bottom left, top right, bottom center;
    background-repeat: no-repeat, no-repeat, no-repeat;
  } */
}

@media screen and (min-width: 768px) {
  .thesierra-questionaire:before {
    background-size: 143px auto, 296px auto, cover;
  }
}

/*# sourceMappingURL=home.css.map */

/* section video */
.thesierra-section-video {
  position: relative;
  background: var(--gradient-green01);
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  overflow: hidden;
}

.thesierra-section-video .title {
  color: #93816a;
  font-family: Clarice;
  font-size: 25px;
  line-height: 1;
  text-align: center;
  margin-bottom: 13px;
}

.thesierra-section-video .sub-title {
  color: #333333;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  font-family: Anuphan;
  font-size: 37px;
  margin-bottom: 30px;
}

.thesierra-section-video .sub-title span {
  font-family: Clarice;
}

.thesierra-section-video .fixed-video {
  max-width: 1000px;
  width: 100%;
}

.html5-video-player .video-stream {
  width: 100% !important;
  left: 0 !important;
}

.bg-pattern-05 {
  background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/the-sierra_video-bg-mobile.jpg);
  background-size: cover !important;
}

@media screen and (min-width:767px) {
  .bg-pattern-05 {
    background: url(/SiteCollectionDocuments/kbankthesierra/assets/img/pages/home/the-sierra_video-bg-desktop.jpg);
    background-size: cover !important;
  }

  .thesierra-section-video .title {
    margin-bottom: 20px;
  }

  .thesierra-section-video .sub-title {
    font-size: 48px;
    margin-bottom: 42px;
  }
}

/* end section video */


.a-center-pc {
  text-align: center;
}

.nw {
  white-space: nowrap !important;
}

.hidden-w767 {
  display: block;
}

.thesierra-section-privilege .box-item {
  width: auto;
  margin-right: 39px;
}

.thesierra-section-privilege .box-item img {
  border-radius: 10px;
  width: 100%;
}


.thesierra-section-privilege .box-item:last-child {
  margin-right: 0;
}

.thesierra-swiper-image-container {
  margin-bottom: 16px;
}

.thesierra-section-privilege h2[data-mh='thesierra-privilege-swiper-title'] {
  font-size: 27px !important;
  line-height: 33px;
}

@media screen and (max-width:767px) {
  .a-center-pc {
    text-align: left;
  }

  .hidden-w767 {
    display: none;
  }

  .thesierra-section-privilege .box-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 23px;
  }

  .thesierra-section-privilege .box-item:last-child {
    margin-bottom: 0;
  }

  .thesierra-section-privilege .d-flex {
    display: block !important;
  }

  .thesierra-section-privilege h2 {
    font-size: 24px !important;
    line-height: 29px;
  }
}