 .image-content {
    margin: 0 auto;
    max-width: 1440px;
 }

.image-content__title {
  font-family: Aeonik Trial-regular;
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
}

.image-content__content, .image-content__title {
  padding: 0 15px;
   
  @media only screen and (min-width: 1024px) {
      padding: 0 50px;
  }
}

.image-content__content {
  position: relative;
}

.image-content__square-background {
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 6%;
  display: none;
  
  @media only screen and (min-width: 768px) {
    width: 63%;
    aspect-ratio: 1;
    display: block;
  }

  @media only screen and (min-width: 1024px) {
    width: 61%;
    aspect-ratio: 1.3;
  }

  @media only screen and (min-width: 1200px) {
    width: 57%;
  }

  @media only screen and (min-width: 1440px) {
    width: 57%;
    aspect-ratio: 1.55;
  }
}

.image-content__arrow-background--desktop {
  display: none;
  
@media only screen and (min-width: 768px) {
    display: block;
    position: absolute;
    top: 21%;
    left: 50%;
    height: 20%;
    translate: -50%;
  }
}

.image-content__arrow-background--mobile {
  display: block;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 10%;

  @media only screen and (min-width: 768px) {
      display: none;
  }
}

      .image-content__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 110px;
      }

      .image-content__header h2 {
        font-family: Aeonik Trial-regular
        font-size: 27px;
        font-style: normal;
        font-weight: 400;
        line-height: 178.5%;
        text-transform: capitalize;
        margin: 0;
        margin-bottom: 100px;
        text-align: center;
      }

      @media only screen and (min-width: 430px) {
        .image-content__header h2 {
          margin-bottom: 140px;
        }
      }

      @media only screen and (min-width: 1024px) {
        .image-content__header h2 {
          text-align: unset;
        }
      }

      .image-content__header img {
        width: 103px;
      }

.image-content__columns {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(330px, 450px);
  justify-content: center;
  gap: 12px;
}
      
@media only screen and (min-width: 768px) {
  .image-content__columns {
    grid-template-columns: repeat(3, 1fr);
    justify-content: normal;
  }
}

@media only screen and (min-width: 1024px) {
  .image-content__columns {
    gap: 20px;
  }
}

.image-content__column {
  display: flex;
  flex-direction: column;
  z-index: 5;
  align-items: center;
}
      
.image-content__column-content {
  z-index: 5;
  border-radius: 55px;
  background: #232323;
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
}

      .image-content__column-title {
        color: white;
        text-align: center;
        font-family: Aeonik Trial-regular;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 182%;
        padding: 24px 0 10px 0;
      }

      .image-content__column-image {
        padding-top: 22px;
        height: 135px;
        width: 100%;
      }

      @media only screen and (min-width: 768px) {
        .image-content__column-image {
          padding-top: 25px;
          height: 110px;
        }
      }


      @media only screen and (min-width: 1200px) {
        .image-content__column-image {
          padding-top: 30px;
          height: 125px;
        }
      }

      .image-content__column-content p {
        text-align: center;
        font-family: Aeonik Trial-regular;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        width: 75%;
        color: white;
        margin: 0 auto;
        padding-bottom: 55px;
      }

.image-content__column-link--desktop {
  display: none;
  
  @media only screen and (min-width: 768px) {
    display: inline;
  }
}

.image-content__column-link--mobile {
  
  @media only screen and (min-width: 768px) {
    display: none;
  }
}