.contactSection{
    width: 100%;
    height: auto;
    padding: 100px 0;
    overflow: hidden;
}

.contactFormHere{
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 0;
}

.contactFormHere>div {
    width: 100%;
}

.coFoContent{
    display: flex;
    flex-direction: column;
}

.coFoContent>h1{
    font-size: 300%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
    margin-bottom: 200px;
}

.coFoContent>p{
    width: 90%;
    font-size: 100%;
    font-family: var(--font2);
    font-weight: 500;
    line-height: 1.5;
    margin-top: auto;
}

.contactForm>form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
}

.contactForm>form>input{
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    border-radius: var(--br1);
    font-family: var(--font2);
    font-size: 100%;
    font-weight: 500;
    line-height: 1.5;
}

.mailInput{
    grid-area: 2 / 1 / 3 / 3;
}

.messageInput{
    grid-area: 3 / 1 / 4 / 3;
}

.contactForm>form>textarea{
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    border-radius: var(--br1);
    font-family: var(--font2);
    font-size: 100%;
    min-height: 200px;
    font-weight: 500;
    line-height: 1.5;
    resize: none;
}

.contactForm>form>input:focus, .contactForm>form>textarea:focus{
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.cSubmitButton{
    grid-area: 4 / 2 / 5 / 3;
    background-color: black;
    color: white;
    padding: 20px 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    font-size: 100%;
    border-radius: var(--br1);
    cursor: pointer;
}

@media only screen and (max-width: 1400px) {
    .coFoContent>h1 {
        font-size: 250%;
    }

    .coFoContent>p {
        font-size: 95%;
    }
}

@media only screen and (max-width: 1080px) {
    .coFoContent>h1 {
        font-size: 200%;
    }

    .coFoContent>p {
        font-size: 90%;
    }
}

@media only screen and (max-width: 992px) {
    .contactFormHere{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }
    .coFoContent>h1 {
        font-size: 250%;
        width: 90%;
    }
    .coFoContent>p {
        font-size: 95%;
        width: 90%;
    }
}

@media only screen and (max-width: 768px) {
    .contactForm>form{
        display: flex;
        flex-direction: column;
    }
    .mailInput{
        grid-area: auto;
    }
    
    .messageInput{
        grid-area: auto;
    }
    .cSubmitButton{
        width: fit-content;
    }
}

@media only screen and (max-width: 576px) {
    .coFoContent>h1 {
        font-size: 200%;
    }
    .coFoContent>p {
        font-size: 90%;
    }
}