.bg-dark {
    opacity: 0;
    pointer-events: none;
    background: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    transition: 0.35s;
}

.contact-form {
    max-width: 475px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}
@media (max-width: 990px) {
    .contact-form {
        max-width: 100%;
    }
}
.contact-form__title {
    color: #292929;
    font: 700 24px/34px "Futura", sans-serif;
}
.contact-form__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
@media (max-width: 990px) {
    .contact-form__box {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
}
.contact-form__box input {
    height: 45px;
}
@media (max-width: 990px) {
    .contact-form__box input {
        height: auto;
    }
}
.contact-form__input {
    appearance: none;
    outline: none;
    background: transparent;
    font: 400 18px/28px "Open Sans", sans-serif;
    padding: 10px 5px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    color: #000;
    border: none;
    border-bottom: 1px solid #E5E5E5;
}
.contact-form__input::placeholder {
    font: 400 18px/28px "Open Sans", sans-serif;
    color: #B8B8B8;
}
.contact-form__textarea {
    appearance: none;
    outline: none;
    background: transparent;
    font: 400 18px/28px "Open Sans", sans-serif;
    padding: 10px 5px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    color: #000;
    border: none;
    resize: none;
    height: 150px;
    border-bottom: 1px solid #E5E5E5;
}
.contact-form__textarea::placeholder {
    font: 400 18px/28px "Open Sans", sans-serif;
    color: #B8B8B8;
}
@media (max-width: 990px) {
    .contact-form__textarea {
        height: 70px;
    }
}
.contact-form__btn {
    max-width: 150px;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    padding: 13px;
    background: #E74C3C;
    display: flex;
    font: 400 16px/24px "Open Sans", sans-serif;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    transition: 0.35s;
}
@media (max-width: 576px) {
    .contact-form__btn {
        max-width: 100%;
    }
}
.contact-form__btn:hover {
    background: #BD3D30;
}
.contact-form .checkbox {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-block;
}
.contact-form .checkbox input {
    opacity: 0;
    position: absolute;
}
.contact-form .checkbox input:checked + label:after {
    background: #E74C3C;
    border-color: #E74C3C;
}
.contact-form .checkbox input:checked + label svg {
    opacity: 1;
}
.contact-form .checkbox label {
    cursor: pointer;
    font: 400 16px/24px "Open Sans", sans-serif;
}
.contact-form .checkbox label span {
    font-size: 14px;
    line-height: 24px;
    color: #292929;
}
.contact-form .checkbox label span sup {
    color: #E74C3C;
}
.contact-form .checkbox label svg {
    position: absolute;
    pointer-events: none;
    left: 2px;
    top: 6.5px;
    z-index: 2;
    opacity: 0;
    transition: 0.35s;
}
.contact-form .checkbox label a {
    color: #292929;
}
.contact-form .checkbox label:after {
    content: "";
    height: 16px;
    width: 16px;
    border: 1px solid #434343;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    transition: 0.35s;
}

.modal {
    opacity: 0;
    pointer-events: none;
    transition: 0.35s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 10px;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .contact-form {
    max-width: 100%;
}
.modal__wrap {
    background: #FFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    position: relative;
    max-width: 550px;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}
@media (max-width: 576px) {
    .modal__wrap {
        overflow-y: scroll;
        max-height: 600px;
    }
}
.modal__header {
    padding: 20px 25px;
    position: relative;
}
@media (max-width: 990px) {
    .modal__header {
        padding: 15px;
    }
}
.modal__footer {
    padding: 20px 25px;
    background: #F9F9F9;
}
@media (max-width: 990px) {
    .modal__footer {
        padding: 15px 15px 5px 15px;
    }
}
.modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}
.modal__title {
    color: #292929;
    margin: 0 0 14px 0;
    font: 700 24px/34px "Futura", sans-serif;
}
.modal__text {
    font: 400 18px/28px "Open Sans", sans-serif;
    color: #292929;
    margin: 0 0 15px 0;
}
.modal__btn {
    max-width: 150px;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    padding: 13px;
    background: #E74C3C;
    display: flex;
    font: 400 16px/24px "Open Sans", sans-serif;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.35s;
    text-transform: uppercase;
    text-decoration: none;
}
.modal__btn:hover {
    background: #BD3D30;
}
.modal__subtitle {
    color: #B8B8B8;
    margin: 0 0 12px 0;
    font: 400 18px/28px "Open Sans", sans-serif;
}
@media (max-width: 990px) {
    .modal__subtitle {
        margin-bottom: 10px;
    }
}
.modal__link {
    color: #000;
    margin: 0 0 20px 0;
    text-decoration: none;
    display: block;
    font: 400 20px/32px "Open Sans", sans-serif;
}
@media (max-width: 990px) {
    .modal__link {
        margin-bottom: 10px;
    }
}
.modal__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.modal__social a {
    font: 400 20px/32px "Open Sans", sans-serif;
    color: #000;
    transition: 0.35s;
    text-decoration: none;
    margin: 0 10px 10px 0;
}
.modal__social a:hover {
    color: #E74C3C;
}

.active__modal {
    opacity: 1;
    pointer-events: auto;
}
.active__modal .bg-dark {
    opacity: 0.7;
    pointer-events: auto;
}

.cookie-modal {
    position: fixed;
    right: 25px;
    bottom: 25px;
    padding: 15px 25px;
    background: #fff;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    z-index: 9;
    transition: 0.35s;
}
@media (max-width: 990px) {
    .cookie-modal {
        padding: 10px;
        bottom: 15px;
        width: 100%;
        box-sizing: border-box;
        right: 10px;
    }
}
@media (max-width: 576px) {
    .cookie-modal {
        margin: 0 15px;
        width: auto;
        right: auto;
    }
}
.cookie-modal__title {
    margin: 0 0 14px 0;
    color: #292929;
    font: 500 26px/36px "Futura", sans-serif;
}
@media (max-width: 990px) {
    .cookie-modal__title {
        font: 500 24px/30px "Futura", sans-serif;
        margin: 0 0 10px 0;
    }
}
.cookie-modal__text {
    margin: 0 0 14px 0;
    font: 400 16px/24px "Open Sans", sans-serif;
}
@media (max-width: 576px) {
    .cookie-modal__text {
        font: 400 14px/22px "Open Sans", sans-serif;
        margin: 0 0 10px 0;
    }
}
.cookie-modal__text a {
    color: #E74C3C;
    text-decoration: underline;
}
.cookie-modal__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}
@media (max-width: 990px) {
    .cookie-modal__btn {
        grid-gap: 10px;
    }
}
.cookie-modal__btn a {
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    padding: 13px;
    background: #E74C3C;
    border: 1px solid #E74C3C;
    display: flex;
    font: 400 16px/24px "Open Sans", sans-serif;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.35s;
    text-transform: uppercase;
    text-decoration: none;
}
@media (max-width: 576px) {
    .cookie-modal__btn a {
        padding: 8px;
    }
}
.cookie-modal__btn a:hover {
    border-color: #BD3D30;
    background: #BD3D30;
}
.cookie-modal__btn a:last-child {
    color: #292929;
    background: transparent;
}
.cookie-modal__btn a:last-child:hover {
    background: #BD3D30;
    color: #fff;
    border-color: #BD3D30;
}

