@-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;
}

.header {
  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;
  position: relative;
  width: 100%;
  min-height: 80vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  color: white;
}
.header__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/header.jpg");
  z-index: -2;
  background-position: center;
  background-size: cover;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.header__shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5647058824);
}
.header__heading {
  padding-top: 1em;
  width: 250px;
  text-align: center;
  font-size: 2.6em;
  line-height: 1.2em;
  font-weight: bold;
  font-family: "Poppins";
  text-transform: uppercase;
}
.header__heading span {
  color: #ed213c;
}
.header__text {
  width: 400px;
  text-align: center;
  font-family: "Poppins";
  margin: 2em 0;
}
.header__btn {
  background-color: #ed213c;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  padding: 1em 6em;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: "Poppins";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.header__btn:hover {
  background-color: #002354;
  border: 1px solid #002354;
}

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

.offer {
  position: relative;
  width: 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;
  padding: 2em 1em 4em;
  text-align: center;
}
.offer__heading {
  position: relative;
  font-size: 2.6em;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em 1em;
}
.offer__heading::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20%;
  height: 10px;
  width: 30%;
  background-color: #ed213c;
}
.offer__box {
  width: 100%;
  height: 100%;
}
.offer__left {
  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;
  width: 100%;
  height: 100%;
}
.offer__img {
  width: 100%;
  height: 100%;
}
.offer__right {
  display: none;
}
.offer__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
  width: 275px;
  font-size: 0.9em;
  text-align: center;
}
.offer__text:first-of-type {
  padding: 0em 0em 1em;
}
.offer__btn {
  margin-top: 1em;
  background-color: #ed213c;
  color: white;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
  padding: 1em 0;
  border: 1px solid transparent;
  border-radius: 3px;
  z-index: 10;
  font-family: "Poppins";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  width: 210px;
  text-align: center;
}
.offer__btn:hover {
  background-color: #002354;
  border: 1px solid #002354;
}

.bottom {
  position: relative;
  width: 100%;
  padding: 2em 0 6em;
  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;
}
.bottom__heading {
  text-transform: uppercase;
  font-size: 1.8em;
  width: 310px;
  padding: 1em 0;
  text-align: center;
}
.bottom__boxes {
  width: 100%;
}
.bottom__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1em;
}
.bottom__num {
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: #ed213c;
  color: white;
  border-radius: 50%;
  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;
  font-size: 1.4em;
}
.bottom__text {
  width: 230px;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 0 1em;
}

@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;
  }
  .offer__text {
    width: 377px;
  }
  .bottom__boxes {
    width: 480px;
  }
  .bottom__text {
    width: 270px;
  }
  .bottom__num {
    margin: 0 1em;
  }
}
@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;
  }
  .offer {
    padding: 2em 0;
  }
  .offer__heading {
    -ms-flex-item-align: start;
        align-self: start;
    padding-left: 0.3em;
    font-size: 2.6em;
  }
  .offer__heading::before {
    left: 33%;
    width: 50%;
  }
  .offer__box {
    width: 768px;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 2em 0em 4em;
    text-align: left;
  }
  .offer__text {
    width: 367px;
    font-size: 1.1em;
    text-align: left;
  }
  .offer__right {
    display: block;
    width: 100%;
    height: 75%;
    padding-top: 2em;
  }
  .offer__img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 120%;
  }
  .offer__btn {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .bottom__heading {
    width: 800px;
  }
  .bottom__boxes {
    width: 768px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
  }
  .bottom__box {
    padding: 1em 0;
  }
}
@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;
  }
  .offer {
    padding: 2em 0;
  }
  .offer__heading {
    -ms-flex-item-align: start;
        align-self: start;
    padding-left: 1.4em;
    font-size: 2.6em;
  }
  .offer__heading::before {
    left: 53%;
    width: 50%;
  }
  .offer__box {
    width: 1200px;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 2em 0em 4em;
    text-align: left;
  }
  .offer__text {
    width: 490px;
    font-size: 1.1em;
  }
  .offer__right {
    display: block;
    width: 100%;
    height: 75%;
    padding-top: 2em;
  }
  .offer__img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 140%;
  }
  .offer__btn {
    -ms-flex-item-align: start;
        align-self: start;
    margin: 0 3.5em;
  }
  .bottom {
    padding: 4em 2em 6em;
  }
  .bottom__boxes {
    width: 1200px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
  }
  .bottom__box {
    padding: 2em 0;
  }
  .bottom__text {
    width: 440px;
    font-size: 1em;
  }
  .bottom__heading {
    font-size: 2em;
    -ms-flex-item-align: center;
        align-self: center;
    width: 1200px;
    text-align: left;
    padding: 1em 2em;
  }
}/*# sourceMappingURL=offer.css.map */