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

input.error::-webkit-input-placeholder, textarea.error::-webkit-input-placeholder {
  color: rgb(164, 87, 87);
}

input.error::-moz-placeholder, textarea.error::-moz-placeholder {
  color: rgb(164, 87, 87);
}

input.error:-ms-input-placeholder, textarea.error:-ms-input-placeholder {
  color: rgb(164, 87, 87);
}

input.error::-ms-input-placeholder, textarea.error::-ms-input-placeholder {
  color: rgb(164, 87, 87);
}

input.error::placeholder, textarea.error::placeholder {
  color: rgb(164, 87, 87);
}

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

.contact {
  position: relative;
  width: 100%;
  padding: 2em 2em;
}
.contact__heading {
  position: relative;
  font-size: 2.4em;
  text-transform: uppercase;
  font-weight: bold;
  padding: 2em 0 0.5em;
  width: 250px;
}
.contact__heading::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 10px;
  width: 30%;
  background-color: #ed213c;
}
.contact__left {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__text {
  padding: 1em 0 3em;
  width: 250px;
  text-align: center;
}
.contact__form {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__form input,
.contact__form textarea {
  width: 250px;
  padding: 1em 0.5em;
  color: rgb(82, 82, 82);
  font-size: 1em;
  border: 1px solid rgb(182, 182, 182);
}
.contact__form label {
  width: 250px;
  padding: 0.5em 0;
}
.contact__form textarea {
  resize: vertical;
  height: 120px;
}
.contact__btn {
  background-color: #ed213c;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  margin-top: 0.5em;
  padding: 0.7em 4em;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: "Poppins";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 250px;
  cursor: pointer;
  text-decoration: none;
  -ms-flex-item-align: center;
      align-self: center;
}
.contact__btn:hover {
  background-color: #002354;
  border: 1px solid #002354;
}
.contact__right {
  display: none;
}

.map {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 0;
}
.map__img {
  width: 100%;
  height: 100%;
}

.popup {
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  height: 150px;
  background-color: #002354;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 20px;
  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;
}
.popup p {
  padding: 1em;
}
.popup__btn {
  background-color: #002354;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  padding: 0.5em 2em;
  border: 1px solid white;
  border-radius: 3px;
  font-family: "Poppins";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.popup__btn:hover {
  background-color: #002354;
  border: 1px solid #002354;
  color: #002354;
  background-color: #fff;
}

.popup-animation {
  -webkit-animation: popup 0.3s forwards ease-in;
          animation: popup 0.3s forwards ease-in;
}

@-webkit-keyframes popup {
  from {
    -webkit-transform: translate(-50%, -300%);
            transform: translate(-50%, -300%);
  }
  to {
    -webkit-transform: translateY(-50%, 0);
            transform: translateY(-50%, 0);
  }
}

@keyframes popup {
  from {
    -webkit-transform: translate(-50%, -300%);
            transform: translate(-50%, -300%);
  }
  to {
    -webkit-transform: translateY(-50%, 0);
            transform: translateY(-50%, 0);
  }
}
@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;
  }
  .contact__heading {
    width: 470px;
  }
  .contact__text {
    width: 470px;
  }
  .contact__form input,
  .contact__form textarea {
    width: 480px;
  }
  .map {
    width: 100%;
    height: 400px;
  }
}
@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;
  }
  .contact {
    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;
    padding: 2em;
  }
  .contact__left {
    width: 768px;
  }
  .contact__heading {
    -ms-flex-item-align: start;
        align-self: start;
    font-size: 3.4em;
    padding: 2em 0 0.5em;
  }
  .contact__heading::before {
    left: 10%;
    width: 20%;
  }
  .contact__text {
    width: 590px;
    -ms-flex-item-align: start;
        align-self: start;
    text-align: left;
  }
  .contact__form input,
  .contact__form textarea {
    width: 768px;
  }
}
@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;
  }
  .contact {
    padding: 4em 4em 10em;
  }
  .contact__text {
    font-size: 1.2em;
  }
  .contact__heading {
    -ms-flex-item-align: start;
        align-self: start;
    font-size: 3.4em;
    padding: 0em 0 0.5em;
  }
  .contact__heading::before {
    left: 10%;
    width: 20%;
    top: 0;
  }
  .contact__left {
    width: 600px;
    height: 850px;
  }
  .contact__right {
    display: block;
    height: 850px;
    width: 560px;
  }
  .contact__form {
    width: 590px;
    -ms-flex-item-align: start;
        align-self: start;
  }
  .contact__form input,
  .contact__form textarea {
    width: 550px;
    font-size: 1.1em;
    padding: 0.5em;
  }
  .contact__form label {
    font-size: 1em;
  }
  .contact__form textarea {
    height: 150px;
  }
  .contact__grid {
    width: 1200px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 5em;
  }
  .contact__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact__btn {
    -ms-flex-item-align: start;
        align-self: start;
  }
}/*# sourceMappingURL=contact.css.map */