@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&family=Poppins: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, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

section, div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  overflow-x: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  border: none;
  -moz-appearance: textfield;
}

input[type=number]:focus {
  outline: none;
}

input[type=tel] {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=text] {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "Montserrat", serif;
}

input[type=tel]:focus {
  outline: none;
}

input[type=text]:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

textarea {
  border: none;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  resize: none;
}

select {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0px;
}

button:focus {
  border: none;
  outline: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

div {
  -webkit-tap-highlight-color: transparent;
}

input {
  border: none;
}

input:focus {
  outline: none;
}

h2 {
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  color: var(--text-color);
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .container {
    padding: 0px 30px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0px 45px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0px;
    max-width: 1200px;
  }
}
.title {
  text-align: center;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -2px;
}
@media (min-width: 768px) {
  .title {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .title {
    font-size: 80px;
  }
}

.line {
  position: relative;
  z-index: 2;
}
.line_wrap {
  position: relative;
  width: 100%;
  height: 1px;
  background: #EAEAEA;
}
.line_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.line_text {
  margin-top: 37px;
}
.line_text p {
  display: none;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: -0.1px;
  color: #29292B;
}
.line_text p:nth-child(2) {
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .line_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .line_text p {
    display: block;
    width: 33.3333333333%;
  }
  .line_text p.color {
    padding-left: 25px;
    position: relative;
  }
  .line_text p.color::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: #85D6D0;
    border-radius: 3px;
  }
  .line_text p:last-child {
    text-align: right;
  }
}

.dropdown {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  z-index: 3;
  background: #1F1A38;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.dropdown.active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.dropdown ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropdown ul li {
  margin-bottom: 45px;
}
.dropdown ul li span {
  cursor: pointer;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #fff;
}

.dropdown ul li a {
  cursor: pointer;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #fff;
}

html.scroll {
  overflow: hidden;
}

.header {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 22px;
}
.header_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_block ul {
  display: none;
}
.header_block_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_block_right a {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.2509803922) inset;
          box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.2509803922) inset;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.0784313725);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1215686275);
  display: block;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 12px;
  line-height: 30px;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #F9F9FA 100%);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  color: #111111;
}
.header_block_right_btn {
  width: 24px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  margin-left: 12px;
  cursor: pointer;
}
.header_block_right_btn span {
  background: #fff;
  width: 100%;
  position: absolute;
  height: 2px;
  right: 0px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header_block_right_btn span:first-child {
  top: 0px;
}
.header_block_right_btn span:nth-child(2) {
  width: 100%;
  top: 8px;
}
.header_block_right_btn span:nth-child(3) {
  top: 16px;
}
.header_block_right_btn.active span {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header_block_right_btn.active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
.header_block_right_btn.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header_block_right_btn.active span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .header {
    padding-top: 16px;
  }
  .header_block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_block ul li {
    margin-left: 25px;
  }
  .header_block ul li:first-child {
    margin-left: 0px;
  }
  .header_block ul li span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
  }
  .header_block ul li a {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
  }
  .header_block_right_btn {
    display: none;
  }
}

