.neighbours{
    padding: 5rem 0 ;
}

.neighbours__title {
    margin-bottom: 0.5rem;
    font-size: var(--fs-title-primary);
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 1.3;
    text-align: center;
}

.neighbours__desc{
    padding: 0 0.5rem;
    font-size: var(--fs-desc-secondary);
    font-weight:500;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.neighbours__left{
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url(../../images/neighbours-map.jpg);
    background-size: cover;
}

.neighbours__left__layout{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(36 51 58 / 80%);

    display:flex;
    align-items: center;
    justify-content: center;
}

.neighbours__left__layout button{
    padding: .75rem .5rem;
    border-radius: 2px;
    margin-left: 50%;
    font-weight: 700;
    color:var(--clr-secondary);
}

/**************  neighbours right ************/

.neighbours__right{
    padding: 1rem .8rem;
    background: var(--clr-light-25);
    box-shadow: inset 0 0 0 .5rem var(--clr-light-100);
}

.neighbour{
    display: flex;
    padding-top: 1rem;
}

.neighbour__icon{
    width: calc(70px + 2vw);
    min-width: 70px;
    height: calc(60px + 2vw);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    background: var(--clr-primary);
}

.neighbour__icon i{
    font-size: var(--fs-title-primary);
    color: var(--clr-light-100);
}

.neighbour__details{
    display: flex;
    flex-wrap: wrap;

    padding: 0 1rem;
    align-items: baseline;
    justify-content: space-between;
}

.neighbour__details__title{
    flex: 1;
    padding: 0.5rem 0 1.5rem 0;
    font-size: var(--fs-title-secondary);
    font-weight: 600;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--clr-light-100);
}

.neighbour__details__desc{
    min-width: 100%;
    line-height: 1.6;
    height: 0;
    overflow: hidden;
}

.active .neighbour__details__desc{
    height: auto;
}

.neighbour__details i {
    font-size:var(--fs-title-secondary);
}

.active .neighbour__details i{
    color: var(--clr-primary);
}

/************* media ************/

@media (min-width:900px){
    .neighbours{
        padding: 3rem 0;
        background-image: url(../../images/neighbours.jpg);
        background-size: cover;
    }
    .neighbours__container{
        display: flex;
        min-width:100%;
    }

    .neighbours__left,
    .neighbours__right{
        width: 50%;
    }
}

@media (min-width:1800px){

    .neighbours__container{
        display: flex;
    }
}