#locationsMain .boxes {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
@media (max-width: 991px) {
  #locationsMain .boxes {
    gap: 10px;
  }
}
#locationsMain .boxes .box {
  position: relative;
  width: calc(50% - 10px);
  text-decoration: none;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2823529412);
  overflow: hidden;
}
#locationsMain .boxes .box span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 100px;
  width: 100px;
  background-color: rgba(128, 128, 128, 0.315);
  z-index: 1;
  transition: 2s ease-in-out;
  border-radius: 50%;
}
#locationsMain .boxes .box .head {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
#locationsMain .boxes .box .head h6 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
#locationsMain .boxes .box .content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  display: flex;
  gap: 10px;
}
#locationsMain .boxes .box .content .detail {
  width: 50%;
}
#locationsMain .boxes .box .content .detail h5 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
#locationsMain .boxes .box .content .detail p {
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
}
#locationsMain .boxes .box .content .map {
  width: 50%;
}
#locationsMain .boxes .box .content .map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  #locationsMain .boxes .box .content {
    flex-direction: column;
  }
  #locationsMain .boxes .box .content .detail, #locationsMain .boxes .box .content .map {
    width: 100%;
  }
}
#locationsMain .boxes .box .view-btn a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  background: #3F397C;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid #3F397C;
}
#locationsMain .boxes .box .view-btn a:hover {
  background: transparent;
  border: 2px solid #3F397C;
  color: #3F397C;
  transition: 0.7s;
}
@media (max-width: 991px) {
  #locationsMain .boxes .box {
    width: 49%;
  }
}
@media (max-width: 600px) {
  #locationsMain .boxes .box {
    width: 100%;
  }
}
#locationsMain .boxes .box:hover span {
  transform: translate(-50%, -50%) scale(10);
}

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