@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
.cookies {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 300px;
  padding: 20px;
  color: #fff;
  background: #222;
  font-size: 17px;
}
.cookies a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.cookies .novaConsentButton {
  margin-top: 10px;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  color: var(--color_green);
  border: 0;
  border-radius: 25px;
  background-color: var(--color_green);
}
.cookies .novaConsentButton:hover {
  background-color: var(--color_blue);
}

.footer {
  padding: 70px 50px;
  color: white;
  font-size: 14px;
  font-weight: 300;
}
.footer .container {
  max-width: 1300px;
}
.footer a {
  text-decoration: none;
  color: inherit;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .columns {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 748px) {
  .footer .columns {
    display: flex;
    flex-direction: column;
  }
}
.footer .columns .left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 748px) {
  .footer .columns .left {
    align-items: center;
    width: 100%;
  }
}
.footer .columns .left .inner .social {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.footer .columns .left .inner .social img {
  width: auto;
  height: 20px;
}
.footer .columns .center {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: space-between;
}
.footer .columns .center .adresses {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 748px) {
  .footer .columns .center .adresses {
    flex-direction: column;
  }
}
.footer .columns .center .adresses .adress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .columns .center .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 748px) {
  .footer .columns .center .links {
    margin: 20px 0;
  }
}
.footer .columns .right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-weight: 700;
  font-style: 14px;
  gap: 10px;
}
@media screen and (max-width: 748px) {
  .footer .columns .right {
    align-items: flex-start;
  }
}
.footer .columns .right .links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 748px) {
  .footer .columns .right .links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

:root {
  --color_green: #609F80;
  --color_blue: #304E88;
  --color_celeste: #687791;
  --color_grey: #3d3d3d;
  --color_second_blue: #2B456F;
}

* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body, html {
  font-family: "Roboto";
  font-weight: 300;
}

strong, b {
  font-weight: 700;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: auto;
}

.lg-container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}

.d-flex {
  display: flex;
}

.d-flex-col {
  flex-direction: column;
}

.just-center {
  justify-content: center;
}

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

.heading {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-size: 4.4em;
  line-height: 1.2em;
}

.heading-small {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-size: 3.8em;
  line-height: 1.2em;
}

.cta {
  padding: 20px 30px;
  border-radius: 40px;
  background-color: var(--color_second_blue);
  color: #fff;
  text-decoration: none;
  line-height: 1.3em;
}
.cta:hover {
  transition: all 0.3s;
  background-color: var(--color_green);
}

.intro {
  background: linear-gradient(253.03deg, #EC8679 21.5%, #DA5447 87.14%);
  padding: 140px 0 100px 0;
}
.intro h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 70px;
  padding: 0 50px;
}
.intro .col-image {
  margin-right: -150px;
  position: relative;
  z-index: 2;
}
.intro .box {
  background-color: #fff;
  border-radius: 30px;
  padding-left: 230px;
  padding-right: 60px;
  flex: 0 0 850px;
}
.intro .box h2 {
  color: var(--color_green);
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: bold;
  padding-bottom: 10px;
}
.intro .box h3 {
  color: var(--color_blue);
  padding-bottom: 5px;
  font-size: 4rem;
}
.intro .box p {
  color: var(--color_blue);
  font-size: 1.2rem;
}
.intro .box .cta {
  margin-top: 30px;
  align-self: start;
}

#mensajeConfirmacion {
  padding: 50px 0;
  font-size: 2rem;
  line-height: 1.2em;
  justify-content: center;
  gap: 40px;
}
#mensajeConfirmacion * {
  color: #fff;
  text-align: left;
}

.second-section {
  background: #609F80;
  padding: 100px 0 90px 0;
}
.second-section .container {
  max-width: 1200px;
}
.second-section * {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7em;
}
.second-section .d-flex {
  gap: 60px;
}
.second-section ul {
  margin-left: 40px;
}
.second-section ul li {
  position: relative;
  margin-bottom: 40px;
}
.second-section ul li:before {
  content: "";
  background: url("../img/arrow-list.svg") no-repeat center center;
  height: 20px;
  width: 20px;
  display: inline-block;
  position: absolute;
  left: -40px;
  top: 10px;
}
.second-section ul li:last-child {
  margin-bottom: 0;
}

