.contactContent_outer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactContent_wrapper {
  width: 1180px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column;
}
.contactContent_wrapper hr {
  width: 100%;
}
.contactsGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  grid-template-areas:
    "cg_1 cg_3"
    "cg_2 cg_3";
}
.cgItem {
}
.cgItem.cg_1 {
  grid-area: cg_1;
  min-height: 300px;
}
.cgItem.cg_2 {
  grid-area: cg_2;
  min-height: 250px;
}
.cgItem.cg_3 {
  grid-area: cg_3;
  align-self: stretch;
}
.contactsfactoryMap_wrapper,
.contactsfactory_map {
  width: 100%;
  height: 100%;
}

/* =========================
   CAROUSEL SCOPED
========================= */

.contact_carousel .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.contact_carousel.carousel-fade .carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  visibility: visible;
}

.contact_carousel.carousel-fade .carousel-item.active {
  opacity: 1;
  /* position: relative; */
  z-index: 2;
  /* visibility: visible; */
}

/* Indicators */
.contact_carousel .carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  cursor: pointer;
}

.contact_carousel .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
}

.contact_carousel .carousel-indicators .active {
  background: white;
}

.contact_carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact_carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

.contact_carousel .carousel-control.prev {
  left: 10px;
}

.contact_carousel .carousel-control.next {
  right: 10px;
}

.contact_carousel .carousel-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1080px) {
  .contactContent_wrapper {
    width: 100%;
  }
}
@media (max-width: 860px) {
  .contactsGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "cg_3 cg_3"
      "cg_1 cg_1"
      "cg_2 cg_2";
  }
  .cg_3 {
    height: 500px;
  }
  .cgItem.cg_1 {
    min-height: auto;
  }
}