.main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 138px;
  background: #1F1A38;
  position: relative;
}
.main_feature_top {
  display: none;
}
.main_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_block_yt {
  display: none;
}
.main_block_top {
  display: none;
}
.main_block h1 {
  color: #fff;
}
.main_block p {
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  opacity: 0.8;
  margin-top: 18px;
}
.main_block a {
  background: #D2BAEC;
  width: 300px;
  height: 62px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  line-height: 62px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0%;
  color: #1F1A38;
  margin-top: 45px;
  text-align: center;
}
.main_desk {
  display: none;
}
.main_mob {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 42px;
}
@media (min-width: 1200px) {
  .main {
    padding-top: 124px;
    padding-bottom: 250px;
    min-height: 100vh;
  }
  .main_feature_top {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .main_block {
    position: relative;
  }
  .main_block_yt {
    display: block;
    position: absolute;
    left: 178px;
    top: 0px;
  }
  .main_block_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .main_block_top img {
    margin-bottom: 18px;
  }
  .main_block_top span {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
  }
  .main_block h1 {
    line-height: 70px;
  }
  .main_block p {
    font-size: 20px;
    max-width: 648px;
    margin-top: 50px;
  }
  .main_block a {
    margin-top: 78px;
  }
  .main_mob {
    display: none;
  }
  .main_desk {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 440px;
  }
}
@media (min-width: 1400px) {
  .main_block_yt {
    left: 218px;
  }
}

.work {
  padding-top: 60px;
  padding-bottom: 80px;
}
.work .subtitle {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #29292B;
  position: relative;
  padding-left: 25px;
}
.work .subtitle::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: #1F1A38;
  border-radius: 3px;
}
.work h2 {
  margin-top: 30px;
  text-align: left;
}
.work_list {
  margin-top: 28px;
}
.work_list_item {
  background: #FBF8F5;
  border-radius: 15px;
  padding: 28px 18px;
  margin-top: 15px;
}
.work_list_item_top {
  position: relative;
}
.work_list_item_top::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: #1F1A38;
}
.work_list_item_top span {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 121px;
  line-height: 148px;
  letter-spacing: -10px;
  vertical-align: middle;
  color: #1F1A38;
}
.work_list_item_body {
  margin-top: 68px;
}
.work_list_item_body h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -1px;
  vertical-align: middle;
  color: #000;
}
.work_list_item_body p {
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 20px;
}
.work_link {
  margin: 0 auto;
  margin-top: 50px;
  width: 248px;
  height: 54px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #1F1A38;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.work_link_arrow {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}
.work_link span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15.8px;
  line-height: 20px;
  letter-spacing: -0.1px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
@media (min-width: 768px) {
  .work h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .work {
    padding-bottom: 120px;
  }
  .work h2 {
    font-size: 46px;
    margin-top: 140px;
  }
  .work_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
  .work_list_item {
    width: calc(33.3333333333% - 8.6666666667px);
    margin-top: 0px;
  }
  .work_link {
    margin-top: 65px;
  }
}

.earn {
  padding-top: 60px;
  padding-bottom: 80px;
}
.earn_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.earn_logo_img {
  background: #1F1A38;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 17px;
}
.earn_logo span {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}
.earn_text {
  margin-top: 45px;
}
.earn_text p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  text-align: center;
  color: #7F7F80;
}
.earn_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 47px;
}
.earn_images img {
  max-width: 100%;
  margin-top: 18px;
}
.earn_block {
  margin-top: 80px;
}
.earn_block_item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FBF8F5;
  border-radius: 22px;
  padding: 30px 20px 20px 20px;
  margin-top: 30px;
}
.earn_block_item h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #29292B;
}
.earn_block_item_body {
  margin-top: 80px;
}
.earn_block_item_body_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
}
.earn_block_item_body_block:first-child {
  margin-top: 0px;
}
.earn_block_item_body_block .name {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.15px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 35px;
  position: relative;
}
.earn_block_item_body_block .name::after {
  content: "";
  width: 12px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1F1A38;
  border-radius: 5px;
}
.earn_block_item_body_block .price {
  height: 54px;
  width: 96px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 68px;
  -webkit-box-shadow: 0px 0px 6.2px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 6.2px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #EAEAEA;
}
.earn_block_item_body_block .price p {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.15px;
  text-align: center;
  color: #090909;
}
.earn_block_item_body_block .price span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: -0.15px;
  text-align: center;
  color: #29A87C;
}
.earn_block_item.other {
  background: #1F1A38;
}
.earn_block_item.other h4 {
  color: #fff;
}
.earn_block_item.other .earn_block_item_body_block .name {
  color: #fff;
}
.earn_block_item.other .earn_block_item_body_block .name::after {
  background-color: #fff;
}
.earn_link {
  margin: 0 auto;
  margin-top: 65px;
  width: 248px;
  height: 54px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #F5F4F3;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.earn_link_arrow {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1F1A38;
  border-radius: 50%;
}
.earn_link span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15.8px;
  line-height: 20px;
  letter-spacing: -0.1px;
  text-align: center;
  vertical-align: middle;
  color: #090909;
}
@media (min-width: 768px) {
  .earn_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .earn_block_item {
    width: calc(50% - 15px);
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .earn {
    padding-top: 124px;
    padding-bottom: 160px;
  }
  .earn_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .earn_text p {
    font-size: 17px;
    width: 842px;
  }
  .earn_images {
    margin-top: 50px;
  }
  .earn_images img {
    margin-top: 30px;
  }
  .earn_block {
    margin-top: 100px;
  }
  .earn_block_item {
    padding: 30px 24px 18px 24px;
  }
  .earn_block_item_body_block .name {
    font-size: 26px;
    line-height: 34px;
  }
  .earn_block_item_body_block .name::after {
    width: 20px;
    height: 20px;
  }
}

.much {
  padding-top: 65px;
  padding-bottom: 80px;
  position: relative;
}
.much_feature_one {
  position: absolute;
  left: 0px;
  top: -130px;
  width: 80px;
}
.much_feature_two {
  position: absolute;
  right: 0px;
  top: -64px;
  width: 70px;
}
.much_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.much_block_text {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #7F7F80;
  margin-top: 16px;
}
.much_block_list {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.much_block_list_item {
  max-width: 382px;
  width: 382px;
  background: #1F1A38;
  border-radius: 15px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 15px;
}
.much_block_list_item_icon {
  background: #E2D2F3;
  width: 78px;
  height: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}
.much_block_list_item h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #fff;
  opacity: 0.8;
  margin-top: 56px;
}
.much_block_list_item p {
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #fff;
  margin-top: 20px;
}
.much_link {
  margin-top: 50px;
  width: 200px;
  height: 54px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #F5F4F3;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.much_link_arrow {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1F1A38;
  border-radius: 50%;
}
.much_link span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15.8px;
  line-height: 20px;
  letter-spacing: -0.1px;
  text-align: center;
  vertical-align: middle;
  color: #090909;
}
@media (min-width: 768px) {
  .much {
    padding-top: 120px;
  }
  .much_feature_one {
    top: 10px;
  }
  .much_feature_two {
    top: 14px;
  }
}
@media (min-width: 1200px) {
  .much {
    padding-top: 100px;
    padding-bottom: 112px;
  }
  .much_feature_one {
    width: 200px;
    top: 50px;
  }
  .much_feature_two {
    width: 220px;
    top: 220px;
  }
  .much_block_text {
    max-width: 675px;
  }
  .much_block_list {
    margin-top: 92px;
  }
  .much_block_list_item {
    margin-top: 28px;
  }
}
@media (min-width: 1400px) {
  .much_feature_one {
    width: auto;
    top: 0px;
  }
  .much_feature_two {
    width: auto;
    top: 170px;
  }
}

.started {
  padding: 56px 0px;
  background: linear-gradient(156.59deg, #ED8061 20.23%, #85D6D0 50.58%, #D2BAEC 80.93%), linear-gradient(0deg, rgba(63, 66, 255, 0.2), rgba(63, 66, 255, 0.2));
}
.started_block h2 {
  color: #fff;
}
.started_block_list {
  margin-top: 25px;
}
.started_block_list_item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #FFFFFF;
  border-radius: 25px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.started_block_list_item span {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}
.started_block_list_item span b {
  font-weight: 500;
}
.started_block a {
  width: 100%;
  display: block;
  height: 62px;
  line-height: 62px;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0%;
  color: #1F1A38;
  text-align: center;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .started_block_list_item span br {
    display: none;
  }
}
@media (min-width: 1200px) {
  .started {
    padding: 86px 0px;
  }
  .started_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .started_block_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .started_block_list_item {
    margin-top: 26px;
    padding: 10px 15px;
  }
  .started_block_list_item span {
    font-size: 20px;
    line-height: 130%;
  }
  .started_block_list_item:nth-child(2) {
    margin-left: 40px;
  }
  .started_block a {
    width: 300px;
    margin-top: 56px;
  }
}

.sound {
  background: #FBF8F5;
  padding: 40px 0px;
  margin-top: 50px;
}
.sound_block_left h2 {
  text-align: left;
}
.sound_block_left p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #63615E;
  margin-top: 72px;
}
.sound_block_right {
  margin-top: 54px;
}
.sound_block_right_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #EAEAEA;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 16px;
  margin-top: 14px;
  position: relative;
  cursor: pointer;
}
.sound_block_right_list_item audio {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.sound_block_right_list_item_img {
  position: relative;
}
.sound_block_right_list_item_img .play {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sound_block_right_list_item_img .pause {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 34px;
}
.sound_block_right_list_item_text {
  margin-left: 22px;
}
.sound_block_right_list_item_text p {
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.1px;
  color: #090909;
  margin-bottom: 4px;
}
.sound_block_right_list_item_text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: #090909;
  opacity: 0.6;
}
.sound_block_right_list_item.playing .sound_block_right_list_item_img .play {
  display: none;
}
.sound_block_right_list_item.playing .sound_block_right_list_item_img .pause {
  display: block;
}
.sound_link {
  margin-top: 45px;
  width: 194px;
  height: 54px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #1F1A38;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sound_link_arrow {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}
.sound_link span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15.8px;
  line-height: 20px;
  letter-spacing: -0.1px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
@media (min-width: 768px) {
  .sound_block_right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sound_block_right_list {
    width: calc(50% - 8px);
  }
}
@media (min-width: 1200px) {
  .sound {
    padding: 140px 0px 120px 0px;
    background: transparent;
  }
  .sound_block {
    background: #FBF8F5;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 124px 25px 124px 45px;
  }
  .sound_block_left {
    max-width: 400px;
  }
  .sound_block_left h2 {
    font-size: 65px;
    line-height: 74px;
  }
  .sound_block_left p {
    font-size: 17px;
    line-height: 24px;
    margin-top: 40px;
  }
  .sound_block_right {
    margin-top: 0px;
  }
  .sound_block_right_list {
    width: auto;
  }
  .sound_block_right_list:first-child {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .sound_block_right_list:last-child {
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
    margin-left: 16px;
  }
  .sound_block_right_list_item {
    width: 300px;
  }
  .sound_link {
    margin-top: 134px;
  }
}
@media (min-width: 1400px) {
  .sound_block_right_list_item {
    width: 334px;
  }
}

.faq {
  padding-top: 80px;
}
.faq_block .subtitle {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #29292B;
  position: relative;
  padding-left: 25px;
}
.faq_block .subtitle::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: #85D6D0;
  border-radius: 3px;
}
.faq_block_list {
  margin-top: 40px;
}
.faq_block_list_item {
  padding: 25px 0px;
  border-bottom: 1px solid #EAEAEA;
}
.faq_block_list_item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.faq_block_list_item_head span {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  display: inline-block;
  color: #29292B;
  width: 80px;
  min-width: 80px;
}
.faq_block_list_item_head h4 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #29292B;
}
.faq_block_list_item_head .plusminus {
  display: none;
}
.faq_block_list_item_body {
  padding-top: 20px;
  display: none;
}
.faq_block_list_item_body p {
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.65);
}
@media (min-width: 768px) {
  .faq_block_list_item_head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .faq_block_list_item_head h4 {
    width: 100%;
  }
  .faq_block_list_item_head .plusminus {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-left: 20px;
  }
  .faq_block_list_item_head .plusminus:before {
    content: "";
    display: block;
    background-color: #29292B;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: 0.35s;
    transition: 0.35s;
    width: 100%;
    height: 2px;
    border-radius: 40px;
  }
  .faq_block_list_item_head .plusminus:after {
    content: "";
    display: block;
    background-color: #29292B;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: 0.35s;
    transition: 0.35s;
    width: 100%;
    height: 2px;
    border-radius: 40px;
  }
  .faq_block_list_item_head .plusminus:before {
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
  }
  .faq_block_list_item_head .plusminus:after {
    -webkit-transform: translatey(-50%) rotate(90deg);
            transform: translatey(-50%) rotate(90deg);
  }
  .faq_block_list_item_head.active .plusminus:before {
    -webkit-transform: translatey(-50%) rotate(-90deg);
            transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
  }
  .faq_block_list_item_head.active .plusminus:after {
    -webkit-transform: translatey(-50%) rotate(0);
            transform: translatey(-50%) rotate(0);
  }
}
@media (min-width: 1200px) {
  .faq {
    padding-top: 135px;
  }
  .faq_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq_block .subtitle {
    margin-top: 25px;
  }
  .faq_block_list {
    margin-top: 0px;
    margin-left: 200px;
    width: 100%;
  }
  .faq_block_list_item_head span {
    width: 180px;
    min-width: 180px;
  }
}
@media (min-width: 1280px) {
  .faq_block_list {
    margin-left: 240px;
  }
  .faq_block_list_item_head span {
    width: 280px;
    min-width: 280px;
  }
}

