/* Slider */

#slider{
    /* height: 500px; */
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subcontainer{
    width: 80%;
    margin: auto;
} 

.slide-img{
    width: 100%;
    height: 100px;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    cursor: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.slide-img:hover{
    box-shadow: 0 0 0 200px rgb(0, 0, 0, 0.9) inset;
}
.slide-img a{
    opacity:0;
    text-decoration: none;
    transform: scale(0);
    transition: 0.8s;
    font-size: 1.5rem;
    color: white;
}
.slide-img:hover a{
    opacity: 1;
    transform: scale(1);
}

@media(max-width:1600px){
     .container{
        width: 100%;
     }
}


.our-clients-section{
    margin-bottom:2.143em;   
    padding:2.143em 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 8px 20px rgba(85, 89, 93,0.2);
    -webkit-box-shadow: 0px 8px 20px rgba(85, 89, 93,0.2);
    -moz-box-shadow: 0px 8px 20px rgba(85, 89, 93,0.2);
  }
  
  #our-client-thumb{
    position: relative;
    padding: 0 30px;
    text-align: center;
  }

/** Map **/
#map {
    border: 1px solid white;
    height: 130px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}
.mapouter{position:relative;text-align:right;height:136px;width:100%;}
.gmap_canvas {overflow:hidden;background:none!important;height:136px;width:100%;}

