/*
|------------------------------------------------------------
| Image with text
|------------------------------------------------------------
|
*/
.image-with-text {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .image-with-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.image-with-text__container {
  display: grid;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .image-with-text__container {
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
  }
}
@media only screen and (min-width: 1399.98px) {
  .image-with-text__container {
    align-items: center;
  }
}

.image-with-text__image {
  margin-right: -25px;
  margin-left: -25px;
}
@media only screen and (min-width: 768px) {
  .image-with-text__image {
    margin-right: 0;
    margin-left: 0;
  }
}
.image-with-text__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .image-with-text--right .image-with-text__image {
    order: 2;
  }
}

.image-with-text__title {
  font-family: "nimbus-roman", serif;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .image-with-text__title {
    letter-spacing: 2.2px;
  }
}

.image-with-text__text p {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.42px;
  line-height: 22px;
  color: #737373;
}
@media only screen and (min-width: 768px) {
  .image-with-text__text p {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.54px;
    line-height: 22px;
  }
}
