@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: Poppins,sans-serif;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

p, h2 {
  margin: 0;
  padding: 0;
}

nav, nav .nav-links-1, nav .nav-links-2 {
  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;
  gap: 2em;
  padding: 0;
  margin: 0;
}

nav .nav-links-1 h3 span {
  color: #007AF3;
}

nav .nav-links-1 .home {
  font-weight: bold;
}

nav .nav-links-1 a:hover {
  font-weight: bold;
}

nav .nav-links-2 {
  gap: 2.5em;
}

nav .nav-links-2 .contact:hover {
  font-weight: bold;
}

nav .nav-links-2 #premium {
  font-weight: bold;
  border-radius: 5em;
  border: #007AF3 solid 0.3em;
  padding: 0 1em 0 1em;
}

nav .nav-links-2 #premium a {
  color: #007AF3;
}

nav .nav-links-2 #premium:hover {
  background-color: #007AF3;
}

nav .nav-links-2 #premium:hover a {
  color: white;
}

.main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2em;
  padding: 12em 15em 9em 15em;
  line-height: 4em;
  background-color: #f3f3f3;
}

.main-section .hero-image {
  width: 20em;
}

.main-section .info-aside h3 {
  font-size: 1em;
  letter-spacing: .3em;
  color: #7c7c7c;
  margin: 0;
}

.main-section .info-aside p {
  font-size: 3em;
  font-weight: 700;
  margin: 0;
  padding: 0 0 .3em 0;
}

.main-section .info-aside .free {
  margin-right: 1em;
  border-radius: 5em;
  padding: .5em 1.5em .5em 1.5em;
  background-color: #007AF3;
  color: white;
  font-size: 1.3em;
  font-weight: 700;
  border: none;
}

.main-section .info-aside .video {
  background: url("Images/watch.svg") no-repeat;
  -webkit-text-decoration: .1em underline black;
          text-decoration: .1em underline black;
  color: black;
  padding-left: 2em;
}

.features-section {
  background-color: #20272E;
  color: white;
  text-align: start;
  padding: 9.5em 0 9.5em 15em;
  line-height: 3.5em;
  margin: 0;
}

.features-section li {
  font-size: 1.5em;
}

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

.features-section .features img {
  width: 1.5em;
  padding-right: .4em;
  position: relative;
  bottom: -7px;
}

.features-section .phone-image {
  display: block;
  width: 350px;
  position: absolute;
  top: 70em;
  right: 0;
}

.reviews-section {
  background-color: #007AF3;
  margin: 0;
}

.reviews-section .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10em 12em 10em 12em;
  gap: 1.5em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.reviews-section .reviews img {
  width: 5em;
  border-radius: 5em;
  margin-top: -5em;
  border: .4em solid #006BD6;
}

.reviews-section .reviews .review {
  background-color: #006BD6;
  padding: 2em 3em 2em 3em;
  border-radius: 2em;
  color: white;
}

.reviews-section .reviews .review .review-text {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f0f0f0;
}

.contact-container .contacts {
  font-size: 1.5em;
  padding: 5em;
}

.contact-container .map iframe {
  height: 100%;
  width: 48em;
  padding: 0;
  margin: 0;
}

.contact-container .send-message {
  border-radius: 5em;
  padding: .5em 1.5em .5em 1.5em;
  background-color: #007AF3;
  color: white;
  font-size: .8em;
  font-weight: 700;
  border: none;
}

.contact-container li h2 {
  padding-bottom: 1em;
}

.contact-container li input {
  margin-bottom: 1em;
  width: 30em;
}

.contact-container li li span {
  font-size: 1em;
}

.contact-container .name {
  height: 2.5em;
}

.contact-container .message {
  height: 9em;
  margin-bottom: 3em;
  margin-top: 1em;
}

@media (max-width: 1189px) {
  .main-section {
    padding: 12em 10em 9em 10em;
  }
  .features-section {
    padding: 9.5em 0 9.5em 10em;
  }
  .features-section .phone-image {
    top: 70em;
    right: 0;
  }
  .reviews-section .reviews {
    padding: 10em 50px 10em 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-container .contacts {
    padding: 4em;
  }
  .contact-container .map iframe {
    width: 30em;
  }
}

@media (max-width: 1097px) {
  .contact-container .map iframe {
    width: 25em;
  }
}

@media (max-width: 1024px) {
  .main-section {
    padding: 9em 8em 9em 8em;
    text-align: center;
  }
  .features-section {
    padding: 7em 0 7em 8em;
  }
  .features-section .phone-image {
    display: none;
  }
  .reviews-section .reviews {
    padding: 6em 4em 6em 4em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-container .contacts {
    padding: 2em;
  }
  .contact-container .map iframe {
    width: 32em;
  }
}

@media (max-width: 980px) {
  .main-section {
    display: -ms-grid;
    display: grid;
    text-align: center;
    padding: 3em 8em 3em 8em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-section .info-aside p {
    font-size: 2.5em;
  }
  .main-section .info-aside .free {
    font-size: 1.1em;
  }
  .contact-container {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-container .map iframe {
    height: 20em;
    width: 55em;
    padding: 0;
    margin: 0;
    padding-bottom: 3em;
  }
  .contact-container li input {
    margin-bottom: 1em;
    width: 90%;
  }
}

@media (max-width: 890px) {
  .reviews-section .reviews {
    display: -ms-grid;
    display: grid;
    padding: 4em 3em 4em 3em;
    gap: 4em;
  }
  .contact-container .map iframe {
    height: 15em;
    width: 40em;
    padding: 0;
    margin: 0;
    padding-bottom: 3em;
  }
  .features-section {
    padding: 4em;
  }
}

@media (max-width: 768px) {
  .main-section {
    padding: 3em 1em 3em 1em;
  }
  .main-section .info-aside p {
    font-size: 2em;
  }
  nav, nav .nav-links-1, nav .nav-links-2 {
    text-align: center;
  }
  nav .nav-links-1 li {
    display: none;
  }
  nav .nav-links-2 {
    display: none;
  }
  .features-section .features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  }
  .features-section li {
    font-size: 1.2em;
  }
}

@media (max-width: 655px) {
  .contact-container .map iframe {
    width: 30em;
  }
}

@media (max-width: 490px) {
  .contact-container .map iframe {
    width: 20em;
  }
}

@media (max-width: 390px) {
  .contact-container .map iframe {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */