/* Font Import - Start */
@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: Sarabun;
  src: url("../font/Sarabun-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: Lato;
  src: url("../font/Lato-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Lato;
  src: url("../font/Lato-BlackItalic.ttf");
  font-weight: 900;
  font-style: italic;
}

/* Font Import - End */
/* General override for elements - Start */
* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: Sarabun;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

html, body {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: relative;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #2dd6ae;
}

::-webkit-scrollbar-track {
  background: #0e2948;
}

.bt_big_green {
  cursor: pointer !important;
  width: auto;
  display: block;
  font-family: Sarabun;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  text-decoration: none;
  border: 4px solid #2dd6ae;
  border-radius: 100px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bt_big_green:hover, .bt_big_green:active {
  color: #0e2b4b !important;
  background: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.divisor {
  width: 100%;
  height: 5px;
  position: relative;
  margin: 0 auto;
}

.divisor:after {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  border-radius: 1000px;
}

.divisor.blue {
  background: #0e2b4b;
}

.divisor.blue:after {
  background: #0e2b4b;
}

.divisor.white {
  background: #ffffff;
}

.divisor.white:after {
  background: #ffffff;
}

/* General override for elements - End */
/* Global Animation Classes - Start */
.animate {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.animate.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

/* Global Animation Classes - End */
/* Mobile CSS - Start */
main {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_intro {
  width: 100%;
  background: #0e2b4b;
  background: -webkit-gradient(linear, left bottom, left top, from(#0e2b4b), to(#091b2f));
  background: -webkit-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: -o-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: linear-gradient(0deg, #0e2b4b 0%, #091b2f 100%);
}

main .home_intro .wrapper {
  width: 100%;
  padding: 86px 10px 30px 10px;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_intro .wrapper .home_intro_boxone {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_intro .wrapper .home_intro_boxone h1 {
  font-family: Sarabun;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #2dd6ae;
  line-height: 34px;
  margin-bottom: 20px;
}

main .home_intro .wrapper .home_intro_boxone p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  line-height: 22px;
  margin-bottom: 20px;
}

main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .bt_big_green {
  font-size: 18px;
  padding: 10px 25px;
  margin-bottom: 20px;
}

main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .square_button {
  cursor: pointer !important;
  width: auto;
  display: block;
  font-family: Sarabun;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 25px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  margin: 0 auto 20px auto;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .square_button:hover, main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .square_button:active {
  color: #2dd6ae;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main .home_intro .wrapper .home_intro_boxtwo {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_intro .wrapper .home_intro_boxtwo img {
  width: auto;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

main .divisor:after {
  width: 50px;
  height: 50px;
}

main .home_response {
  width: 100%;
  background: #ffffff;
}

main .home_response .wrapper {
  width: 100%;
  padding: 56px 10px 30px 10px;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_response .wrapper h2 {
  font-family: Sarabun;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #e93c53;
  line-height: 30px;
  margin-bottom: 20px;
}

main .home_response .wrapper p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #0e2b4b;
  line-height: 22px;
  margin-bottom: 20px;
}

main .home_steps {
  width: 100%;
  background: #0e2b4b;
  background: -webkit-gradient(linear, left bottom, left top, from(#0e2b4b), to(#091b2f));
  background: -webkit-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: -o-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: linear-gradient(0deg, #0e2b4b 0%, #091b2f 100%);
}

main .home_steps .wrapper {
  width: 100%;
  padding: 56px 10px 30px 10px;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_steps .wrapper h2 {
  font-family: Sarabun;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #2dd6ae;
  margin-bottom: 40px;
}

main .home_steps .wrapper .steps_container {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_steps .wrapper .steps_container .steps_boxone {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

main .home_steps .wrapper .steps_container .steps_boxone .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxone .img_container img {
  width: 45%;
  height: auto;
  margin: 0 auto;
}

main .home_steps .wrapper .steps_container .steps_boxone h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxone p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

main .home_steps .wrapper .steps_container .steps_boxtwo {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

main .home_steps .wrapper .steps_container .steps_boxtwo .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxtwo .img_container img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

main .home_steps .wrapper .steps_container .steps_boxtwo h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxtwo p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

main .home_steps .wrapper .steps_container .steps_boxthree {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

main .home_steps .wrapper .steps_container .steps_boxthree .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxthree .img_container img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

main .home_steps .wrapper .steps_container .steps_boxthree h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps .wrapper .steps_container .steps_boxthree p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

main .home_showcase {
  width: 100%;
  background-image: url("../images/bg_1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: cover;
}

main .home_showcase .wrapper {
  width: 100%;
  padding: 56px 10px 50px 10px;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_showcase .wrapper h2 {
  font-family: Sarabun;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 20px;
}

main .home_showcase .wrapper .home_showcase_container {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_showcase .wrapper .home_showcase_container .and {
  font-family: Lato;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_one {
  font-family: Lato;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_two {
  font-family: Lato;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_one {
  font-family: Lato;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_two {
  font-family: Lato;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
}

main .home_showcase .special_divisor {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .home_showcase .special_divisor .special_divisor_one {
  width: auto;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #091b2f;
}

main .home_showcase .special_divisor .special_divisor_two {
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}

main .home_showcase .special_divisor .special_divisor_two:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 1000px;
  -webkit-box-shadow: 0px 300px 0px 300px #091b2f;
  box-shadow: 0px 300px 0px 300px #091b2f;
}

main .home_showcase .special_divisor .special_divisor_three {
  width: auto;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: #091b2f;
}

main .home_steps_2 {
  width: 100%;
  background: #0e2b4b;
  background: -webkit-gradient(linear, left bottom, left top, from(#0e2b4b), to(#091b2f));
  background: -webkit-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: -o-linear-gradient(bottom, #0e2b4b 0%, #091b2f 100%);
  background: linear-gradient(0deg, #0e2b4b 0%, #091b2f 100%);
}

main .home_steps_2 .wrapper {
  width: 100%;
  padding: 16px 10px 30px 10px;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_steps_2 .wrapper h2 {
  font-family: Sarabun;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #2dd6ae;
  margin-bottom: 40px;
}

main .home_steps_2 .wrapper .steps_container {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

main .home_steps_2 .wrapper .steps_container .steps_boxone {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxone h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxone p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxtwo {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container img {
  width: 45%;
  height: auto;
  margin: 0 auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxtwo h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxtwo p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxthree {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container {
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxthree h3 {
  font-family: Sarabun;
  font-size: 18px;
  font-weight: 700;
  color: #2dd6ae;
  text-align: center;
  line-height: 22px;
  margin: 0 auto 20px auto;
}

main .home_steps_2 .wrapper .steps_container .steps_boxthree p {
  font-family: Sarabun;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  margin: 0 auto;
}

.modal {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  position: fixed;
  z-index: 9999;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal.active {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.modal .wrapper {
  width: 100%;
  padding: 10px;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.modal .wrapper .close {
  cursor: pointer !important;
  font-size: 28px;
  color: #ffffff;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin: 0 8% 3% 0;
}

#player {
  width: 80vw;
  height: 80vh;
  margin: auto;
}

/* Mobile CSS - End */
/* Tablet CSS - Start */
@media (min-width: 768px) and (max-width: 1023px) {
  main .home_intro .wrapper {
    width: 100%;
    padding: 106px 20px 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .home_intro .wrapper .home_intro_boxone {
    width: 50%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  main .home_intro .wrapper .home_intro_boxone h1 {
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }
  main .home_intro .wrapper .home_intro_boxone p {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .bt_big_green {
    width: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    padding: 10px 15px;
    margin: 0;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .square_button {
    width: auto;
    font-size: 16px;
    text-align: center;
    padding: 12px 15px;
    margin: 0 0 0 10px;
  }
  main .home_intro .wrapper .home_intro_boxtwo {
    width: 50%;
  }
  main .home_intro .wrapper .home_intro_boxtwo img {
    margin: auto;
  }
  main .divisor:after {
    width: 75px;
    height: 75px;
  }
  main .home_response .wrapper {
    padding: 56px 20px 40px 20px;
  }
  main .home_response .wrapper h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  main .home_response .wrapper p {
    font-size: 18px;
    color: #0e2b4b;
    line-height: 26px;
    margin-bottom: 20px;
  }
  main .home_steps .wrapper {
    padding: 66px 20px 40px 20px;
  }
  main .home_steps .wrapper h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  main .home_steps .wrapper .steps_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .home_steps .wrapper .steps_container .steps_boxone {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxone .img_container {
    width: 100%;
    height: auto;
    min-height: 165px;
    max-height: 165px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone p {
    font-size: 14px;
    line-height: 22px;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo .img_container {
    width: 100%;
    height: auto;
    min-height: 165px;
    max-height: 165px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo p {
    font-size: 14px;
    line-height: 22px;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree .img_container {
    width: 100%;
    height: auto;
    min-height: 165px;
    max-height: 165px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree p {
    font-size: 14px;
    line-height: 22px;
  }
  main .home_showcase .wrapper {
    padding: 56px 20px 40px 20px;
  }
  main .home_showcase .wrapper h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  main .home_showcase .wrapper .home_showcase_container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  main .home_showcase .wrapper .home_showcase_container .and {
    font-size: 48px;
    text-align: center;
    margin: 0 20px 0 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone {
    width: auto;
    margin: 0 20px 0 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_one, main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_two {
    font-size: 48px;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo {
    width: auto;
    margin: 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_one, main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_two {
    font-size: 48px;
  }
  main .home_showcase .special_divisor .special_divisor_one {
    height: 75px;
  }
  main .home_showcase .special_divisor .special_divisor_two {
    width: 75px;
    height: 75px;
  }
  main .home_showcase .special_divisor .special_divisor_three {
    height: 75px;
  }
  main .home_steps_2 .wrapper {
    padding: 6px 20px 40px 20px;
  }
  main .home_steps_2 .wrapper h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  main .home_steps_2 .wrapper .steps_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container {
    width: 100%;
    height: auto;
    min-height: 179px;
    max-height: 179px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone p {
    font-size: 14px;
    line-height: 22px;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container {
    width: 100%;
    height: auto;
    min-height: 179px;
    max-height: 179px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container img {
    width: 60%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo p {
    font-size: 14px;
    line-height: 22px;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container {
    width: 100%;
    height: auto;
    min-height: 179px;
    max-height: 179px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Tablet CSS - End */
/* Desktop CSS - Start */
@media (min-width: 1024px) {
  main .home_intro .wrapper {
    width: 1024px;
    padding: 126px 20px 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
  }
  main .home_intro .wrapper .home_intro_boxone {
    width: 50%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  main .home_intro .wrapper .home_intro_boxone h1 {
    font-size: 36px;
    line-height: 42px;
    text-align: left;
    margin: 20px 0 30px 0;
  }
  main .home_intro .wrapper .home_intro_boxone p {
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    margin-bottom: 30px;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .bt_big_green {
    width: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    padding: 10px 15px;
    margin: 0 !important;
  }
  main .home_intro .wrapper .home_intro_boxone .home_intro_button_wrapper .square_button {
    font-size: 24px;
    padding: 12px 15px;
    margin: 0 0 0 10px;
  }
  main .home_intro .wrapper .home_intro_boxtwo {
    width: 50%;
  }
  main .home_intro .wrapper .home_intro_boxtwo img {
    margin: auto;
  }
  main .divisor:after {
    width: 100px;
    height: 100px;
  }
  main .home_response .wrapper {
    width: 1024px;
    padding: 100px 20px 60px 20px;
    margin: 0 auto;
  }
  main .home_response .wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  main .home_response .wrapper p {
    width: 840px;
    font-size: 22px;
    font-weight: 400;
    color: #0e2b4b;
    line-height: 30px;
    margin: 0 auto;
  }
  main .home_steps .wrapper {
    width: 1024px;
    padding: 100px 20px 60px 20px;
    margin: 0 auto;
  }
  main .home_steps .wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  main .home_steps .wrapper .steps_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .home_steps .wrapper .steps_container .steps_boxone {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxone .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxone p {
    font-size: 16px;
    line-height: 24px;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxtwo p {
    font-size: 16px;
    line-height: 24px;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree {
    width: 31%;
    margin: 0;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps .wrapper .steps_container .steps_boxthree p {
    font-size: 16px;
    line-height: 24px;
  }
  main .home_showcase .wrapper {
    width: 1024px;
    padding: 100px 20px 40px 20px;
    margin: 0 auto;
  }
  main .home_showcase .wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 60px;
  }
  main .home_showcase .wrapper .home_showcase_container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  main .home_showcase .wrapper .home_showcase_container .and {
    font-size: 60px;
    text-align: center;
    margin: 0 20px 0 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone {
    width: auto;
    margin: 0 20px 0 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_one, main .home_showcase .wrapper .home_showcase_container .home_showcase_boxone .logo_two {
    font-size: 60px;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo {
    width: auto;
    margin: 0;
  }
  main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_one, main .home_showcase .wrapper .home_showcase_container .home_showcase_boxtwo .logo_two {
    font-size: 60px;
  }
  main .home_showcase .special_divisor .special_divisor_one {
    height: 100px;
  }
  main .home_showcase .special_divisor .special_divisor_two {
    width: 100px;
    height: 100px;
  }
  main .home_showcase .special_divisor .special_divisor_three {
    height: 100px;
  }
  main .home_steps_2 .wrapper {
    width: 1024px;
    padding: 0px 20px 60px 20px;
    margin: 0 auto;
  }
  main .home_steps_2 .wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  main .home_steps_2 .wrapper .steps_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxone p {
    font-size: 16px;
    line-height: 24px;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo .img_container img {
    width: 60%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxtwo p {
    font-size: 16px;
    line-height: 24px;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree {
    width: 31%;
    margin: 0;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    margin: 0 auto 40px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree .img_container img {
    width: 70%;
    height: auto;
    margin: auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree h3 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 30px auto;
  }
  main .home_steps_2 .wrapper .steps_container .steps_boxthree p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Desktop CSS - End */
