.bottom-banners {
  margin-bottom: 5rem;
}

/* Bottom map section */
.bottom-map {
  padding-top: 2rem;
  margin-left: -6vw;
  margin-right: -6vw;
  background-color: #f5f5f5;
}
.bottom-map .map-controls {
  display: none;
}
.bottom-map .store-locator-map-holder {
  height: 600px;
}
.bottom-map .anywhere-page-map .map-title {
  border: 0;
  padding: 0;
  margin-bottom: 25px;
}

/* Banners side by side */
.banners-sidebyside {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #eeeeee;
}

@media (min-width: 992px) {
  .banners-sidebyside {
    width: 70%;
    margin: auto;
  }
}

.banners-sidebyside .banner-item {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banners-sidebyside .banner-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.banners-sidebyside .banner-item .bgimage {
  height: 100%;width: 100%;
}
.banners-sidebyside .banner-item .bgimage img {
  width: 100%;height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1), filter 0.55s cubic-bezier(.22,1,.36,1);
  will-change: transform, filter;
}
.banners-sidebyside .banner-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  padding: 1rem 2rem 1rem 3rem;
  width: 80%;
  background-color: white;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  border-left: 20px solid #D15D14;
}

@media (min-width: 992px) {
  .banners-sidebyside .banner-content {
    width: 50%;
  }
}


.banners-sidebyside .banner-item.fumar {
  border-left: 1px solid white;
}
.banners-sidebyside .banner-item.fumar .banner-content {
  position: absolute;
  right: 0;left: auto;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-left: 0;
  border-right: 20px solid #B70317;
  text-align: right;
  padding: 1rem 3rem 1rem 1rem;
}
.banners-sidebyside .banner-item.fumar .o-title {
  text-align: right;
}
.arrow-right { 
    position: absolute;
    left: 0;top: 0;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    height: 64px;
    width: 34px;
}
.arrow-right::before { 
    border: 30px solid transparent;
    content: ' ';
    display: block;
    position: absolute;
    z-index: 2;
    border-left-color: #D15D14;
    left: 0;
    top: 2px;
}
.arrow-left { 
    position: absolute;
    right: 0;top: 0;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    height: 64px;
    width: 34px;
}
.arrow-left::before {
    border: 30px solid transparent;
    content: ' ';
    display: block;
    position: absolute;
    z-index: 2;
    border-right-color: #B70317;
    right: 0;
    top: 2px;
}
.banners-sidebyside .o-title {
    color: black;
    position: relative;
    z-index: 9;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
}
.banners-sidebyside .overlay-button {
  font-size: 0;
}
.banners-sidebyside .overlay-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: block;
  z-index: 9;
}

/* === Connect banner: cool hover effect (only on hover, no default changes) === */

.banners-sidebyside .banner-item:hover .bgimage img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(0.85) blur(1px);
}
.banners-sidebyside .banner-item:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.5,.2,.1,1);
}
.banners-sidebyside .banner-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.5,.2,.1,1);
}
.banners-sidebyside .banner-item:hover .banner-content-inner {
  transition: transform 0.5s cubic-bezier(.5,2,.1,1), filter 0.4s;
}
.banners-sidebyside .banner-item.connect:hover .o-title {
  color: #D15D14;
  transition: color 0.3s, text-shadow 0.4s, transform 0.35s;
}

.banners-sidebyside .banner-item.fumar:hover .o-title {
  color: #B70317;
  transition: color 0.3s, text-shadow 0.4s, transform 0.35s;
}

