@charset "UTF-8";
/* .montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
} */
a {
  text-decoration: none;
}

.header {
  padding: 24px 64px;
}
@media (max-width: 992px) {
  .header {
    justify-content: space-between;
  }
}
.header .logo {
  margin-right: 38px;
}
.header nav {
  position: relative;
}
.header nav ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .header nav ul {
    flex-direction: column;
    background-color: #333333;
    border-radius: 12px;
    position: absolute;
    top: 58px;
    right: 0;
    height: 0px;
    transition: all 0.2s ease;
  }
  .header nav ul.show {
    height: 139px;
    transition: all 0.2s ease;
  }
  .header nav ul li {
    margin: 0 !important;
    width: 100%;
    text-align: center;
    padding: 16px 16px 0 16px !important;
  }
  .header nav ul li:last-child {
    padding: 16px 16px 16px 16px !important;
  }
  .header nav ul li a {
    color: #FFF !important;
  }
}
@media (max-width: 575px) {
  .header nav ul {
    width: 100%;
    border-radius: 12px;
    top: 71px;
  }
}
.header nav ul li {
  margin-right: 16px;
  padding: 12px 8px;
}
.header nav ul li:last-child {
  margin-right: 0px;
}
.header nav ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #0F172A;
  transition: all 0.2s ease;
}
.header nav ul li a:hover {
  color: #FBA10D;
  transition: all 0.2s ease;
}
@media (max-width: 575px) {
  .header nav {
    width: calc(100% - 32px);
    border-radius: 12px;
    margin-top: 16px;
    height: 63px;
    background-color: #333333;
    margin-bottom: 32px;
    align-items: center;
    display: flex;
  }
  .header nav::before {
    content: "© 2024";
    position: absolute;
    left: 16px;
    top: 21px;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .header {
    flex-direction: column-reverse;
    padding: 0;
  }
}

.menu__mobile--button {
  display: none;
}
@media (max-width: 992px) {
  .menu__mobile--button {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: block;
  }
  .menu__mobile--button button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0px;
    background-color: #333333;
    border-radius: 12px;
  }
}

.banner {
  padding: 60px 64px;
}
.banner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: normal;
  color: #0A0D17;
  margin-bottom: 20px;
}
.banner p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: #161C2D;
  margin-bottom: 20px;
}
.banner button {
  height: 56px;
  padding: 0 32px;
  border: 0px;
  border-radius: 8px;
  background-color: #EB255D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.banner button p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 0px;
  text-transform: uppercase;
  line-height: 0;
}
.banner button:hover {
  background-color: #A00C36;
  transition: all 0.2s ease;
}
@media (hover: none) {
  .banner button button:hover {
    background-color: #EB255D;
    transition: all 0s ease;
  }
}
@media (max-width: 575px) {
  .banner {
    background-color: #EEE;
    width: calc(100% - 32px);
    margin-left: 16px;
    border-radius: 32px;
    margin-top: 32px;
    padding: 32px 16px;
  }
  .banner h1 {
    text-align: center;
  }
  .banner p {
    text-align: center;
  }
  .banner button {
    margin-left: auto;
    margin-right: auto;
  }
}

.--bg-image {
  background-image: url("../images/header-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #EEE;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .--bg-image {
    background-image: none;
  }
}
@media (max-width: 575px) {
  .--bg-image {
    background-color: #FFF;
  }
}

.services h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #1F1F1F;
  margin-bottom: 32px;
  text-transform: uppercase;
  text-align: center;
}
.services p {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 48px;
  font-weight: normal;
  color: #161C2D;
  margin-bottom: 32px;
  text-align: center;
}
.services .services__cards {
  margin-bottom: 32px;
}
.services .card-item {
  padding: 16px;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  height: 100%;
}
.services .card-item img {
  border-radius: 12px;
  width: 100%;
  height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 16px;
}
.services .card-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #263238;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.5px;
}
.services .card-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  color: #263238;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: -0.5px;
}
.services .card-item ul {
  list-style: none;
  margin: 16px 0 0 0;
}
.services .card-item ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #EB255D;
  list-style-type: none;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.services .card-item ul li:last-child {
  margin-bottom: 0px;
}
.services .card-item ul li::before {
  content: url("../images/services/icon.svg");
  position: absolute;
  left: -32px;
  top: 1px;
}

.contact {
  padding: 60px 64px;
  background-image: url("../images/contact-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 32px;
  overflow: hidden;
}
.contact h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: normal;
  color: #0A0D17;
  margin-bottom: 20px;
}
.contact p {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: #161C2D;
  margin-bottom: 0px;
  letter-spacing: 2%;
}
.contact .contact__form {
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.3s linear;
}
.contact .contact__form form {
  padding: 16px 16px 16px 50px;
}
.contact .contact__form form .form__group {
  display: flex;
  align-items: center;
}
.contact .contact__form form .form__group input[type=text] {
  margin-left: 16px;
  margin-right: 16px;
}
.contact .contact__form form .form__group input[type=text]:first-child {
  margin-left: 0px !important;
}
.contact .contact__form form .form__group input[type=text]:last-child {
  margin-right: 0px !important;
}
.contact .contact__form form input[type=text] {
  width: 100%;
  margin-bottom: 32px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  padding: 15px;
  font-size: 16px;
  line-height: 24px;
}
.contact .contact__form form button {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  border-radius: 8px;
  background-color: #EB255D;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: 0;
  transition: all 0.2s ease;
}
.contact .contact__form form button:hover {
  background-color: #A00C36;
  transition: all 0.2s ease;
}
@media (max-width: 1199px) {
  .contact .contact__form form {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .contact .contact__form form {
    padding: 32px 0 0 0;
  }
}
@media (max-width: 767px) {
  .contact .contact__form form .form__group {
    display: block;
  }
  .contact .contact__form form .form__group input[type=text] {
    margin-left: 0;
    margin-right: 0;
  }
}
.contact .contact__form.hidden {
  height: 50%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, height 1s, opacity 0.3s linear;
}
.contact .contact__info {
  overflow: hidden;
  transition: opacity 0.3s linear;
}
.contact .contact__info.hidden {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, height 1s, opacity 0.3s linear;
}
.contact .msg-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.5s linear;
  position: absolute;
  top: 0;
  left: 0;
}
.contact .msg-form * {
  text-align: center;
}
.contact .msg-form.hidden {
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.contact .msg-form.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .contact h5 {
    color: #FCD34D;
  }
  .contact h6 {
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .contact {
    width: calc(100% - 32px);
    background-image: none;
    background-color: #EEE;
    padding: 32px 16px;
  }
}

.footer {
  display: none;
}
@media (max-width: 575px) {
  .footer {
    display: block;
    width: calc(100% - 32px);
    margin-bottom: 16px;
    background-color: #333333;
    border-radius: 12px;
  }
  .footer .footer__content {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer__content p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #FFF;
    margin-bottom: 0px;
    letter-spacing: 2%;
  }
  .footer .footer__content a {
    border: 0px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }
}/*# sourceMappingURL=main.css.map */