/*=========================
	GOOGLE MAPS BLOCK
=========================*/
.block-google-maps {
  position: relative;
}

.block-google-maps .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.block-google-maps .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-5) 60px;
}

.block-google-maps .content > .title {
  display: block;
  margin-bottom: var(--space-4);
}

.block-google-maps .content .topics .item {
  margin-bottom: var(--space-3);
}

.block-google-maps .content .topics .title { 
  display: block;
  color: var(--color-t);
  text-transform: uppercase !important;
  width: 100%;
  border-bottom: 1px solid #DDE5ED;
  padding-bottom: 5px;
}

.block-google-maps .content .topics .rich-text {
  padding-top: 5px;
}

.block-google-maps .content .topics .rich-text a {
  font-weight: 700 !important;
}

.block-google-maps .content .link {
  margin-top: var(--space-5);
}

.block-google-maps .image {
  position: relative;
  min-height: 450px;
}

.block-google-maps .image.full {
  position: absolute;
  height: 100%;
  width: 50%;
  right: 0;
  top: 0;
}

.block-google-maps .acf-map {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
}

.acf-map img {
   max-width: inherit !important;
}


@media only screen and (max-width: 991px) {
  .block-google-maps .container {
    grid-template-columns: 1fr;
  }
  .block-google-maps .image.full {
    position: relative;
    min-height: 450px;
    width: 100%;
  }
  
    .block-google-maps .content {
        padding: var(--space-4) 0;
    }

}


