body {
  font-family: "pridi-numbers", "century_gothic", "pridi" !important;
  font-weight: 300;
}

.highlight {
  position: relative;
}

.highlight .area-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.highlight .area-inner .content-area {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.highlight .area-inner .content-area.in-view {
  opacity: 1;
  transform: translateY(0);
}

.highlight .area-inner .content-area {
  text-align: center;
  max-width: 682px;
  width: 100%;
  margin: 0 auto;
}

.highlight .area-inner .content-area .img-logo {
  height: 51px;
  width: auto;
  margin-bottom: 20px;
}

.highlight .area-inner .content-area .img-logo img {
  width: auto;
  height: 100%;
}

.highlight .area-inner .content-area .title {
  font-size: 26px;
  list-style: 1.5;
  color: #cfbaa1;
  font-weight: 600;
  margin-bottom: 24px;
}

.highlight .area-inner .content-area .desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.highlight .area-inner .content-area .action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.highlight .area-inner .content-area .action .btn {
  width: 220px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: kurious-looped;
  font-weight: 600;
  min-width: inherit;
  color: var(--cr-light) !important;
  border-radius: 8px;
  transition: var(--tsition);
  overflow: hidden;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) 99% 50%/300% 300%;
  background-position: 99% 50%;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  border-image: initial;
  line-height: 24px;
  padding: 8px;
}

.highlight .area-inner .content-area .action .btn:hover {
  color: #335c56 !important;
  background-position: 1% 50%;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: rgba(255, 255, 255, 0) !important;
  border-image: initial !important;
  transform: translateY(-3px);
}

.container {
  height: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .wrapper-mobile {
    display: none;
  }
}

