* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

.main-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-family: "Rubik", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  top: auto;
  left: -100000px;
  overflow: hidden;
}

img {
  max-width: 100%;
}

.main-header {
  width: 90%;
  margin: 30px auto 100px;
  display: grid;
  padding-top: 9rem;
  grid-template-areas: "." "content" "illustration";
}

@media screen and (min-width: 375px) {
  .main-header {
    max-width: 550px;
  }
}

@media screen and (min-width: 768px) {
  .main-header {
    margin-top: 50px;
    max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-header {
    max-width: 1200px;
    column-gap: 10px;
    padding-top: 8rem;
  }
}

.main-header__content {
  grid-area: content;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .main-header__content {
    justify-content: start;
    text-align: left;
  }
}

.main-header__content-title {
  font-size: 3.4rem;
  margin: 25px auto 30px;
}

@media screen and (min-width: 1024px) {
  .main-header__content-title {
    font-size: 5rem;
    max-width: 600px;
    margin: 27px 0px;
  }
}

.main-header__content-description {
  color: #202020;
  font-size: 1.6rem;
}

.main-header__content-description span {
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .main-header__content-description {
    font-size: 2rem;
    line-height: 35px;
    max-width: 500px;
  }
}

.main-header__content-cta {
  display: block;
  width: 250px;
  padding: 18px 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  background-color: #f53838;
  border-radius: 10px;
  box-shadow: 0px 5px 15px #f5383883;
  margin: 35px auto 50px;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .main-header__content-cta {
    margin: 35px 0 50px;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .main-header__content-cta {
    font-size: 2rem;
  }
}

.main-header__content-cta:hover {
  background-color: #f76969;
}

.main-header__content-cta:active {
  background-color: #ee0c0c;
  transform: scale(0.95);
}

.main-content {
  width: 100%;
  padding-bottom: 150px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(transparent, #f1f1f1);
}

.about-section {
  width: 80%;
  max-width: 350px;
  margin-bottom: 75px;
  font-size: 2rem;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 1px 3px 10px rgba(136, 136, 136, 0.4);
}

@media screen and (min-width: 768px) {
  .about-section {
    width: 90%;
    max-width: 800px;
  }
}

@media screen and (min-width: 1024px) {
  .about-section {
    max-width: 1200px;
  }
}

.about-section .flex-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .about-section .flex-container {
    flex-flow: row nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .about-section .flex-container {
    justify-content: space-evenly;
  }
}

.about-section__content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  width: 200px;
  margin-bottom: 25px;
  border-bottom: 2px solid #eee;
}

@media screen and (min-width: 768px) {
  .about-section__content {
    margin: 25px;
    border-bottom: none;
    border-right: 2px solid #eee;
  }
}

.about-section__content:last-of-type {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .about-section__content:last-of-type {
    border-right: none;
  }
}

.about-section .fas {
  font-size: 2rem;
  padding: 20px;
  border-radius: 50%;
  color: #f53838;
  background-color: #f8d3d5;
}

.about-section__info-wrapper {
  margin: auto;
}

.about-section__info:nth-child(odd) {
  font-weight: 700;
}

.about-section__info:nth-child(even) {
  margin-top: 10px;
  color: #202020;
}

.features-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 80%;
}

@media screen and (min-width: 375px) {
  .features-section {
    max-width: 510px;
  }
}

@media screen and (min-width: 768px) {
  .features-section {
    margin: 125px auto;
    max-width: 800px;
    width: 90%;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .features-section {
    max-width: 1200px;
  }
}

.features-section__illustration {
  width: 100%;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .features-section__illustration {
    width: 55%;
  }
}

.features-section__content-wrapper {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .features-section__content-wrapper {
    width: 40%;
    text-align: left;
  }
}

.features-section__title {
  font-size: 3rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .features-section__title {
    font-size: 4rem;
  }
}

.features-section__description {
  color: #202020;
  margin: 20px 0px;
  font-size: 1.6rem;
  line-height: 25px;
}

@media screen and (min-width: 1024px) {
  .features-section__description {
    font-size: 2rem;
    line-height: 35px;
  }
}

.features-section__feature-list {
  list-style-type: none;
  text-align: left;
  color: #202020;
}

.features-section__feature-item {
  font-size: 1.6rem;
  line-height: 50px;
}

@media screen and (min-width: 1024px) {
  .features-section__feature-item {
    font-size: 2rem;
    line-height: 75px;
  }
}

.features-section .fas {
  margin-right: 10px;
  color: #2fab73;
}

.pricing-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 85%;
  text-align: center;
  margin: 75px auto;
}

@media screen and (min-width: 375px) {
  .pricing-section {
    max-width: 530px;
  }
}

@media screen and (min-width: 768px) {
  .pricing-section {
    width: 90%;
    max-width: 1000px;
  }
}

@media screen and (min-width: 1024px) {
  .pricing-section {
    max-width: 1200px;
  }
}

.pricing-section__title {
  font-size: 3rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .pricing-section__title {
    font-size: 4rem;
  }
}

.pricing-section__description {
  margin: 20px 0px 50px;
  font-size: 1.6rem;
  line-height: 25px;
  color: #202020;
}

@media screen and (min-width: 768px) {
  .pricing-section__description {
    max-width: 600px;
  }
}

@media screen and (min-width: 1024px) {
  .pricing-section__description {
    font-size: 2rem;
    line-height: 35px;
    max-width: 600px;
  }
}

.pricing-section__info-cards-wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .pricing-section__info-cards-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
  }
}

