.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 120px;
}
.about img {
  max-width: 700px;
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .about {
    flex-wrap: wrap;
    padding: 30px;
    gap: 40px;
    margin-top: 0;
  }
}

.about__text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  box-shadow: 20px 20px 0 5px #556e8c;
  border-radius: 20px;
  padding: 20px;
}
.about__text h2 {
  margin: 0;
  font-size: 6rem;
  font-family: "Bebas Neue", serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .about__text h2 {
    font-size: 4.7rem;
  }
}
.about__text p {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  max-width: 600px;
  margin-bottom: 0;
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .about__text p {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .about__text p {
    font-size: 0.9rem;
  }
}
.about__text button {
  background-color: rgb(0, 46, 95);
  width: 200px;
  height: 50px;
  color: white;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: 0.1s linear;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.about__text button:hover {
  cursor: pointer;
  background-color: rgb(23, 86, 154);
}
@media (max-width: 1024px) {
  .about__text {
    gap: 25px;
    box-shadow: none;
    padding: 0;
  }
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  background-color: #556e8c;
  padding: 50px 10px 40px;
  margin: 100px 0 50px;
  text-align: center;
}
.banner strong {
  font-family: "Bebas Neue", serif;
  font-weight: 900;
  font-size: 6rem;
  margin: 0;
  color: white;
  line-height: 5.5rem;
}
@media (max-width: 768px) {
  .banner strong {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 50px;
    margin: 20px 0 40px;
  }
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 80%;
  margin: auto;
}
@media (max-width: 480px) {
  .gallery {
    flex-wrap: wrap;
  }
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.us {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 120px;
  padding-bottom: 100px;
}
.us .us-image {
  max-width: 700px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .us {
    flex-wrap: wrap;
    padding: 30px;
    gap: 40px;
    margin-top: 0;
  }
}

.us-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  box-shadow: 20px 20px 0 5px #556e8c;
  border-radius: 20px;
  padding: 20px;
}
.us-info h2 {
  margin: 0;
  font-size: 6rem;
  font-family: "Bebas Neue", serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .us-info h2 {
    font-size: 4.7rem;
    line-height: 4.7rem;
  }
}
.us-info button {
  background-color: rgb(0, 46, 95);
  width: 200px;
  height: 50px;
  color: white;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: 0.1s linear;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.us-info button:hover {
  cursor: pointer;
  background-color: rgb(23, 86, 154);
}
@media (max-width: 1024px) {
  .us-info {
    gap: 25px;
    box-shadow: none;
    padding: 0;
  }
}

.us-info-icons {
  display: flex;
  align-items: flex-start;
  margin: 35px 0 10px;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 480px) {
  .us-info-icons {
    gap: 35px;
    margin: 10px 0 35px;
  }
}

.us-info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 480px) {
  .us-info-icon {
    flex-direction: column;
    align-items: flex-start;
  }
}

.us-info-icon__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.us-info-icon__text p {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  max-width: 600px;
  margin-bottom: 0;
  padding-right: 20px;
  margin: 0;
}
@media (max-width: 1024px) {
  .us-info-icon__text p {
    padding-right: 0;
  }
}

.us-info-icon__text--title {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #5b7491;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  width: 100%;
  margin: 50px 0 100px;
}
@media screen and (max-width: 1170px) {
  .contact-container {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0;
    margin-bottom: 50px;
  }
}

.contact-title {
  font-size: 4.7rem;
  font-family: "Bebas Neue", serif;
  font-weight: 900;
  text-transform: uppercase;
  color: black;
  line-height: 5rem;
  padding: 1.4rem;
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 3.8rem;
    width: 90%;
  }
}
@media (max-width: 480px) {
  .contact-title {
    padding: 0;
  }
}

.contact-form {
  position: relative;
  display: flex;
  max-width: 550px;
  gap: 40px;
  width: 100%;
  flex-direction: column;
  padding: 1.4rem;
}
.contact-form input, .contact-form textarea {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid rgb(165, 165, 165);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  outline: none;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  background-color: rgb(0, 46, 95);
  width: 200px;
  height: 50px;
  color: white;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: 0.1s linear;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.contact-form button:hover {
  cursor: pointer;
  background-color: rgb(23, 86, 154);
}
@media (max-width: 768px) {
  .contact-form {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 0;
  }
}

#error {
  display: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 30px 5px 0;
  color: rgb(239, 88, 88);
}

#success {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
#success span {
  color: black;
  font-size: 1rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.loader {
  display: none;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  color: black;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px, 19px 0 0 5px, 38px 0 0 5px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px;
  transform: translateX(-38px);
  animation: l26 2s infinite linear;
}

@keyframes l26 {
  12.5% {
    box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px, 19px 0 0 5px, 38px 0 0 0px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px;
  }
  25% {
    box-shadow: 19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 0px;
  }
  50% {
    box-shadow: 19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px;
  }
  62.5% {
    box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px, 19px 0 0 5px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 5px;
  }
  75% {
    box-shadow: 19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px;
  }
  87.5% {
    box-shadow: 19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 5px, 57px 0 0 0px, 19px 19px 0 5px, 38px 19px 0 0px, 57px 19px 0 0px;
  }
}/*# sourceMappingURL=local.css.map */