.contact-page{
    display: flex;
    flex-direction: column;
    gap: 128px;
    padding-bottom: 128px;
}
.contact-section{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.contact-section .section-title{
   color: #FDFCFB;
    font-size: 52px;
    font-weight: 500;
    line-height: 110%;
    max-width: 410px;
}
.contact-section .contact-section-area{
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}
.contact-section .contact-section-area .contact-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-section .contact-section-area .contact-item .title-item-contact {
    color: #BB9255;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}
.contact-section .contact-section-area .contact-item .item {
    color: #FDFCFB;
    font-size: 24px;
    line-height: 140%;
}
@media (max-width: 1000px) {
    .contact-section {
        flex-direction: column;
    }
    .contact-section .section-title {
        font-size: 32px;
        max-width: unset;
    }
    .contact-page {
        display: flex;
        flex-direction: column;
        gap: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 600px) {
    .contact-section .contact-section-area {
        gap: 40px;
    }
    .contact-section .contact-section-area .contact-item {
        gap: 12px;
    }
    .contact-section .contact-section-area .contact-item .title-item-contact {
        font-size: 18px;
    }
    .contact-section .contact-section-area .contact-item .item {
        font-size: 20px;
    }
}

.our-restaurants{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.our-restaurants .title-section{
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
}
.our-restaurants .tab-restaurants{
    display: flex;
    gap: 16px;
    overflow-x: auto; 
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.our-restaurants .tab-restaurants::-webkit-scrollbar {
    display: none;
}
.our-restaurants .tab-restaurants .rest-item{
    border-radius: 20px;
    background: #2E3030;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    cursor: pointer;
}
.our-restaurants .tab-restaurants .rest-item.active{
    background: #2F5550;
}
.our-restaurants .map-area{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.our-restaurants .map-area .map{
    display: none;
    width: 100%;
    position: relative;
}
.our-restaurants .map-area .map.active{
    display: flex;
}
.our-restaurants .map-area .map .info-area{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 24px;
    border-radius: 0px 0px 24px 24px;
    border: 1px solid #FDFCFB;
    background: rgba(253, 252, 251, 0.62);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    padding: 24px;
    width: 290px;
    gap: 16px;
    color: #252525;
    font-size: 16px;
    line-height: 120%;
}
.our-restaurants .map-area .map .info-area a{
    color: #252525;
}
.our-restaurants .map-area .map .info-area .title-info{
    color: #2F5550;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}
.our-restaurants .map-area .map .info-area .cont-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 6px;
}
.our-restaurants .map-area .map .info-area .cont-info .address{
    font-style: normal;
}
.our-restaurants .map-area .map .info-area .name-block {
    color: #2F5550;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
}
.our-restaurants .map-area .map .info-area .working-hours{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.our-restaurants .map-area iframe {
    width: 100%;
    height: 425px;
    border: none;
    border-radius: 24px;
    background: #FFF;
}

@media (max-width: 1000px) {
    .our-restaurants .title-section {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .our-restaurants .tab-restaurants .rest-item {
        font-size: 18px;
    }
    .our-restaurants .map-area iframe {
        width: 100%;
        height: 599px;
    }
    .our-restaurants .map-area .map .info-area {
        top: unset;
        bottom: 0;
        left: 0;
        padding: 20px;
        width: 100%;
        gap: 16px;
        color: #252525;
    }
    .our-restaurants .map-area .map .info-area .title-info {
        font-size: 18px;
    }
    .our-restaurants .map-area .map .info-area .working-hours {
        gap: 8px;
    }
}