.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.section-heading {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #242d52;
}

.cta-btn {
  cursor: pointer;
  display: inline-block;
  background-color: #1d1e25;
  color: white;
  font-weight: 500;
  margin: 1em 0;
  padding: 1em 3em;
  border: none;
  border-radius: 35px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.cta-btn:hover {
  background-color: rgba(242, 95, 58, 0.5);
}

.section-padding {
  padding: 3em 1em;
}

@media (min-width: 576px) {
  .section-padding {
    padding: 3em 3em;
  }
  .section-heading {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
  .section-padding {
    padding: 6em 1em;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
}

.nav {
  margin-top: 0.5em;
  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;
  height: 80px;
  padding: 0 1em;
  z-index: 99;
}

.nav__navbar {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  top: 95px;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  width: calc(100% - 2em);
  padding: 2em;
  background-color: white;
  -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-box-shadow: 0px 200px 50px 200px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 200px 50px 200px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  overflow-x: hidden;
}

.nav__link {
  color: #242d52;
  font-weight: 700;
  margin-bottom: 1.5em;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.nav__link:hover {
  color: #9095a7;
}

.nav__cta-btn {
  display: none;
}

.nav__btn {
  cursor: pointer;
}

.nav .active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav .close {
  display: none;
}

.header {
  overflow: hidden;
}

.header__section {
  padding: 0.5em;
  text-align: center;
}

.header__section-right {
  padding: 0;
}

.header__img {
  width: 100%;
}

.header__heading {
  font-size: 3.6rem;
  margin-bottom: 0.25em;
}

.header__text {
  color: #9095a7;
  line-height: 1.5;
}

.main {
  overflow: hidden;
}

.about__text {
  color: #9095a7;
  text-align: center;
  line-height: 1.5;
}

.about__section-left {
  margin-bottom: 3em;
}

.about__card {
  margin-bottom: 2.5em;
}

.about__card:last-child {
  margin-bottom: 0;
}

.about__card-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #ffefeb;
  margin-bottom: 0.5em;
}

.about__card-number {
  padding: 0.5em 1.5em;
  background-color: #f25f3a;
  color: white;
  border-radius: 30px;
}

.about__card-title {
  padding-left: 1em;
  font-size: 1.6rem;
}

.about__card-text {
  color: #9095a7;
  font-size: 1.3rem;
  line-height: 1.5;
}

.reviews {
  text-align: center;
}

.reviews__card {
  background-color: #fafafa;
  position: relative;
  padding: 3em 1em;
}

.reviews__img {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.reviews__img img {
  width: 60px;
}

.reviews__author-name {
  color: #242d52;
  font-weight: 700;
  margin-bottom: 1.5em;
}

.mySwiper {
  padding: 2em 1em;
  width: 100%;
}

.mySwiper .swiper-pagination-bullet {
  background-color: white;
  border: 1px solid #f25f3a;
  opacity: 1;
}

.mySwiper .swiper-pagination-bullet-active {
  background-color: #f25f3a;
}

.banner {
  text-align: center;
  padding: 6em 1em;
  background-color: #f25f3a;
  background-image: var("../images/bg-simplify-section-mobile.svg");
}

.banner__heading {
  font-size: 3.8rem;
  color: white;
  font-weight: 500;
}

.banner__btn {
  background-color: white;
  color: #f25f3a;
  font-weight: 700;
  margin-bottom: 0;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.banner__btn:hover {
  color: rgba(242, 95, 58, 0.5);
  background-color: white;
}

.footer {
  background-color: #1d1e25;
  overflow: hidden;
}

.footer__upper {
  padding: 3em 1em;
}

.footer__search {
  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;
}

.footer__btn {
  text-transform: uppercase;
  margin: 0;
  padding: 1em 2em;
}

.footer__btn:hover {
  background-color: #f19179;
}

.footer__input {
  cursor: auto;
  background-color: white;
  color: #1d1e25;
  border: 1px solid none;
  margin: 0;
  margin-right: 0.5em;
  padding: 1em;
}

.footer__input:hover {
  background-color: white;
  color: #1d1e25;
}

.footer__input:focus {
  outline: 2px solid #f25f3a;
  color: #f25f3a;
}

.footer__copyright {
  display: none;
}

.footer__section {
  margin-bottom: 2em;
}

.footer__section:last-child {
  margin-bottom: 0;
}

.footer__links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 350px;
  margin: 0 auto;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__link {
  color: white;
  font-weight: 400;
  margin-bottom: 1em;
  font-size: 1.4rem;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.footer__link:hover {
  color: #f25f3a;
}

.footer__socials {
  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;
  max-width: 300px;
  margin: auto;
  margin-bottom: 3em;
}

.footer__socials a {
  color: white;
  font-size: 2.5rem;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.footer__socials a:hover {
  color: #f25f3a;
}

.footer__logo img {
  display: block;
  margin: 0 auto;
}

.footer__lower {
  font-size: 1.2rem;
  color: #9095a7;
  text-align: center;
  padding-bottom: 2em;
}

@media (min-width: 576px) {
  .header__section {
    padding: 1em 3em;
  }
  .header__heading {
    font-size: 4.8rem;
    margin-bottom: 0.5em;
  }
  .header__text {
    font-size: 2rem;
  }
  .about__text {
    font-size: 2rem;
  }
  .about__card-title {
    font-size: 2rem;
  }
  .about__card-text {
    font-size: 1.6rem;
  }
  .reviews__card {
    padding: 3em 3em;
  }
  .reviews__author-name {
    font-size: 2rem;
  }
  .reviews__text {
    font-size: 2rem;
  }
  .mySwiper {
    padding: 2em 4em;
    width: 100%;
  }
  .banner {
    padding: 6em 4em;
  }
  .footer__upper {
    padding: 3em 6em;
  }
}

@media (min-width: 768px) {
  .header {
    margin-top: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__section {
    padding: 1em;
    text-align: left;
    width: 45%;
  }
  .header__section-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__heading {
    font-size: 3.6rem;
    text-align: left;
  }
  .header__text {
    font-size: 1.6rem;
  }
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about__section-left {
    text-align: left;
    width: 40%;
  }
  .about__section-right {
    width: 55%;
  }
  .about__heading {
    text-align: left;
  }
  .about__text {
    font-size: 1.6rem;
    text-align: left;
  }
  .about__card-heading {
    background: none;
  }
  .about__card-title {
    font-size: 1.6rem;
  }
  .about__card-text {
    font-size: 1.3rem;
    margin-left: 6.5em;
  }
  .reviews__card {
    padding: 3em 1em;
  }
  .reviews__author-name {
    font-size: 1.6rem;
  }
  .reviews__text {
    font-size: 1.6rem;
  }
  .mySwiper {
    padding: 2em 1em;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .nav {
    margin-top: 3em;
  }
  .nav__navbar {
    background-color: #ddd;
    display: block;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: auto;
    padding: 0;
    top: 0;
    background: none;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .nav__logo {
    margin-top: 0.75em;
  }
  .nav__link {
    margin: 0 1em;
  }
  .nav__btn {
    display: none;
  }
  .nav__cta-btn {
    display: inline-block;
    margin: 0;
  }
  .header {
    margin-top: 4em;
  }
  .header__section-left {
    padding-top: 2em;
  }
  .header__heading {
    font-size: 4.8rem;
    margin-bottom: 0.5em;
  }
  .header__text {
    padding-right: 3em;
  }
  .banner {
    padding: 3em 6em;
  }
  .banner__container {
    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;
  }
  .banner__heading {
    text-align: left;
    width: 50%;
  }
  .footer__copyright {
    display: block;
    font-size: 1.2rem;
    color: #9095a7;
  }
  .footer__logo {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer__logo img {
    margin: 0;
  }
  .footer__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__socials {
    width: auto;
    margin: 0;
  }
  .footer__section {
    margin-bottom: 0;
  }
  .footer__section-first {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 20%;
  }
  .footer__section-second {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 35%;
  }
  .footer__section-third {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 40%;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__lower {
    display: none;
  }
}

@media (min-width: 1200px) {
  .header__section-left {
    padding-top: 4em;
  }
  .header__text {
    padding-right: 10em;
  }
  .footer__section-second {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 40%;
  }
  .footer__section-third {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 30%;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/*# sourceMappingURL=style.css.map */