.contact {
    width: 100%;
    background-image: -ms-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -moz-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -o-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -webkit-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
}

.contact__content__information {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact_content_card {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 100px 30px;
    margin-left: 0;
    padding: 30px;
    width: calc((80vw / 3) - 30px);
    background-image: -ms-linear-gradient(to right, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -moz-linear-gradient(to right, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -o-linear-gradient(to right, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -webkit-linear-gradient(to right, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.contact_content_card img {
    margin-right: 30px;
    border-right: 2px solid black;
    padding-right: 30px;
}

.contact__content * {
    font-size: 18px !important;
}

.contact__content__information ul {
    padding: 0px;
}

.contact__content__information ul li{
    list-style: none;
}

#contact__content__information__map {
    width: 100vw;
    height: 500px
}

#contact__content__information__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__content__calltoaction {
    display: flex;
    padding: 100px 10%;
    background-image: -ms-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -moz-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -o-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -webkit-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
}

.contact__content__calltoaction img {
    width: 50%;
    height: 50vh;
    object-fit: cover;
}

#contact_content__caltoaction__information {
    padding: 50px;
}

#contact_content__caltoaction__information h2 { 
    font-size: 30px !important;
    margin-bottom: 20px;
}

#contact_content__caltoaction__information button { 
    width: 250px;
    height: 50px;
    border: 0;
    background: #BEA28C;
    color: white;
    border-radius: 10px;
    font-size: 16px !important;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
    margin-top: 50px;
    outline: none;
}

@media only screen and (max-width: 600px) {
    .contact_content_card {
        width: 100%;
        margin: 20px 10px;
        padding: 30px 20px;
    }

    .contact_content_card img {
        width: 40px;
        height: 40px;
        padding-right: 10px;
        margin-right: 10px;
    }

    #contact__content__information__map {
        margin-top: 20px;
    }

    .contact__content__calltoaction {
        flex-direction: column;
        padding: 40px;
    }

    .contact__content__calltoaction img {
        width: 100%;
    }

    #contact_content__caltoaction__information {
        padding: 20px 0px;
    }
}

