﻿.contact-container {
    width: 100%;
    height: 560px;
    background-image: url(../../images/contact.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 55%;
    background-position-x: center;
    color: #003d82;
}

.form-container {
    background-color: #f0f0f3;
    padding: 50px 25px;
}

.form {
    margin:10px auto;
    padding: 25px;
    background: #ffffff;
}

.form label{
    margin:0 !important;
}

    .form input, .form textarea, .form select {
        width: 100%;
        margin-bottom: 15px;
        padding: 5px 10px;
        border-width: thin;
        outline: none;
        background: #ffffff;
    }

form a{
    width:150px;
}

.multiple-contacts-container {
    width: 100%;
    background-color: white;
}

.multiple-contacts {
    width: 100%;
    background-color: white;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.single-contact {
    width:calc(99% / 5);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    color: #003d82;
    background-color: #fefefe;
    opacity:0.5;
    overflow:hidden;
}

.single-contact2 {
    width: calc(99% / 4);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    color: #003d82;
    background-color: #fefefe;
    opacity: 0.5;
    overflow: hidden;
}

    .single-contact > .contact-type-icon {
        margin: 5px auto 25px auto;
        display: flex;
    }

    .single-contact > .contact-type-icon > i {
        margin:auto;
    }


/* Desktop Styles */
@media (min-width: 770px) {

    .form {
        width: 70%;
    }

    .multiple-contacts-container {
        padding: 1% 5% 1% 5%;
    }
}

/* Mobile Styles */
@media (max-width: 770px){
    .form {
        width: 100%;
    }

    .form-container {
        width: 100%;
    }

    .multiple-contacts-container {
        padding: 15px 0px !important;
    }

    .multiple-contacts {
        padding:25px;
    }

    .single-contact {
        width: 100%;
        margin: 15px 0px;
        background-color: #f0f0f3;
    }

}