body {
    background-color: #f7f7f7;
    font-family: 'Open Sans', sans-serif;
}

.main-content {
    background-color: #f7f7f7;
}

.carousel-caption h1 {
    font-family: 'Didact Gothic', sans-serif;
}

.card-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;   
}

.card-flex .card {  
    margin-bottom: 5%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-flex .card h5 {
    width: fit-content;
    padding:1%;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.5);
}

/* Zoom In */

figure {
    margin: 0;
	padding: 0;
    overflow: hidden;
    }

    figure:hover {
        bottom: -36px;
        opacity: 1; 
    }
    
    .hover01 figure img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    .hover01 figure:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }


/*
.show-serv {
    margin: 3% 0;
    text-align: center;
}


.hidden-services {
    display: none;  
  /*  padding-top: 2%; 
    margin-bottom: 2%;
}

.hidden-services .container{
    display: flex;
    justify-content: space-between;
    padding-top: 2%; 
    padding-bottom: 2%;
    background-color: #F0F0F0;
}
*/


.hidden-services h5 {
    color: #007bff  ;
}

 .fa-check  {
    color: #007bff ;
}

.services {
    margin-bottom: 3%;
}

.accordion .card-header {
    background-color: #f2f2f2 ; 
    text-align: center;
}

.accordion .card-header:hover {
    background-color: #e6e6e6 ;
    text-align: center;
}

.accordion .card-header button {
    width: 100%;
}

.accordion .card-header button:hover {
    text-decoration: none;
}

.service-title {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: row;
    justify-content: space-between;   
}

.service-title div { 
    width: 40%;
}

.service-title .dropdown-divider{
    height: 2px;
    background-color: #003d66;
}

.service-title p {
    font-size: 18px;
    color: #007bff
}

.service-title p:hover {
    cursor: pointer;
    text-decoration: underline;
}

footer {
    margin-top: 5%;
}

@media only screen and (max-width: 765px) {
    #hidden-services .container{
        flex-direction: column; 
    }
  }

@media only screen and (max-width: 800px) {
    .card-flex {
        justify-content: center;   
    }

    .card-flex .card {
        min-width: 350px;   
    }

    .service-title div { 
        width: 30%;
    }

    .service-title p {
        font-size: 16px;
    }
  }

@media only screen and (min-width: 801px) and (max-width: 1000px) {
    .service-title div { 
        width: 35%;
    }
  }

@media only screen and (min-width: 1200px) {
    .card {
        min-width: 350px;   
    }  
  }