.header {
  position: relative;
  width: 100%;
  height: 100vh;
}
.header__bg-container {
  background-image: url(../img/hero.jpg);
  -webkit-filter: brightness(140%);
          filter: brightness(140%);
  background-position: top;
  background-size: cover;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  width: 100%;
  height: 100vh;
}
@media (max-width: 900px) {
  .header__bg-container {
    background-image: url(../img/hero-mobile.jpg);
    -webkit-filter: brightness(130%);
            filter: brightness(130%);
  }
}
.header__title {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  text-align: center;
  z-index: 200;
}
.header__heading-primary {
  font-size: 7vh;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 0.4rem;
}
@media (max-width: 768px) {
  .header__heading-primary {
    font-size: 6vh;
  }
}
@media (max-width: 576px) {
  .header__heading-primary {
    font-size: 5vh;
  }
}
.header__accent {
  color: #617bff;
  margin-right: 0.8rem;
}
.header__accent-2 {
  color: #f3eeee;
  text-shadow: 0px 0px 35px rgba(97, 123, 255, 0.8);
}
.header__heading-secondary {
  color: #f3eeee;
  margin-bottom: 6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.header__cta {
  margin: 0 auto;
  color: #617bff;
  padding: 0.6rem 0.9rem;
  border-radius: 50%;
  border: none;
  font-weight: 700;
  letter-spacing: 2px;
  background-color: #f3eeee;
  -webkit-box-shadow: 0px 0px 45px rgb(0, 140, 255);
          box-shadow: 0px 0px 45px rgb(0, 140, 255);
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  font-size: 2.3rem;
  -webkit-animation: pulse linear 1.1s infinite alternate;
          animation: pulse linear 1.1s infinite alternate;
  width: 4.3rem;
  height: 4.1rem;
}
.header__cta a:link,
.header__cta a:visited {
  color: #617bff;
}
.header__cta i {
  margin-left: 0.1rem;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

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

html {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 79px;
  overflow: auto;
}

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

::-webkit-scrollbar-track {
  border-left: 1px solid #000;
}

::-webkit-scrollbar-thumb {
  background: #0e141b;
  -webkit-box-shadow: inset 0 0 6px #0e141b;
}

::-webkit-scrollbar-thumb:hover {
  background: #0e141b;
  -webkit-box-shadow: inset 0 0 6px #0e141b;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #0e141b;
}

@media (max-width: 900px) {
  .nav__list {
    display: none;
  }
  .nav__hamburger {
    opacity: 1;
  }
}
@media (min-width: 901px) {
  .nav__list {
    display: block;
  }
  .nav__hamburger {
    visibility: hidden;
  }
}
@media (max-width: 898px) and (orientation: landscape) {
  .nav__mobile-menu ul li .nav-link {
    font-size: 2rem;
  }
}
@media (max-width: 898px) {
  .nav__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 9999999;
  }
}
.features {
  padding: 3rem 0 3rem 0;
  background-color: #fff;
  width: 100%;
}
.features__boxes {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1;
  gap: 2.5rem;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
}
.features__box {
  display: grid;
  grid-template-rows: 4rem 4rem -webkit-min-content;
  grid-template-rows: 4rem 4rem min-content;
  grid-template-columns: 1fr;
  grid-gap: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
  width: 250px;
  height: 320px;
  padding: 1.2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(93, 94, 111, 0.3);
          box-shadow: 0 0 15px rgba(93, 94, 111, 0.3);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.features__box:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media (max-width: 1200px) {
  .features__boxes {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 2;
    width: 40%;
  }
}
@media (max-width: 728px) {
  .features__boxes {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
  }
  .features__box {
    width: 350px;
    height: 450px;
  }
}
.features__title {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.features__title--1, .features__title--2, .features__title--3, .features__title--4 {
  grid-row: 2/3;
  font-size: 1.4rem;
}
.features__paragraph--1, .features__paragraph--2, .features__paragraph--3, .features__paragraph--4 {
  grid-row: 3/4;
  line-height: 1.4rem;
  font-weight: 300;
  font-size: 1.1rem;
}
.features i {
  font-size: 2.8rem;
  margin-top: -0.8rem;
}

.footer {
  max-width: 100%;
  height: 13rem;
  background-color: #617bff;
  padding: 0.6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .media {
  width: 45%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 1rem;
}
.footer .media a {
  text-decoration: none;
}
.footer .media a .fa-brands {
  display: block;
  font-size: 2.2rem;
  color: #012340;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  padding: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 576px) {
  .footer .media a .fa-brands {
    font-size: 1.5rem;
  }
}
@media (max-width: 380px) {
  .footer .media a .fa-brands {
    font-size: 1.3rem;
  }
}
.footer .media a .fa-brands:hover {
  -webkit-animation-name: jump;
          animation-name: jump;
  -webkit-animation-duration: 0.45s;
          animation-duration: 0.45s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  color: #f3eeee;
}
@-webkit-keyframes jump {
  from {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  to {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
}
@keyframes jump {
  from {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  to {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
}

.copy {
  text-align: center;
  color: #0e141b;
  margin: -0.8rem 0 1rem 0;
  font-size: 1rem;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #f1f4f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
  margin-bottom: -8rem;
}
@media (max-width: 768px) {
  .contact {
    padding: 3rem 0.5rem;
  }
}
.contact form {
  margin: 0 auto;
  padding: 0rem 1.5rem;
  margin-left: 0;
}
.contact form input,
.contact form textarea {
  border: none;
  padding: 1rem;
  width: 100%;
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  margin: 0.4rem auto;
}
.contact form textarea {
  max-width: 100%;
}
.contact form input:hover,
.contact form textarea:hover {
  outline: none;
}
.contact form input:focus,
.contact form textarea:focus {
  -webkit-box-shadow: 0 0 15px rgba(93, 94, 111, 0.5);
          box-shadow: 0 0 15px rgba(93, 94, 111, 0.5);
  outline: none;
}
.contact form textarea {
  margin-bottom: -0.4rem;
}
.contact form button {
  display: block;
  margin: 2rem auto;
  text-align: center;
  color: #f3eeee;
  padding: 0.8rem 0.5rem;
  background: #012340;
  font-size: 1.2rem;
  border: none;
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  outline: none;
}
.contact form button:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 5px rgb(93, 94, 111);
          box-shadow: 0 0 5px rgb(93, 94, 111);
}
.contact p {
  text-align: center;
  color: #327ad9;
  font-weight: 700;
  margin-bottom: -0.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 2rem;
}

.heading-h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.heading-h3 {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
}

.heading-h4 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0rem;
}

.hide-body {
  overflow: hidden;
}

.max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about {
  padding: 3rem 0;
  background-color: #fff;
  width: 100%;
}
.about__us {
  padding-bottom: 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr;
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .about__us {
    grid-template-columns: 100%;
    grid-template-rows: 2fr;
  }
}
.about__paragraph {
  font-size: 1.3rem;
  line-height: 1.4rem;
  padding-top: 1.4em;
  font-weight: 300;
  text-align: justify;
}
@media (max-width: 1024px) {
  .about__paragraph {
    font-size: 1rem;
  }
}
.about__paragraph:nth-child(even) {
  padding-right: 2rem;
}
.about__paragraph:nth-child(odd) {
  padding-left: 2rem;
}
.about__image {
  width: 100%;
  height: 100%;
}
.about__image:nth-child(odd) {
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .about__image:nth-child(odd) {
    padding-right: 0rem;
  }
  .about__image {
    width: 100%;
    height: 100%;
  }
  .about__paragraph:nth-child(even) {
    padding-right: 0;
  }
}

.customers {
  margin-bottom: 3rem;
}
.customers__slick {
  margin: 0 auto;
  width: 100%;
}
.customers__slick img {
  margin: 0 auto;
  max-width: 160px;
  max-height: 160px;
  width: 100%;
  height: 100%;
}
.customers .heading-h3 {
  padding: 8rem 0 0 0;
}
.customers__carousel {
  padding: 3rem 0 0 0;
}
.customers__carousel .transform {
  -webkit-transform: translateY(-0.2rem) scale(0.6);
          transform: translateY(-0.2rem) scale(0.6);
}

.opinions {
  margin: 3rem 0;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 0;
}
.opinions__box {
  margin: 0 auto;
}
.opinions__slick {
  margin: 0 auto;
}
.opinions__circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__circle--1 {
  background-color: rgb(138, 26, 26);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__circle--2 {
  background-color: rgb(23, 47, 120);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__circle--3 {
  background-color: rgb(194, 144, 52);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__circle--4 {
  background-color: rgb(165, 24, 184);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__circle--5 {
  background-color: rgb(71, 167, 30);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.opinions__symbol {
  color: #fff;
  font-size: 1.7rem;
  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;
  -webkit-transform: translateY(21%);
          transform: translateY(21%);
}
.opinions__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 1fr 1fr 1fr;
  padding: 2rem;
}
@media (min-width: 1440px) {
  .opinions__card {
    padding: 3rem;
    margin: 0 2rem;
  }
}
@media (max-width: 1440px) {
  .opinions__card {
    padding: 2rem;
    margin: 0 2rem;
  }
}
@media (max-width: 1024px) {
  .opinions__card {
    padding: 1rem;
    margin: 0 2rem;
  }
}
.opinions__name {
  font-size: 1rem;
  font-weight: 600;
}
.opinions__date {
  font-weight: 0.9rem;
}
.opinions__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.opinions__stars {
  font-size: 1.2rem;
  margin: 0.8rem 0;
}

.heading-h2 {
  padding-top: 0rem;
}

.boxx {
  margin-left: 1rem;
  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;
}

.fa-star {
  color: #fdb417;
}

.nav {
  position: relative;
  overflow: hidden;
}
.nav__desktop-menu {
  background-color: rgba(14, 20, 27, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  margin: 0 auto;
  z-index: 300;
  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;
}
.nav__container {
  top: 0;
  background-color: rgba(14, 20, 27, 0);
  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;
  height: 5rem;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .nav .nav__container {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.nav__logo {
  padding: 1.8rem 1rem;
  margin-top: 0.4rem;
  margin-left: 0.4rem;
  -webkit-filter: grayscale(20%);
          filter: grayscale(20%);
  -webkit-filter: brightness(10000%);
          filter: brightness(10000%);
}
.nav__logo-img {
  max-width: 8rem;
  max-height: 6rem;
  width: 100%;
  height: 100%;
}
.nav__list {
  width: 80rem;
}
.nav__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}
.nav__list ul li {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  padding: 1.5rem 1rem;
  margin-right: 1;
  list-style: none;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav__list ul li:hover {
  border-bottom: 5px solid #c61a70;
  text-shadow: 0px 0px 30px rgba(97, 123, 255, 0.99);
  cursor: pointer;
}
.nav__list ul li a {
  font-size: 1.2rem;
  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;
  width: 100%;
  margin-top: 1rem;
  color: #f3eeee;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
.nav__mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f3eeee;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 300;
  overflow: hidden;
}
.nav__mobile-menu ul {
  text-align: center;
}
.nav__mobile-menu ul li {
  list-style: none;
  margin-bottom: 2.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav__mobile-menu ul li .nav-link {
  font-size: 3rem;
  text-decoration: none;
  list-style: none;
  color: #012340;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  .nav__mobile-menu ul li .nav-link {
    font-size: 2.4rem;
  }
}
@media (max-width: 380px) {
  .nav__mobile-menu ul li .nav-link {
    font-size: 2rem;
  }
}
.nav__box {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  position: fixed;
  top: 0.9rem;
  right: 1.2rem;
  z-index: 500;
}

.activating {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */