@import url("https://fonts.googleapis.com/css2?family=Cormorant&family=Lato:wght@300;400;700&family=Raleway:wght@300&display=swap");
@font-face {
  font-family: "Neutral-Normal";
  src: url(../fonts/NeutralFace.otf);
}
@font-face {
  font-family: "Neutral-Bold";
  src: url(../fonts/NeutralFace-Bold.otf);
}
.wrapper {
  width: 100%;
  height: 100%;
  background-color: #2A2C2E;
}
.wrapper .content {
  background-color: #2A2C2E;
}
.wrapper .content .project__pagination {
  margin-top: 117px;
  padding-bottom: 160px;
  display: flex;
  justify-content: center;
}
.wrapper .content .project__pagination .pagination {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #F9F9FA;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  color: #478ACD;
  border: 1px solid #F9F9FA;
  border-radius: 5px;
  margin: 0 15px;
}
.wrapper .content .project__pagination .pagination.active {
  background-color: #478ACD;
  color: #F9F9FA;
  border: 1px solid #478ACD;
}

.project__cart-grid {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.project__cart {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.project__cart .cart {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}

@media only screen and (max-width: 680px) {
  .pagination {
    margin: 0 10px !important;
  }
  .project__pagination {
    margin-top: 60px !important;
  }
}