.office-locations {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  .office-location {
    position: relative;
    flex: 0 0 calc( 33.33% - 13.4px );
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(102, 51, 252, 0.15);
    transition: all 333ms ease;
    &.half {
      flex: 0 0 calc( 50% - 10px );
    }
    .abs-link {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
    }
    @media (max-width: 1050px) {
      flex: 0 0 calc( 50% - 13.4px );
    }
    @media (max-width: 768px) {
      flex: 1 0 100%;
    }
    .location-iframe {
      height: 200px;
      overflow: hidden;
      iframe {
        width: 100%;
        height: 200px;
        margin: 0;
        padding: 0;
      }
    }
    .content {
      text-align: center;
      padding: 36px;
      h4 {
        margin-bottom: 15px;
        font-weight: 500;
      }
    }
    .button-wrapper {
      text-align: center;
      margin-top: auto;
      padding: 0 36px 36px 36px;
    }
    &:hover {
      box-shadow: 0px 5px 10px 0px 5px 10px rgba(102, 51, 252, 0.25);
      .button-wrapper a.button {
        background: #6633fc;
        color: #fff;
        border-color: #6633fc;
      }
    }
}