/* main section */
.main--cont{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: left;
    align-items: end;
}
.bg--main--cont{
    width: 100%;
    height: 100%;
    background-image: url('../../assets/img/covers/cover_main_02.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}
.title--main--cont{
    position: absolute;
    padding-left: 30px;
    padding-bottom: 30px;
    font-size: 50pt;
    text-align: left;
    font-family: var(--DCC_Ash);
}

/* Brances */
.branch--cont{
    width: 100%;
    height: 100vh;
    display: flex;
}
.branch--desc--cont,.branch--map--cont{
    width: 100%;
    height: 100%;
    padding: 4vw;
}
.branch--desc--cont{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
}
.branch--name{
    font-size: 25pt;
    font-family: var(--RussoOneRegular);
}
.branch--phone, .branch--address, .branch--schedules{
    font-size: 15pt;
    color: inherit;
    text-decoration: none;
}
.branch--phone p, .branch--address p, .branch--schedules p{
    font-size: 18pt;
    font-family: var(--RussoOneRegular);
}
.map{
    border: #fff 1px solid;
    width: 100%;
    height: 100%;
}
.branch--cont:nth-child(2n){
    background-color: #fff;
    color: #000;
}
.branch--cont:nth-child(2n+1){
    background-color: #000;
}

@media screen and (max-width:1080px) {
    .branch--cont{
        height: auto;
        flex-wrap: wrap;
    }
    .map{
        width: 100%;
        height: 50vh;
    }
    .branch--name{
        font-size: 22pt;
    }
    .branch--phone, .branch--address, .branch--schedules{
        font-size: 12pt;
    }
    .branch--phone p, .branch--address p, .branch--schedules p{
        font-size: 12pt;
    }
    .branch--desc--cont{
        gap: 20px;
    }
}