:root {
    --white: #ffffff;
    --white-smoth: #E5E5E5;
    --turquesa: #A7E4EE;
    --blue-smoth: #E6EEF3;
    --blue-sky: #63C0E3;
    --blue-medium: #3E7EBE;
    --blue-dark: #1A264D;
    --blue-ultradark: #243678;
    --main-dark: #a5a5a5;
    --main-black: #1A1A1A;
    --main-gray: #313945;  
}

body,
html {
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.header {
    background-color: rgba(26, 26, 26, 0.4);
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 4rem);
    z-index: 100;
    max-width: 1200px;
    border-radius: 6rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding-left: 3rem;
    padding-right: 3rem;
    color: var(--white);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.navigation__site {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    width: 100%;
}

.navigation__site ul {
    width: 100%;
    padding-left: 0;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.navigation__site__item {
    list-style: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.navigation__site__link {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
}

.navigation__site__link:hover,
.navigation__site__link.active {
    color: var(--blue-sky);
}

.footer {
    background-color: var(--blue-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white);
    position: relative;
    z-index: 3;
    font-size: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.inner__footer {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.inner__footer a {
    text-decoration: none;
    color: var(--white);
}

.inner__footer h3 {
    font-size: 1.0625rem;
    font-weight: 600;
}

.inner__footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.form__newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.form__newsletter .form-floating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-radius: none;
}

.form__newsletter .form-floating input {
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-radius: 0;
    border: none;
}

.form__newsletter button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 120px;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--blue-sky);
    color: var(--blue-dark);
    font-weight: 600;
}

.footer .social__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer .social__list li {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.copyright__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 2rem;
    border-top: 1px solid var(--white);
}

.copyright__block p {
    font-weight: 600;
    text-align: center;
}

.goto__top {
    position: absolute;
    right: 0;
    top: -30px;
    background-color: var(--blue-sky);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
}

.btn__site {
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.btn__site.btn__filled {
    background-color: var(--turquesa);
    color: var(--blue-ultradark);
    border: 1px solid var(--turquesa);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
}

.btn__site.btn__filled:hover {
    background-color: var(--blue-sky);
    color: var(--blue-dark);
    border: 1px solid var(--blue-sky);
}
.btn__site.btn__full {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}



.inner__site {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
.inner__site__medium {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.rounded__image {
    border-radius: 3rem;
}

.img__height__all {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.container__not__found {
    width: 100%;
    min-height: 600px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inner__not__found {
    padding-top: 10rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 2rem;
    text-align: center;
}


.title__not__found {
    font-size: 5rem;
    color: var(--blue-medium);
}

.subtitle__not__found {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue-medium);
}



div.wpforms-container-full .wpforms-form label.wpforms-error:before,
div.wpforms-container-full .wpforms-form em.wpforms-error:before {
    background-color: var(--white-smoth) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field input.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field input.user-invalid,
div.wpforms-container-full .wpforms-form .wpforms-field textarea.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field textarea.user-invalid,
div.wpforms-container-full .wpforms-form .wpforms-field select.wpforms-error,
div.wpforms-container-full .wpforms-form .wpforms-field select.user-invalid {
    border-color: rgba(220, 53, 69, 1) !important;
}

.wpforms-container label.wpforms-error,
.wpforms-container em.wpforms-error {
    color: rgba(220, 53, 69, 1) !important;
}




.wpcf7-form .form__contact__item label {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    width: 100%;
}

.wpcf7-form .form__contact__item input[type="text"],
.wpcf7-form .form__contact__item input[type="tel"],
.wpcf7-form .form__contact__item input[type="email"],
.wpcf7-form .form__contact__item textarea,
.wpcf7-form .form__contact__item select {
    min-height: 40px;
    border: 1px solid #BEC5D3;
    width: 100%;
    border-radius: 4px;
    color: var(--blue-dark);
    padding-left: 1rem;
    padding-right: 1rem;
}
.wpcf7-form .form__contact__item select{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url('../img/icons/icon__down__select.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 20px;
}

.wpcf7-form .form__contact__item.form__contact__file input[type="file"] {
    display: none;
}

.wpcf7-form .form__contact__item.form__contact__file .custom__file__label {
    background-color: var(--blue-ultradark);
    color: var(--white-smoth);
    font-weight: 600;
    border-radius: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 46px;
    line-height: 1em;
    width: auto;
    margin-top: 1rem;
}
.wpcf7-form .form__contact__item.form__contact__file .custom__file__label:hover{
    background-color: var(--main-gray);
    color: var(--white);
    cursor: pointer;
}

.label__for__file {
    color: var(--white-smoth);
    font-weight: 400;
    font-size: 0.875rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-left: 0.5rem;

}

.wpcf7-form .form__contact__item.form__contact__file .wpcf7-form-control-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.form__contact .form__contact__item {
    margin-bottom: 2rem;
}

.recaptcha__legend {
    color: var(--white);
    font-weight: 400;
}

.recaptcha__legend a {
    color: var(--turquesa);
    font-weight: 600;
}

.wpcf7-form .wpcf7-submit {
    background-color: var(--turquesa);
    color: var(--blue-ultradark);
    padding-left: 3rem;
    padding-right: 3rem;
    height: 40px;
    border-radius: 2rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid var(--turquesa);
    font-weight: 600;
    position: relative;
}
.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--blue-sky);
    color: var(--blue-ultradark);
}
.form__contact .wpcf7-form .wpcf7-submit {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxIDEySDMiIHN0cm9rZT0iIzI0MzY3OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE1IDZMMjEgMTJMMTUgMTgiIHN0cm9rZT0iIzI0MzY3OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: calc(100% - 1rem) center;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.hamburger__menu__header {
  position: relative;
  right: 0.5rem;
  height: 24px;
  width: 24px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
  margin-top: 4px;
  display: none;
}
.hamburger__menu__header:hover {
  opacity: .7;
}
.hamburger__menu__header.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
      -ms-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.hamburger__menu__header.active .middle {
  opacity: 0;
  background: #FFF;
}
.hamburger__menu__header.active .bottom {
  -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
          transform: translateY(-7px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.hamburger__menu__header span {
  background: var(--white);
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.hamburger__menu__header span:nth-of-type(2) {
  top: 8px;
}
.hamburger__menu__header span:nth-of-type(3) {
  top: 18px;
}


.modal__after__contact .modal-header ,
.modal__after__newsletter .modal-header {
    border-bottom: none;
}
.modal__after__contact .modal__close ,
.modal__after__newsletter .modal__close {
    width: 60px;
    height: 60px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.modal__after__contact .modal__close svg ,
.modal__after__newsletter .modal__close svg {
    max-width: 100%;
}
.modal__after__contact .modal-body,
.modal__after__newsletter .modal-body{
    padding-left: 4rem;
    padding-right: 4rem;
}
.modal__after__contact .modal-body h3 ,
.modal__after__newsletter .modal-body h3 {
    font-weight: 700;
    font-size: 3rem;
    color: var(--blue-dark);
    margin-bottom: 2rem;
}
.modal__after__contact .modal-body p ,
.modal__after__newsletter .modal-body p {
    font-weight: 300;
    font-size: 2rem;
}


.newsletter__form__wrap > p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}


.newsletter__form__wrap .wpcf7-submit{
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0;
    margin-top: 24px;
}
.newsletter__form__wrap label {
    width: 100%;
}
.newsletter__form__wrap label .form-control{
    height: 40px;
    line-height: 1em;
    border-radius: 0;
    border-color: var(--white);
}

.form__newsletter .wpcf7-response-output{
    display: none;
}
.form__newsletter .wpcf7-not-valid-tip{
    padding-top: 0.25rem;
    line-height: 1em;
}


.modal .modal-content {
    background-color: var(--blue-smoth);
    border-radius: 2rem;
}


.wpcf7-not-valid-tip {
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.25rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    position: relative;
    display: inline-block;
}

.wpcf7-not-valid-tip:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 1rem;
    width: 0;
    height: 0;
    margin-left: -5px;
    border-bottom: 5px solid rgba(255, 255, 255, 0.5);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.wrap__footer__gotop {
    position: relative;
    z-index: 4;
}

.form__contact__send{
    min-width: 200px;
}

.form__contact__fields {
    color: var(--blue-dark);
}


.content__legals .inner__content__legals {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.content__legals .inner__content__legals h2 {
    font-size: 2rem;
    font-weight: 600;
}
.content__legals .inner__content__legals h3 {
    font-size: 1.75rem;
    font-weight: 600;
}
.content__legals .inner__content__legals h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.content__legals .inner__content__legals a {
    color: var(--blue-medium);
    text-decoration: none;
}

.content__legals .inner__content__legals a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1264px)  {
    .inner__site__medium {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media screen and (max-width: 1200px) {
    .header {
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 2rem)
    }

    .navigation__site__link {
        font-size: 0.875rem;
    }

    .goto__top {
        right: 1rem;
    }

}

@media screen and (max-width: 960px) {
     .navigation__site__link {
        font-size: 13px;
    }
    .navigation__site__logo {
        max-width: 140px;   
    }
}
@media screen and (max-width: 767px) {
    .navigation__site ul {
        position: fixed;
        left:0;
        right: 1rem;
        top: 60px;
        background-color: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.6);
        -webkit-backdrop-filter: blur(13px);
        backdrop-filter: blur(13px);
        margin-left: auto;
        margin-right: auto;
        width: calc(100vw - 2rem);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        border-radius: 2rem;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        -webkit-transition: all linear 0.25s;
        -o-transition: all linear 0.25s;
        transition: all linear 0.25s;
    }
    .navigation__site.open ul {
        opacity: 1;
        z-index: inherit;
        visibility: visible;
        top: 70px;
    }
    .navigation__site ul a{
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    

    .hamburger__menu__header {
        display: block;
    }

    .wpcf7-form .form__contact__item label{
        font-size: 0.875rem;
    }

    .header {
        height: auto;
    }

    .newsletter__form__wrap p{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .newsletter__form__wrap p label {
        width: 100%;
        min-width: calc(100% - 120px);
    }
    .newsletter__form__wrap p input {
        width: 100%;
    }

    .text__footer__desc {
        text-align: justify !important;
    }

    .btn__site.btn__xs__full {
        width: 100%;
        text-align: center;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .footer {
        overflow-x: hidden;
    }

    .main {
        overflow: hidden;
    }

    .form__contact .wpcf7-form .wpcf7-submit {
        width: 100%;
        background-position: calc(70% - 1rem) center;
    }
   

}