@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@400;500;700&display=swap");
html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Be Vietnam", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #9095a7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #242d52;
  font-weight: bold;
}

li {
  list-style-type: none;
}

.container {
  max-width: 1120px;
  margin: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-flex-dr-clmn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

p {
  color: #9095a7;
  font-size: 0.9rem;
}

.hero {
  width: 100%;
  height: 110vh;
  background-image: url("../images/bg-tablet-pattern.svg");
  background-position: -11% -24%;
  background-repeat: no-repeat;
  background-size: 126%;
  position: relative;
}

@media (min-width: 64em) {
  .hero {
    height: 100vh;
    background-position: 37em -5em;
    background-repeat: no-repeat;
    background-size: 60%;
    margin: 0;
  }
}

.hero .container {
  height: 100%;
  display: block;
}

@media (max-width: 39.937em) {
  .hero .container {
    background-image: url("../images/bg-tablet-pattern.svg");
    background-repeat: no-repeat;
    background-size: 71%;
    background-position: 15rem 29rem;
  }
}

.overlay_active {
  position: absolute;
  top: 85px;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, rgba(29, 30, 37, 0.8)), to(rgba(255, 239, 235, 0.2)));
  background: linear-gradient(to top, rgba(29, 30, 37, 0.8) 5%, rgba(255, 239, 235, 0.2));
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.overlay_links {
  display: none;
}

.links_active {
  position: absolute;
  top: 82px;
  right: 0;
  left: 0;
  opacity: 1;
  width: 90%;
  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;
  height: 280px;
  border-radius: 5px;
  margin: 2rem auto;
  background: #fafafa;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.links_active a {
  margin: 0.5rem 0;
  color: #242d52;
  font-weight: 700;
}

.links_active a:hover {
  opacity: 0.5;
}

.hero_nav {
  padding: 2.5em 1.5em 1em 1.5em;
}

@media (max-width: 39.937em) {
  .hero_nav .logo {
    width: 91%;
  }
}

.hero_nav .logo img {
  width: 7.8rem;
  margin-top: 0.9em;
  cursor: pointer;
}

.hero_nav .burger-icon {
  width: 1.8rem;
  height: 1.2rem;
  cursor: pointer;
}

@media (min-width: 64em) {
  .hero_nav .burger-icon {
    display: none;
  }
}

