@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  outline: none;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}
*::before, *::after, html::before, html::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a, a:visited, a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #e40138;
}

body {
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2;
  color: #010101;
  background: #fff;
}

.wrapper {
  margin: 0 auto;
  max-width: 1920px;
}
.wrapper--small {
  max-width: 800px;
}
.wrapper--medium {
  max-width: 1280px;
}
.wrapper--large {
  max-width: 1600px;
}

.text-container {
  padding-bottom: 32px;
}
.text-container > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
.text-container h1, .text-container h2, .text-container h3, .text-container h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: initial;
  padding-bottom: 32px;
  line-height: 1.2;
  color: #010101;
  max-width: 800px;
}
.text-container h1, .text-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #e40138;
}
.text-container h1:has(+ h3), .text-container h1:has(+ h4), .text-container h2:has(+ h3), .text-container h2:has(+ h4) {
  padding-bottom: 4px;
}
.text-container h1:has(+ p), .text-container h1:has(+ ul), .text-container h2:has(+ p), .text-container h2:has(+ ul) {
  padding-bottom: 16px;
}
.text-container h3 {
  font-size: 20px;
  font-weight: 700;
}
.text-container h3:has(+ h4) {
  padding-bottom: 4px;
}
.text-container h3:has(+ p), .text-container h3:has(+ ul) {
  padding-bottom: 16px;
}
.text-container h4 {
  font-size: 16px;
  color: #4a4a49;
}
.text-container h4:has(+ h1), .text-container h4:has(+ h2), .text-container h4:has(+ h3) {
  padding-bottom: 4px;
}
.text-container p {
  padding-bottom: 32px;
  max-width: 800px;
  color: #010101;
}
.text-container ul {
  padding-bottom: 32px;
  max-width: 800px;
}
.text-container ul li {
  padding-left: 32px;
  position: relative;
}
.text-container ul li::before {
  content: "▪";
  position: absolute;
  left: 16px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #4a4a49;
}
.text-container ol {
  list-style: none;
  padding-bottom: 32px;
  counter-reset: counter;
  max-width: 800px;
}
.text-container ol li {
  padding-left: 32px;
  position: relative;
  counter-increment: counter;
}
.text-container ol li::before {
  content: counter(counter);
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #4a4a49;
}
.text-container strong {
  font-weight: 700;
}
.text-container em {
  color: #4a4a49;
  font-weight: 500;
}
.text-container del {
  font-weight: 700;
}
.text-container a, .text-container a:visited {
  color: #010101;
  position: relative;
  display: inline-block;
}
.text-container a::before, .text-container a:visited::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  border-bottom: 1px solid #e40138;
}
.text-container a::after, .text-container a:visited::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  border-bottom: 1px solid #4a4a49;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.text-container a:hover::after, .text-container a:visited:hover::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.text-container .dotdotdot {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0;
  margin-bottom: 32px;
}
.text-container .dotdotdot--1 {
  -webkit-line-clamp: 1;
}
.text-container .dotdotdot--2 {
  -webkit-line-clamp: 2;
}
.text-container .dotdotdot--3 {
  -webkit-line-clamp: 3;
}
.text-container .dotdotdot--4 {
  -webkit-line-clamp: 4;
}
.text-container .dotdotdot--5 {
  -webkit-line-clamp: 5;
}
.text-container .dotdotdot--6 {
  -webkit-line-clamp: 6;
}
.text-container .dotdotdot--7 {
  -webkit-line-clamp: 7;
}
.text-container .dotdotdot--8 {
  -webkit-line-clamp: 8;
}
.text-container .dotdotdot--9 {
  -webkit-line-clamp: 9;
}
.text-container .dotdotdot--10 {
  -webkit-line-clamp: 10;
}
.text-container .dotdotdot--11 {
  -webkit-line-clamp: 11;
}
.text-container .dotdotdot--12 {
  -webkit-line-clamp: 12;
}
.text-container .dotdotdot--13 {
  -webkit-line-clamp: 13;
}
.text-container .dotdotdot--14 {
  -webkit-line-clamp: 14;
}
.text-container .dotdotdot--15 {
  -webkit-line-clamp: 15;
}
.text-container .dotdotdot--16 {
  -webkit-line-clamp: 16;
}
.text-container .dotdotdot--17 {
  -webkit-line-clamp: 17;
}
.text-container .dotdotdot--18 {
  -webkit-line-clamp: 18;
}
.text-container .dotdotdot--19 {
  -webkit-line-clamp: 19;
}
.text-container .dotdotdot--20 {
  -webkit-line-clamp: 20;
}
.text-container .dotdotdot--21 {
  -webkit-line-clamp: 21;
}
.text-container .dotdotdot--22 {
  -webkit-line-clamp: 22;
}
.text-container .dotdotdot--23 {
  -webkit-line-clamp: 23;
}
.text-container .dotdotdot--24 {
  -webkit-line-clamp: 24;
}
.text-container .dotdotdot--25 {
  -webkit-line-clamp: 25;
}
.text-container .dotdotdot--26 {
  -webkit-line-clamp: 26;
}
.text-container .dotdotdot--27 {
  -webkit-line-clamp: 27;
}
.text-container .dotdotdot--28 {
  -webkit-line-clamp: 28;
}
.text-container .dotdotdot--29 {
  -webkit-line-clamp: 29;
}
.text-container .dotdotdot--30 {
  -webkit-line-clamp: 30;
}
.text-container .dotdotdot--31 {
  -webkit-line-clamp: 31;
}
.text-container .dotdotdot--32 {
  -webkit-line-clamp: 32;
}
.text-container .dotdotdot--33 {
  -webkit-line-clamp: 33;
}
.text-container .dotdotdot--34 {
  -webkit-line-clamp: 34;
}
.text-container .dotdotdot--35 {
  -webkit-line-clamp: 35;
}
.text-container .dotdotdot--36 {
  -webkit-line-clamp: 36;
}
.text-container .dotdotdot--37 {
  -webkit-line-clamp: 37;
}
.text-container .dotdotdot--38 {
  -webkit-line-clamp: 38;
}
.text-container .dotdotdot--39 {
  -webkit-line-clamp: 39;
}
.text-container .dotdotdot--40 {
  -webkit-line-clamp: 40;
}
.text-container .dotdotdot--41 {
  -webkit-line-clamp: 41;
}
.text-container .dotdotdot--42 {
  -webkit-line-clamp: 42;
}
.text-container .dotdotdot--43 {
  -webkit-line-clamp: 43;
}
.text-container .dotdotdot--44 {
  -webkit-line-clamp: 44;
}
.text-container .dotdotdot--45 {
  -webkit-line-clamp: 45;
}
.text-container .dotdotdot--46 {
  -webkit-line-clamp: 46;
}
.text-container .dotdotdot--47 {
  -webkit-line-clamp: 47;
}
.text-container .dotdotdot--48 {
  -webkit-line-clamp: 48;
}
.text-container .dotdotdot--49 {
  -webkit-line-clamp: 49;
}
.text-container .dotdotdot--50 {
  -webkit-line-clamp: 50;
}
.text-container .dotdotdot--51 {
  -webkit-line-clamp: 51;
}
.text-container .dotdotdot--52 {
  -webkit-line-clamp: 52;
}
.text-container .dotdotdot--53 {
  -webkit-line-clamp: 53;
}
.text-container .dotdotdot--54 {
  -webkit-line-clamp: 54;
}
.text-container .dotdotdot--55 {
  -webkit-line-clamp: 55;
}
.text-container .dotdotdot--56 {
  -webkit-line-clamp: 56;
}
.text-container .dotdotdot--57 {
  -webkit-line-clamp: 57;
}
.text-container .dotdotdot--58 {
  -webkit-line-clamp: 58;
}
.text-container .dotdotdot--59 {
  -webkit-line-clamp: 59;
}
.text-container .dotdotdot--60 {
  -webkit-line-clamp: 60;
}
.text-container .dotdotdot--61 {
  -webkit-line-clamp: 61;
}
.text-container .dotdotdot--62 {
  -webkit-line-clamp: 62;
}
.text-container .dotdotdot--63 {
  -webkit-line-clamp: 63;
}
.text-container .dotdotdot--64 {
  -webkit-line-clamp: 64;
}
.text-container .dotdotdot--65 {
  -webkit-line-clamp: 65;
}
.text-container .dotdotdot--66 {
  -webkit-line-clamp: 66;
}
.text-container .dotdotdot--67 {
  -webkit-line-clamp: 67;
}
.text-container .dotdotdot--68 {
  -webkit-line-clamp: 68;
}
.text-container .dotdotdot--69 {
  -webkit-line-clamp: 69;
}
.text-container .dotdotdot--70 {
  -webkit-line-clamp: 70;
}
.text-container .dotdotdot--71 {
  -webkit-line-clamp: 71;
}
.text-container .dotdotdot--72 {
  -webkit-line-clamp: 72;
}
.text-container .dotdotdot--73 {
  -webkit-line-clamp: 73;
}
.text-container .dotdotdot--74 {
  -webkit-line-clamp: 74;
}
.text-container .dotdotdot--75 {
  -webkit-line-clamp: 75;
}
.text-container .dotdotdot--76 {
  -webkit-line-clamp: 76;
}
.text-container .dotdotdot--77 {
  -webkit-line-clamp: 77;
}
.text-container .dotdotdot--78 {
  -webkit-line-clamp: 78;
}
.text-container .dotdotdot--79 {
  -webkit-line-clamp: 79;
}
.text-container .dotdotdot--80 {
  -webkit-line-clamp: 80;
}
.text-container .dotdotdot--81 {
  -webkit-line-clamp: 81;
}
.text-container .dotdotdot--82 {
  -webkit-line-clamp: 82;
}
.text-container .dotdotdot--83 {
  -webkit-line-clamp: 83;
}
.text-container .dotdotdot--84 {
  -webkit-line-clamp: 84;
}
.text-container .dotdotdot--85 {
  -webkit-line-clamp: 85;
}
.text-container .dotdotdot--86 {
  -webkit-line-clamp: 86;
}
.text-container .dotdotdot--87 {
  -webkit-line-clamp: 87;
}
.text-container .dotdotdot--88 {
  -webkit-line-clamp: 88;
}
.text-container .dotdotdot--89 {
  -webkit-line-clamp: 89;
}
.text-container .dotdotdot--90 {
  -webkit-line-clamp: 90;
}
.text-container .dotdotdot--91 {
  -webkit-line-clamp: 91;
}
.text-container .dotdotdot--92 {
  -webkit-line-clamp: 92;
}
.text-container .dotdotdot--93 {
  -webkit-line-clamp: 93;
}
.text-container .dotdotdot--94 {
  -webkit-line-clamp: 94;
}
.text-container .dotdotdot--95 {
  -webkit-line-clamp: 95;
}
.text-container .dotdotdot--96 {
  -webkit-line-clamp: 96;
}
.text-container .dotdotdot--97 {
  -webkit-line-clamp: 97;
}
.text-container .dotdotdot--98 {
  -webkit-line-clamp: 98;
}
.text-container .dotdotdot--99 {
  -webkit-line-clamp: 99;
}
.text-container blockquote {
  font-size: 24px;
  font-style: italic;
  text-align: center;
  position: relative;
  padding-block: 32px;
  margin-bottom: 32px;
  z-index: 1;
}
.text-container blockquote p {
  padding: 0;
}
.text-container blockquote::before {
  content: "";
  position: absolute;
  height: 100%;
  aspect-ratio: 2/1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #f1f1f0;
  -webkit-mask-image: url(../img/quote-alt.svg);
          mask-image: url(../img/quote-alt.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: -1;
}

.image-container {
  padding-bottom: 32px;
}
.image-container img {
  display: block;
  width: 100%;
  border-radius: 4px 4px 4px 4px;
}

.video-container {
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 4px 4px;
}
.video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.25s ease 0.25s;
  transition: all 0.25s ease 0.25s;
}
.video-container span {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  background: rgba(74, 74, 73, 0.25);
  padding: 4px 16px;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-container iframe,
.video-container video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  pointer-events: none;
}
.video-container::before, .video-container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #e40138;
  pointer-events: none;
  z-index: 2;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-container::after {
  background: #fff;
  -webkit-mask-image: url(../img/google-play_arrow_FILL0_wght300_GRAD0_opsz48.svg);
          mask-image: url(../img/google-play_arrow_FILL0_wght300_GRAD0_opsz48.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 24px 24px;
          mask-size: 24px 24px;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-container:hover {
  cursor: pointer;
}
.video-container:hover::before {
  background: #4a4a49;
}
.video-container.active img,
.video-container.active span {
  opacity: 0;
  pointer-events: none;
}
.video-container.active iframe,
.video-container.active video {
  pointer-events: all;
}
.video-container.active::before, .video-container.active::after {
  opacity: 0;
  pointer-events: none;
}

.video-link-container {
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 4px 4px;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-link-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.25s ease 0.25s;
  transition: all 0.25s ease 0.25s;
}
.video-link-container span {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  background: rgba(74, 74, 73, 0.25);
  padding: 4px 16px;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-link-container iframe,
.video-link-container video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  pointer-events: none;
}
.video-link-container::before, .video-link-container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #e40138;
  pointer-events: none;
  z-index: 2;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-link-container::after {
  background: #fff;
  -webkit-mask-image: url(../img/google-play_arrow_FILL0_wght300_GRAD0_opsz48.svg);
          mask-image: url(../img/google-play_arrow_FILL0_wght300_GRAD0_opsz48.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 24px 24px;
          mask-size: 24px 24px;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.video-link-container:hover {
  cursor: pointer;
}
.video-link-container:hover::before {
  background: #4a4a49;
}
.video-link-container.active img,
.video-link-container.active span {
  opacity: 0;
  pointer-events: none;
}
.video-link-container.active iframe,
.video-link-container.active video {
  pointer-events: all;
}
.video-link-container.active::before, .video-link-container.active::after {
  opacity: 0;
  pointer-events: none;
}

.button {
  border: none;
  background: #010101;
  color: #fff;
  display: inline-block;
  padding: 8px 32px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.button:hover {
  cursor: pointer;
  background: #e40138;
}
.button--primary-hover {
  background: #4a4a49;
}
.button--primary-alt {
  background: #e40138;
}
.button--primary-alt:hover {
  background: #fff;
  color: #e40138;
}
.button--primary-alt-hover {
  background: #fff;
  color: #e40138;
}
.button--secondary {
  background: #4a4a49;
}
.button--secondary:hover {
  background: #e40138;
}
.button--secondary-hover {
  background: #e40138;
}
.button--secondary-alt {
  background: #4a4a49;
}
.button--secondary-alt:hover {
  background: #fff;
  color: #e40138;
}
.button--secondary-alt-hover {
  background: #fff;
  color: #e40138;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 64px 32px;
  padding-bottom: 32px;
}
@media only screen and (min-width: 1280px) {
  .grid {
    gap: 64px;
  }
}
.grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.grid__item--vertical-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grid__item--first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.grid__item--full {
  grid-column: 1/-1;
}
.grid__item > *:last-child {
  padding-bottom: 0;
}
.grid__item > *:last-child.link-container {
  margin-top: auto;
}
@media only screen and (min-width: 960px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1440px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1600px) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media only screen and (min-width: 1920px) {
  .grid--4 {
    gap: 64px;
  }
}

header {
  padding-inline: 16px;
}
@media only screen and (min-width: 640px) {
  header {
    padding-inline: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  header {
    padding-inline: 64px;
  }
}
header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 128px;
  gap: 16px;
}
header .wrapper .image-container {
  padding: 0;
}
header .wrapper .image-container img {
  max-height: 64px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
header .wrapper .button-container .button {
  text-wrap: nowrap;
}

main section {
  padding-inline: 16px;
}
@media only screen and (min-width: 640px) {
  main section {
    padding-inline: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  main section {
    padding-inline: 64px;
  }
}
main section.hero {
  padding-bottom: 32px;
}
main section.intro {
  padding-bottom: 32px;
}
main section.intro .text-container br {
  display: none;
}
@media only screen and (min-width: 960px) {
  main section.intro .text-container br {
    display: initial;
  }
}
main section.video {
  padding-bottom: 32px;
}
main section.text-video {
  padding-bottom: 32px;
}

footer {
  padding-inline: 16px;
  padding-block: 64px 32px;
  background: #010101;
}
@media only screen and (min-width: 640px) {
  footer {
    padding-inline: 32px;
  }
}
@media only screen and (min-width: 1280px) {
  footer {
    padding-inline: 64px;
  }
}
footer .text-container ul li {
  padding: 0;
  text-align: center;
  color: #fff;
}
footer .text-container ul li::before {
  display: none;
}