/* =======================================
17. Project Details
======================================= */

.project-details {
  padding: 30px 0;
}
    .project-details .project-img{
        min-height:350px;
    }
    .project-details .project-img img {
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px;
        -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        object-fit: contain;
        min-height:300px;
    }

.project-details .project-info {
  border: 1px solid #dddddd;
  border-top: 3px solid #dddddd;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.project-details .project-info h6 {
  color: #444444;
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 30px 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.project-details .project-info ul {
  padding: 20px 30px;
}

.project-details .project-info ul li {
  font-size: 16px;
  color: #969696;
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}

.project-details .project-info ul li span {
  color: #444444;
  display: inline-block;
  width: 100px;
}

.project-details .project-info ul li:first-child {
  padding-top: 0;
}

.project-details .project-info ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.project-details .project-social {
  border: 1px solid #e5e5e5;
  border-top: 3px solid #e5e5e5;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 16px 30px;
}

.project-details .project-social ul li a {
  font-size: 12px;
  color: #969696;
  border: 1px solid #dddddd;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.project-details .project-social ul li a:hover {
  background: #567ed2;
  color: #fff;
  border-color: #567ed2;
}

.project-details .project-social ul li:first-child {
  font-size: 16px;
  color: #444444;
  margin-right: 20px;
}

.project-details .pro-about {
  margin-top: 5px;
  overflow:hidden;
}

    .project-details .pro-about h6 {
        color: #081c63;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 25px;
        font-family: iransannumber;
        display: flex;
        align-items: center;
    }
        .project-details .pro-about h6 i {
            color: #c08a11;
            font-size: 25px;
        
            display:flex;
            align-items: center;
            padding:0 5px;
        }

.project-details .pro-about p {
  font-size: 14px;
  color: #666666;
  line-height: 28px;
/*  margin-bottom: 35px;*/
}

.project-details .pro-about .project-vd {
  background-image: url(../images/vd-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 140px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 40px;
  position: relative;
}

.project-details .pro-about .project-vd:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

.project-details .pro-about .project-vd .vd-table {
  display: table;
  width: 100%;
  height: 100%;
}

.project-details .pro-about .project-vd .vd-table .vd-tablecell {
  display: table-cell;
  vertical-align: middle;
}

.project-details .pro-about .project-vd .vd-table .vd-tablecell a#video-btn {
  font-size: 36px;
  color: #fff;
  background: #05ab90;
  display: inline-block;
  width: 65px;
  height: 65px;
  padding-top: 7px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.project-details .pro-about .project-vd .vd-table .vd-tablecell a#video-btn:before {
  position: absolute;
  content: "";
  background: #567ed2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: -1;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.project-details .pro-about .project-vd .vd-table .vd-tablecell a#video-btn:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.project-details .pro-des {
  margin-bottom: 30px;
}

    .project-details .pro-des h6 {
        color: #081c63;
        font-size:16px;
        font-weight:bold;
        text-transform: uppercase;
        /*margin-bottom: 30px;*/
        font-family: iransannumber;
        display: flex;
        align-items: center;
    }
    .project-details .pro-des h6 i {
        color: #c08a11;
        font-size: 25px;
        display: flex;
        align-items: center;
        padding: 0 5px;
    }
.bi.bi-1-circle-fill{
    width:1.5em;
    height:1.5em;
    margin-left:7px;
    color: #c08a11;
}
p.question-para {
    font-weight: bold;
    color :#081c63 !important;
}
.question-para i {
    color: #c08a11;
}
    .project-details .pro-des p {
        font-size: 14px;
        color: #666666;
        line-height: 28px;
        margin-bottom: 15px;
    }

.project-details .pro-des ul li {
  font-size: 14px;
  color: #666666;
  line-height: 35px;
}

    .project-details .pro-des ul li i {
        font-size: 14px;
        color: #c08a11;
        margin-right: 10px;
    }


.project-dw{
    width:95%;
    margin:auto;
    padding:10px;
    transition:0.5s ease all;
}
    .project-dw:hover {
        border-radius:10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }
    .project-dw .project-dw-0{
        position:relative;
       text-align:center;
       width:115px;
       margin:auto;
    }
        .project-dw .project-dw-0 i {
            position: absolute;
            top: 35px;
            left: 43px;
            font-size: 30px;
        }
        .project-dw .project-dw-0 .bi.bi-fire {
            position: absolute;
            top: 35px;
            left: 43px;
            width:2em;
            height:2em;
        }

    .project-dw .project-dw-0 img {
        width: 115px;
        margin:auto;
        height: 100px;
    }
    .project-dw .project-dw-1{
        margin-top:10px;
    }
    .project-dw .project-dw-1 h6 {
        font-size: 14px;
        font-weight: 600;
        color: #c08a11;
        text-align: center;
    }
    .project-dw .project-dw-1 p {
        font-size: 12px;
        font-family: iransannumber;
        text-align: justify;
    }



/*.first-phase {
    width: 100%;
    margin: 0;
    padding: 10px;
    transition: 0.5s ease all;
    position: relative;
    height: 200px;
    text-align: center;*/
    /* border:1px solid red;*/
/*}

.overlay-1 {
    width: 100%;
    position: absolute;
    top:-20px;
    height: 200px;
    background-image: url('../images/index/1.png');
    background-position: center;
    background-size: contain;
    object-fit: contain;
    filter: blur(8px);
    background-repeat: no-repeat;
    z-index: 0
}
.first-phase-1{
    background-color:rgba(0,0,0,0.5);
}*/


.project-img-static img{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.project-details .pro-about p span img{
    object-fit:contain !important;
    width:95% !important;
    
}