.frame {
  position: relative;
}

.round__icon-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 30px;
  background: rgb(var(--c-primary));
  text-align: center;
  line-height: 60px;
}

.round__icon-icon span {
  color: rgb(var(--c-neutral-lightest));
  font-size: 32px;
  line-height: 60px;
}

.round__icon-icon a[rel="noreferrer"]::after {
  display: none !important;
}

.round__icon-icon a span  {
  color: rgb(var(--c-neutral-lightest));
}

.round__icon-icon a {
  display: block;
}

.round__icon {
  position: relative;
  top: calc(var(--p)*-1);
}

.round__icon-logo {
  width: 60px;
  position: absolute;
  left: 50%;
  top: -20px;
  z-index: 5;
  margin-left: -30px;
}

.round__icon-bg {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 165px;
  height: 34px;
  transform: translateX(-50%) translateY(-100%);
  background: url(../../Images/wave_white.svg) no-repeat;
  background-size: 165px 34px;
  z-index: 4;
}

.footer .round__icon-bg,
.frame-bg-grey .round__icon-bg {
  background: url(../../Images/wave_grey.svg) no-repeat;
  background-size: 165px 34px;
}

.footer.-white .round__icon-bg {
  background: url(../../Images/wave_white.svg) no-repeat;
  background-size: 165px 34px;
}

.textimage__text {
  padding: var(--p) 4%;
}

.textimage.-grey {
  background-color: rgb(var(--c-neutral-lighter));
}

.textimage__image {
  height: 32vw;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.textimage__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  position: absolute;
}

@media (min-width: 640px) {
  .textimage {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .textimage__image {
    height: 100%;
  }
}

@media (min-width: 1540px) {
  .textimage__text.-right {
    padding: var(--p) calc((100vw - 1440px) / 2) var(--p) var(--g-gap);
  }
  .textimage__text.-left {
    padding: var(--p) var(--g-gap) var(--p) calc((100vw - 1440px) / 2);
  }
}