﻿.page-content-area {
    padding-bottom: 90px;
    padding-top: 20px;
}

.contact-informations-and-form {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.contact-form-area {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

    .contact-form-area form .form-group {
        display: flex;
        flex-direction: column;
        row-gap: 6px;
    }

        .contact-form-area form .form-group label {
            font-family: Inter;
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #000000;
        }

        .contact-form-area form .form-group input {
            font-family: Inter;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000000;
            padding: 12px 16px;
            border: 1px solid #D0D5DD;
            /*border-radius: 8px;*/
            box-shadow: none;
            outline: none;
        }

.contact-form-title {
    font-family: Inter;
    font-size: 28px;
    line-height: 38px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-form-area form .form-group textarea {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    /*border-radius: 8px;*/
    box-shadow: none;
    outline: none;
    min-height: 128px;
    max-height: 128px;
    resize: none;
}

.contact-form-area form .form-check {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

    .contact-form-area form .form-check .form-check-input {
        margin-left: 0;
        margin-top: 0;
        width: 20px;
        height: 20px;
        border: 1px solid #D0D5DD;
        background: #fff;
        border-radius: 6px;
        box-shadow: none!important;
        outline: none!important;
    }

        .contact-form-area form .form-check .form-check-input:checked {
            background: #D1000F;
            border: 1px solid #D1000F;
            position: relative;
        }
            .contact-form-area form .form-check .form-check-input:checked::after {
                content: "\f00c";
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                color: #fff;
                font-size: 12px;
            }

    .contact-form-area form .form-check .form-check-label {
        font-family: Inter;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000000;
    }

        .contact-form-area form .form-check .form-check-label a {
            color: #000000;
            text-underline-offset: 4px;
        }

.contact-form-area form .submit-button {
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #D1000F;
    text-transform: uppercase;
    padding: 12px;
    background: #fff;
    border: 1px solid #D1000F;
    width: 100%;
    box-shadow: none;
    outline: none;
    transition: .4s;
}

    .contact-form-area form .submit-button:hover {
        color: #fff;
        background: #d1000f;
        transition: .4s;
    }

.contact-informations-area {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.contact-informations {
    display: flex;
    flex-direction: column;
}

.contact-information {
    display: flex;
    flex-direction: row;
    row-gap: 9px;
    column-gap: 0px;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.contact-informations .contact-information:last-child {
    border: none;
}

.contact-information .contact-information-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22.4px;
    color: #838383;
    vertical-align: middle;
    width: 85px;
    min-width: 85px;
}

.contact-information-value {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    color: #838383;
    vertical-align: middle;
}

    .contact-information-value a {
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 22.4px;
        color: #838383;
        vertical-align: middle;
        text-decoration: none;
    }

.contact-informations-title {
    font-family: Inter;
    font-size: 28px;
    line-height: 38px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
}

@media only screen and (max-width: 425px)
{
    .contact-information {
        flex-direction: column;
    }
}