@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
*{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}
p{
    line-height: 2;
    font-weight: 300;
}
.container{
    width: 80%;
    margin: auto;
}
/* Bread crumbs Style */
.bread_crumbs{
    width: 80%;
    margin: auto;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    color: #303030;
}
.bread_crumbs span{
    margin: 0 15px;
}
.bread_crumbs a{
    color: #303030;
    text-decoration: none;
    color: #b1b1b1;
    font-weight: 300;
}
/* Main Section Style */
.main_container{
    width: 80%;
    margin: auto;
    padding: 50px 0;
}
.main_cap{
    font-size: 1.5em;
    color: #303030;
    font-weight: 400;
    line-height: 1.5;
}
.work_sec {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.works {
    width: 30%;
    position: relative;
    margin-top: 50px;
}
.works img {
    width: 100%;
    height: 100%;
}
.wrk_details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 99%;
    height: 100%;
    margin: auto;
    background-color: rgba(18, 118, 188, 0.53);
    border: 4px solid rgba(0, 0, 0, 0.24);
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: all 0.3s ease-in-out 0s;
}
.works:hover .wrk_details{
  opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: transform 1s ease, opacity 1.3s ease;
    transition: transform 1s ease, opacity 1.3s ease;
}
.wrk_details p:nth-child(1) {
    margin: auto;
    display: block;
    margin-top: 27%;
    font-weight: 500;
    font-size: 1.5em;
    
}
.inner_div{
    margin-top: 30px;
}
.main_img{
    width: 40%;
    float: left;
    margin-right: 30px;
}
.description h3{
    color: #303030;
    font-weight: 400;
    font-size: 22px;
}
.description p:nth-child(2){
    margin-top: 20px;
}
.description h4{
    color: #303030;
    font-weight: 400;
    font-size: 18px;
    margin-top: 20px;
}
.description ul{
    list-style: none;
    display: flex;
    margin-top: 10px;
    padding: 0;
}
.description p,.description ul li{
    color: #888;
}
.list {
    text-align: justify;
    margin-top: 10px;
    font-size: 15px;
    text-indent: 30px;
}
.imgs_div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.imgs_div img{
    width: 17%;
    border: 1px solid #d8d8d8;
}
iframe {
    width: 100%;
    height: 270px;
}
/* Media Query */
@media only screen and (max-width: 960px){
   
}
@media only screen and (max-width: 768px){
   .work_sec{
      display: block;
   }
   .works{
      width: 100%;
      margin: auto;
      display: block;
      margin-top: 30px;
   }
}
@media only screen and (max-width: 500px){
   
}





