@-webkit-keyframes slideDown {
  from {
    max-height: 0;
  }
  to {
    max-height: 500px;
  }
}
@keyframes slideDown {
  from {
    max-height: 0;
  }
  to {
    max-height: 500px;
  }
}
.slideDown {
  -webkit-animation: slideDown 1s forwards;
          animation: slideDown 1s forwards;
}

@-webkit-keyframes slideUp {
  from {
    max-height: 500px;
  }
  to {
    max-height: 0;
  }
}

@keyframes slideUp {
  from {
    max-height: 500px;
  }
  to {
    max-height: 0;
  }
}
.slideUp {
  -webkit-animation: slideUp 1s forwards;
          animation: slideUp 1s forwards;
}

@-webkit-keyframes hideBtn {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@keyframes hideBtn {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.hideBtn {
  -webkit-animation: hideBtn 1s forwards;
          animation: hideBtn 1s forwards;
}

@-webkit-keyframes showBtn {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}

@keyframes showBtn {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
.showBtn {
  -webkit-animation: showBtn 1s forwards;
          animation: showBtn 1s forwards;
}

@-webkit-keyframes specialLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes specialLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.special__line-color.aos-animate {
  -webkit-animation: specialLine 0.5s forwards linear;
          animation: specialLine 0.5s forwards linear;
}

.bounce-top {
  -webkit-animation: bounce-top 2s infinite both;
          animation: bounce-top 2s infinite both;
  display: block;
}

@media (min-width: 768px) {
  @-webkit-keyframes bounce-top {
    0% {
      -webkit-transform: translateY(-35px);
              transform: translateY(-35px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-24px);
              transform: translateY(-24px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(-12px);
              transform: translateY(-12px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%, 55%, 75%, 87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  @keyframes bounce-top {
    0% {
      -webkit-transform: translateY(-35px);
              transform: translateY(-35px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(-24px);
              transform: translateY(-24px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(-12px);
              transform: translateY(-12px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%, 55%, 75%, 87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

.hidden {
  visibility: hidden;
}

.show {
  visibility: visible;
}

.nav__desktop {
  display: none;
  z-index: 100;
}
.nav__desktop .nav__active {
  color: #ed213c;
}
.nav__mobile {
  z-index: 100;
  position: fixed;
  width: 100%;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000000;
  color: white;
}
.nav__mobile .nav__active {
  color: #ed213c;
}
.nav__mobile-menu {
  position: absolute;
  width: 100%;
  height: 100%;
}
.nav__mobile-btn {
  top: 50%;
  right: 5%;
  padding: 0.5em;
  font-size: 1.8em;
  position: absolute;
  translate: 0 -50%;
}
.nav__mobile-logo {
  font-family: "Poppins";
  padding: 0.5em;
  font-size: 1.2em;
  text-decoration: none;
  color: #eaeaea;
  font-weight: bold;
}
.nav__mobile-logo span {
  color: #ed213c;
  font-style: italic;
}
.nav__mobile-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000000;
  overflow: hidden;
  max-height: 0;
}
.nav__mobile-link {
  font-family: "Poppins";
  padding: 0.5em 1em;
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.nav__mobile-link:hover {
  color: red;
}
.nav__mobile-link:last-of-type {
  padding-bottom: 1em;
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 3em;
}

.footer {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: black;
  color: white;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1em;
  text-align: left;
}
.footer .fa-solid {
  color: #ed213c;
  margin-right: 0.5em;
}
.footer__box {
  padding: 0.5em 0;
  width: 250px;
}
.footer__box a {
  color: white;
  text-decoration: none;
}
.footer__box--socials {
  text-align: center;
  font-size: 1.6em;
}
.footer__box--socials .fa-brands {
  padding: 0 0.5em;
  color: #ed213c;
}

.pricing {
  position: relative;
  width: 100%;
  padding: 2em;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pricing__heading {
  position: relative;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 1em;
}
.pricing__heading::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 25%;
  height: 10px;
  width: 50%;
  background-color: #ed213c;
}
.pricing__box {
  width: 220px;
  position: relative;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  padding: 2em 0;
}
.pricing__box > * {
  padding: 0.3em 0;
}
.pricing__box::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}
.pricing__box:first-of-type::before {
  display: none;
}
.pricing__price {
  font-weight: bold;
  font-size: 1.2em;
}
.pricing__img {
  position: relative;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

@media (min-width: 480px) {
  .footer__box {
    padding: 0.5em 0;
    width: 300px;
    font-size: 1.2em;
  }
  .footer__box--socials {
    text-align: center;
    font-size: 1.8em;
  }
  .footer__box--socials .fa-brands {
    padding: 0 0.5em;
  }
  .pricing {
    padding: 2em 0;
  }
  .pricing__boxes {
    width: 100%;
    height: 100%;
    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-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pricing__box {
    width: 480px;
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1em;
  }
  .pricing__img {
    grid-column: 1/2;
    grid-row: 1/3;
    align-self: center;
    justify-self: center;
  }
  .pricing__title {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 356px;
  }
  .pricing__text {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 356px;
  }
  .pricing__price {
    grid-column: 2/3;
    grid-row: 3/4;
    width: 356px;
  }
  .pricing__box::before {
    top: -10%;
    left: 2%;
  }
}
@media (min-width: 768px) {
  .nav__mobile-logo {
    font-size: 1.4em;
  }
  .nav__mobile-btn {
    font-size: 2.4em;
  }
  .nav__mobile-link {
    font-size: 1em;
    padding: 0.5em 2em;
  }
  .footer {
    height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer__box {
    padding: 0 0.3em;
    width: auto;
    font-size: 1.2em;
  }
  .footer__box--socials {
    text-align: center;
    font-size: 1.8em;
  }
  .footer__box--socials .fa-brands {
    padding: 0 0.5em;
  }
  .pricing__heading {
    padding: 2em 0 1em;
    font-size: 2.6em;
  }
  .pricing__heading::before {
    top: 40%;
  }
  .pricing__box {
    width: 768px;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1em;
  }
  .pricing__img {
    grid-column: 1/2;
    grid-row: 1/3;
    align-self: center;
    justify-self: center;
  }
  .pricing__title {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 450px;
    font-size: 1.3em;
  }
  .pricing__text {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 450px;
  }
  .pricing__price {
    grid-column: 3/4;
    grid-row: 1/3;
    width: 150px;
    align-self: center;
    justify-self: center;
    font-size: 1.4em;
  }
  .pricing__box::before {
    top: -10%;
    left: 2%;
  }
}
@media (min-width: 1200px) {
  .nav__mobile {
    display: none;
  }
  .nav__desktop {
    display: block;
    position: fixed;
    width: 100%;
    padding: 0.7em;
    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;
    background-color: #000000;
    color: white;
  }
  .nav__desktop-menu {
    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__desktop-link {
    font-size: 1.2em;
    text-decoration: none;
    color: white;
    padding: 0 1.5em;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-family: "Poppins";
  }
  .nav__desktop-link:hover {
    color: #ed213c;
  }
  .nav__desktop-logo {
    font-size: 1.6em;
    text-decoration: none;
    color: #eaeaea;
    font-weight: bold;
    font-family: "Poppins";
  }
  .nav__desktop-logo span {
    color: #ed213c;
    font-style: italic;
  }
  .footer__box {
    padding: 0 2em;
  }
  .pricing__heading {
    font-size: 4em;
  }
  .pricing__box {
    width: 1200px;
  }
  .pricing__img {
    width: 150px;
    height: 150px;
  }
  .pricing__title {
    font-size: 1.6em;
    width: auto;
  }
  .pricing__text {
    width: 450px;
    width: auto;
  }
  .pricing__price {
    font-size: 1.4em;
  }
  .pricing__box::before {
    top: 0%;
    left: 2%;
  }
}/*# sourceMappingURL=pricing.css.map */