.c-gallery {
  display: flex;
  min-height: 600px;
  position: relative;
}
@media (max-width: 1599.98px) {
  .c-gallery {
    min-height: 480px;
  }
}
@media (max-width: 575.98px) {
  .c-gallery {
    min-height: 450px;
  }
}
.c-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 575.98px) {
  .c-gallery__image {
    border-radius: 10px;
  }
}
.c-gallery__image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(200deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%);
}
.c-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*transition: transform 0.3s ease-in-out;*/
}
.c-gallery__text {
  padding: 50px 60px;
  max-width: 40%;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (max-width: 1599.98px) {
  .c-gallery__text {
    max-width: 60%;
    padding: 40px 48px;
  }
}
@media (max-width: 767.98px) {
  .c-gallery__text {
    max-width: none;
    padding: 30px;
  }
}
.c-gallery__text h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.03;
  color: #fff;
}
.c-gallery__text h3:hover, .c-gallery__text h3:active, .c-gallery__text h3:focus, .c-gallery__text h3:visited {
  color: #fff;
}
.c-gallery__text p {
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.43;
  color: #fff;
  text-wrap: balance;
}
.c-gallery__text p:hover, .c-gallery__text p:active, .c-gallery__text p:focus, .c-gallery__text p:visited {
  color: #fff;
}