@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    background:#fff;
    overflow-x:hidden;
    font-family:'Inter',sans-serif;
}

/* КОНТЕНТ */

.page{
    width:100%;
    padding-top:56px;
}

picture,
picture img{
    display:block;
    width:100%;
}

picture img{
    height:auto;
}

/* МОБИЛЬНЫЙ TAB BAR */

.mobile-tabbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:56px;
    background:#fff;
    display:flex;
    z-index:9999;
}

.mobile-tabbar a{
    flex:1;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#000;
    font-size:14px;
    font-weight:700;
    font-family:'Inter',sans-serif;
}

.mobile-tabbar a.active{
    color:#ff4d2d;
}

/* ПК TAB BAR */

.desktop-tabbar{
    display:none;
}

/* ВИДЕО */

.video-container{
    width:100%;
    padding:12px;
}

.video-container iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    display:block;
}

/* КАРТА */

.contacts-page{
    background:#fff;
}

.map-link{
    display:block;
    width:100%;
    text-decoration:none;
    cursor:pointer;
}

.map-link picture,
.map-link img{
    display:block;
    width:100%;
}

.map-link img{
    height:auto;
}

/* ПЛАНШЕТ */

@media (min-width:768px){

    .page{
        padding-top:65px;
    }

    .mobile-tabbar{
        height:65px;
    }

    .mobile-tabbar a{
        font-size:16px;
    }
}

/* ПК */

@media (min-width:1024px){

    .mobile-tabbar{
        display:none;
    }

    .desktop-tabbar{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:150px;
        background:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:120px;
        z-index:9999;
    }

    .desktop-tabbar a{
        text-decoration:none;
        color:#000;
        font-size:42px;
        font-weight:800;
        font-family:'Inter',sans-serif;
        padding:20px;
    }

    .desktop-tabbar a.active{
        color:#ff4d2d;
    }

    .page{
        padding-top:150px;
    }

    .video-container{
        width:100%;
        padding:0;
        margin:0;
    }

    .video-container iframe{
        width:100%;
        height:calc(100vh - 150px);
        aspect-ratio:auto;
    }
}

/* БОЛЬШИЕ МОНИТОРЫ */

@media (min-width:1600px){

    .desktop-tabbar{
        height:180px;
        gap:160px;
    }

    .desktop-tabbar a{
        font-size:52px;
    }

    .page{
        padding-top:180px;
    }

    .video-container iframe{
        height:calc(100vh - 180px);
    }
}