.customPageCenteredContent {
    max-width: 100%;
  }
  
#customPageTitle {
    display: none
}

#localesContainer {
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
}

#localTitle {
    margin-bottom: 3rem;
}

.localBox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 3rem;
    gap: 17px;
}

.localContainer {
    display: flex;
    font-weight: var(--base-font-weight);
    flex-direction: column;
    align-items: flex-start;
}

.localImage{
    width: 100%;
    height: auto;
    aspect-ratio: 787/474;
}

.localName {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--secondary-font-weight);
    padding: 20px 0 0;
    letter-spacing: 0.1em;
}

hr {
    display: block;
    height: 1px;
    border-top: 1px solid var(--base);
    margin: 1em 0;
    width: 100%;
}

.localDescription{
    font-size: var(--base-font-size);
    font-weight: var(--base-font-weight);
    line-height: 22px;
}
    
.mapView {
    font-size: var(--base-font-size);
    cursor: pointer;
    display: block;
    margin-block: 20px;
    position: relative
}

.lineEffectCenter:hover::before {
  width: 100%;
  left: 0%
}

.lineEffectCenter::before {
  bottom: -4px;
}

.lineEffectCenter::before {
  content: "";
  background: var(--base);
  height: 1px;
  width: 0%;
  position: absolute;
  left: 50%;
  -webkit-transition: left 0.4s cubic-bezier(.4, 0, 1, 1), width 045s cubic-bezier(.4, 0, 1, 1);
  -o-transition: left 0.4s cubic-bezier(.4, 0, 1, 1), width 0.4s cubic-bezier(.4, 0, 1, 1);
  transition: left 0.4s cubic-bezier(.4, 0, 1, 1), width 0.4s cubic-bezier(.4, 0, 1, 1)
}



@media screen and (min-width: 769px) and (max-width:1105px) {
    #content {
        min-width: unset
    }
}

@media screen and (max-width: 1100px) {
    #localesContainer {
        margin-top: 5rem;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .localBox {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        gap: 60px;
    }
}