@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);
/* projects cart container start  */
.projects-cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 35px;
  padding: 80px 140px;
}
.projects-cart-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.projects-cart-title h2 {
  color: #282828;
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
}

.projects-cart-title p {
  color: #5f6980;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
.project-cart-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 35px;
  padding: 30px;
  background-color: #f3f5f7;
  border-radius: 24px;
}
.cart-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccf1b5;
  border-radius: 16px;
  max-height: 450px;
  width: 100%;
}
.cart-item-image .item-image {
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.cart-item-image .item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.cart-item-image .item-image:nth-child(3) {
  display: none;
}

.cart-item-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.cart-item-text h3 {
  color: #282828;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
.cart-item-text p {
  color: #596780;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
}
.cart-services {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 20px;
}
.cart-services li {
  color: #5f6980;
  font-weight: 600;
  line-height: 28px;
  font-size: 16;
  border-radius: 100px;
  background-color: #ffffff;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cart-item-image {
  background-color: #b5f1f1;
}
/* projects cart container end  */

/* media queries */
@media (max-width: 1200px) {
  section {
    padding: 48px 24px !important;
  }
}
@media (max-width: 991px) {
  .project-cart-item {
    padding: 16px;
  }
  .cart-item-image .item-image:first-child,
  .cart-item-image .item-image:nth-child(2) {
    display: none;
  }
  .cart-item-image .item-image:nth-child(3) {
    display: block;
  }
}
@media (max-width: 576px) {
  .projects-cart-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .projects-cart-title p {
    text-align: center;
  }
  .cart-item-image .item-image {
    height: 270px;
  }
}