.pricing-section__info-card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 95%;
  height: 750px;
  border-radius: 10px;
  margin: 10px auto 50px;
  padding: 75px 0px 60px;
  border: 2px solid #d3d3d3;
  font-size: 1.6rem;
}

@media screen and (min-width: 375px) {
  .pricing-section__info-card {
    max-width: 355px;
  }
}

@media screen and (min-width: 768px) {
  .pricing-section__info-card {
    margin: 25px 10px 25px 0px;
  }
}

@media screen and (min-width: 1024px) {
  .pricing-section__info-card {
    margin: 25px 10px 25px 0px;
  }
}

.pricing-section__info-card-title {
  margin: 30px auto;
  font-size: 2rem;
}

.pricing-section__info-card-list {
  list-style-type: none;
  text-align: left;
  line-height: 40px;
}

.pricing-section .fas {
  color: #2fab73;
  margin-right: 20px;
}

.pricing-section__info-card-price {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 20px;
}

.pricing-section__info-card-price span {
  color: #909090;
  font-weight: 400;
}

.pricing-section__info-card-btn {
  display: inline-block;
  width: 60%;
  max-width: 250px;
  padding: 12px 0px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #f53838;
  background-color: transparent;
  border: 2px solid #f53838;
  border-radius: 25px;
  transition: all 0.5s;
}

@media screen and (min-width: 1024px) {
  .pricing-section__info-card-btn {
    padding: 15px 0px;
  }
}

.pricing-section__info-card-btn:hover {
  color: #fff;
  background-color: #f53838;
  box-shadow: 0px 5px 15px #f5383883;
}

.pricing-section__info-card-btn:active {
  color: #fa9999;
  transform: scale(0.95);
}

.global-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  text-align: center;
  margin: 50px auto 75px;
}

.global-section__title {
  font-size: 3rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .global-section__title {
    font-size: 4rem;
  }
}

.global-section__description {
  width: 70%;
  margin: 30px 0px 50px;
  font-size: 1.6rem;
  line-height: 25px;
  color: #202020;
}

.global-section__description span {
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .global-section__description {
    font-size: 2rem;
    max-width: 600px;
  }
}

.global-section__illustration {
  width: 100%;
  max-width: 1350px;
}

.sponsors-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 50px auto 75px;
}

@media screen and (min-width: 375px) {
  .sponsors-section {
    max-width: 400px;
  }
}

@media screen and (min-width: 768px) {
  .sponsors-section {
    width: 90%;
    max-width: 800px;
    flex-flow: row wrap;
    justify-content: space-evenly;
  }
}

@media screen and (min-width: 1024px) {
  .sponsors-section {
    max-width: 1200px;
  }
}

.sponsors-section__logo {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .sponsors-section__logo {
    width: 200px;
    margin-right: 15px;
  }
}

.testimonials-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 85%;
  margin: 50px auto 75px;
}

@media screen and (min-width: 375px) {
  .testimonials-section {
    max-width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .testimonials-section {
    max-width: 800px;
  }
}

@media screen and (min-width: 1024px) {
  .testimonials-section {
    width: 90%;
    max-width: 1200px;
  }
}

.testimonials-section__title {
  font-size: 3rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .testimonials-section__title {
    font-size: 4rem;
  }
}

.testimonials-section__description {
  width: 70%;
  margin: 30px 0px 50px;
  font-size: 1.6rem;
  line-height: 25px;
  color: #202020;
}

@media screen and (min-width: 768px) {
  .testimonials-section__description {
    max-width: 500px;
  }
}

@media screen and (min-width: 1024px) {
  .testimonials-section__description {
    font-size: 2rem;
    line-height: 35px;
  }
}

.testimonials-section__testimonials-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .testimonials-section__testimonials-wrapper {
    flex-flow: row wrap;
    justify-content: space-evenly;
  }
}

