body {
  font-family: "Montserrat", serif;
  margin: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.navbar--title {
  width: 30%;
  text-align: end;
}
.navbar--title h1 {
  font-size: 22px;
  color: #004AAD;
  margin: 0;
}
.navbar--links {
  display: flex;
  align-items: center;
  width: 70%;
  background-image: url(/assets/background-navbar.png);
  background-size: 100%;
  background-repeat: no-repeat;
  justify-content: space-evenly;
  padding: 13px 0;
}
.navbar--links svg.button-mobile {
  display: none;
}
.navbar--links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin-right: 15px;
}
.navbar--links a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navbar--links .links--button {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 5px 13px;
}
.navbar--links .links--button img {
  -o-object-fit: none;
     object-fit: none;
  margin-right: 8px;
}
.navbar--links .links--button p {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.one-section {
  position: relative;
}
.one-section--background img {
  height: 590px;
}
.one-section--info {
  position: absolute;
  top: 40px;
  margin-left: 168px;
}
.one-section--info .info--text h1 {
  font-weight: bold;
  font-size: 50px;
  color: #fff;
}
.one-section--info .info--text p {
  font-size: 20px;
  color: #fff;
  width: 700px;
}
.one-section--info .info--button {
  margin-top: 35px;
}
.one-section--info .info--button .button-primary {
  border: none;
  background-color: #C30426;
  color: white;
  border-radius: 15px;
  font-size: 14px;
  padding: 10px 40px;
  margin-right: 10px;
}
.one-section--info .info--button .button-primary:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
  cursor: pointer;
}
.one-section--info .info--button .button-secundary {
  border: none;
  background-color: white;
  color: #C30426;
  border-radius: 15px;
  font-size: 14px;
  padding: 10px 30px;
  font-weight: bold;
}
.one-section--info .info--button .button-secundary:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
  cursor: pointer;
}
.one-section--cards {
  display: flex;
  justify-content: space-evenly;
  margin: 25px 0;
}
.one-section--cards .card-one {
  display: flex;
  align-items: center;
  background-color: #004AAD;
  border-radius: 10px;
  max-width: 270px;
  padding: 15px 10px;
}
.one-section--cards .card-one .card-info {
  margin-left: 10px;
}
.one-section--cards .card-one img {
  margin-right: 10px;
  width: 54px;
}
.one-section--cards .card-one h2 {
  font-size: 16px;
  color: white;
  margin: 0;
}
.one-section--cards .card-one p {
  font-size: 14px;
  color: white;
  margin: 0;
}
.one-section img {
  width: 100%;
}

