/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/
.white-space {
    height: 80px; 
}

#contact-landing {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#contact-landing picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#contact-landing img {
    width: 100%;
    height: 100%;
}

#contact-landing .content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 550px;
    margin: auto;
    z-index: 2;
}

#contact-landing .cs-title{
    margin: 25px;
    color: #fff;
}

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

    .white-space {
        height: 140px;
    }

    #contact-landing img {
        width: 100%;
        height: 100%;
    }
    
}
/*-- -------------------------- -->
<---        CONTACT             -->
<--- -------------------------- -*/

#contact {
    position: relative;
}

#contact #purple-circle{
    position: absolute;
    left: -10px;
}

#contact #yellow-star{
    position: absolute;
    top: -20px;
    right: 20%;
}

#contact #blue-trinagle{
    position: absolute;
    bottom: 0px;
    right: 5%;
}

#contact .cs-text{
    text-decoration: none;
    opacity: 100;
    color: #121212;
    font-size: 16px;
    font-weight: 400;
}

#contact .cs-title{
    text-align: center;
}

#details .cs-title{
    text-align: left;
}

#details .cs-h3{
    font-weight: 500px;
    color: var(--primary);
}

.contact-form-wrapper, 
.details {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-form-wrapper {
    border-radius: 5px;
    padding: 5px;
    max-width: 475px;
    width: 100%;
}

#contact .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-input {
    color: var(--bodyText);
    font-size: 16px;
    margin-bottom: 16px;
    width: 100%;
    border: 1px solid #1E1E1E;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
}

textarea {
    height: 100px;
    font: 400 12px/16px "Open Sans",Helvetica,Arial,sans-serif;
    resize: none;
    margin-bottom: 30px;
    max-width: 100%;
}

#contact .cs-h2{
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--primary);
}
#contact .button-solid{
    margin-top: 15px;
    width: 100%;
}

#contact .button-solid{
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

/*details */

.details {
    margin-top: 40px;
    padding: 25px;
    background-color: #FFD703;
    box-shadow: 0 0 29px 0 rgb(0 0 0 / 9%);
    width: 100%;
    max-width: 475px;
    border-radius: 15px;
}

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

    #contact .cs-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* This will create two equal-width columns */
        gap: 20px; /* This is the space between the grid items */
        max-width: 970px; /* Adjust this value according to your needs */
        margin: 0 auto; /* This will center the .cs-container */
    }

    .details {
        margin-top: 0px;
        margin-left: 40px;
    }

    #contact .button-solid{
        width: 260px;
    }

}