* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "kurious-looped";
}

body {
  color: var(--c-black);
}

:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-primary: #00ab8e;
  --c-dark-green: #013334;
  --c-green: #8cc800;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 1400px) {
  .container {
    padding: 0px 24px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  line-height: 1;
  margin: 0;
}

a {
  word-break: break-word;
}

.kc-h1 {
  font-size: 86px;
  font-weight: 600;
}

.kc-h2 {
  font-size: 68px;
  font-weight: 600;
}

.kc-h3 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.kc-h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

.kc-h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.kc-h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.kc-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 992px) {
  .kc-h1 {
    font-size: 53px;
  }

  .kc-h2 {
    font-size: 42px;
  }

  .kc-h3 {
    font-size: 28px;
    line-height: 1.5;
  }

  .kc-h4 {
    font-size: 20px;
  }

  .kc-h6 {
    font-size: 18px;
  }
}

img,
svg {
  width: 100%;
}

strong {
  font-weight: 600;
}

.btn {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--c-white);
  padding: 18px 24px;
  border-radius: 16px;
  background-color: var(--c-primary);
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s;
}

.btn:hover {
  color: var(--c-white);
  background: var(--c-green);
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px 24px;
  }
}

main {
  margin-top: 120px;
}

@media screen and (max-width: 992px) {
  main {
    margin-top: 80px;
  }
}

.sc-inner {
  padding: 100px 0;
}

@media screen and (max-width: 992px) {
  .sc-inner {
    padding: 80px 0;
  }
}

/* Section banner */
.kc-banner {
  padding: 269px 0 100px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  > * {
    position: relative;
    z-index: 1;
  }
}

.kc-banner .bg-desktop,
.kc-banner .bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0 !important;
  object-fit: cover;
  object-position: center center;
}

.kc-banner .banner-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--c-white);
}

.kc-banner .kc-banner-logo img {
  width: auto;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .kc-banner .bg-mobile {
    display: none;
  }

  .kc-banner .bg-desktop {
    display: block;
  }
  .kc-banner .kc-banner-logo img {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .kc-banner {
    padding: 92px 0 40px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .kc-banner .bg-mobile {
    display: block;
  }

  .kc-banner .bg-desktop {
    display: none;
  }
}

/* Section video banner */
.banner-video-wrapper {
  position: relative;
}

.banner-video-wrapper .kc-banner-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-video-wrapper .kc-banner-video .banner-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 100px;
}

.banner-video-wrapper .kc-banner-video .banner-text .banner-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--c-white);
}

@media screen and (max-width: 767px) {
  .banner-video-wrapper .kc-banner-video .banner-text .banner-inner {
    gap: 24px;
  }

  .banner-video-wrapper .kc-banner-video .banner-text {
    padding-bottom: 40px;
  }
}

/* Section Subscribe */
.kc-subscribe {
  background: linear-gradient(to top, #70dbbe, #f1fbf8, #ffffff);
}

.kc-subscribe .subscribe-inner {
  padding: 128px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.kc-subscribe .subscribe-inner .desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.kc-subscribe .subscribe-inner .desc .kc-h2 {
  line-height: 1.2;
}

.kc-subscribe .subscribe-inner .logo {
  max-width: 341px;
  display: inline-block;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .kc-subscribe .subscribe-inner {
    padding: 80px 0;
  }

  .kc-subscribe .subscribe-inner .logo {
    max-width: 273px;
    margin-bottom: 8px;
    margin-top: 8px;
  }

  .kc-subscribe .subscribe-inner .wrapper-text {
  }

  .kc-subscribe .subscribe-inner .wrapper-text .top {
    font-size: 33px;
    line-height: 1;
  }

  .kc-subscribe .subscribe-inner .wrapper-text .top:lang(th) {
    line-height: 1.3;
  }

  .kc-subscribe .subscribe-inner .wrapper-text .middle {
    font-size: 28px;
    line-height: 1.5;
  }

  .kc-subscribe .subscribe-inner .wrapper-text .bottom {
    font-size: 42px;
    line-height: 1.2;
  }
}

video,
img {
  max-width: 100%;
  max-height: 100%;
}

.word {
  display: inline-block;
}

.link {
  text-decoration: none;
  color: var(--c-primary);
}