.cookie-modal--disabled {
    opacity: 0;
    pointer-events: none;
}

.cookie-setting .modal__wrap {
    max-width: 800px;
}
.cookie-setting__top {
    padding: 20px 25px;
    background: #F9F9F9;
}
@media (max-width: 990px) {
    .cookie-setting__top {
        padding: 15px;
    }
}
.cookie-setting__title {
    margin: 0 0 14px 0;
    color: #292929;
    font: 500 26px/36px "Futura", sans-serif;
}
@media (max-width: 990px) {
    .cookie-setting__title {
        font: 500 24px/30px "Futura", sans-serif;
        margin: 0 0 10px 0;
    }
}
.cookie-setting__text {
    margin: 0 0 14px 0;
    font: 400 16px/24px "Open Sans", sans-serif;
}
.cookie-setting__text a {
    text-decoration: underline;
    color: #E74C3C;
}
@media (max-width: 576px) {
    .cookie-setting__text {
        font: 400 14px/22px "Open Sans", sans-serif;
        margin: 0 0 10px 0;
    }
}
.cookie-setting__text a {
    color: #E74C3C;
    text-decoration: underline;
}
.cookie-setting__bottom {
    padding: 15px 25px;
}
@media (max-width: 990px) {
    .cookie-setting__bottom {
        padding: 15px;
    }
}
.cookie-setting__btn {
    padding: 0 0 15px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
}
@media (max-width: 576px) {
    .cookie-setting__btn {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}
.cookie-setting__btn a {
    margin: 0 0 0 16px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #B8B8B8;
    text-decoration: none;
    height: 42px;
    color: #292929;
    font: 400 16px/24px "Open Sans", sans-serif;
    transition: 0.35s;
}
@media (max-width: 576px) {
    .cookie-setting__btn a {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
}
.cookie-setting__btn a:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.cookie-setting__btn a svg {
    margin: 0 8px 0 0;
}
.cookie-setting__btn-2 {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 576px) {
    .cookie-setting__btn-2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin-top: 20px;
    }
}
.cookie-setting__btn-2 a {
    margin: 0;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 50px;
    color: #fff;
    font: 400 16px/24px "Open Sans", sans-serif;
    background: #E74C3C;
    transition: 0.35s;
}
@media (max-width: 576px) {
    .cookie-setting__btn-2 a {
        padding: 10px;
        height: auto;
    }
}
.cookie-setting__btn-2 a svg {
    margin: 0 8px 0 0;
}
.cookie-setting__btn-2 a:first-child {
    background: transparent;
    color: #B8B8B8;
    padding: 0;
}
@media (max-width: 576px) {
    .cookie-setting__btn-2 a:first-child {
        margin-bottom: 10px;
    }
}
.cookie-setting__btn-2 a:last-child {
    text-transform: uppercase;
}
.cookie-setting__btn-2 a:last-child:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.cookie-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #E5E5E5;
}
@media (max-height: 768px) {
    .cookie-item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}
