.section-9{
    background: #7a73fd;
    color: white;
    margin: 5rem 10% 20% 10%;
    padding: 5% 15%;
    border-radius: 40px;
}

.section-9 .section-9-heading h2{
    font-size: 3.5rem;
    font-weight: 400;
    padding-bottom: 5rem;
}

.section-9 .section-9-content form input:nth-child(2){
    margin: 2rem 0;
}

.section-9 .section-9-content form input,
.section-9 .section-9-content form .selects select,
.section-9 .section-9-content form textarea{
    padding: 1.5rem;
    color: #211f54;
    border-radius: 40px;
    border: none;
    width: 100%;
}

.section-9 .section-9-content form input::placeholder,
.section-9 .section-9-content form textarea::placeholder{
    color: #211f54;
    font-size: 1.1rem;
}

.section-9 .section-9-content form .selects{
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
}

.section-9 .section-9-content form .selects select{
    max-width: 48%;
    font-size: 1.1rem;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3csvg xmlns%3d%22http%3a//www.w3.org/2000/svg%22 viewBox%3d%220 0 4 4%22%3e%3cpath fill%3d%22%23ccc%22 d%3d%22M2 4L0 0h4z%22/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 2rem center; 
    background-size: 0.65em auto;
}

.section-9 .section-9-content form textarea{
    resize: none;
    min-height: 15rem;
}

.section-9 .section-9-content form .submit{
    display: flex;
    justify-content: end;
    padding: 2rem 0;
}

.section-9 .section-9-content form input[type="submit"]{
    background: none;
    border: 5px solid white;
    border-radius: 40px;
    padding: 1rem 5rem;
    width: fit-content;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.section-9 .section-9-content form input[type="submit"]:hover{
    background: white;
    color: #7a73fd;
    transition-property: background, color;
    transition-duration: .5s;
}

.section-9 .section-9-img{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -50%;
}

.section-9 .section-9-img img{
    width: 90vw;
}


@media screen and (max-width: 1300px) {
    .section-9{
        padding: 5% 10%;
    }
}

@media screen and (max-width: 1000px) {

    .section-9 .section-9-heading h2{
        font-size: 3rem;
    }

    .section-9 .section-9-content form .selects{
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
    }

    .section-9 .section-9-content form .selects select{
        max-width: 100%;
        font-size: 1.1rem;
    }

    .section-9 .section-9-content form .selects select:first-of-type{
        margin-bottom: 2rem;
    }
}



@media screen and (max-width: 600px) {

    .section-9{
        padding: 5% 5%;
        margin: 5rem 10% 40% 10%;

    }
    
    .section-9 .section-9-heading h2{
        font-size: 2.5rem;
    }

    .section-9 .section-9-content form input::placeholder,
    .section-9 .section-9-content form textarea::placeholder{
        font-size: 1rem;
    }

    .section-9 .section-9-content form .selects select{
        font-size: 1rem;
    }

    .section-9 .section-9-content form input[type="submit"]{
        padding: 1rem 2rem;
        font-size: 1.25rem;
        width: 100%;
    }

}

@media screen and (max-width: 480px) {

    .section-9 .section-9-heading h2{
        font-size: 2rem;
    }
}