body.overflow-hidden {
    overflow: hidden;
}

.section {
    width: 1360px;
    margin: auto;
}

.background-nude-color {
    background: #E0E0E0;
}

.background-white-color {
    background: #FFFFFF;
}

.background-black-color {
    background: #2A2A2A;
}

h2 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    font-feature-settings: 'liga' off;
    color: #000000;
}

h3, .font-size-20 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    font-feature-settings: 'liga' off;
    color: #000000;
}

.font-size-60 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 60px;
    font-feature-settings: 'liga' off;
}

.font-size-18 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    font-feature-settings: 'liga' off;
}

.font-size-16 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-feature-settings: 'tnum' on, 'lnum' on, 'liga' off;
}

.font-size-14 {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
}

a {
    font-family: Font_Awesome_5_Free, sans-serif;
    color: #000000;
    text-decoration: none;
}

.line-hovered, header .header-link .black-button {
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
}

.line-hovered {
    color: #000000;
}

.hovered {
    position: relative;
}

.line-hovered:after, .hovered:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s;
}

.hovered-white:after {
    background: #FFFFFF;
}

.line-hovered:hover:after, .hovered:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.black-button {
    background-color: #2A2A2A;
    color: #FFFFFF;
    padding: 4px 12px 2px 12px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s;
}

.black-button:hover {
    background-color: transparent;
    color: #000000;
}

input, textarea {
    font-family: Font_Awesome_5_Free, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    font-feature-settings: 'liga' off;
    border: none;
    border-bottom: 1px solid #E7E7E7;
    transition: border-bottom-color 0.5s;
}

input.error, textarea.error {
    border-bottom: 1px solid red;
}

input {
    position: relative;
    padding-bottom: 8px;
    max-width: 316px;
    width: 100%;
}

::-moz-placeholder {
    color: #000000;
}

::-webkit-input-placeholder {
    color: #000000;
}

:-ms-input-placeholder {
    color: #000000;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom-color: #000000;
}

textarea {
    resize: vertical;
    height: 98px;
    width: 100%;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 50%;
    position: absolute;
    top: -1px;
    left: -20px;
}

.custom-checkbox.error + label::before {
    border: 1px solid red;
}

.custom-checkbox:checked + label::before {
    border-color: #000000;
    background-color: #000000;
    background-image: url("../img/check.svg");
}

.custom-file-uploader input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-file-uploader label {
    display: flex;
    align-items: center;
    text-transform: none;
    cursor: pointer;
}

.custom-file-uploader label img {
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

.slider-button {
    display: none !important;
}

#cookies.active {
    visibility: visible;
    opacity: 1;
}

#cookies {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background-color: #2A2A2A;
    display: flex;
    visibility: hidden;
    opacity: 0;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    color: #FFFFFF;
    transition: opacity 0.5s, visibility 0.5s;
}

#cookies div {
    padding-top: 5px;
    display: flex;
    text-transform: none;
}

#cookies a {
    color: #FFFFFF;
}

#cookies button {
    cursor: pointer;
    padding: 6px 22px;
    border-radius: 6px;
    box-shadow: 0 2px 2px -2px rgba(34, 38, 50, 0.3);
    border: none;
    margin-left: 10px;
    color: #000000;
}

.copyright {
    justify-content: unset !important;
    flex-wrap: nowrap;
    flex-direction: row !important;
}

.copyright span {
    transform: translateY(-2px);
    margin-right: 6px;
}

@media screen and (max-width: 1400px) {
    .section {
        width: 960px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    h3, .font-size-20 {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (max-width: 1200px) {
    input {
        max-width: 250px;
    }
}

@media screen and (max-width: 992px) {
    .section {
        width: 540px;
    }

    .font-size-60 {
        font-size: 48px;
        line-height: 48px;
    }
}

@media screen and (max-width: 580px) {
    .section {
        width: calc(100% - 24px);
        padding: 0 12px;
    }

    .font-size-60 {
        font-size: 40px;
        line-height: 40px;
    }

    h3, .font-size-20 {
        font-size: 16px;
        line-height: 22px;
    }

    input {
        max-width: 100%;
    }

    textarea {
        height: 89px;
    }

    .custom-file-uploader label img {
        width: 16px;
        height: 16px;
    }

    .line-hovered:after, .hovered:after {
        display: none;
    }

    #cookies {
        padding: 6px 12px;
        width: calc(100% - 24px);
    }

    #cookies a {
        max-width: 268px;
        width: 100%;
    }
}