@media screen and (max-width: 991px) {

  .sc-hero-banner .title,
  .sc-hero-banner .action {
    display: block;
  }

  .highlight .area-inner .content-area .img-logo {
    height: 32px;
  }

  .highlight .area-inner .content-area .title {
    font-size: 20px;
  }

  .highlight .area-inner .content-area .desc {
    font-size: 16px;
    font-weight: 500;
  }

  .sc-hero-banner .wrapper {
    display: flex;
    flex-direction: column;
  }

  .sc-hero-banner .wrapper .logo {
    max-width: 210px;
  }

  .sc-hero-banner .wrapper .wrapper-desktop {
    display: none;
  }

  .sc-hero-banner .wrapper .wrapper-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .details {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff !important;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .details .title {
    font-weight: 600;
    padding-bottom: 0;
    color: #fff !important;
    margin: 16px 0 8px;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .details p {
    font-weight: 300;
    margin: 0;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .action {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .action .btn {
    width: 220px;
    height: 40px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: kurious-looped;
    font-weight: 600;
    min-width: inherit;
    color: var(--cr-light) !important;
    border-radius: 8px;
    transition: var(--tsition);
    overflow: hidden;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) 99% 50%/300% 300%;
    background-position: 99% 50%;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    border-image: initial;
    line-height: 24px;
    padding: 8px;
  }

  .sc-hero-banner .wrapper .wrapper-mobile .action .btn:hover {
    color: #335c56 !important;
    background-position: 1% 50%;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: rgba(255, 255, 255, 0) !important;
    border-image: initial !important;
    transform: translateY(-3px);
  }
}

@media screen and (max-width: 767px) {
  .highlight .area-inner {
    height: 100%;
    padding: 48px 0;
  }

  .highlight .area-inner .content-area {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }

  .sc-hero-banner {
    min-height: auto;
  }

  .sc-hero-banner .wrapper {
    height: auto;
    padding: 32px 0;
  }
}

.fadeInUp {
  opacity: 0;
}

.fadeInUp.show {
  opacity: 1;
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

/* #################### sc-kwealth-experience ###################### */
.sc-kwealth-experience {
  background: linear-gradient(to bottom, #1c3a37 0%, #2d5a56 40%, #2d5a56 100%);
  height: auto;
  padding: 77px 0 77px 0;
  position: relative;
}
.sc-kwealth-experience .sub-heading {
  font-size: 18px;
}
.sc-kwealth-experience .bg-privatebank {
  background: linear-gradient(to bottom, #093150, #0a263c);
}
.sc-kwealth-experience .bg-wisdom {
  background: linear-gradient(to bottom, #7d2c3d, #5b1f2b);
}
.sc-kwealth-experience .card-experiences {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 0;
}
.sc-kwealth-experience .card-experiences .card-content {
  display: flex;
  height: 273px;
  align-items: center;
  width: fit-content;
  transition: ease-in-out 200ms;
}
.sc-kwealth-experience .card-experiences .card-content:hover {
  transition: ease-in-out 200ms;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp {
  width: 273px;
  padding: 40px 24px;
  height: 273px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: ease-out 400ms;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:first-child {
  border-radius: 8px 0 0 8px;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:last-child {
  border-radius: 0 8px 8px 0;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:hover {
  height: 340px;
  transition: ease-in-out 400ms;
  border-radius: 8px;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:hover .card-exp-thumb {
  margin-top: 0;
  transition: ease-in-out 200ms;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:hover .card-exp-title {
  opacity: 1;
  transition: ease-in-out 200ms;
  position: relative;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:hover .action-card-exp {
  opacity: 1;
  transition: ease-in-out 300ms;
  position: relative;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:hover .action-card-exp:hover {
  background: rgba(242, 249, 248, 0.4);
}
.sc-kwealth-experience .card-experiences .card-content .card-exp:not(:hover) {
  filter: brightness(100%);
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-thumb {
  margin-top: 45px;
  transition: ease-in-out 300ms;
  max-width: 225px;
  max-height: 80px;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-thumb img {
  max-width: 225px;
  max-height: 80px;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title {
  margin-top: 24px;
  opacity: 0;
  position: relative;
  transition: ease-out 400ms;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title p:first-child {
  color: #fff;
  font-family: "pridi-numbers", "century_gothic";
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title p:last-child {
  color: #fff;
  font-family: "pridi";
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  margin: 0;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .action-card-exp {
  margin-top: 24px;
  padding: 8px 24px;
  border: 2px solid #fff;
  border-radius: 8px;
  max-width: 150px;
  opacity: 0;
  transition: ease-out 400ms;
  position: relative;
  background: transparent;
  font-family: kurious-looped !important;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .action-card-exp a {
  color: #fff;
  font-family: "pridi";
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.sc-kwealth-experience .card-experiences .card-content .card-exp {
  position: relative;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp .graphic {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp.bg-privatebank .graphic {
  background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-k-private-banking.png);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp.bg-wisdom .graphic {
  background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-wisdom.png);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp.bg-premier .graphic {
  background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-premier.png);
  background-size: 83% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.sc-kwealth-experience .card-experiences .card-content .card-exp.bg-wisdom:hover {
  height: 360px;
  transition: ease-in-out 400ms;
  border-radius: 8px;
}

.bg-premier {
  background: linear-gradient(to bottom, #024437, #142b22);
}

@media screen and (max-width: 991px) {
  .sc-kwealth-experience {
    padding: 0 !important;
  }
  .sc-kwealth-experience .container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .sc-kwealth-experience .card-experiences .card-content {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp {
    width: 100% !important;
    height: 340px;
    transition: ease-in-out400ms;
    border-radius: 0 !important;
    filter: brightness(100%);
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:hover {
    height: 340px !important;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 52.08%, rgba(255, 255, 255, 0) 100%);
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-thumb {
    margin-top: 0;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title {
    opacity: 1;
    transition: ease-in-out200ms;
    position: relative;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title p:last-child {
    height: 59px;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .action-card-exp {
    opacity: 1;
    transition: ease-in-out300ms;
    position: relative;
    max-width: 220px;
    width: 100%;
    text-align: center;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-privatebank .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-k-private-banking.png);
    background-size: 120% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-wisdom .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-wisdom.png);
    background-size: 60% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-premier .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-premier.png);
    background-size: 35% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .sc-kwealth-experience {
    height: auto;
  }
  .sc-kwealth-experience .sub-heading {
    font-size: 16px;
  }
  .sc-kwealth-experience .card-experiences {
    margin-top: 0;
    height: unset;
    flex-direction: column;
  }
  .sc-kwealth-experience .card-experiences .card-content {
    flex-direction: column;
    width: 100%;
    height: max-content;
    margin: 0;
    gap: 0;
  }
  .sc-kwealth-experience .card-experiences .card-content:hover {
    height: max-content;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp {
    float: none;
    position: relative;
    height: 300px;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:not(:hover) {
    filter: brightness(100%);
    height: 300px !important;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 52.08%, rgba(255, 255, 255, 0) 100%);
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-privatebank .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-k-private-banking.png);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-wisdom .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-wisdom.png);
    background-size: 90% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp.bg-premier .graphic {
    background-image: url(https://www.kasikornbank.com/SiteCollectionDocuments/wealth/assets/img/bg-graphic-the-premier.png);
    background-size: 60% auto;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 32px 24px;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:hover {
    border-radius: 0;
    height: 300px !important;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:first-child {
    border-radius: 8px 8px 0 0;
    height: auto;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:first-child:hover {
    border-radius: 8px 8px 0 0;
    height: auto;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:last-child {
    border-radius: 0 0 8px 8px;
    height: auto;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp:last-child:hover {
    border-radius: 0 0 8px 8px;
    height: auto;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-thumb {
    margin-top: 0;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-thumb img {
    max-width: 210px;
    max-height: 60px;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .card-exp-title {
    opacity: 1;
  }
  .sc-kwealth-experience .card-experiences .card-content .card-exp .action-card-exp {
    opacity: 1;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .card-exp {
    width: 100%;
  }
}
/* #################### end sc-kwealth-experience ###################### */