.block-office-location {
  background-color: var(--bgColor);
}
.block-office-location__inner {
  padding: 70px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.block-office-location .info .title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  line-height: 3.4375rem;
  color: var(--text);
}
.block-office-location .info .label,
.block-office-location .info .directions,
.block-office-location .info .content strong {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primaryColor);
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 14px;
}
.block-office-location .info .label {
  color: var(--secondaryColor);
}
.block-office-location .info .directions {
  margin-bottom: 30px;
}
.block-office-location .info .content {
  margin-bottom: 30px;
}
.block-office-location .info .content p {
  color: var(--text);
  margin-bottom: 10px;
}
.block-office-location .info .phone {
  color: var(--text);
  margin-bottom: 30px;
  font-weight: 700;
}
.block-office-location .info .phone a {
  color: var(--text);
  transition: color 0.2s ease;
}
.block-office-location .info .phone a:hover {
  color: var(--tertiaryColor);
}
.block-office-location .map {
  height: 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .block-office-location .map {
    display: block;
  }
}
.block-office-location .map iframe,
.block-office-location .map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
}
.block-office-location .map iframe {
  opacity: 1;
}
.block-office-location .map img {
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}
.block-office-location .map:hover iframe {
  opacity: 1;
}
.block-office-location .map:hover img {
  opacity: 0;
}
@media (min-width: 768px) {
  .block-office-location__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
  }
  .block-office-location .info {
    flex: 0 0 calc(45% - 30px);
  }
  .block-office-location .info .title {
    font-size: 58px;
    line-height: 75px;
    margin-bottom: 50px;
  }
  .block-office-location .info .address,
  .block-office-location .info .phone {
    margin-bottom: 10px;
  }
  .block-office-location .info .phone a {
    display: block;
    line-height: 1.5;
    max-width: 250px;
  }
  .block-office-location .map {
    flex: 0 0 calc(55% - 30px);
    height: 350px;
  }
}
@media (min-width: 1280px) {
  .block-office-location__inner {
    padding: 80px 40px;
  }
}/*# sourceMappingURL=block-office-location.css.map */