/* Contact us form section */
/* Last edited by NK on 13-11-2024 at 17:58 Hours */

section.contact-form-section {}

section.contact-form-section .main-container {
    width: 100%;
    background: #fff;
    padding: 3em;
}

section.contact-form-section .main-container .main-content-wrapper {
    align-items: center;
    justify-content: space-between;
    display: flex;
}

section.contact-form-section .main-container .main-content-wrapper .left-side {}

.main-container .main-content-wrapper .left-side::before {
    content: "";
    position: absolute;
    height: 85%;
    width: 2px;
    right: 1em;
    top: 12em;
    transform: translateY(-50%);
    background: #afafb6;
}

.main-content-wrapper .left-side .details {
    margin-bottom: 2em;
}

.details .contact-topic {
    font-weight: 400;
    font-size: 1.3em;
    letter-spacing: -0.5px;
    color: var(--dark-color);
}

.main-content-wrapper .left-side .details:last-child {
    margin: 0;
}

.main-content-wrapper .left-side .details.email {
    height: auto;
    font-size: inherit;
}

.main-content-wrapper .left-side .details i {
    font-size: 30px;
    color: var(--deep-green-color);
    margin-bottom: 10px;
}

.main-content-wrapper .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}

.main-content-wrapper .left-side .details .contact-details-text {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--dark-color);
}

.contact-details-text a {
    color: var(--dark-color);
}

.main-container .main-content-wrapper .right-side {
    width: 75%;
    margin-top: 23px;
}

.main-content-wrapper .right-side .topic-text {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -1px;
}

.main-container .main-content-wrapper .right-side p {
    margin: 1em 0;
    letter-spacing: -0.5px;
    font-weight: 400;
}

.right-side .input-box {
    height: 55px;
    width: 100%;
    margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1em;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 0 15px;
    letter-spacing: -0.4px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #000;
}

.right-side .message-box {
    min-height: 110px;
}

.right-side .input-box textarea {
    padding-top: 6px;
}

.right-side .button {
    display: inline-block;
    margin-top: 1em;
    float: right;
}

.right-side .button input[type="submit"] {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    width: 10em;
    outline: none;
    border: none;
    padding: 0.5em;
    border-radius: 1.5em;
    background: var(--deep-green-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.button input[type="submit"]:hover {
    background: var(--dark-color);
}

@media (max-width: 950px) {
    .main-container {
        width: 90%;
        padding: 30px 40px 40px 35px;
    }

    .main-container .main-content-wrapper .right-side {
        width: 75%;
        margin-left: 55px;
    }
}

@media (max-width: 820px) {
    .main-container {
        margin: 40px 0;
        height: 100%;
    }

    .main-container .main-content-wrapper {
        flex-direction: column-reverse;
    }

    .main-container .main-content-wrapper .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-container .main-content-wrapper .left-side::before {
        display: none;
    }

    .main-container .main-content-wrapper .right-side {
        width: 100%;
        margin-left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .right-side .button {
        height: auto;
        width: auto;
        float: right;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background-color: transparent;
    }

    section.contact-form-section .main-container {

        padding: 2%;
    }
}