.hero_nav .burger-icon span {
  display: block;
  width: 1.8rem;
  height: 0.25rem;
  background-color: #242d52;
  -webkit-transform-origin: 3px 2px;
          transform-origin: 3px 2px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.hero_nav .burger-icon span:nth-child(2) {
  margin: 0.25rem 0;
}

.hero_nav .open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hero_nav .open span:nth-child(2) {
  opacity: 0;
}

.hero_nav .open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hero_nav .hero_links {
  display: none;
}

@media (min-width: 64em) {
  .hero_nav .hero_links {
    display: inline-block;
  }
}

.hero_nav .hero_links a {
  color: #242d52;
  margin: 0 1em;
  font-size: 0.95em;
  font-weight: 500;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.hero_nav .hero_links a:hover {
  opacity: 0.5;
}

.hero_nav .cta_button {
  color: white;
  text-align: center;
  font-size: 0.9em;
  border-radius: 35px;
  padding: 0.6em 1.8em;
  background-color: #f25f3a;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0 6px 15px -5px #f25f3a;
          box-shadow: 0 6px 15px -5px #f25f3a;
  display: none;
}

@media (min-width: 64em) {
  .hero_nav .cta_button {
    display: inline-block;
  }
}

.hero_nav .cta_button:hover {
  opacity: 0.8;
}

.hero_show {
  width: 90%;
  height: 90vh;
  margin: auto;
  text-align: center;
}

@media (min-width: 64em) {
  .hero_show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.hero_show img {
  width: 100%;
}

@media (min-width: 64em) {
  .hero_show img {
    width: 49%;
    margin-top: 5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 64em) {
  .hero_show div {
    height: 400px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 5rem;
    padding-top: 2rem;
    text-align: left;
  }
}

.hero_show div h1 {
  color: #242d52;
  font-size: 2.2rem;
  line-height: 1.2;
}

@media (min-width: 64em) {
  .hero_show div h1 {
    font-size: 3rem;
  }
}

.hero_show div p {
  margin: 1rem 0 2rem 0;
  padding: 0 1rem;
}

@media (min-width: 64em) {
  .hero_show div p {
    font-size: 1rem;
    padding: 0 6rem 0 0;
  }
}

.hero_show div .button {
  display: inline-block;
  color: white;
  text-align: center;
  font-size: 0.9em;
  border-radius: 35px;
  padding: 0.8em 3em;
  background-color: #f25f3a;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0 6px 15px -5px #f25f3a;
          box-shadow: 0 6px 15px -5px #f25f3a;
}

.hero_show div .button:hover {
  opacity: 0.8;
}

.intro {
  height: 110vh;
  margin-top: 4rem;
}

@media (min-width: 64em) {
  .intro {
    width: 100%;
  }
}

.intro .container {
  position: relative;
}

@media (min-width: 64em) {
  .intro .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 39.937em) {
  .intro img {
    display: none;
  }
}

@media (min-width: 64em) {
  .intro img {
    position: absolute;
    width: 67%;
    position: absolute;
    top: 8rem;
    left: -19rem;
    z-index: -10;
    z-index: -10;
  }
}

.intro .intro_title {
  width: 80%;
  margin: auto;
  text-align: center;
}

@media (min-width: 64em) {
  .intro .intro_title {
    text-align: left;
    width: 40%;
    margin: 4rem auto;
  }
}

.intro .intro_title h2 {
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}

@media (min-width: 64em) {
  .intro .intro_title h2 {
    line-height: 1.3;
    padding-right: 1rem;
    font-size: 2.3rem;
  }
}

.intro .intro_title p {
  font-size: 0.87rem;
}

@media (min-width: 64em) {
  .intro .reasons {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 4rem;
  }
}

.intro .reasons div {
  margin-top: 3rem;
}

@media (min-width: 64em) {
  .intro .reasons div {
    margin-top: 2rem;
  }
}

.intro .reasons div div {
  padding: 0.5rem 0;
  background-color: #ffefeb;
  color: #242d52;
  font-size: 0.9rem;
  font-weight: 700;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}

@media (min-width: 64em) {
  .intro .reasons div div {
    background: none;
  }
}

.intro .reasons div div span {
  margin-right: 0.2rem;
  padding: 0.5rem 1.5rem;
  color: white;
  border-radius: 50px;
  background-color: #f25f3a;
}

.intro .reasons div p {
  font-size: 0.9rem;
  margin: 1rem;
}

@media (min-width: 64em) {
  .intro .reasons div p {
    padding-right: 4rem;
  }
}

.feedback {
  height: 89vh;
  padding-top: 4rem;
}

@media (min-width: 64em) {
  .feedback {
    padding-top: 0;
  }
}

.feedback .container {
  text-align: center;
  height: 100%;
  display: block;
}

@media (max-width: 39.937em) {
  .feedback .container {
    overflow: hidden;
  }
}

.feedback .container h1 {
  margin-bottom: 4rem;
}

@media (min-width: 64em) {
  .feedback .container h1 {
    font-size: 2rem;
  }
}

.feedback .button {
  color: white;
  text-align: center;
  font-size: 0.9em;
  border-radius: 35px;
  padding: 0.8em 3em;
  background-color: #f25f3a;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0 6px 15px -5px #f25f3a;
          box-shadow: 0 6px 15px -5px #f25f3a;
}

.feedback .button:hover {
  opacity: 0.8;
}

.glide {
  display: block;
  margin-bottom: 4rem;
}

.glide__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.glide__slide .content {
  position: relative;
  background-color: #fafafa;
  padding: 1rem 1rem 2rem 1rem;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}

@media (min-width: 64em) {
  .glide__slide .content {
    margin: 0 0.5rem;
  }
}

.glide__slide .content h4 {
  margin: -1rem 0 1rem 0;
}

.glide__slide .content img {
  width: 60px;
  position: relative;
  top: -2rem;
}

.glide__bullets {
  margin-top: 1rem;
}

.glide__bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: none;
  border: 1px solid #f25f3a;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.glide__bullet--active {
  background-color: #f25f3a;
}

.last {
  background-color: #f25f3a;
  overflow: hidden;
}

@media (min-width: 64em) {
  .last {
    height: 38vh;
  }
}

.last .container {
  width: 100%;
  text-align: center;
  padding: 4.5rem 1.5rem;
  position: relative;
}

@media (min-width: 64em) {
  .last .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.last .container img {
  width: 138%;
  opacity: 0.1;
  position: absolute;
  left: -24rem;
}

@media (min-width: 64em) {
  .last .container img {
    width: 60%;
    left: 0rem;
    bottom: -22rem;
  }
}

.last .container h1 {
  color: #fafafa;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (min-width: 64em) {
  .last .container h1 {
    width: 52%;
    font-size: 3rem;
    text-align: left;
  }
}

.last .container .button {
  color: #f25f3a;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 35px;
  padding: 0.7em 3em;
  background-color: #fafafa;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0 6px 15px -5px #f25f3a;
          box-shadow: 0 6px 15px -5px #f25f3a;
  display: inline-block;
}

@media (min-width: 64em) {
  .last .container .button {
    height: 2.8rem;
    margin-top: 2rem;
  }
}

.last .container .button:hover {
  opacity: 0.9;
}

.footer {
  width: 100%;
  background-color: #1d1e25;
}

.footer .container {
  width: 90%;
  padding-top: 3rem;
}

.footer .container footer {
  text-align: center;
}

@media (min-width: 64em) {
  .footer .container footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 3rem;
    position: relative;
  }
}

@media (min-width: 64em) {
  .footer .container footer .input_field {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 30%;
  }
}

.footer .container footer .input_field input {
  width: 70%;
  padding: 0.8rem 0;
  text-indent: 2rem;
  border-radius: 20px;
  border: none;
  outline: none;
  color: #9095a7;
  font-weight: 500;
}

@media (min-width: 64em) {
  .footer .container footer .input_field input {
    width: 240px;
  }
}

.footer .container footer .input_field button {
  color: white;
  background-color: #f25f3a;
  border: none;
  border-radius: 20px;
  width: 25%;
  height: 2.6rem;
  padding: 0.8rem 0;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  outline: none;
}

.footer .container footer .input_field button:hover {
  opacity: 0.7;
}

.footer .container footer .footer_links {
  width: 80%;
  margin: 1.5rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

@media (min-width: 64em) {
  .footer .container footer .footer_links {
    width: 40%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
    padding: 0 4rem;
  }
}

.footer .container footer .footer_links div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .container footer .footer_links div a {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.footer .container footer .footer_links div a:hover {
  opacity: 0.8;
}

.footer .container footer .social_media {
  padding: 1rem 0rem;
}

@media (min-width: 64em) {
  .footer .container footer .social_media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer .container footer .social_media img {
  width: 1.7rem;
  margin: 0 0.5rem;
  cursor: pointer;
}

.footer .container footer .logo {
  width: 80%;
  margin: auto;
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 64em) {
  .footer .container footer .logo {
    margin-bottom: 1rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

@media (min-width: 64em) {
  .footer .container footer .logo-social-media {
    width: 30%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer .container footer .copyrights {
  width: 80%;
  margin: auto;
  padding: 2rem 0rem;
  font-size: 0.7rem;
  color: #9e9e9e;
}

@media (min-width: 64em) {
  .footer .container footer .copyrights {
    position: absolute;
    left: 34rem;
    bottom: 2rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
/*# sourceMappingURL=style.css.map */