@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "area-normal", sans-serif;
  font-style: normal;
  line-height: 1.5em;
}

body {
  background-color: #F7F7F7;
}

.container {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  overflow: hidden;
}

.content {
  margin: 0rem 7rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10rem;
}

.page-description {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.grid {
  margin-top: 2rem;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}
.grid .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  width: 100%;
}
.grid .row .container-all {
  height: 300px;
  border: 1px solid black;
  cursor: pointer;
}
.grid .row .container-all .image-container {
  transition: ease-in-out 0.3s;
}
.grid .row .container-all .image-container .image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid .row .container-all .image-container:hover {
  opacity: 0.5;
}
.grid .row .container-all .popup-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  z-index: 100;
}
.grid .row .container-all .popup-image span {
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 60px;
  font-weight: bolder;
  color: rgb(200, 200, 200);
  cursor: pointer;
  z-index: 100;
  transition: ease-in-out 0.2s;
}
.grid .row .container-all .popup-image span:hover {
  color: #ffffff;
}
.grid .row .container-all .popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  margin-top: 15rem;
}
footer .socials {
  margin: 0rem 5rem;
  display: flex;
  justify-content: space-between;
}
footer .socials .media {
  display: flex;
  gap: 2rem;
}
footer .socials .media p a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-size: 0.95rem;
}
footer .content {
  margin: 2rem 5rem;
  content: "";
  background: black;
  height: 1px;
}
footer .copyright {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1360px) {
  .content {
    margin: 0rem 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  .grid {
    display: grid;
    grid-template-rows: auto;
  }
  .grid .row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid .row .container-all {
    height: 400px;
  }
  .grid .row .container-all .image-container .image img {
    height: 400px;
  }
}
@media only screen and (max-width: 815px) {
  .testimonials {
    margin: 7rem 2rem;
    display: flex;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .testimonials .cart {
    padding: 4rem 2rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.128) 2px 0px 10px;
  }
  .testimonials .cart .quote {
    font-size: 70px;
    line-height: 1em;
  }
  .testimonials .cart .description {
    font-size: 0.95rem;
    max-width: 500px;
    margin-top: -1rem;
  }
  .testimonials .cart .name {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .container-all .popup-image {
    width: 95%;
  }
}
@media only screen and (max-width: 500px) {
  .content {
    margin: 0rem 1rem;
  }
}/*# sourceMappingURL=portfolio.css.map */