/* Fonts  */






/* colours  */

:root {
  --primary: #03A62C;
  --secondary: #2A2C39;
  --ternery:#E5FFEB;
  --prim-font: #949494;
  
}
p{
  font-size: 0.9rem;
  color: var(--prim-font);
  line-height: 1.7rem;
}

/* Basic css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}




/* Needed Styles */
.project-listbx{
  margin-bottom: 40px;
}
.proj-imgbx{
  width: 100%;
  height: auto;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}
.proj-imgbx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s all ease-in-out;
}
.proj-imgbx:hover img{
  transform: scale(1.1);
}
.proj-tit{
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 0px 0px 0px;
}
.proj-date{
  color: #949494;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding-top: 5px;
}

.mySwiper .swiper-slide {
  width: 10%;
  height: auto;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%!important;
  height: 100%;
  object-fit: cover;
}
.proj-spec{
  list-style: none;
  margin: 20px 0px;
}
.proj-spec li{
  width: 100%;
  padding: 15px 0px;
  display: inline-flex;
  justify-content: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #e9e9e9;
}
.proj-spec li:last-child{
  border-bottom: 0;
}
.proj-spec-tit{
  width: 42%;
}
.proj-spec-val{
  width: 50%;
  margin-left: 6%;
}
.proj-spec-tit{
  color: #888888;
}
.proj-spec-val{
  font-weight: 500;
}