.office {
  position: relative;
  max-width: 1920px;
  margin: 64px auto;
  padding: 66px 0;
}

.office-box {
  position: relative;
  z-index: 1;
  max-width: 1088px;
  padding: 0 32px;
  margin: 0 auto;
  min-height: 680px;
}

.office-wrap {
  background-color: white;
}

.office-item {
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.office-item.active .office-wrap {
  max-height: 400px;
  border: 1px solid #E9E9EA;
}
.office-item .office-question {
  position: relative;
  background-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px);
  padding: 24px 32px;
  font-size: 24px;
  cursor: pointer;
  overflow: hidden;
  color: white;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 16px;
}
.office-item .office-question:hover {
  background: rgba(255, 255, 255, 0.3);
}
.office-item .office-wrap {
  display: flex;
  gap: 56px;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

.office-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50px;
}
.office-dot::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
}
.office-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -2;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}

.office-title {
  width: 100%;
  max-width: 480px;
  font-size: 32px;
  font-family: Semi;
  line-height: 1.5;
  padding: 32px 0 32px 32px;
}

.office-text {
  width: 100%;
  line-height: 1.4;
  color: #373B45;
  padding: 32px 32px 32px 0;
}

.office-item.active .office-question {
  height: 0;
  padding: 0;
}

.office-btn {
  margin-top: 32px;
}

.office-header {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 64px;
  font-family: Semi;
  line-height: 1.2;
  margin: 0 32px 56px;
  text-align: center;
}

.office-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.office-bg img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-mob {
  display: none;
}

@media (max-width: 1932px) {
  .office-bg {
    position: absolute;
    z-index: 0;
    left: 8px;
    top: 8px;
    bottom: 8px;
    right: 8px;
  }
}
@media (max-width: 900px) {
  .office {
    display: none;
  }
  .office-mob {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px 0;
    color: white;
  }
  .office-mob-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .office-mob-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .office-title-mob {
    font-size: 24px;
    font-family: Semi;
    line-height: 1.3;
    margin-bottom: 24px;
    padding: 0 16px;
  }
  .office-swiper {
    width: 100%;
    padding: 0 16px;
  }
  .office-slide {
    padding: 20px 16px;
    background-color: white;
    border-radius: 8px;
    color: #212530;
    height: unset;
  }
  .office-dot {
    background: #0F5BA2;
  }
  .office-dot::before {
    background: #1582E7;
  }
  .office-dot::after {
    background: #73B4F1;
  }
  .office-card-header {
    font-size: 18px;
    line-height: 1.4;
    font-family: Semi;
    margin: 16px 0 8px;
  }
  .office-card-text {
    color: #4D5159;
    font-size: 14px;
    line-height: 1.4;
  }
  .office-btn {
    margin: 24px 16px 0;
    width: calc(100vw - 32px);
    justify-content: center;
  }
  .office-btn .brand-btn-icon {
    display: none;
  }
  .office-swiper .office-btn {
    margin: 24px auto 0 auto;
    max-width: 328px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .office-swiper .office-btn {
    max-width: 100%;
  }
}