@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;900&family=Open+Sans:wght@400;600&display=swap"); /* Color Config */
/* Responsive Dimensions */
body {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  background-color: #F5F5F5;
}

main {
  color: #000;
}
main h1, main .h1-title {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #00FFA3;
  margin: 0 0 20px 0;
}
@media screen and (min-width: 768px) {
  main h1, main .h1-title {
    font-size: 44px;
  }
}
main h2 {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  font-size: 30px;
  margin: 0 0 15px 0;
}
main h3 {
  font-size: 24px;
  margin: 0 0 220px 0;
}
@media screen and (min-width: 768px) {
  main h3 {
    font-size: 28px;
  }
}
main h4 {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 20px 0;
}
main h5 {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 35px;
}
main h6 {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}
main a {
  text-decoration: unset;
  color: inherit;
  transition: all 0.3s ease;
}
main a:hover {
  text-decoration: unset;
  color: inherit;
}
main ul {
  padding-left: 20px;
}
main p {
  font-size: inherit;
  line-height: inherit;
}
main .st-bold {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
main .st-text {
  margin-bottom: 35px;
}
main .st-underline {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  main .hide-tablet {
    display: none;
  }
}

#main {
  overflow: hidden;
  margin: 10px 10px 0;
}
@media screen and (min-width: 768px) {
  #main {
    margin: 20px 20px 0;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.col-50 {
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  min-height: 700px;
  height: calc(100vh - 10px);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .col-50 {
    width: 45%;
    height: calc(100vh - 20px);
    margin: 0 15px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .col-50 {
    min-height: 860px;
    height: calc(100vh - 30px);
    width: 50%;
    padding: 60px 72px 60px 60px;
    box-sizing: border-box;
  }
}
.col-50 .col--inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.col-50 .col--inner .col-title {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  margin: 0 25px 30px 0;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .col-50 .col--inner .col-title {
    margin: 0 17px 30px 0;
  }
}
@media screen and (min-width: 1200px) {
  .col-50 .col--inner .col-title {
    font-size: 90px;
    line-height: 80px;
    margin: 0 0 30px 0;
  }
}
.col-50 .col--inner .col-title span {
  color: #00FFA3;
}
.col-50 .col--inner .col-img {
  margin: 0 0 40px 0;
}
@media screen and (min-width: 1200px) {
  .col-50 .col--inner .col-img {
    margin: 0 0 40px 0;
  }
}

.masthead-container {
  background-color: transparent;
  position: relative;
  z-index: 10;
  position: fixed;
  width: 100%;
  transition: all 0.7s ease;
}

footer {
  background-color: #F5F5F5;
}
footer > .container {
  padding: 35px 20px;
}
@media screen and (min-width: 768px) {
  footer > .container {
    padding: 50px;
  }
}
@media screen and (min-width: 1200px) {
  footer > .container {
    padding: 60px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-nav {
    display: flex;
    justify-content: space-between;
  }
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
}
footer ul:last-of-type {
  flex-wrap: nowrap;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  footer ul:last-of-type {
    margin-top: 0;
  }
}
footer ul li {
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 12px;
}
footer ul li::after {
  position: absolute;
  display: block;
  content: "";
  height: 18px;
  width: 1px;
  background-color: #000000;
  right: 0;
  top: 3px;
}
footer ul li:last-of-type {
  padding-right: 0;
  margin-right: 0;
}
footer ul li:last-of-type::after {
  content: unset;
}
footer ul a {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
}
footer .footer-logo {
  margin-bottom: 45px;
}
footer .footer-logo img {
  max-height: 60px;
}

.s1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
  min-height: 600px;
  height: calc(100vh - 20px);
}
@media screen and (min-width: 768px) {
  .s1 {
    height: calc(100vh - 30px);
    max-height: 100vh;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .s1 {
    min-height: 860px;
    height: calc(100vh - 40px);
    margin-bottom: 30px;
  }
}
.s1-content {
  padding-top: 65px;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 2;
  transform: translateY(-50%);
}
.s1-content > .container {
  display: flex;
  max-width: 1004px;
  padding: 0 40px;
}
.s1-content h1 {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: 60px;
  line-height: 55px;
}
@media screen and (min-width: 768px) {
  .s1-content h1 {
    font-size: 132px;
    line-height: 115px;
  }
}
@media screen and (min-width: 1200px) {
  .s1-content h1 {
    font-size: 188px;
    line-height: 154px;
  }
}
.s1-content h1 span {
  display: block;
  color: #00FFA3;
}
.s1-content p {
  margin-top: 30px;
  margin-bottom: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  line-height: 27px;
  max-width: 700px;
}
.s1-content .s1--img {
  max-height: 100px;
  position: relative;
  top: 5px;
}
@media screen and (min-width: 768px) {
  .s1-content .s1--img {
    max-height: 210px;
    top: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .s1-content .s1--img {
    max-height: 400px;
  }
}
.s1-content > .container .col:nth-of-type(2) {
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .s1-content > .container .col:nth-of-type(2) {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .s1-content > .container .col:nth-of-type(2) {
    padding-left: 30px;
  }
}

.s2 {
  color: #ffffff;
  position: relative;
}
.s2 .col-50.col1::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/dist/images/s2-bg1.png");
  position: absolute;
  display: block;
  right: -3px;
  height: 100%;
  width: 104vw;
  top: 0;
}
@media screen and (min-width: 768px) {
  .s2 .col-50.col1::after {
    width: 54vw;
    right: 0;
    border-radius: 5px;
  }
}
.s2 .col-50.col2::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/dist/images/s2-bg2.png");
  position: absolute;
  display: block;
  left: 0;
  height: 100%;
  width: 104vw;
  top: 0;
}
@media screen and (min-width: 768px) {
  .s2 .col-50.col2::before {
    width: 54vw;
    right: 0;
    border-radius: 5px;
  }
}
.s2 .col-50 .col--inner .col-title {
  max-width: 565px;
}
.s2 p {
  margin: 0;
  max-width: 565px;
}

.s3 {
  color: #ffffff;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .s3 .col-50 {
    min-height: 860px;
    box-sizing: border-box;
  }
}
.s3 .col-50.col1::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/dist/images/s3-bg1.png");
  position: absolute;
  display: block;
  right: 0;
  height: 100%;
  width: 104vw;
  top: 0;
}
@media screen and (min-width: 768px) {
  .s3 .col-50.col1::after {
    width: 54vw;
    right: 0;
    border-radius: 5px;
  }
}
.s3 .col-50.col2::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/dist/images/s3-bg2.png");
  position: absolute;
  display: block;
  left: 0;
  height: 100%;
  width: 104vw;
  top: 0;
}
@media screen and (min-width: 768px) {
  .s3 .col-50.col2::before {
    width: 54vw;
    right: 0;
    border-radius: 5px;
  }
}
.s3 p {
  margin: 0;
}

.page-content-wrapper {
  padding-top: 60px;
}
.page-content-wrapper .page-content {
  padding: 30px 20px 20px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .page-content-wrapper .page-content {
    padding: 40px 40px 20px;
  }
}
.page-content-wrapper .page-title-back {
  font-family: "Figtree", sans-serif;
  font-weight: 900;
  color: #00FFA3;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.page-content-wrapper .page-title-back::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url("/dist/images/arrow-back.svg");
  width: 26px;
  height: 26px;
  left: 0;
  top: 2px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}