.section-form {
  background: linear-gradient(253.03deg, #82A5D6 21.5%, #3F5E90 87.14%);
  padding: 130px 0;
}
.section-form * {
  text-align: center;
}
.section-form h2 {
  color: #fff;
  padding: 0 95px;
  font-size: 3.8rem;
  line-height: 1.15em;
}
.section-form .logos {
  margin-bottom: 60px;
}
.section-form form {
  padding: 80px 200px 0 200px;
}
.section-form form .form-row {
  margin-bottom: 35px;
}
.section-form form .form-row label {
  display: block;
  color: #fff;
  text-align: left;
  font-size: 1.3rem;
  padding-bottom: 15px;
}
.section-form form .form-row input {
  width: 100%;
  padding: 20px 30px;
  border: 0;
  border-radius: 40px;
  text-align: left;
}
.section-form form .form-row input::placeholder {
  font-weight: 400;
  color: #000;
}
.section-form form .check, .section-form form .actions {
  text-align: left;
}
.section-form form .check * {
  color: #fff !important;
  line-height: 1.7rem;
}
.section-form form .actions {
  margin-top: 30px;
}
.section-form form .actions button {
  padding: 20px 30px;
  border-radius: 40px;
  background-color: var(--color_second_blue);
  color: #fff;
  text-decoration: none;
  line-height: 1.3em;
  appearance: none;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
}
.section-form form .actions button:hover {
  transition: all 0.3s;
  background-color: var(--color_green);
}
.section-form form .error {
  text-align: left;
  padding: 10px 0;
  color: #FFB74B;
}

.section-forth {
  padding: 80px 0;
  background: url("../img/bg-section-forth.jpg") no-repeat center center;
  background-size: cover;
}
.section-forth .d-flex {
  gap: 50px;
}

.footer {
  background: var(--color_blue);
}

.missage-form {
  background-color: var(--color_green);
  padding: 130px 0;
}
.missage-form .d-flex {
  gap: 50px;
}
.missage-form * {
  color: #fff;
}
.missage-form .content .logos {
  margin-bottom: 30px;
}
.missage-form .content h2 {
  margin-bottom: 20px;
}
.missage-form .content p {
  font-size: 1.3rem;
  line-height: 1.5em;
}

@media screen and (max-width: 1100px) {
  .intro .box {
    flex: 0 0 700px;
  }
}
@media screen and (max-width: 991px) {
  .intro .d-flex {
    align-items: center;
  }
  .intro .col-image {
    width: 300px;
  }
  .intro .col-image img {
    max-width: 100%;
  }
  .intro .box {
    padding: 30px 0;
    flex: 0 0 600px;
    padding-left: 190px;
  }
  .second-section .col-image {
    width: 450px;
  }
  .section-form {
    padding: 50px 0;
  }
  .section-form h2 {
    padding: 0;
  }
  .section-form form {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 768px) {
  #mensajeConfirmacion {
    flex-direction: column;
  }
  #mensajeConfirmacion img {
    max-width: 250px;
    margin: auto;
  }
  .heading {
    font-size: 3rem;
  }
  .second-section .col-image {
    width: 100%;
  }
  .footer {
    padding: 50px 0px;
  }
  .d-flex {
    flex-direction: column;
  }
  .intro {
    padding-top: 70px;
  }
  .intro h1 {
    padding: 0;
  }
  .intro .col-image {
    margin-right: 0;
    margin-bottom: -100px;
  }
  .intro .box {
    padding: 130px 25px 25px 25px;
    flex: 0 0 auto;
    text-align: center;
  }
  .intro .box .cta {
    width: 100%;
    margin-top: 45px;
  }
  .intro .box h2 {
    padding-bottom: 25px;
  }
  .second-section {
    padding: 50px 0;
  }
  .second-section * {
    font-size: 1.3rem;
    line-height: 1.2em;
  }
  .second-section ul li {
    margin-bottom: 30px;
  }
  .section-form h2 {
    font-size: 2.5rem;
  }
  .section-form button {
    width: 100%;
  }
  .section-forth {
    padding: 70px 0 100px 0;
  }
  .section-forth * {
    text-align: center;
  }
  .section-forth .d-flex > div {
    width: 100%;
  }
  .section-forth .cta {
    width: 100%;
    display: block;
  }
  .missage-form {
    padding: 50px 0;
  }
  .missage-form .col-image {
    max-width: 250px;
  }
}