.first-block {
  padding: 0 1.25rem;
  width: 100%;
  margin-top: 150px;
}

.first-block-title h1 {
  color: #000;
  font-size: 4rem;
}

.first-block-text {
  line-height: 28px;
  font-size: 1rem;
  color: #000;
}

.second-block {
  width: 100%;
  margin-top: 60px;
}

.second-block-container {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.second-block-object {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  position: relative;
}
.second-block-object img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.second-block-object::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #eee;
  content: "";
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.second-block-object:hover::after {
  opacity: 0.65;
}

.third-block {
  width: 100%;
}

.third-block-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.third-block-object {
  aspect-ratio: 1/0.8;
  width: 100%;
}
.third-block-object img {
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
  width: 100%;
  display: block;
}

.fourth-block {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 0 2rem;
}

.fourth-block-image {
  width: 500px;
  height: 500px;
}
.fourth-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.fourth-block-text {
  margin-top: 24px;
  font-size: 1rem;
  color: #000;
}