.container {
    background: var(--secondary-color);
    padding: 20px 10px;
    font-family: "Public sans", "Roboto", sans-serif;
    margin: 20px 0;
    border-radius: 7px;
    display: flex;
    align-items: flex-start;
}

.main {
    /* width: 60%; */
    width: 100%;
}

.head {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5rem;
    text-transform: capitalize;
}

.sub_head {
    margin: 10px 0px;
    font-size: 12px;
    line-height: 1.1rem;
}

.form {
    margin: 10px 0px;
}

.submit_btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px 0px;
    background: var(--gradient);
    font-weight: 600;
    outline: none;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.illustration {
    background: url("/static/svg/academy/request-a-call-svg.svg") no-repeat
        center center/cover;
    width: 40%;
    display: none;
}

@media screen and (min-width: 350px) {
    .head {
        font-size: 18px;
        line-height: 1.7rem;
    }
    .sub_head {
        font-size: 15px;
        margin: 20px 0px;
        line-height: 1.4rem;
    }
}

@media screen and (min-width: 750px) {
    .container {
        padding: 40px 20px;
    }

    .main {
        width: 60%;
    }
    .head {
        font-size: 24px;
        line-height: 2.2rem;
    }
    .sub_head {
        font-size: 18px;
        margin: 20px 0px;
        line-height: 1.8rem;
    }
    .illustration {
        display: block;
        height: 250px;
    }
}

@media screen and (min-width: 1050px) {
    .container {
        margin-bottom: 40px;
    }
    .form {
        display: flex;
        align-items: flex-start;
    }
    .submit_btn {
        width: 250px;
        margin-top: 0px;
        margin-left: 20px;
    }
    .head {
        font-size: 32px;
        line-height: 2.8rem;
    }
    .illustration {
        height: 300px;
    }
}
