.office-locations {
  margin: 81px 0 clamp(37px, 7vw, 99px);
}
.office-locations__inner {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
}
.office-locations__left {
  background: var(--color-bg-light2);
  padding: 83px 20px 54px 90px;
  border-radius: var(--radius-3xl) 0 0 var(--radius-3xl);
  overflow: hidden;
}
.office-locations__title {
  margin: 0 0 4px;
  color: #000;
}
.office-locations__title span {
  color: var(--color-primary);
}
.office-locations__text {
  margin-bottom: clamp(25px, 3.25vw, 55px);
}
.office-locations__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  padding-top: 50px;
  color: #353535;
}
.office-locations__list:before {
  content: "";
  width: 200%;
  left: -50%;
  top: 0;
  height: 1px;
  background: #d5d5d5;
  position: absolute;
}
.office-locations__list:after {
  content: "";
  width: 1px;
  left: calc(50% + 8px - 55px);
  top: 0;
  height: 200%;
  background: #d5d5d5;
  position: absolute;
}
.office-locations__office {
  display: flex;
  flex-direction: column;
}
.office-locations__city {
  font-weight: 500;
  font-size: 16px;
  line-height: 25.12px;
  margin-bottom: 2px;
  opacity: 0.7;
}
.office-locations__address {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.25vw, 30px);
  line-height: 1.3;
  margin-bottom: clamp(30px, 3vw, 48px);
}
.office-locations__map-link {
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  margin-top: auto;
  font-size: 16px;
}
.office-locations__gallery {
  height: 100%;
}
.office-locations__gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (width < 1520px) {
  .office-locations__left {
    padding: 56px 24px;
  }
  .office-locations__list {
    gap: 48px;
  }
  .office-locations__list:after {
    left: 50%;
  }
  .office-locations__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  }
}
@media (width < 992px) {
  .office-locations {
    background: var(--color-bg-light2);
    border-radius: var(--radius-2xl);
    padding: 40px 0 26px;
  }
  .office-locations__wrapper {
    overflow: hidden;
  }
  .office-locations__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  .office-locations .swiper {
    overflow: visible;
  }
  .office-locations__left {
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  .office-locations__list {
    padding-top: 32px;
  }
  .office-locations__gallery-item img {
    border-radius: var(--radius-sm);
  }
}
@media (width < 768px) {
  .office-locations {
    margin-top: 0;
    position: relative;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    z-index: 2;
  }
  .office-locations:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    transform: translateY(-100%);
    background: var(--color-bg-light2);
  }
  .office-locations__list {
    padding-top: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .office-locations__list:before, .office-locations__list:after {
    display: none;
  }
  .office-locations__city {
    font-size: 18px;
  }
}