.testimonials-section__testimonial {
  width: 100%;
  max-width: 350px;
  height: 240px;
  padding: 20px 25px;
  border: 2px solid #d3d3d3;
  border-radius: 10px;
  font-size: 1.4rem;
  background-color: #fff;
  margin: 20px auto;
  transition: transform 0.5s ease-in;
}

@media screen and (min-width: 768px) {
  .testimonials-section__testimonial {
    width: auto;
    margin: 25px 10px;
  }
}

.testimonials-section__testimonial:hover {
  transform: scale(1.02);
}

.testimonials-section__testimonial-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.testimonials-section__testimonial-profile-photo {
  max-width: 100%;
}

.testimonials-section__testimonial-header-info-wrapper {
  margin-right: auto;
  margin-left: 15px;
  line-height: 20px;
  text-align: left;
}

.testimonials-section__testimonial-name {
  font-weight: 500;
}

.testimonials-section__testimonial-ubication {
  color: #3a3a3a;
  font-weight: 400;
  display: block;
}

.testimonials-section .fas {
  color: #fea250;
  margin-left: 5px;
}

.testimonials-section__testimonial-description {
  line-height: 25px;
  text-align: left;
}

.cta-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  width: 85%;
  padding: 25px 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 1px 3px 10px rgba(136, 136, 136, 0.4);
}

@media screen and (min-width: 1024px) {
  .cta-section {
    max-width: 1200px;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 50px 60px;
  }
}

.cta-section__content-wrapper {
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .cta-section__content-wrapper {
    width: 60%;
    max-width: 480px;
    font-size: 2rem;
    text-align: left;
  }
}

.cta-section__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 27px;
}

@media screen and (min-width: 1024px) {
  .cta-section__title {
    font-size: 4rem;
    line-height: 45px;
  }
}

.cta-section__description {
  color: #868686;
  margin: 25px auto;
}

@media screen and (min-width: 1024px) {
  .cta-section__description {
    font-size: 2rem;
  }
}

.cta-section__subscribe-btn {
  display: block;
  width: 250px;
  padding: 18px 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  background-color: #f53838;
  border-radius: 10px;
  box-shadow: 0px 5px 15px #f5383883;
  text-align: center;
  margin: 30px 0px 15px;
  transition: all 0.5s;
}

.cta-section__subscribe-btn:hover {
  background-color: #f76969;
}

.cta-section__subscribe-btn:active {
  background-color: #ee0c0c;
  transform: scale(0.95);
}

.main-footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 85%;
}

@media screen and (min-width: 768px) {
  .main-footer {
    display: grid;
    gap: 20px;
    grid-template-columns: 2fr repeat(3, 1fr);
    align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) {
  .main-footer {
    max-width: 1200px;
  }
}

.main-footer-container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.main-footer__content-wrapper {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .main-footer__content-wrapper {
    grid-column: 1/2;
    text-align: left;
    align-items: start;
  }
}

.main-footer__logo {
  width: 150px;
}

@media screen and (min-width: 1024px) {
  .main-footer__logo {
    width: 200px;
  }
}

.main-footer__description {
  font-size: 1.5rem;
  margin: 15px auto;
  line-height: 25px;
}

@media screen and (min-width: 1024px) {
  .main-footer__description {
    margin: 20px 0px;
    font-size: 1.6rem;
    color: #202020;
    max-width: 400px;
    line-height: 30px;
  }
}

.main-footer__copy-wrapper {
  width: 100%;
  margin-top: 35px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .main-footer__copy-wrapper {
    text-align: left;
    font-size: 2rem;
  }
}

.main-footer__copy {
  color: #868686;
}

.main-footer__copy span {
  font-weight: 700;
}

.main-footer__icons-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 70%;
  max-width: 180px;
  margin: auto;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .main-footer__icons-wrapper {
    margin: 0px 0px 50px 0px;
    justify-content: space-between;
  }
}

.main-footer .fab {
  font-size: 15px;
  background-color: #fff;
  padding: 7px;
  width: 30px;
  height: 30px;
  line-height: 14px;
  border-radius: 50%;
  color: #f53838;
  border: 1px solid #fa9999;
  box-shadow: 1px 3px 10px rgba(136, 136, 136, 0.3);
  cursor: pointer;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .main-footer .fab {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    line-height: 35px;
    text-align: center;
  }
}

.main-footer .fab:hover {
  transform: translateY(-5px);
}

