html {
    font-size: 10px;
    font-family: 'Segoe UI';
    font-weight: 400;
}

body {
    font-size: 1.6rem;
    background: #fff url('/assets/images/global/bg.svg') no-repeat center top / cover;
}

.container {
    max-width: 1950px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 5.3rem;
    text-align: center;
    color: #006DB2;
    border-bottom: 1px solid rgba(33, 33, 33, .1);
    padding: 40px 15px;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.button-primary,
.link-primary {
    width: 100%;
    max-width: 189px;
    border: 1px solid #000;
    color: #000;
    background-color: transparent;
    font-family: 'Segoe UI';
    font-weight: 400;
    font-size: 1.6rem;
    text-transform: uppercase;
    transition: .4s all;
}

.button-primary {
    height: 37px;
}

.link-primary {
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 37px;
}

.button-primary:hover,
.link-primary:hover {
    color: #fff;
    background-color: #000;
}

.form {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 19px 146px 33px 99px;
}

.form__title {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 4.3rem;
    color: #000;
    margin-bottom: 33px;
}

.input {
    height: 35px;
    border: none;
    padding: 19px 10px;
    border-bottom: 1px solid #000;
    font-family: 'Segoe UI';
    font-weight: 400;
    font-size: 1.6rem;
    font-style: italic;
    color: #000;
    width: 100%;
    max-width: 312px;
}

.input::placeholder {
    color: rgba(0, 0, 0, .5);
}

.form-policy {
    margin: 16px 0 39px;
    width: 100%;
    max-width: 312px;
}

.form-policy label {
    display: flex;
}

.form-policy input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-policy-text {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #000;
}

.form-policy-text span {
    opacity: 0.5;
}

.form-policy-text {
    display: inline-flex;
    align-items: start;
    user-select: none;
    position: relative;
}

.form-policy-text::before {
    content: '';
    position: relative;
    bottom: -4px;
    display: inline-block;
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #000;
    border-radius: 2px;
    margin-right: 6px;
    cursor: pointer;
}

.form-policy-text::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: #000;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 3px;
    top: 7px;
}

.form-policy-text.empty-checkbox::before {
    border: 1px solid #ff0000;
}

.custom-checkbox>input[type="checkbox"]:checked+.form-policy-text::after {
    visibility: visible;
    opacity: 1;
}

.form-policy-text a {
    color: #000;
    display: inline-block;
}

.form-policy-text a:hover {
    text-decoration: none;
}

.error-message {
    font-size: 1rem;
    line-height: 1.3rem;
    color: #ff0000;
    opacity: 0.5;
    display: none;
    margin: 5px 0 0 10px;
}

.error-message.show {
    display: block;
}

.form__submit.submitted {
    color: #fff;
    background-color: #006DB2;
    border: 1px solid #006DB2;
}

@media screen and (max-width: 1199px) {

    .title {
        font-size: 3.2rem;
        line-height: 4.3rem;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 1023px) {

    .form {
        padding: 19px 50px 33px 30px;
    }

}

@media screen and (max-width: 767px) {

    .form {
        padding: 19px 30px 33px 30px;
    }

    .title {
        padding: 20px 15px;
    }

    .slick-prev,
    .slick-next {
        width: 30px;
        height: 60px;
    }

}