h4.contact-title {
    margin-bottom: 30px;
}

.contacts label.checkbox-label,
.contacts label.checkbox-label a {
    color: #191A1C
}

.contacts label.checkbox-label input {
    margin-right: 4px;
}

.contacts .input-group {
    position: relative;
    width: 100%;
}

.contacts .input-group input {
    width: 100% !important;
}

/* Alert */
.contacts .alert-message {
    bottom: -34px;
}

/* Success */
.contact-form-success {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-success__text {
    font-weight: 600;
}

/* Btn */
.contact__wrapper .button:not(.button-icon):hover,
.contact__wrapper .button:not(.button-icon):active,
.contact__wrapper .button:not(.button-icon):focus {
    color: #191A1C !important;
}

/* Checkbox */
.custom-checkbox-contact {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 1.4;
}

/* Скрываем нативный чекбокс */
.custom-checkbox-contact .input-privacy {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Кастомный чекбокс */
.custom-checkbox-contact .checkmark-contact {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border: 2px solid #191A1C;
    background-color: transparent;
    border-radius: 3px;
    transition: all 0.2s ease;
}

/* Эффект при наведении */
.custom-checkbox-contact:hover .input-privacy~.checkmark-contact {
    background-color: rgba(248, 179, 36, 0.1);
}

/* Стиль когда чекбокс отмечен */
.custom-checkbox-contact .input-privacy:checked~.checkmark-contact {
    background-color: transparent;
}

/* Создаем галочку (скрытую по умолчанию) */
.custom-checkbox-contact .checkmark-contact:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #191A1C;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Показываем галочку когда отмечено */
.custom-checkbox-contact .input-privacy:checked~.checkmark-contact:after {
    display: block;
}

@media(max-width:1100px) {
    .contact__group {
        max-width: 700px;
    }
}

@media only screen and (max-width : 768px) {
    h4.contact-title {
        margin-bottom: 30px;
    }
}