.cookie-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .cookie-item__top {
        display: grid;
        grid-template-columns: 1fr 62px;
        grid-gap: 5px;
    }
}
.cookie-item__title {
    margin: 0;
    font: 500 22px/36px "Futura", sans-serif;
}
@media (max-width: 768px) {
    .cookie-item__title {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
.cookie-item__drop {
    display: flex;
    margin-left: auto;
    margin-right: 50px;
    align-items: center;
    cursor: pointer;
}
@media (max-width: 768px) {
    .cookie-item__drop {
        margin: 0;
    }
}
.cookie-item__drop span {
    color: #B8B8B8;
    font: 400 16px/24px "Open Sans", sans-serif;
}
.cookie-item__drop span:nth-child(2) {
    display: none;
}
.cookie-item__drop svg {
    margin: 0 0 0 10px;
}
.cookie-item__drop-active span:first-child {
    display: none;
    color: #292929;
}
.cookie-item__drop-active span:nth-child(2) {
    display: block;
    color: #292929;
}
.cookie-item__drop-active svg {
    transform: rotate(-180deg);
}
.cookie-item__drop-active svg path {
    fill: #292929;
}
.cookie-item__btn {
    background: #E5E5E5;
    border-radius: 100px;
    width: 62px;
    height: 32px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}
.cookie-item__svg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 27px;
    width: 27px;
    transition: 0.35s;
    background: #fff;
    border-radius: 50%;
    left: 3.5px;
}
.cookie-item__svg svg {
    position: absolute;
    opacity: 0;
}
.cookie-item__svg .minus {
    opacity: 1;
}
.cookie-item__bottom {
    display: none;
    margin-top: 5px;
}
.cookie-item__bottom p {
    font: 400 16px/24px "Open Sans", sans-serif;
    color: #292929;
}
.cookie-item__bottom-active {
    display: block;
}
.cookie-item__btn-active {
    background: #1CC691;
}
.cookie-item__btn-active .cookie-item__svg {
    transform: translateX(27px);
}
@media (max-width: 576px) {
    .cookie-item__btn-active .cookie-item__svg {
        transform: translateX(28px);
    }
}
.cookie-item__btn-active .minus {
    opacity: 0;
}
.cookie-item__btn-active .plus {
    opacity: 1;
}

.upload-file input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.upload-file__text {
    color: #B8B8B8;
    margin: 0;
    font: 400 18px/28px "Open Sans", sans-serif;
}
@media (max-width: 990px) {
    .upload-file__text {
        font: 400 16px/24px "Open Sans", sans-serif;
    }
}
.upload-file__output {
    margin-right: auto;
    font: 400 16px/24px "Open Sans", sans-serif;
    margin-left: 20px;
    color: #292929;
    width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 576px) {
    .upload-file__output {
        margin: 0;
        width: auto;
    }
}
.upload-file__dismiss {
    display: none;
    align-items: center;
    justify-content: center;
    color: #E74C3C;
    cursor: pointer;
    font: 400 16px/24px "Open Sans", sans-serif;
}
@media (max-width: 990px) {
    .upload-file__dismiss {
        align-items: center;
        justify-content: flex-start;
    }
}
.upload-file__dismiss svg {
    margin-right: 8px;
}
.upload-file .dismiss-active {
    display: flex;
}
.upload-file__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    .upload-file__box {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}
.upload-file__label {
    padding: 13px;
    max-width: 160px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 400 16px/24px "Open Sans", sans-serif;
    color: #292929;
    text-transform: uppercase;
    cursor: pointer;
    height: 50px;
    transition: 0.35s;
}
@media (max-width: 576px) {
    .upload-file__label {
        max-width: 100%;
    }
}
.upload-file__label:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.newsletter-modal .modal__wrap {
    padding: 30px 25px;
    max-width: 620px;
}
@media (max-width: 990px) {
    .newsletter-modal .modal__wrap {
        padding: 35px 15px 20px 15px;
    }
}
.newsletter-modal .footer__form {
    margin-top: 0;
}
.newsletter-modal__title {
    margin: 0 0 14px 0;
    color: #292929;
    font: 700 24px/34px "Futura", sans-serif;
}
@media (max-width: 990px) {
    .newsletter-modal__title {
        margin: 0 0 12px 0;
        font: 700 22px/32px "Futura", sans-serif;
    }
}
.newsletter-modal .footer__form-row input {
    color: #292929;
    background: #F9F9F9;
    font: 400 16px/24px "Open Sans", sans-serif;
}
.newsletter-modal .footer__form-row input::placeholder {
    color: #292929;
}
.newsletter-modal .footer__form-row button {
    font: 400 16px/24px "Open Sans", sans-serif;
    color: #fff;
    text-transform: uppercase;
}
.newsletter-modal .footer__form .checkbox span {
    color: #292929;
    font: 400 14px/24px "Open Sans", sans-serif;
}
.newsletter-modal .footer__form .checkbox a {
    color: #292929;
    font: 400 14px/24px "Open Sans", sans-serif;
    text-decoration: underline;
}
