.banner {
    position: relative;
    z-index: 5;
    padding: 7.375rem 4.75rem 7.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.banner::before {
    content: "";
    position: absolute;
    top: -5.813rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(180deg, #00020f 0%, #061676 100%);
    opacity: 0.72;
}
.banner-img {
    position: absolute;
    top: -5.813rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 5.8rem);
    object-fit: cover;
    z-index: -2;
}
.banner_content {
    flex: 1 0 0;
}
.banner_content_label {
    color: #4edceb;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 1.5rem;
    font-style: italic;
}
.banner_content_title {
    color: white;
    font-size: 2.5rem;
    font-family: "Plus Jakarta Sans", Sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.banner_content_desc {
    color: white;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}
.banner_content_desc p {
    margin-bottom: 1rem;
}
.banner_content_tel {
    display: block;
    margin-top: 1.5rem;
    color: white;
    font-size: 1.25rem;
    font-family: "Plus Jakarta Sans", Sans-serif;
}
.banner_content_tel strong {
    font-weight: 700;
    color: #4edceb;
}
.banner_form {
    width: 50%;
    padding: 3.125rem;
    background: #1e149d69;
    border-radius: 3rem;
}
.banner_form_label {
    color: white;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2rem;
}
@media (max-width: 639px) {
    .banner {
        padding: 3.875rem 1.118rem 4.875rem;
        flex-direction: column;
    }
    .banner_content_title {
        font-size: 1.563rem;
    }
    .banner_form {
        width: 100%;
        padding: 1.25rem;
        border-radius: 2rem;
    }
    .banner_form_label {
        font-size: 1.563rem;
    }
    .contact_form_input {
        width: 50%;
    }
}
