.contact__us__section {
    position: relative;
    max-width: 1100px;
    margin-inline: auto;
    padding: 50px;
    padding-right: 0;
    border-radius: 24px;
    box-shadow: rgb(149 157 165 / .2) 0 8px 24px;
    margin-bottom: 60px;
    overflow: hidden
}

    .contact__us__section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        background: #014293
    }

    .contact__us__section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 50px;
        background: #014293;
        z-index: 1
    }

.contact__row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 5
}

.conteact__left h1 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #01479f;
    font-weight: 500
}

    .conteact__left h1::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        border-radius: 6px;
        background: #014293
    }
.conteact__left form .form__field {
    margin-bottom: 30px;
}
.conteact__left form input {
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding-left: 12px;
    font-size: 14px;
    padding-bottom: 6px;
    transition: 0.3s ease
}
.conteact__left form .form__field .field-validation-error {
    font-size: 12px;
    padding-top: 4px;
    color: red;
}

.conteact__left form textarea {
    border: none;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    font-family: "Poppins",sans-serif;
    transition: 0.3s ease;
    padding-left: 12px
}

    .conteact__left form textarea:focus-visible {
        outline: none;
        transform: scale(1.05)
    }

.conteact__left form input:focus-visible {
    transform: scale(1.05);
    outline: none
}

.conteact__left form button {
    margin-top: 20px
}

.contact__right {
    box-shadow: rgb(0 0 0 / .16) 0 1px 4px;
    background: #f7f7f7;
    padding: 50px 30px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: 1px solid #ddd;
    position: relative
}

    .contact__right h3 {
        position: relative;
        display: inline-block;
        font-size: 24px;
        color: #01479f;
        font-weight: 500;
        padding-bottom: 6px;
        margin-bottom: 20px
    }

        .contact__right h3::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 100%;
            border-radius: 6px;
            background: #014293
        }

    .contact__right p {
        display: flex;
        align-items: flex-start;
        font-size: 16px;
        color: #666;
        gap: 15px;
        padding-bottom: 20px
    }

        .contact__right p img {
            width: 20px
        }

@media (max-width:1160px) {
    .contact__us__section {
        margin-inline: 20px
    }

    .conteact__left {
        background: #fff
    }
}

@media (max-width:800px) {
    .contact__us__section {
        padding: 0;
        box-shadow: none;
        border-radius: 0
    }

        .contact__us__section::before {
            background: #fff0
        }

    .conteact__left {
        padding: 20px;
        box-shadow: rgb(0 0 0 / .16) 0 1px 4px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        border: 1px solid #ddd
    }

        .conteact__left h1 {
            padding-top: 20px
        }

    .contact__row {
        grid-template-columns: 1fr
    }

    .contact__right {
        padding-block: 20px
    }
}
