* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 10px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: GothamBold;
  src: url("../assets/fonts/Gotham-Book/Gotham-Bold.otf");
  font-weight: normal;
}

@font-face {
  font-family: GothamBook;
  src: url("../assets/fonts/Gotham-Book/Gotham-Book.otf");
  font-weight: normal;
}

/* Banner */

.introduction-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 762px;
  padding: 0px 70px;

  background-image: url("../assets/images/banner-resize.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.introduction-section__info-content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 581px;
  position: relative;
}

.introduction-section__info-content h1 p {
  font-size: clamp(2.4rem, 5rem, 5rem);
  color: #000;
  font-weight: 100;
  font-family: GothamBold, sans-serif;
  z-index: 2;
}

.introduction-section__info-content h1 p strong {
  font-weight: bold;
}

.introduction-section__info-content .primary-button {
  z-index: 2;
}

.primary-button {
  display: block;
  padding: 12px 30px;
  width: max-content;
  font-size: 1.6rem;
  background-color: #355d7c;
  color: #fff;
  font-weight: bold;
  font-family: 'Monstserrat', sans-serif;
  border: none;
  transition: all .3s;
}

.primary-button:hover {
  background-color: #2b4d68;
}

.text-thin {
  font-weight: 500;
}

.secondary-button {
  position: relative;
  display: block;
  padding: 12px 30px;
  width: max-content;
  font-size: 1.6rem;
  background-color: #FFF;
  color: #0A76BC;
  font-weight: 600;
  font-family: 'Monstserrat', sans-serif;
  border: none;
  transition: all .3s;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: all .3s;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.secondary-button:hover {
  background-color: #d4d4d4;
}

.introduction-section__form-contact {
  padding: 50px 36px;
  background-color: #0A76BC;
  color: #0A76BC;
  border-radius: 10px;
  filter: drop-shadow(-6.062px 3.5px 13.5px rgba(27,136,204,0.5));
}

.introduction-section__form-contact__form-info {
  padding: 18px 0;
  font-size: 1.4rem;
  color: #FFF;
  font-weight: normal;
  font-family: 'Monstserrat', sans-serif; 
}

.introduction-section__form-contact__form-wrapper {
  display: flex;
  flex-direction: column;
  border: none;
}

.error-message {
  display: none;
  max-width: 350px;
  padding: 0 0 12px 0;
  font-size: 1.4rem;
  color: #FFF;
  font-weight: normal;
  font-family: 'Monstserrat', sans-serif; 
}

.--active-error-message {
  display: block;
}

.introduction-section__form-contact__form-wrapper legend {
  margin-bottom: 42px;
  font-size: clamp(2rem, 2.4rem, 2.4rem);
  color: #FFF;
  font-weight: 100;
  font-family: GothamBold, sans-serif;
}

.introduction-section__form-contact__form-wrapper legend b {
  font-weight: 700;
}

.introduction-section__form-contact__form-wrapper input {
  width: 360px;
  padding: 16px 30px;
  margin: 0 0 24px 0;
  font-size: 1.6rem;
  font-family: 'Monstserrat', sans-serif;
  border: 1px solid #babbbb;
}

.input-alert {
  height: 0;
  margin: -20px 0px 16px 0px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  font-size: 1.4rem;
  color: #FFF;
  font-weight: normal;
  font-family: 'Monstserrat', sans-serif; 
  transition: all .4s;
}

.--alert-active {
  height: 20px;
  margin: -10px 0px 16px 0px;
  visibility: visible;
  opacity: 1;
}

/* Section Benefits */

.benefits {
  margin-top: 70px;
}

.benefits__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.benefits__list__list-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefits__list__list-items__wrapper-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefits__list__list-items h2 {
  font-size: 1.6rem;
  color: #1b88cc;
  font-weight: 700;
  font-family: GothamBold, sans-serif;
}

.benefits__list__list-items p {
  max-width: 253px;
  font-size: 15px;
  line-height: 2.1rem;
  color: #000;
  font-weight: 500;
  font-family: 'Monstserrat', sans-serif;
}

/* Section About */

.about {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  padding: 50px 60px;
  margin-top: 80px;
  background-color: #ededed;
}

.about__content-wrapper {
  display: flex;
  flex-direction: column; 
  gap: 16px;
}

.about__content-wrapper h1 p {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  color: #000;
  font-weight: 500;
  font-family: GothamBold, sans-serif;
}

.about__content-wrapper h1 span {
  position: relative;
  font-weight: 700;
  color: #1b88cc;
  text-decoration-color: transparent !important;
}

.about__content-wrapper h1 span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: #1b88cc;
}

.about__content-wrapper p {
	font-size: 1.6rem;
	font-family: 'Monstserrat', sans-serif;
	line-height: 2.1rem;
	color: #797979;
	max-width: 700px;
	text-align: justify;
}

.about__image-wrapper {
  max-width: 600px;
}

.about__image-wrapper img {
  display: block;
  max-width: 100%;
}

/* Section Solutions */

.solutions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}

.solutions h1 p {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  color: #000;
  font-weight: 500;
  font-family: GothamBold, sans-serif;
}

.solutions h1 span {
  position: relative;
  font-weight: 700;
  color: #1b88cc;
  text-decoration-color: transparent !important;
}

.solutions h1 span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: #1b88cc;
}

