.contact-page .page-banner {
    padding: 60px 0;
}

.contact-page .box-head {
    max-width: 552px;
    width: 100%;
}

.contact-page .box-contact_form {
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.16);
    padding: 40px;
    position: relative;
    z-index: 5;
}
.contact-page .box-contact_form h4{
    margin-bottom: 40px;
}
.contact-page input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-width: 0 0 1px 0 !important;
    border-style: solid 1 !important;
    border-color: rgba(10, 31, 68, 0.48) !important;
    border-radius: 0 !important;
}

.contact-page  input:focus-visible {
    border-width: 0 0 1px 0 !important;
    border-style: solid 1 !important;
    border-color: rgba(10, 31, 68, 1) !important;
    outline: none;
}

.contact-page .btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border: solid 1px #0A1F44;
    background-color: #fff;
    border-radius: 0;
    height: 44px;
}
.contact-page .btn-submit:hover{
    background-color: var(--color-6EBE13);
    color: #fff;
    border-color: var(--color-6EBE13);
}
.contact-page .box-contact_form .btn-submit::before {
    content: "";
    background-image: url('./images/mail-send-dark.png');
    width: 24px;
    height: 14px;
    display: block;
    background-repeat: no-repeat;
    position: relative;
}
.contact-page .box-contact_form .btn-submit:hover::before{
    background-image: url('./images/mail-send.png');
}
.contact-page .box-contact_form p:has(.btn-submit){
    display: flex;
    justify-content: flex-end;
}
.contact-page .box-contact_form p{
    margin-bottom: 10px;
}
@media screen and (min-width: 990px) {
    .contact-page .box-contact_form {
        margin-top: -140px;
    }
}