.form_section {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
}

.form_section .banner_contain {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5% 10% 0 10%;
    background: #012c50;
    text-align: center;
}

.form_section .banner_contain h1 {
    font-size: 60px;
    color: white;
    line-height: .8;
}

.form_section .banner_contain span {
    font-size: 25px;
    color: #012c50;
    background: #f9f3dc;
    padding: 3px 40px;
    border-radius: 20px;
}

.form_section .banner_contain h2 {
    font-size: 25px;
    color: white;
    margin-top: 5%;
}

.form_section .banner_contain p {
    color: white;
}

.form_section .media_contain {
    display: flex;
    justify-content: center;
}

.form_section .media_contain img {
    width: 100%;
}

.form_section .form_contain {
    padding: 10%;
}

.form_section .form_contain h2 {
    color: #012c50;
    font-size: 25px;
    line-height: 2;
}

.form_section .form_contain p {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0;
    color: #000000a0;
}

.form_section .form_contain .input_contain {
    margin: 20px 0;
}

.form_section .form_contain ::placeholder {
    color: #ffffffa8;
}

.form_section .form_contain input {
    color: white;
    background: #00b3ff;
    border: 0;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    transition: .5s;
}

.form_section .form_contain label {
    font-size: 14px;
    color: #012c50;
}

.form_section .form_contain textarea {
    color: white;
    background: #00b3ff;
    border: 0;
    padding: 10px;
    border-radius: 8px;
    min-width: 100%;
    max-width: 100%;
    min-height: 50px;
    max-height: 100px;
    transition: .5s;
}

.form_section .form_contain :focus-visible {
    outline: 0;
    background: #0094d3;
    color: white;
}

.form_section .form_contain .row {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.form_section .form_contain .row input {
    width: 49%
}

.form_section .form_contain .column p {
    font-size: 14px;
    font-weight: 600;
    color: #012c50;
}

.form_section .form_contain .options_contain {
    display: flex;
    gap: 0 20px;
    margin-bottom: 20px;
}

.form_section .form_contain .options_contain_contain {
    flex-direction: column;
    gap: 5px;
}

.form_section .form_contain .ans_contain {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form_section .form_contain .ans_contain input {
    width: fit-content;
}

.form_section .form_contain .sender_container {
    display: flex;
    justify-content: space-between;
}

.form_section .form_contain .sender_container button {
    font-size: 16px;
    color: white;
    background: #012c50;
    padding: 5px 50px;
    border: 0;
    border-radius: 5px;
    transition: .25s;
}

.form_section .form_contain .sender_container button:hover {
    background: #00b3ff;
    cursor: pointer;
}

.form_section .form_contain .sender_container button i {
    margin-left: 10px;
    transition: .25s;
}

.form_section .form_contain .sender_container button:hover i {
    transform: translateX(5px);
}

.form_section .form_contain .sender_container .dot-wave {
    display: none;
}

@media (max-width: 996px) {
    .form_section {
        grid-template-columns: 100%;
    }
    .form_section .banner_contain {
        position: relative;
        height: 100%;
    }
    .form_section .banner_contain h1 {
        font-size: 40px;
        line-height: 1;
    }
    .form_section .banner_contain span {
        font-size: 20px;
    }
    .form_section .banner_contain h2 {
        font-size: 20px;
    }
    .form_section .banner_contain p {
        font-size: 14px;
    }
    .form_section .media_contain img {
        width: 100%;
    }
    .form_section .form_contain {
        padding: 5%;
    }
    .form_section .form_contain h2 {
        font-size: 22px;
    }
    .form_section .form_contain .input_contain {
        margin: 20px 0;
    }
    .form_section .form_contain .row {
        flex-direction: column;
    }
    .form_section .form_contain .row input {
        width: 100%;
        margin-bottom: 10px;
    }
    .form_section .form_contain .column p {
        font-size: 14px;
        font-weight: 600;
        color: #012c50;
    }
    .form_section .form_contain .options_contain {
        display: flex;
        gap: 20px 0;
        margin-bottom: 20px;
    }
    .form_section .form_contain .options_contain_contain {
        flex-direction: column;
        gap: 5px;
    }
    .form_section .form_contain .ans_contain {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .form_section .form_contain .ans_contain input {
        width: fit-content;
    }
    .form_section .form_contain .sender_container {
        display: flex;
        justify-content: space-between;
    }
    .form_section .form_contain .sender_container button {
        font-size: 16px;
        color: white;
        background: #012c50;
        padding: 5px 50px;
        border: 0;
        border-radius: 5px;
        transition: .25s;
    }
    .form_section .form_contain .sender_container button:hover {
        background: #00b3ff;
        cursor: pointer;
    }
    .form_section .form_contain .sender_container button i {
        margin-left: 10px;
        transition: .25s;
    }
    .form_section .form_contain .sender_container button:hover i {
        transform: translateX(5px);
    }
    .form_section .form_contain .sender_container .contact_message {
        display: none;
    }
    .form_section .form_contain .sender_container #contact_loader {
        display: none;
    }
}


/* Popup Section */

.popup_section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000074;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    z-index: 99;
}

.popup_section_active {
    visibility: visible;
    opacity: 1;
}

.popup_section_disable {
    visibility: hidden;
    opacity: 0;
}

.popup_section .popup_contain {
    position: relative;
    width: 80%;
    height: 90%;
    background: #012c50;
    border-radius: 20px;
}

.popup_section .popup_contain i {
    position: absolute;
    top:0;
    right: 0;
    transform: translate(30%, -30%);
    font-size: 50px;
    color: #0094d3;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    transition: .25s;
}

.popup_section .popup_contain i:hover {
    color: white;
}

@media (max-width: 996px) {
    .popup_section .popup_contain {
        position: relative;
        width: 90%;
        height: 95%;
        background: #012c50;
        border-radius: 20px;
    }
}


/* From uiverse.io by @G4b413l */

.dot-wave {
    --uib-size: 50px;
    --uib-speed: 0.6s;
    --uib-color: #012c50;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: calc(var(--uib-size) * 0.17);
    padding-top: calc(var(--uib-size) * 0.34);
}

.dot-wave__dot {
    flex-shrink: 0;
    width: calc(var(--uib-size) * 0.17);
    height: calc(var(--uib-size) * 0.17);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
}

.dot-wave__dot:nth-child(1) {
    animation: jump824 var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.45) infinite;
}

.dot-wave__dot:nth-child(2) {
    animation: jump824 var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.3) infinite;
}

.dot-wave__dot:nth-child(3) {
    animation: jump824 var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.15) infinite;
}

.dot-wave__dot:nth-child(4) {
    animation: jump824 var(--uib-speed) ease-in-out infinite;
}

@keyframes jump824 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-200%);
    }
}