/* Colors */
:root {
  --psico-blue: #2d437d;
  --psico-blue-rgba60: rgba(45, 67, 125, 0.6);
  --psico-light-blue: #699dee;
  --psico-light-blue-rgba60: rgba(105, 157, 238, 0.6);
  --psico-soft-blue: #e3e7f1;
  --psico-red: #e66355;
  --psico-red-dark: #d34334;
  --color-text: #444;
  --color-form: #e7e7e7;
  --color-checkbox: #dfdfdf;
  --psico-neutral: #b4bbce;
  --psico-neutral2: #e7e7e7;
  --psico-neutral-azulado: #f1f3f6;
}
/* Typography */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.ttf");
}

/* @font-face {
  font-family: "DMSerifDisplay";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DMSerifDisplay-Regular.ttf");
} */

html {
  font-size: 62.5% !important; /* 1.6rem = 16px, 20rem = 20px, etc...*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
}

p,
li {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin-bottom: 1.8rem;
}

li {
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1130px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.main {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  width: 100%;
  position: relative;
  background-color: var(--psico-neutral-azulado);
  margin-bottom: 24px;
}

.header .header__logo {
  display: block;
  width: 165px;
  position: absolute;
  top: 26px;
  left: 26px;
}

.header .header__logo img {
  display: block;
  width: 100%;
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 64px;
}

.header .header__image {
  width: calc(40% - 40px);
}

.header .header__texts {
  width: calc(60% - 40px);
}

.header .header__pretitle {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--psico-blue);
  margin-bottom: 12px;
}

.header .header__title {
  max-width: 500px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 5.5rem;
  color: var(--psico-light-blue);
}

@media (max-width: 1024px) {
  .header .header__image,
  .header .header__texts {
    width: calc(50% - 20px);
  }
  .header .header__image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header .header__inner {
    flex-direction: column;
    padding-bottom: 40px;
  }
  .header .header__image {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .header .header__texts {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .header .header__texts .header__pretitle,
  .header .header__texts .header__title {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header__texts .header__pretitle {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .header .header__texts .header__title {
    font-size: 4rem;
    line-height: 4.4rem;
  }
}

.content {
  display: block;
  width: 100%;
}

.section {
  margin-bottom: 20px;
}

.section hr {
  margin: 20px 0 0 0;
  border: 1px solid var(--psico-neutral2);
}

.section .section__header {
  margin-bottom: 40px;
}

.section .section__header .section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 5.5rem;
  color: var(--psico-blue);
}

@media (max-width: 600px) {
  .section .section__header .section__title {
    line-height: 3.2rem;
    margin-bottom: 20px;
  }
}

.section .seaction__header p {
  letter-spacing: 0.03em;
  color: var(--psico-blue);
}

.section .section__form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section .section__form__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 5.5rem;
  color: var(--psico-neutral);
}

.section .section__form .form-field {
  width: calc((100% / 3) - 20px);
  margin-bottom: 30px;
}

.section .section__form .form-field:last-child {
  margin-right: auto;
  margin-left: 40px;
}

@media (max-width: 768px) {
  .section .section__form .form-field {
    width: calc((100% / 2) - 20px);
  }
  .section .section__form .form-field:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .section .section__form .form-field {
    width: 100%;
  }
}

.section .section__form .form-field--medium {
  width: calc(50% - 20px);
}

@media (max-width: 768px) {
  .section .section__form .form-field--medium {
    width: 100%;
  }
}

.section .section__form .form-field--large {
  width: calc((100% / 3) * 2 - 20px);
}

@media (max-width: 768px) {
  .section .section__form .form-field--large {
    width: 100%;
  }
}

.section__form .form-field label {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--psico-blue);
  margin-bottom: 14px;
}

.section__form .form-field input.form-input {
  display: block;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  border-bottom: 2px solid var(--psico-light-blue);
  background-color: var(--psico-neutral2);
}

.section__form .form-field input.form-input + .error,
.section__form .form-group-checkbox .error {
  display: none;
}

.validable .section__form .form-field input.form-input:invalid,
.validable .section__form .form-field input.form-input.invalid,
.validable .section__form .form-group-checkbox.has-error label {
  border-color: var(--psico-red);
}

.validable .section__form .form-field input.form-input:invalid + .error,
.validable .section__form .form-field input.form-input.invalid + .error,
.validable .section__form .form-group-checkbox.has-error .error {
  display: inline-block;
}

.section .section__form .form-field.form-field-error small.error {
  margin-left: 0;
  margin-top: 5px;
}

.section__form .form-group-radio {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.section__form .form-group-radio input[type="radio"],
.section__form .form-group-radio input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  top: -5px;
  left: -5px;
}

.section__form .form-group-radio input + label {
  display: block;
  min-height: 23px;
  padding-left: 71px;
  position: relative;
  line-height: 23px;
  text-transform: none;
  color: var(--psico-blue);
}

.section__form .form-group-radio input + label::before {
  content: "";
  display: block;
  width: 51px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-checkbox);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.section__form .form-group-radio input + label::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 10px;
  background-color: #ffffff;
  position: absolute;
  left: 2px;
  top: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.section__form .form-group-radio input:checked + label::before {
  background-color: var(--psico-blue);
}

.section__form .form-group-radio input:checked + label::after {
  left: 30px;
}

.section__form .form-group-radio input + label strong {
  font-weight: 700;
}

.section__form .form-group-radio input + label a {
  text-decoration: underline;
  color: inherit;
}

.section__form .form-group-radio .input-radio-text {
  display: inline-block;
  min-height: 23px;
  border: 0;
  border-bottom: 2px solid var(--psico-light-blue);
}

.validable .section__form .form-group-radio input:invalid + label {
  color: var(--psico-red);
}

.section__form .form-group-checkbox {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: calc((100% - 60px) / 4);
}

@media (max-width: 768px) {
  .section__form .form-group-checkbox {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }
}

.section__form .form-group-checkbox:last-child {
  margin-right: 0;
}

.section__form .form-group-checkbox input[type="radio"],
.section__form .form-group-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  top: -5px;
  left: -5px;
}

.section__form .form-group-checkbox input + label {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 38px;
  border: 2px solid var(--psico-neutral2);
  border-radius: 20px;
  background-color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--psico-blue);
  cursor: pointer;
  transition: all 0.3s;
}

.section__form .form-group-checkbox input:checked + label {
  background-color: var(--psico-light-blue);
  color: #ffffff;
  border-color: var(--psico-light-blue);
}

.section__form .form-group-file {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section__form .form-group-file input[type="file"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  top: -5px;
  left: -5px;
}

.section__form .form-group-file .file-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section__form .form-group-file .file-label .file-label-text {
  width: calc(100% - 130px);
  text-transform: none;
  font-weight: 600;
}

.section__form .form-group-file .file-label .file-label-button {
  width: 120px;
  max-width: 120px;
  height: 37px;
  padding-left: 18px;
  padding-right: 18px;
  line-height: 33px;
  border: 2px solid var(--psico-neutral2);
  border-radius: 20px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--psico-neutral);
  text-align: center;
  text-transform: lowercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section__form .form-group-file .file-label .file-label-button svg {
  vertical-align: text-bottom;
}

.section__form
  .form-group-file
  .file-label
  .file-label-button:not(.file-label-button-download)
  svg {
  stroke: var(--psico-neutral);
  fill: transparent;
}

.validable
  .section__form
  .form-group-file
  input:invalid
  + .file-label
  .file-label-text {
  color: var(--psico-red);
}
.validable
  .section__form
  .form-group-file
  input:invalid
  + .file-label
  .file-label-button {
  border-color: var(--psico-red);
  color: var(--psico-red);
}

.validable
  .section__form
  .form-group-file
  input:invalid
  + .file-label
  .file-label-button
  svg {
  stroke: var(--psico-red);
}

.section__form .form-group-file .file-label .file-label-button-download {
  font-weight: 500;
  color: var(--psico-blue);
  border-color: var(--psico-light-blue);
}

.section__form .form-group-file .file-label .file-label-button.active {
  background-color: var(--psico-light-blue);
  border-color: var(--psico-light-blue);
  color: #fff;
}

.section__form .form-group-file .file-label .file-label-button.active svg {
  stroke: #ffffff;
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .button-wrapper {
    flex-direction: column;
  }
}

.btn--primary {
  width: 350px;
  height: 72px;
  padding-left: 0;
  line-height: 72px;
  background-color: var(--psico-blue);
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary
{
  fill: #2D437D;
    color: #2D437D;
    background-color: #FFD004;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
  font-style: normal;
  font-weight: 500;
}


.btn--primary.disabled,
.btn--primary[disabled] {
  background-color: var(--psico-neutral);
  pointer-events: none;
}

.button-wrapper .errors {
  display: none;
  color: var(--psico-red);
  margin-right: auto;
}

.button-wrapper .errors.show {
  display: block;
}

small.error {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6rem;
  color: var(--psico-red);
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.thankyou {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 114px;
  padding-bottom: 114px;
}

.thankyou__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 3.6rem;
  color: var(--psico-blue);
  margin-bottom: 20px;
}

.thankyou__text {
  color: var(--psico-blue);
  line-height: 3.3rem;
  margin-bottom: 0;
}

.thankyou__text strong {
  font-weight: 700;
}
.bg-orange{
  background-color: orange;
}
