/* connect css starts here*/
.connect{
    padding: 100px 0;
}
.connect h3{
    color: var(--text-primary, #15171B);
    text-align: center;
    font-family: var(--font-family-family, Sora);
    font-size: var(--heading-h3-size, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--heading-h3-line-height, 56px);
    margin-bottom: 24px;
}
.connect .contact_options{
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}
.connect .contact_options .contact_option {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #DDE2F3;
    background: #FFF;
}
.connect .contact_options .contact_option img{
    width: 56px;
    height: 56px;
    aspect-ratio: 1 / 1;
}
.connect .contact_options .contact_option h4{
    color: #15171B;
    text-align: center;
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-xlg-size, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-xlg-line-height, 32px);
    margin-bottom: -16px;
}
.connect .contact_options .contact_option p{
    color: var(--text-secondary, #35393F);
    text-align: center;
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-md-size, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-md-line-height, 24px);
}
.connect .contact_options .contact_option a{
    display: block;
    text-decoration: none;
    color: #15171B;
    text-align: center;
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-lg-size, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-lg-line-height, 32px);
}

@media(max-width:1024px){
    .contact_banner .contact_us{
        flex-direction: column;
    }
    .connect .contact_options {
        flex-wrap: wrap;
    }
    .connect .contact_options .contact_option {
        flex: 1 1 calc(50% - 24px);
    }
    .connect .contact_options .contact_option:last-child{
        max-width: 50%;
        margin: auto;
    }
}
@media(max-width:767px){
    .contact_banner .contact_us .subtitle{
        margin-left: auto;
    }
    .contact_banner .contact_us h1{
        color: var(--text-white, #FFF);
        text-align: center;
        font-family: var(--font-family-family, Sora);
        font-size: var(--heading-h1-size, 28px);
        font-style: normal;
        font-weight: 600;
        line-height: var(--heading-h1-line-height, 40px);
    }
    .contact_us .right_side form p {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* align-items: flex-end; */
        gap: 20px;
    }
    .contact_us .right_side form {
        padding: 16px;
        border-radius: 12px;
    }
    .contact_us .right_side form .vsform-submit-container > p > .vsform-submit-container {
        max-width: 100%;
    }
    .contact_us .right_side form .vsform-submit-container > p > .vsform-submit-container::before {
        top: 0;
        left: 60%;
        transform: translate(-50%, 60%);
    }
    .contact_us .right_side form .vsform-submit-container .wpcf7-submit{
        width: 100%;
        max-width: 100%;
    }
    .connect .contact_options .contact_option:last-child {
        max-width: 100%;
        margin: auto;
    }
}
