/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
.uppercase-title {
  font-family: var(--secondary-font), sans-serif;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .main-content {
    padding-top: 200px;
    padding-bottom: 70px;
  }
}
.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

@media screen and (min-width: 1200px) {
  .locations-list {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .locations-list {
    max-width: 1050px;
  }
}
@media screen and (min-width: 1600px) {
  .locations-list {
    max-width: 1410px;
    justify-content: flex-start;
  }
}
@media (max-width: 1499px) {
  .locations-list {
    justify-content: center;
  }
}
.location-image {
  position: relative;
}

.location-image::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/pin-big.svg);
  top: 50%;
  left: calc(100% - 165px);
  width: 26px;
  height: 32px;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.location-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 165px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.location-image img {
  max-width: 330px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.location-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  font-family: var(--secondary-font), sans-serif;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  background: linear-gradient(90.34deg, #242424 -2.41%, #151519 102.05%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/*# sourceMappingURL=locations.css.map*/