.solutions__list {
  display: flex;
  gap: 110px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.solutions__list__list-items {
  position: relative;
}

.solutions__list__list-items img{
  width: 238px;
}

.solutions__list__list-items p {
  position: absolute;
  bottom: 25px;
  left: -25px;

  display: flex;
  align-items: center;
  justify-content: start;
  width: 180px;
  height: 55px;
  padding: 8px 24px;

  font-size: 1.8rem;
  color: #fff;
  background-color: #000;
  font-weight: bold;
  font-family: GothamBold, sans-serif;
}

.solutions a {
  margin-top: 25px;
}

/* Section Advantages */

.advantages {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  padding: 42px 0px;
  margin-top: 24px;
  background-color: #0975bb;
  flex-wrap: wrap;
}

.advantages__wrapper-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advantages__wrapper-content h1 p {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  color: #FFF;
  font-weight: 700;
  font-family: GothamBold, sans-serif;
}

.advantages__wrapper-content h1 span {
  position: relative;
  text-decoration-color: transparent !important;
}

.advantages__wrapper-content h1 span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 80%;
  height: 5px;
  background-color: #fff;
}

.advantages__wrapper-content__text-image {
  display: flex;
  align-items: center;
  gap: 40px;
}

.advantages__wrapper-content__text-image p  {
  max-width: 300px;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3rem, 3rem);
  line-height: 3.5rem;
  color: #fff;
}

.advantages__wrapper-content__text-image__wrapper-image {
  display: flex;
  justify-content: center;
  width: 282px;
  height: 282px;
  border-radius: 50%;
  overflow: hidden;
}

.advantages__wrapper-content__text-image img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  object-position: right;
}

.advantages__wrapper-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 50px;
  border: 2px solid #fff;
}


.advantages__wrapper-list__list li {
  margin-top: 3px;


  font-family: GothamBook, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.5rem;
  color: #fff;
}

.advantages__wrapper-list__list li i {
  margin-right: 6px;
}

/* Section Contact */

.contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 80px;
  flex-wrap: wrap;
}

.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.contact__form-wrapper h1 {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  font-weight: 700;
  font-family: GothamBold, sans-serif;
  color: #000;
}

.contact__form-wrapper h1 span {
  padding: 16px 3px;
  color: #fff;
  background-color: #0975bb;
}

.contact__form-wrapper__form {
  max-width: 515px;
  color: #fff;
}

.contact__form-wrapper__form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
}

.contact__form-wrapper__form__input-wrapper .error-message {
  color: #333;
}

.contact__form-wrapper__form__input-wrapper input {
  width: 515px;
  padding: 12px 20px;
  font-size: 1.6rem;
  font-family: 'Monstserrat', sans-serif;
  color: #000;
  border: 1px solid #000;
}

.contact__form-wrapper__form__input-wrapper .input-alert {
	margin: -10px 0px 0px 0px;
	color: #000;
	transition: all .4s;
}

.contact__form-wrapper__form__input-wrapper .input-alert.--alert-active {
  margin: 0px;
}

.contact__form-wrapper__form__input-wrapper textarea {
  height: 110px;
  font-size: 1.6rem;
  font-family: 'Monstserrat', sans-serif;
  border: 1px solid #000;
  color: #000;
  padding: 12px 20px;
  resize: none;
}

.contact__form-wrapper__form button {
  position: relative;
  margin: 24px auto;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: all .3s;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section Contact - Address */

.contact__address {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact__address h3 {
  font-size: 2.2rem;
  font-family: GothamBold, sans-serif;
  font-weight: 500;
  color: #000;
}

.contact__address h3 span {
  font-weight: 800;
  color: #1b88cc;
}

.contact__address p {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 16px;
  font-size: 1.6rem;
  font-family: GothamBook, sans-serif;
  font-weight: 500;
  color: #000;
}

.contact__address p i {
  font-size: 24px;
}

/* Media Queries */

@media (max-width: 935px) {
  /* Banner */

  .introduction-section {
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 64px;
    padding: 64px 16px 0px  16px;
    background-image: url("../assets/images/banner-mobile.webp");
  }

  .introduction-section__info-content {
    gap: 30px;
    align-items: center;
  }

  .introduction-section__info-content h1 {
    text-align: center;
    font-size: clamp(2.4rem, 4rem, 5rem);
  }

  .introduction-section__form-contact {
    padding: 30px 24px;
    margin-bottom: -140px;
  }

  .introduction-section__form-contact__form-wrapper input {
    width: 100%;
  }

  /* Section Benefits */

  .benefits {
    margin: 150px 36px 0px 36px;
  }

  .benefits__list {
    flex-wrap: wrap;
    gap: 40px;
  }

  /* Section About */

  .about {
    gap: 36px;
    flex-wrap: wrap-reverse;
    padding: 50px 36px;
  }

  /* Section Solutions */

  .solutions__list {
    gap: 36px;
    flex-wrap: wrap;
  }

  /* Section advantages */

  .advantages {
    flex-wrap: wrap;
    gap: 36px;
    padding: 42px 16px;
  }

  .advantages__wrapper-content {
    align-items: center;
  }

  .advantages__wrapper-content__text-image {
    justify-content: center;
    flex-wrap: wrap;
  }

  .advantages__wrapper-content__text-image p {
    font-size: clamp(2rem, 2rem, 3rem);
    line-height: 2.5rem;
    text-align: center;
  }

  .advantages__wrapper-list {
    padding: 20px 16px;
  }

  .advantages__wrapper-list__list li {
    line-height: 3rem;
  }

  /* Section Contact */

  .contact {
    flex-wrap: wrap;
    padding: 0px 36px;
    gap: 36px; 
  }

  .contact__address {
    gap: 36px;
  }

  .contact__form-wrapper__form__input-wrapper input {
    width: 100%;
    min-width: 280px;
  }
}