.zagolovok {
    font-size: 44px;
    font-weight: 200;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

/* Время работы */
.workingTimeCont {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 110px;
    padding: 4px;
    border-radius: 32px;
    background: rgb(27 35 50 / 36%);
    text-align: center;
    font-weight: 300;
}

.highlight {
    background: linear-gradient(45deg, #3cfd47, #2aff9b);
    color: black;
    font-weight: 500;
}

.day h1 {
    font-size: 20px;
    font-weight: inherit;
    margin: 0 0 6px 0;
}

.day p {
    font-size: 16px;
    font-weight: inherit;
}




/* Адреса */

.addressesCont {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.addressCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 200px;
    padding: 20px;
    border-radius: 32px;
    background: rgb(27 35 50 / 36%);
    text-align: center;
    font-weight: 300;
    align-items: flex-start;
    gap: 24px
}

.nameLine {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.textLine {
    display: flex;
    margin-left: 8px;
    font-weight: 500;
    text-align: left;
}

.textLine a {
    color: white;
    transition: .3s all;
}

.textLine a:hover {
    color: var(--main-color)
}

.addrImg {
    width: 20px;
    margin-right: 8px;
}

/* Phone */

@media (max-width: 767px) {
    .zagolovok {
        font-size: 34px;
        text-align: center;
    }

    .workingTimeCont {
        width: unset;
        flex-direction: column;
        gap: 30px;
    }

    .addressesCont {
        flex-direction: column;
    }
}