.main{
    background-color: #272d2d;
    background: url("../assets/decorations/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    display: flex;
    min-height: 300px;
    align-items: flex-end;
    overflow-x: hidden;
    
}

.main h1{
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    color: #fff;
    mix-blend-mode: overlay;
}

.form-section{
    display: flex;
    justify-content: space-evenly;
    padding: 150px 50px;
    min-height: 400px;
    max-width: 1600px;
    margin: auto;
}

.form-section-left{
    width: 30%;
}

.form-section-left h2{
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 46px;
    color: #272D2D;
    padding-bottom: 30px;
}

.form-section-left p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #272D2D;
}



.form-section-right{
    width: 40%;
    background: #F2F9FC;
    box-shadow: 0px 10px 30px rgba(0, 49, 82, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
}


.form-section-right form{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 70px;
    box-sizing: border-box;
}

.form-section-right form #name,
.form-section-right form #email,
.form-section-right form #message{
    padding: 10px;
    margin: 8px;
    border: none;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #272D2D;
}

.form-section-right form button{
    align-self: flex-end;
    margin: 20px 0;
    width: 220px;
    border: 1px solid transparent
}

.form-section-right form button:hover{
    cursor: pointer;
}

@media screen and (max-width: 1024px){

    .form-section{
        flex-direction: column;
    }

    .form-section div{
        width: 100%;
    }

    .form-section-right{
        margin-top: 30px;
    }

    .form-section-right form button{
        align-self: center;
    }

}

@media screen and (max-width: 550px){

    .form-section-right form{
        padding: 15px;
    }

}

@media screen and (max-width: 450px){

    .form-section{
        padding: 30px 10px;
    }

    .form-section-left h2{
        line-height: 1.1;
    }

}

@media screen and (max-width: 320px){

    .main h1{
        font-size: 50px;
        line-height: 1.1;
    }

}

@media screen and (max-width: 275px){

    .form-section-right form button{
        width: auto;
    }

}


.form-section {
    /* background-image: url("/assets/images/dots.svg"); */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;

}