#contact-main-banner{
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(150, 150, 150);
}
.contact-main-banner-writ{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10rem;
}
.contact-main-banner-writ h1{
    font-family: "DM Sans", sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 70px;
}
.contact-main-banner-writ p{
    font-family: "DM Sans", sans-serif;
    font-size: 1.3rem;
    color: #000000;
    margin-block: 2.5rem;
}
.contact-main-banner-writ a{
    text-decoration: none;
    color: #fff;
    padding: .75rem 2rem;
    font-size: 1.3rem;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(15, 15, 15) 1%, rgb(40, 41, 40));
    display: inline-block;
    margin-top: 1.5rem;
}
.contact-main-banner-writ img{
    display: inline-block;
    margin-top: 20rem;
}

#section-two{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-block: 7rem;
    background-color: rgb(240, 240, 240);
}
.section-two-div{
    padding-block-start: 4rem;
    width: 20%;
    box-shadow: 0 0 12px #9A9A9A;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
}
.section-two-div > div{
    padding: 1rem;
}
.section-two-div i{
    font-size: 3.5rem;
    color: rgb(40, 41, 40);
}
.section-two-div h4{
    color: #427834;
    margin-block-end: .5rem;
    margin-block-start: 3rem;
    font-family: "DM Sans", sans-serif;
}
.section-two-div p{
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
}

#section-three{
    background-color: rgb(240, 240, 240);
    font-family: "DM Sans", sans-serif;
    margin-block-end: 0rem;
}
form{
    padding-block: 2rem;
}
#section-three > p{
    width: 60%;
    text-align: center;
    margin: auto;
}
#section-three h2{
    text-align: center;
    color: rgb(40, 41, 40);
    font-size: 2.5rem;
}
.section-three-div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-block-start: 2rem;
}
.section-three-div >div{
    width: 40%;
}
form input, form textarea{
    width: 80%;
    height: 45px;
    border: 1px solid rgb(220, 220, 220);
    padding: .5rem 1rem;
    border-radius: 5px;
    display: block;
    margin: .4rem auto;
}
form textarea{
    height: 150px;
}
form button{
    border: none;
    border-radius: 5px;
    width: 80%;
    display: block;
    margin: 1rem auto;
    color: #fff;
    padding: .65rem 3rem;
    background-image: linear-gradient(90deg, rgb(15, 15, 15) 1%, rgb(40, 41, 40));
}
@media screen and (max-width: 600px){
    #contact-main-banner{
        height:auto;
    }
    .contact-main-banner-writ{
        top: 120px;
        height: auto;
        color: #fff;
        display: block;
        padding-inline: 1rem;
    }
    .contact-main-banner-writ h1{
        font-size: 2.5rem;
        line-height: 30px;
    }
    .contact-main-banner-writ p{
        font-size: 1rem;
        margin-block: 2rem;
    }
    .contact-main-banner-writ img{
        display: block;
        margin-top: 2rem;
        margin-right: 5rem;
        width: 100%;
    }
    #section-two{
        display: block;
        padding: 2rem 1rem;
    }
    .section-two-div{
        padding-block-start: 4rem;
        width: 100%;
        margin-block-end: 1rem;
    }
    #section-three > p{
        width: 90%;
    }
    .section-three-div{
        display: block;
        margin-block-start: 2rem;
    }
    .section-three-div >div{
        width: 100%;
    }
    .section-three-div iframe{
        max-width: 100%;
    }
}