@import url("main.inc.css");

/* Styles specific for contact.inc.php */

/*
This stylesheet handles styles specific for contact.inc.php.
It is included by index.php.


***************************
** Begin Default Styling **
*/

#contact .contact-cards-container {
    position: relative;
}

#contact .contact-cards {
    display: flex;
    flex-direction: column;
}

#contact .card {
    background-color: rgba(255,255,255,0.80);
    width: 100%;
    max-width: 410px;
    max-height: 410px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    border: var(--border)       ;
    border-radius: var(--borderRadius);
}

#contact .card + .card {
    margin-top: 48px;
}

#contact .card img {
    height: 66px;
    margin-bottom: 96px;
}

#contact .card a {
    word-break: break-word;
}

#contact .card > div > p:first-child, #contact .card .nap > p:first-child {
    font-weight: 600;
    margin-bottom: 24px;
}

#contact .nap {
    margin-top: unset;
}

#contact #arrow2 {
    height: 192px;
    bottom: -240px;
    right: 0;
    transform: rotateY(180deg);
}

#contact .contact-form {
    margin-top: 240px;
}

#contact .contact-form h2 {
    text-align: center;
}

/*
** End Default Styling **
*************************
*/

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

    #contact .contact-cards {
        flex-direction: unset;
        justify-content: space-between;
    }

    #contact .card {
        width: calc(33% - 32px);
        max-width: 480px;
        margin-left: unset;
        margin-right: unset;
    }

    #contact .card + .card {
        margin-top: unset;
    }

} /* End of 1140px */