/*CARDS*/
.hero {
    width: 100%;
}
.text-white {
    padding-left: 30px;
    padding-right: 30px;
}
.cards {
    display: flex;
    margin: 8%;
    flex-flow: row wrap;
    justify-content: center;
}
.card {
    margin: 1rem;
    padding: 15px;
    width: 400px;
    display: flex;
    align-items: center;
    box-shadow: 2px 5px 5px gray !important;
}

.card:hover {
    cursor: pointer;
    color: #fff;
    background-color: rgb(147, 147, 147);
    transition: 0.5s;
    transform: scale(1.08, 1.08);
}

.card-title {
    color: #141414;
    text-align: center;
}

.card .divider {
    width: 80%;
    height: 5px;
    background-color: rgb(118, 199, 239);
    margin: 4px 0 4px 0;
}

.card ul {
    margin-right: 10px;
}


/*COMPANY DATAS*/

.companyPart {
    margin-top: none;
    display: block;
    padding: 0 30px 0 30px;
}

.company {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
}

.companyText .divider {
    width: 11%;
    height: 5px;
    background-color: rgb(118, 199, 239);
    margin: 15px 0 15px 0;
}
.serviceTitle {
    display: flex;
    flex-direction: row;
}
.services {
    width: 100%;
    padding: 0 30px 0 30px;
}

.service {
    margin: 40px 0 40px 0;
}

.serviceIcon {
    border-radius: 30%;
    margin: 10px;
}

.serviceIcon:hover {
    cursor: pointer;
    transition: 0.5s;
    transform: scale(1.08, 1.08);
}

/*IFRAME MAP*/

.mapHeader {
    margin-top: 30px;
    margin-left: 1.5rem;
}

.map .divider {
    width: 10%;
    height: 5px;
    background-color: rgb(118, 199, 239);
    margin: 15px 0 15px 0;
}

.mapIframe {
    display: flex;   
    flex-direction: row;
    justify-content: center;
    margin-top: 0px;
}

/*CAROUSEL REVIEWS*/

/* .review h1 {
    margin-top: 70px;
    margin-left: 4rem;
}

.review .divider {
    width: 5%;
    height: 5px;
    background-color: rgb(118, 199, 239);
    margin: 15px 0 5px 4rem;
} */

/*CONTACT FORM*/

.contactForm {
    margin-top: 60px;
}

#contact {
    width: 100%;
}

#formTitle {
    text-align: center;
}

#contact {
    padding: 29px;
    background-color: #fff;
    border-radius: 2%;
    box-shadow: 5px 5px 5px gray;
}

#contact input,
select {
    height: 87px;
}

.input {
    margin-bottom: 20px;
}

#contact button {
    margin-top: 20px;
    width: 100%;
    height: 100px;
}

.comment {
    font-style: italic;
    font-size: 18px;
    color: #d82c2e;
    height: 15px;
}

.success {
    color: green;
    font-size: 26px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

/*FOOTER*/

footer {
    height: 200px;
    width: 100%;
    background-color: #1c3b6d;;
    margin-bottom: -20px;
    margin-top: 100px;
}

.footerText p{
    display: flex;
    justify-content: center;
    padding-top: 40px;
    color: #fff;
    font-weight: bold;
    padding-left: 70px;
    padding-right: 70px;
}

a{
    color: #fff !important
}

a:hover {
    text-decoration:underline !important;
}

