.content-with-image {
  padding-right: 0 !important;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}

.content__text {
  height: 100%;
  width: 100%;
  max-width: 515px;
  display: flex;
  flex-direction: row;
  margin: auto 0;
}

.content__text-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  margin-right: 24px;
}

.content__text .content__title {
  font-size: 32px !important;
  line-height: 36px !important;
  margin-bottom: 16px;
}

.content__icon {
  width: 10px;
  height: 24px;
}

.content__description {
  font-family: Hurme Geometric Sans 1;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
}

a.content__link {
  background-color: var(--color-dark);
  color: var(--color-white);
  margin-top: 24px;
}

a.content__link:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);

  & span.button-text::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='8' viewBox='0 0 30 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4H27' stroke='%23000'/%3E%3Cpath d='M24 1L27 4L24 7' stroke='%23000'/%3E%3C/svg%3E");
  }
}

.content__divider-balls {
  margin: auto 46px;
  display: none;

  &::before,
  &::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F5F4F4;
    margin: 24px 0;
  }
}

.content__image-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
}

.content__image-image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

@media (min-width: 760px) {
  .content-with-image {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 80px;
  }

  .content__text .content__title {
    font-size: 56px !important;
    line-height: 56px !important;
    letter-spacing: 0% !important;
  }

  .content__image-container {
    max-width: 704px;
    height: 600px;
  }

  a.content__link {
    margin-top: 48px;
  }

  .content__icon {
    width: 17px;
    height: 45px;
  }

  .content__text-container {
    margin-left: 24px;
  }
}

@media (min-width: 1160px) {
  .content-with-image {
    padding-right: 0 !important;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 80px;
  }

  .content {
    flex-direction: row;
  }

  .content__description {
    font-size: 16px;
    line-height: 24px;
  }

  .content__divider-balls {
    display: block;
  }
}