
.contact-form{
    background-color: var(--darker-main-2);
    color: white;
    padding: 32px 0;
    margin: 0 auto;
	min-height: 815px;
}

.contact-form .pg-wrapper{
    max-width: 800px;
    border-left: 5px solid white;
    border-right: 5px solid white;

}

.contact-form p{
    margin: 10px 0 16px;
    font-size: 1rem;
    line-height: 140%;
}

.info{
    background-color: var(--lighter-main-3);
    padding-top: 48px;
    padding-bottom: 48px;
}


.info .pg-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
    padding: 48px;
}

.contact:nth-child(2){
    border-top: 2px solid black;
    border-bottom: 2px solid black;

}

.contact-title{
    font-size: 1.5rem;
    font-weight: 600;
}

h2{

    text-align: center;

}

a{
    color: var(--darker-main-5);
}

.contact a:hover{
    color: var(--darker-main-3);
}
@media (min-width:992px){
    .info .pg-wrapper{
        flex-direction: row;
        justify-content: center;
    }

    .contact{
        padding-left: 64px;
        padding-right: 64px;
        width: calc(100% / 3);
        max-width: 400px;
    }

   

    .contact:nth-child(2){
        border-left: 2px solid black;
        border-right: 2px solid black;
        border-top: none;
        border-bottom: none;
    }

    h2{

        font-size: 3rem;
        margin-bottom: 24px;
    }
    .info{
        padding-bottom: 80px;
    }
}

@media (min-width: 1200px){

}