@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@400;500;700&display=swap");
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.j-c-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

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

.a-i-sa {
  -webkit-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}

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

.a-i-sb {
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

* {
  padding: 0rem;
  margin: 0rem;
}

body {
  overflow-x: hidden;
  font-family: 'Be Vietnam';
  font-size: 1rem;
}

a {
  color: black;
  text-decoration: none;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.2;
}

h3 {
  font-size: 0.8125rem;
  font-weight: 700;
}

p {
  color: #9095a7;
}

button {
  cursor: pointer;
  font-weight: 500;
  padding: 0.625rem 1.5625rem;
  background-color: #f25f3a;
  color: white;
  outline: none;
  border: 0px;
  border-radius: 25px;
  -webkit-filter: drop-shadow(0 5px 2px #f25f3a);
          filter: drop-shadow(0 5px 2px #f25f3a);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

button:hover {
  opacity: 0.7;
}

.main-wrapper {
  position: relative;
  overflow: hidden;
}

.main-wrapper__top-image {
  position: absolute;
  z-index: -1;
  width: 95%;
  top: -3.125rem;
  right: -3.125rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 65em) {
  .main-wrapper__top-image {
    width: 65%;
    top: -16.125rem;
    right: -10.125rem;
  }
}

.main-wrapper__medium-image {
  position: absolute;
  width: 95%;
  top: 32%;
  right: -55%;
  z-index: -1;
}

@media (min-width: 65em) {
  .main-wrapper__medium-image {
    top: 75%;
    left: -45%;
    width: 70%;
  }
}

.nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0rem 1.625rem;
}

@media (min-width: 65em) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0rem 6rem;
  }
}

.nav__overlay {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(top, transparent, rgba(0, 0, 0, 0.15));
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

@media (min-width: 65em) {
  .nav__overlay {
    display: none;
  }
}

.nav__header {
  height: 6.25rem;
}

.nav__btn span {
  width: 2rem;
  display: block;
  margin: 0.325rem;
  background-color: black;
  border: 2px solid black;
  border-radius: 10px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-transform-origin: 5px 1px;
          transform-origin: 5px 1px;
}

@media (min-width: 65em) {
  .nav__btn {
    display: none;
  }
}

.nav__btn.open span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav__btn.open span:nth-of-type(2) {
  opacity: 0;
}

.nav__btn.open span:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav__list {
  height: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
  background-color: #fafafa;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

@media (min-width: 65em) {
  .nav__list {
    overflow: visible;
    height: 100%;
    width: 40%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border: 0px;
    -webkit-box-shadow: 0px 0px 0px transparent;
            box-shadow: 0px 0px 0px transparent;
    background: transparent;
  }
}

.nav__item {
  position: relative;
  opacity: 0;
  list-style-type: none;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

@media (min-width: 65em) {
  .nav__item {
    opacity: 1;
  }
}

.nav__link {
  font-weight: 500;
  position: relative;
}

@media (min-width: 65em) {
  .nav__link:before {
    content: '';
    position: absolute;
    top: 5px;
    width: 0%;
    height: 100%;
    left: 50%;
    border-bottom: 2px solid #f25f3a;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }
  .nav__link:hover:before {
    width: 50%;
  }
}

.nav button {
  display: none;
}

@media (min-width: 65em) {
  .nav button {
    display: block;
  }
}

.hero {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 6.5625rem;
}

@media (min-width: 65em) {
  .hero {
    padding: 0rem 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__text {
  text-align: center;
  padding: 0rem 1.625rem;
}

.hero__text p {
  margin: 1.875rem 0rem;
}

@media (min-width: 65em) {
  .hero__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
  .hero__text h2 {
    font-size: 40px;
  }
}

.hero__image {
  margin-top: 100px;
  width: 100%;
}

@media (min-width: 65em) {
  .hero__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 65em) {
  .feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0rem 8rem;
  }
}

.feature__left-wrapper {
  padding: 0rem 1.625rem;
  text-align: center;
}

.feature__left-wrapper p {
  margin: 1.875rem 0rem;
}

@media (min-width: 65em) {
  .feature__left-wrapper {
    margin-top: 50px;
    width: 50%;
    text-align: left;
  }
}

.feature__right-wrapper {
  margin-top: 3.125rem;
  margin-bottom: 5rem;
}

@media (min-width: 65em) {
  .feature__right-wrapper {
    width: 50%;
  }
}

.feature__text-wrapper {
  padding-left: 1rem;
}

.feature__text-wrapper p {
  margin: 1.125rem 0rem;
}

@media (min-width: 65em) {
  .feature__text-wrapper p {
    margin-left: 5.3125rem;
    width: 95%;
  }
}

.feature__text-header {
  background-color: #ffefeb;
  border-top-left-radius: 1.5625rem;
  border-bottom-left-radius: 1.5625rem;
}

@media (min-width: 65em) {
  .feature__text-header {
    background: transparent;
  }
}

.feature__bandge {
  font-weight: 700;
  width: 4.125rem;
  height: 2.5rem;
  margin-right: 1.25rem;
  color: white;
  background-color: #f25f3a;
  border-radius: 1.5625rem;
}

.carousel {
  text-align: center;
  overflow: hidden;
}

.carousel h2 {
  margin-bottom: 60px;
}

.carousel__card {
  min-width: 100%;
}

@media (min-width: 65em) {
  .carousel__card {
    min-width: 33%;
  }
  .carousel__card p {
    width: 100%;
  }
}

@media (max-width: 63.9375em) {
  .carousel__card p {
    margin: 0px auto;
    width: 50%;
  }
}

@media (max-width: 39.9375em) {
  .carousel__card p {
    margin: 0px auto;
    width: 90%;
  }
}

.carousel__card h3 {
  margin: 1.875rem 0rem;
}

.carousel__card p {
  padding: 0rem 1.5rem;
}

.carousel__box {
  position: relative;
  top: 0px;
  right: 0px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.carousel__controls {
  margin: 71px 0px 41px;
}

.carousel__control-btn {
  cursor: pointer;
  margin: 0px 2px;
  width: 10px;
  height: 10px;
  border: 1px solid #f25f3a;
  border-radius: 100%;
}

.carousel__control-btn.active {
  background-color: #f25f3a;
}

.carousel button {
  margin-bottom: 41px;
}

.footer__top {
  height: 25rem;
  font-weight: 700;
  font-size: 2.1875rem;
  color: #fafafa;
  background-color: #f25f3a;
}

@media (min-width: 65em) {
  .footer__top {
    position: relative;
    padding: 0rem 2.5rem;
    height: 13.75rem;
    padding: 0rem 8rem;
  }
}

.footer__top button {
  background-color: #fafafa;
  color: #f25f3a;
  font-weight: 700;
}

.footer__image-top {
  opacity: 0.1;
  position: absolute;
  width: 150%;
  top: 2%;
  left: -120%;
}

@media (min-width: 65em) {
  .footer__image-top {
    width: 45%;
    top: -30%;
    left: 5%;
  }
}

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

.footer__text h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 85%;
  margin-bottom: 2.1875rem;
}

@media (min-width: 65em) {
  .footer__text h2 {
    width: 35%;
    text-align: left;
  }
}

@media (min-width: 65em) {
  .footer__text {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__image-bottom {
  display: none;
}

@media (min-width: 65em) {
  .footer__image-bottom {
    display: block;
    opacity: 0.1;
    width: 40%;
    position: absolute;
    top: -170%;
    right: -20%;
  }
}

.footer__bottom {
  padding: 3.125rem 0rem 2.525rem;
  background-color: #1d1e25;
}

@media (min-width: 65em) {
  .footer__bottom {
    padding: 3.125rem 0.5rem 3rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-height: 15.625rem;
  }
}

.footer__grid-1 {
  margin-bottom: 3.75rem;
  padding: 0rem 1.5625rem;
}

@media (min-width: 65em) {
  .footer__grid-1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.footer__grid-1 button {
  -webkit-filter: drop-shadow(0 0 0 transparent);
          filter: drop-shadow(0 0 0 transparent);
}

.footer__input {
  width: 65%;
  padding: 0.625rem 0.9375rem;
  border-radius: 1.5625rem;
  border: none;
  margin-right: 0.3125rem;
}

.footer__grid-2 {
  margin-bottom: 3.125rem;
}

@media (min-width: 65em) {
  .footer__grid-2 {
    position: relative;
    top: -1.5625rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 25%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__item {
  list-style-type: none;
  margin: 1.25rem 0rem;
}

.footer__link {
  color: #fafafa;
}

.footer__link:hover {
  cursor: pointer;
  color: #f25f3a;
}

.footer__grid-3 {
  margin-bottom: 4.125rem;
}

@media (min-width: 65em) {
  .footer__grid-3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.footer__logo {
  display: block;
  width: 50%;
  margin: 3.125rem auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 65em) {
  .footer__logo {
    margin: 0px;
    margin-bottom: 6.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 70%;
    position: relative;
  }
}

.footer__icons {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.footer__icons img:not(:last-child) {
  margin-right: 1.875rem;
}

@media (min-width: 65em) {
  .footer__icons {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer p {
  text-align: center;
}

@media (min-width: 65em) {
  .footer p {
    position: absolute;
    bottom: 65px;
    right: 8rem;
  }
}
/*# sourceMappingURL=styles.css.map */