.form {
  padding-top: 80px;
}
.form_block_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form_block_left_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E2D2F3;
  height: 42px;
  padding: 0px 10px;
  border-radius: 10px;
}
.form_block_left_icon img {
  margin-right: 10px;
}
.form_block_left_icon span {
  font-weight: 600;
  font-size: 13.13px;
  line-height: 24px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #1F1A38;
}
.form_block_left h2 {
  color: #1E1E1E;
  margin-top: 30px;
}
.form_block_left p {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #7F7F80;
  margin-top: 30px;
}
.form_block_right {
  padding-top: 46px;
  margin-top: 40px;
  border-top: 1px solid #EAEAEA;
}
.form_block_right .border {
  display: none;
}
.form_block_right form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form_block_right form span {
  display: block;
  width: 100%;
  margin-top: 16px;
}
.form_block_right form span.half {
  width: calc(50% - 5px);
}
.form_block_right form span input {
  height: 68px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #F5F4F3;
  color: #000;
  line-height: 68px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  padding: 0px 20px;
}
.form_block_right_program {
  margin-top: 40px;
}
.form_block_right_program p {
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.2px;
  vertical-align: middle;
  color: #090909;
}
.form_block_right_program_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.form_block_right_program_radio label {
  position: relative;
  margin-right: 15px;
}
.form_block_right_program_radio label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  margin: 0px;
}
.form_block_right_program_radio label .checkmark {
  width: 58px;
  height: 52px;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.0509803922) inset;
          box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.0509803922) inset;
  background: #F5F4F3;
  border-radius: 8px;
  display: block;
  text-align: center;
  line-height: 52px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: rgba(9, 9, 9, 0.5);
}
.form_block_right_program_radio label input:checked ~ .checkmark {
  background: #1F1A38;
  color: #fff;
}
.form_block_right input[type=submit] {
  width: 100%;
  height: 72px;
  text-align: center;
  background: #E2D2F3;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.1px;
  text-align: center;
  color: #000;
  margin-top: 45px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .form {
    padding-top: 144px;
  }
  .form_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .form_block_left {
    width: 490px;
    min-width: 490px;
    margin-top: 16px;
  }
  .form_block_right {
    margin-top: 0px;
    padding-top: 44px;
    border: none;
    margin-left: 140px;
    position: relative;
  }
  .form_block_right .border {
    display: block;
    position: absolute;
    left: -20px;
    top: 16px;
  }
}

