

.project-details{
  position: relative;
}

.project-details .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-details .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.project-details .image-box .image:hover img{
  transform: scale(1.05);
}

.project-details .content-box{
  position: relative;
  display: block;
}

.project-details .content-box h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 22px;
}

.project-details .content-box p{
  margin-bottom: 26px;
}

.project-details .content-box p:last-child{
  margin-bottom: 0px;
}

.project-details .content-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 22px;
}

.project-sidebar{
  position: relative;
  display: block;
  background: #E7F9FC;
  padding: 42px 40px;
}

.project-sidebar h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-sidebar p{
  margin-bottom: 18px;
}

.project-sidebar .info-list li{
  position: relative;
  display: block;
  font-size: 18px;
  color: #222;
  margin-bottom: 14px;
}

.project-sidebar .info-list li:last-child{
  margin-bottom: 0px;
}

.project-sidebar .info-list li a{
  display: inline-block;
  color: #222;
}

.project-sidebar .info-list li a:hover{
  text-decoration: underline;
}

.project-sidebar .info-list li span{
  position: relative;
  display: inline-block;
  width: 100px;
  font-weight: 500;
}

.project-sidebar .info-list li i{
  font-size: 14px;
  color: #FF8A00;
  margin-right: 4px;
}

.project-details .project-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.project-details .project-btn:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0px;
}

.project-details .project-btn .single-btn{
  position: relative;
  display: block;
}

.project-details .project-btn .single-btn .link{
  position: absolute;
  top: 0px;
}

.project-details .project-btn .single-btn .link a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #222;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.project-details .project-btn .single-btn .link a:hover{
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.project-details .project-btn .single-btn.prev-btn .link{
  left: 0px;
}

.project-details .project-btn .single-btn.next-btn .link{
  right: 0px;
}

.project-details .project-btn .single-btn.next-btn{
  text-align: right;
}

.project-details .project-btn .single-btn h4{
  display: block;
  font-size: 20px;
  line-height: 25px;
}

.project-details .project-btn .single-btn span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 25px;
  color: #6E6E6E;
}


