.main-footer .fab:active {
  transform: scale(0.95);
}

.attribution {
  width: 100%;
  background-color: #eee;
  padding: 15px 30px;
  text-align: center;
  font-size: 1.6rem;
}

.attribution a {
  color: #f53838;
  transition: all 0.5s;
}

.attribution a:hover {
  color: #ee0c0c;
}

.attribution a:active {
  transform: scale(0.95);
}

.main-header__navbar {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  transition: all 0.5s;
  opacity: 0;
  animation: show 2s 2s forwards;
  z-index: 100000;
}

@keyframes show {
  to {
    opacity: 1;
  }
}

@media screen and (min-width: 550px) {
  .main-header__navbar {
    padding: 2rem 8rem;
  }
}

@media screen and (min-width: 768px) {
  .main-header__navbar {
    padding: 2rem 7rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-header__navbar {
    padding: 2rem 10%;
  }
}

@media screen and (min-width: 1600px) {
  .main-header__navbar {
    padding: 2rem 16%;
  }
}

.main-header__navbar.active {
  background-color: #fff;
  border-bottom: 3px solid #f53838;
  box-shadow: 0px 2px 10px rgba(245, 56, 56, 0.5);
}

.main-header__navbar-logo {
  width: 40%;
  max-width: 150px;
}

@media screen and (min-width: 1024px) {
  .main-header__navbar-logo {
    max-width: 200px;
  }
}

.main-header__navbar-nav {
  order: 2;
  width: 100%;
  margin: 15px auto;
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .main-header__navbar-nav {
    max-width: 385px;
    width: 50%;
    order: 0;
  }
}

@media screen and (min-width: 1024px) {
  .main-header__navbar-nav {
    max-width: 500px;
  }
}

.main-header__navbar-link {
  font-size: 1.3rem;
  color: #202020;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s;
}

@media screen and (min-width: 375px) {
  .main-header__navbar-link {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .main-header__navbar-link {
    font-size: 1.9rem;
  }
}

.main-header__navbar-link:hover {
  color: #f53838;
}

.main-header__navbar-link:active {
  color: #bd0a0a;
  transform: scale(0.95);
}

.main-header__navbar-cta {
  order: 1;
  width: 55%;
  max-width: 230px;
  font-size: 1.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .main-header__navbar-cta {
    width: 25%;
  }
}

@media screen and (min-width: 1024px) {
  .main-header__navbar-cta {
    font-size: 2rem;
    max-width: 280px;
  }
}

.main-header__navbar-cta-btn:first-of-type {
  color: #000;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s;
}

.main-header__navbar-cta-btn:first-of-type:hover {
  color: #f53838;
}

.main-header__navbar-cta-btn:first-of-type:active {
  color: #bd0a0a;
  transform: scale(0.95);
}

.main-header__navbar-cta-btn:last-of-type {
  display: inline-block;
  width: 60%;
  max-width: 150px;
  padding: 7px 0px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #f53838;
  background-color: transparent;
  border: 2px solid #f53838;
  border-radius: 25px;
  border-width: 1px;
  transition: all 0.5s;
}

@media screen and (min-width: 1024px) {
  .main-header__navbar-cta-btn:last-of-type {
    padding: 12px 0px;
    font-size: 2rem;
    max-width: 190px;
  }
}

.main-header__navbar-cta-btn:last-of-type:hover {
  color: #fff;
  background-color: #f53838;
}

.main-header__navbar-cta-btn:last-of-type:active {
  color: #fa9999;
  transform: scale(0.95);
}

.main-header__illustration {
  grid-area: illustration;
}

@media screen and (min-width: 768px) {
  .main-header__illustration {
    margin: 0;
    align-self: center;
    grid-column: 2/-1;
    grid-row: 2/-1;
  }
}

.main-footer__navs-wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .main-footer__navs-wrapper {
    grid-column: 2/-1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: start;
  }
}

.main-footer__navbar {
  width: 90%;
}

.main-footer__nav {
  list-style-type: none;
  margin-bottom: 50px;
}

.main-footer__nav-title {
  font-weight: 500;
  margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
  .main-footer__nav-title {
    font-size: 1.9rem;
  }
}

.main-footer__nav-link {
  text-decoration: none;
  display: block;
  color: #202020;
  margin-bottom: 20px;
  transition: all 0.5s;
}

@media screen and (min-width: 1024px) {
  .main-footer__nav-link {
    font-size: 1.9rem;
  }
}

.main-footer__nav-link:hover {
  color: #f53838;
}

.main-footer__nav-link:active {
  color: #bd0a0a;
  transform: scale(0.95);
}