.second-section {
  justify-items: center;
  background-image: url(/assets/second-section-background.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right;
}
.second-section--title h1 {
  margin: 0;
  padding: 20px 0 30px 0;
  font-size: 36px;
  color: #004AAD;
}
.second-section--info {
  display: flex;
  justify-content: center;
}
.second-section--info .info--image {
  width: 50%;
  text-align: center;
}
.second-section--info .info--image img {
  margin-left: 150px;
}
.second-section--info .text-socials {
  text-align: center;
  width: 50%;
}
.second-section--info .text-socials .text p {
  font-size: 16px;
  color: #fff;
  padding: 0 40px;
  margin-bottom: 20px;
}
.second-section--info .text-socials .socials a {
  text-decoration: none;
}
.second-section--info .text-socials .socials a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.second-section--info .text-socials .socials a img {
  padding: 0 7px;
}
.second-section--info .text-socials .second-section-logo img {
  border-radius: 50%;
  width: 120px;
  margin: 20px 0;
}

.third-section {
  background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 70%, #0b343d 30%);
  padding-bottom: 40px;
}
.third-section--title {
  text-align: center;
}
.third-section--title h1 {
  color: #004AAD;
  font-size: 36px;
  margin: 0;
  padding: 20px 0;
}
.third-section--title p {
  margin: 0;
  font-size: 16px;
  color: #9C9C9C;
}
.third-section--cards {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}
.third-section--cards .card .cards-title {
  display: flex;
  background-color: #004AAD;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  padding: 20px 0;
}
.third-section--cards .card .cards-title h2 {
  font-size: 16px;
  color: #fff;
}
.third-section--cards .card .cards-title img {
  width: 60px;
  margin-right: 10px;
}
.third-section--cards .card .cards-info ul {
  list-style: none;
  padding: 10px 35px;
  margin: 0;
  border: 1px solid #004AAD;
  border-radius: 0 0 15px 15px;
  background-color: #fff;
  height: 150px;
  width: 280px;
}
.third-section--cards .card .cards-info ul li {
  font-size: 14px;
  line-height: 36px;
  color: #9C9C9C;
}

.section-benefits {
  background-color: #004AAD;
}
.section-benefits .benefits {
  display: flex;
  justify-content: space-evenly;
  padding: 25px 0;
}
.section-benefits .benefits .card-one {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  width: 292px;
}
.section-benefits .benefits .card-one .card-image img {
  margin-right: 15px;
}
.section-benefits .benefits .card-one .card-info h2 {
  font-size: 16px;
  color: #004AAD;
  margin: 0 0 10px 0;
}
.section-benefits .benefits .card-one .card-info p {
  font-size: 14px;
  margin: 0;
}

.section-review {
  margin: 30px 0;
}
.section-review .container-review {
  display: flex;
  justify-content: space-evenly;
}
.section-review .container-review .review {
  width: 400px !important;
  border: 1px solid #dedede;
  padding: 15px;
  border-radius: 30px;
  min-height: 204px !important;
}
.section-review .container-review .review .review-name {
  display: flex;
  align-items: center;
}
.section-review .container-review .review .review-name img {
  width: 56px;
}
.section-review .container-review .review .review-name p {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 600;
}
.section-review .container-review .review .review-stars {
  margin-top: 10px;
}
.section-review .container-review .review .review-stars img {
  width: 130px;
}
.section-review .container-review .review .review-stars p {
  margin-top: 5px;
  font-size: 14px;
}
.section-review .container-button {
  justify-self: center;
}
.section-review .container-button a {
  text-decoration: none;
}
.section-review .container-button a:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
.section-review .container-button a p {
  background-color: #004AAD;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.section-form {
  position: relative;
}
.section-form img {
  width: 100%;
  height: 545px;
}
.section-form .form-container {
  position: absolute;
  top: 30px;
  margin-left: 200px;
}
.section-form .form-container .form-text h1 {
  font-size: 16px;
}
.section-form .form-container .form-text p {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 35px 0;
}
.section-form .form-container .form-contact input {
  padding: 10px;
  border: 1px solid #dedede;
  border-radius: 5px;
  width: 230px;
  margin-bottom: 20px;
  font-family: "Montserrat", serif;
  font-size: 12px;
}
.section-form .form-container .form-contact .input-custom {
  width: 96%;
}
.section-form .form-container .form-contact .message-form {
  width: 96%;
  height: 100px;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  font-size: 12px;
  padding: 10px;
}
.section-form .form-container .form-contact .button-form {
  background-color: #C30426;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 100px;
  margin-top: 15px;
  text-transform: uppercase;
  cursor: pointer;
}
.section-form .form-container .form-contact .button-form:hover {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

.footer-section .first-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
  background-color: #252B42;
  align-items: center;
  margin-top: -6px;
}
.footer-section .first-footer .footer-logo h1 {
  font-size: 24px;
  color: #fff;
}
.footer-section .second-footer p {
  padding: 10px 35px;
  background-color: #16697A;
  margin: 0;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 767px) {
  .navbar--title {
    width: 100%;
    text-align: left;
  }
  .navbar--title h1 {
    font-size: 18px !important;
    margin: 10px 10px;
  }
  .navbar--links {
    background-image: none;
    justify-content: end;
    margin-right: 10px;
  }
  .navbar--links .button-mobile {
    display: block !important;
    width: 15px;
  }
  .navbar--links .links--navigation {
    display: none;
  }
  .navbar--links .links--navigation.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 42px;
    z-index: 1;
    width: 95% !important;
    left: 0;
    padding: 10px;
  }
  .navbar--links .links--navigation.active a {
    color: #252B42 !important;
    margin-bottom: 6px;
  }
  .navbar--links .links--button {
    display: none;
  }
  .one-section img {
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .one-section--info {
    margin-left: 10px;
    top: 10px;
  }
  .one-section--info h1 {
    font-size: 30px !important;
  }
  .one-section--info p {
    font-size: 16px !important;
    width: 100% !important;
    color: #0b343d;
  }
  .one-section--info .info--button {
    margin-top: 20px;
  }
  .one-section--info .info--button .button-primary, .one-section--info .info--button .button-secundary {
    font-size: 14px !important;
    padding: 8px 23px;
  }
  .one-section--cards {
    overflow: scroll;
  }
  .one-section--cards .card-one {
    min-width: 270px;
    margin: 10px;
  }
  .one-section--cards .card-one img {
    width: auto;
    height: auto;
  }
  .second-section {
    background-image: none;
  }
  .second-section .second-section--title h1 {
    padding: 20px 0 10px 0;
    font-size: 30px !important;
  }
  .second-section .second-section--info .text-socials .socials a img {
    filter: invert(1);
  }
  .second-section .second-section--info .info--image {
    display: none;
  }
  .second-section .second-section--info .text-socials {
    width: 100%;
  }
  .second-section .second-section--info .text-socials .text p {
    color: #252B42 !important;
    padding: 0px 10px;
  }
  .third-section .third-section--title h1 {
    font-size: 30px !important;
    padding: 10px 0;
  }
  .third-section .third-section--title p {
    font-size: 14px !important;
  }
  .third-section .third-section--cards {
    margin-top: 20px;
    overflow: scroll;
  }
  .third-section .third-section--cards .card {
    margin: 10px;
  }
  .section-benefits .benefits {
    overflow: scroll;
  }
  .section-benefits .benefits .card-one {
    margin: 10px;
    min-width: 290px;
  }
  .section-form .form-container {
    margin-left: 10px;
  }
  .section-form .form-container .form-text h1 {
    font-size: 14px !important;
  }
  .section-form .form-container .form-text p {
    font-size: 16px !important;
  }
  .section-form img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-form .form-email {
    display: flex;
  }
  .section-form .form-contact .input-custom {
    width: 334px !important;
  }
  .section-form .form-contact input {
    width: 151px !important;
    margin-right: 10px;
  }
  .section-form .form-contact .message-form {
    width: 334px !important;
  }
  .footer-section .first-footer {
    padding: 0 10px;
  }
  .footer-section .first-footer .footer-logo h1 {
    font-size: 14px !important;
  }
  .footer-section .first-footer .footer-info img {
    width: 160px;
  }
  .footer-section .second-footer p {
    padding: 10px;
  }
  .section-review .container-review {
    overflow: scroll;
  }
  .section-review .container-review .review {
    min-width: 369px !important;
    margin: 5px;
    margin-bottom: 15px;
  }
  .section-review .container-button a p {
    margin-top: 5px;
  }
}
@media (max-width: 360px) {
  .navbar--links .links--navigation.active {
    top: 62px !important;
  }
  .section-form .form-contact .input-custom {
    width: 320px !important;
  }
  .section-form .form-contact input {
    width: 143px !important;
  }
  .section-form .form-contact .message-form {
    width: 319px !important;
  }
  .third-section--cards .card .cards-info ul {
    width: 267px !important;
  }
  .second-section--info .text-socials .second-section-logo img {
    width: 120px;
    max-width: 120px;
  }
}/*# sourceMappingURL=styles.css.map */