.footer {
  background: #211C3A;
  padding: 40px 0px;
  margin-top: 80px;
}
.footer.other {
  margin-top: 0px;
}
.footer_block_wrap {
  margin-top: 67px;
}
.footer_block_wrap_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer_block_wrap_left span {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.4);
}
.footer_block_wrap_left a {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1px;
  text-decoration: underline;
  color: #E2D2F3;
}
.footer_block_wrap_left p {
  font-size: 14.75px;
  line-height: 22px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 38px;
}
.footer_block_wrap ul {
  margin-top: 40px;
}
.footer_block_wrap ul li .scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 0px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.footer_block_wrap ul li .scroll .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer_block_wrap ul li .scroll .left span {
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.footer_block_wrap ul li .scroll .left p {
  font-weight: 500;
  font-size: 17.02px;
  line-height: 26px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: #fff;
  margin-left: 5px;
}
.footer_block_wrap ul li:first-child .scroll {
  border-top: 1px solid #fff;
}
.footer_block_linked {
  padding: 0px 20px;
  height: 104px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, left bottom, from(#3D77C7), to(#195AB5)), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.14)), color-stop(52.14%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #3D77C7 0%, #195AB5 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 52.14%);
}
.footer_block_linked_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer_block_linked_bottom span {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
}
.footer_block_linked_bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
}
.footer_block_down {
  margin-top: 50px;
}
.footer_block_down img.desk {
  display: none;
}
.footer_block_down_text a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.45);
}
.footer_block_down_text p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: -0.1px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .footer {
    padding: 125px 0px;
    margin-top: 208px;
  }
  .footer_block {
    position: relative;
  }
  .footer_block img.mob {
    display: none;
  }
  .footer_block_wrap {
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 236px);
  }
  .footer_block_wrap_left span {
    font-size: 45px;
    line-height: 52px;
  }
  .footer_block_wrap_left a {
    font-size: 45px;
    line-height: 52px;
  }
  .footer_block_wrap_left p {
    max-width: 440px;
  }
  .footer_block_wrap ul {
    margin-top: 0px;
    width: 292px;
  }
  .footer_block_linked {
    margin-top: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 190px;
    height: 388px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 24px 20px;
  }
  .footer_block_down {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 236px);
  }
  .footer_block_down_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_block_down_text p {
    margin-top: 0px;
    margin-left: 30px;
  }
  .footer_block_down img.desk {
    display: block;
  }
}

.politic {
  background: #211C3A;
  padding-top: 100px;
  color: #fff;
}

.politic h1 {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -2px;
}

.politic h2 {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 125%;
  letter-spacing: -2px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.politic p {
  line-height: 140%;
}

@media (min-width: 768px) {
  .politic h1 {
    font-size: 60px;
  }
  .politic h2 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .politic h1 {
    font-size: 80px;
  }
  .politic h2 {
    font-size: 46px;
  }
}

.scroll {
  cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0px 0px 0px;
  width: 100%;
  text-align: center;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.form_block_right form span input.wpcf7-not-valid {
  background: rgba(255, 0, 0, 0.4);
}

span[data-name="text-243"] {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  visibility: hidden;
}

.sound.other .play {
  display: none;
}

.sound.other .pause {
  display: none;
}

.sound.other .sound_block_right_list_item audio {
  position: relative;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.sound.other .sound_block_right_list_item {
  flex-wrap: wrap;
}

.sound.other .sound_block_right_list_item_img {
  order: 1;
}

.sound.other .sound_block_right_list_item_text {
  order: 2;
}

.sound.other .sound_block_right_list_item audio {
  order: 3;
  height: revert;
  margin-top: 10px;
}