#contact-container {
    width: 80%;
    margin: auto;
    gap: 150px;
    margin: 150px auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

#contact-header {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
}

.contact-heading {
    font-size: 60px;
    color: #12AAFB;
}

.contact-paragraph {
    width: 100%;
    font-size: 20px;
    margin-bottom: 50px;
}

#contact-info {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #A8A8A8;
}

#contact-info h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

#contact-info p {
    font-size: 20px;
    color: #B8B8B8;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.contact-info-item img {
    height: 50px;
    width: 50px;
}

#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background-color: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(5px);
    padding: 50px;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 50%;
    min-width: 250px;
    padding: 15px 0;
    border: none;
    background-color: inherit;
    font-size: 15px;
    font-weight: 700;
    border-bottom: white solid 2px;
}

#contact-form textarea {
    resize: vertical;
    width: 90%;
    height: 75px;

}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: white;
    font-family: poppins, sans-serif;
    font-weight: 700;
    font-size: 15px;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-bottom: white solid 2px;
}

#contact-form button {
    width: fit-content;
    padding: 10px 25px;
    margin-top: 20px;
    background-color: White;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #12AAFB;
    cursor: pointer;
    transition: 0.3s all;
}

#contact-form button:hover {
    background-color: #12AAFB;
    color: white;
    transition: 0.3s all;
}





#contract-options {
    display: flex;
    flex-direction: row;
    margin: 20px 0 0 0;
    justify-content: baseline;
    gap: 30px;
    padding: 0;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: white solid 2px;
    flex-wrap: wrap;
}

#monthly_option-label,
#one_time_payment_option-label,
#contact_us_option-label {
    width: 200px;
    text-wrap: nowrap;
}

#monthly_option,
#one_time_payment_option,
#contact_us_option {
    min-width: 20px;
    min-height: 20px;
}

.contract-option-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-align: start;
    width: 200px;
}


@media screen and (max-width: 1200px) {
    #contact-container {
        flex-direction: column;
        width: 90%;
        gap: 100px;
    }

    #contact-header {
        width: 100%;
    }

    .contact-heading {
        font-size: 48px;
    }

    .contact-paragraph {
        width: 80%;
        margin-bottom: 20px;
    }

    #contact-info {
        width: 90%;
        padding-left: 0;
        border-left: none;
    }

}


@media screen and (max-width: 768px) {
    #contact-container {
        width: 90%;
        flex-wrap: wrap;
        text-align: center;
        gap: 100px;
    }

    #contact-header {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        height: fit-content;
        align-items: baseline;
        text-align: left;
    }

    .contact-heading {
        font-size: 48px;
    }

    .contact-paragraph {
        width: 80%;
        margin-bottom: 0;
    }

    #contact-info {
        width: 90%;
        margin: auto;
        padding: 0;
        border-left: none;
        justify-content: baseline;
    }

    #contact-form {
        padding: 10px;
        border-radius: 0;
    }

    #contact-form input,
    #contact-form textarea {
        width: 100%;
    }

    #contract-options {
        margin: 0;
        gap: 20px;
        width: 250px;
    }

    #contract-options:last-child {
        padding: 0 0 20px 0;
        margin: 0;
    }

    #contact-info h3 {
        color: #12AAFB;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: left;
    }

    #contact-info {
        margin: 0;
    }

    #contact-info p {
        text-align: left;
        padding-bottom: 10px;
    }
}