.runda-contact-information {
  position: relative;
  padding: 120px 0 0 0;
  overflow: hidden;
  word-break: break-word;
}

.runda-contact-information-decorator-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 14.3%;
  z-index: -1;
  transform: translateY(11%);
  max-width: 300px;
  min-width: 200px;
}

.runda-contact-information-decorator-img img {
  width: 100%;
  height: auto;
}

.runda-contact-information-warpper {
  display: flex;
}

.runda-contact-information-pic {
  width: calc(750 / 1300 * 100%);
  align-self: flex-start;
  flex-shrink: 0;
  position: relative;
}

.runda-contact-information-pic img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 80px 0 rgba(188, 176, 141, 0.50);
}

.runda-contact-information-decorator-text {
  position: absolute;
  top: 0;
  left: 100%;
  color: rgba(174, 166, 143, 0.14);
  font-family: var(--font-family-ovo);
  font-size: clamp(60px, 10vw, 180px);
  font-weight: 400;
  line-height: 1.2;
}

.runda-contact-information-content {
  flex: 1;
  padding: 60px 88px;
  background: #F8F5EF;
  margin-top: calc(398 / 1300 * 100%);
  margin-left: calc(-188 / 1300 * 100%);
  position: relative;
  z-index: 2;
}

.runda-contact-information-content-title {
  color: #333;
  font-size: var(--title-size-h2);
  font-weight: 400;
  line-height: normal;
}

.runda-contact-information-content-subtitle {
  color: rgba(0, 0, 0, 0.60);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}

.runda-contact-information-list {
  margin-top: var(--text-gap);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.runda-contact-information-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.runda-contact-information-list .item-icon {
  width: var(--title-size-h5);
  flex-shrink: 0;
  line-height: 0;
}

.runda-contact-information-list .item-icon svg {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.runda-contact-information-list .item-content p,
.runda-contact-information-list .item-content a {
  display: block;
  color: rgba(0, 0, 0, 0.60);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
}

.runda-contact-information-list .item-content a:hover {
  text-decoration: underline;
  color: var(--color-second);
}

@media screen and (max-width: 1500px) {
  .runda-contact-information {
    padding: 80px 0 0 0;
  }

  .runda-contact-information-content{
    padding: 50px 75px;
    margin-left: -20%;
  }
}

@media screen and (max-width: 1200px) {
  .runda-contact-information {
    padding: 60px 0 0 0;
  }

  .runda-contact-information-content{
    padding: 40px 60px;
    margin-left: -30%;
  }
}

@media screen and (max-width: 992px) {
  .runda-contact-information {
    padding: 50px 0 0 0;
  }

  .runda-contact-information-content{
    margin-top: 40%;
    margin-left: -40%;
    padding: 30px 45px;
  }
}

@media screen and (max-width: 768px) {
  .runda-contact-information {
    padding: 40px 0;
  }

  .runda-contact-information-content{
    margin-top: 40%;
    margin-left: -50%;
    padding: 20px 30px;
  }
}

@media screen and (max-width: 576px) {
  .runda-contact-information {
    padding: 24px 0;
  }

  .runda-contact-information-decorator-img{
    display: none;
  }

  .runda-contact-information-warpper{
    flex-direction: column;
  }

  .runda-contact-information-pic{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .runda-contact-information-decorator-text{
    position: static;
  }

  .runda-contact-information-content{
    padding: 15px 20px;
    margin: 0;
  }
}