.grid-four-column {
  margin: 140px 0;
}
@media only screen and (max-width: 1200px) {
  .grid-four-column {
    margin: 110px 0;
  }
}
@media only screen and (max-width: 991px) {
  .grid-four-column {
    margin: 90px 0;
  }
}
@media only screen and (max-width: 575px) {
  .grid-four-column {
    margin: 55px 0;
  }
}
.grid-four-column__title {
  color: var(--color-gray-blue);
  font-weight: 700 !important;
  font-size: 72px;
  line-height: 1;
  text-align: left;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .grid-four-column__title {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .grid-four-column__title {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .grid-four-column__title  {
    font-size: 54px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-four-column__title  {
    margin: 0 auto 35px;
    font-size: 36px;
  }
}
.grid-four-column__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1200px) {
  .grid-four-column__row {
    gap: 24px 16px;
  }
}
@media only screen and (max-width: 991px) {
  .grid-four-column__row {
    max-width: 720px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 24px;
  }
}
@media only screen and (max-width: 575px) {
  .grid-four-column__row {
    max-width: 335px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 24px;
  }
}
.grid-four-column__card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.grid-four-column__card:last-child {
  margin-bottom: 0;
}
.grid-four-column__card-img {
  aspect-ratio: 312 / 400;
  margin-bottom: 24px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .grid-four-column__card-img {
    margin-bottom: 15px;
  }
}
.grid-four-column__card-img img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
.grid-four-column__card-icon {
  display: block;
  opacity: 1;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
}
.grid-four-column__card-icon img,
.grid-four-column__card-icon svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.grid-four-column__card-icon:hover,
.grid-four-column__card-icon:focus {
  transform: scale(1.05);
}
.grid-four-column__card-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #27383F;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1200px) {
  .grid-four-column__card-name {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-four-column__card-name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .grid-four-column__card-name {
    font-size: 16px;
  }
}
.grid-four-column__card-position {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.28;
  color: #545454;
}
@media only screen and (max-width: 575px) {
  .grid-four-column__card-position {
    font-size: 12px;
  }
}
