/* Laptops and tablets (landscape orientation) */
@media (max-width: 1199px) {
}

/* Tablets (vertical orientation) */
@media (max-width: 991px) {
  /* стили для tablet */
}

/* Smartphones (landscape orientation) */
@media (max-width: 767px) {
  /* стили для mobile landscape */
}

/* Smartphones (portrait orientation) */
@media (max-width: 575px) {
  /* стили для mobile portrait */
}
/* ======================================== */






/* Tablets: Vertical and Horizontal */
@media only screen and (max-width: 1024px) {
    .navigationButtons{
        position: relative;
        width: auto;
        height: auto;
    }
    .menuOpenButtonTop {
        display: none !important;
    }
    .menuButtonFooter {
        display: block !important;
    }
    .menuContainer *{
        font-size: 14px;
    }
}


/* Smartphones: Vertical and Horizontal */
@media only screen and (max-width: 767px) {
    .homeButton{
        display: none !important;
    }
}

/* Smartphones: Vertical */
@media only screen and (max-width: 575px) {
    .footerLogoSmall, .footerLogo{
        display: none;
    }
    .menuContainer{
        width: 100%;
    }
}


/* iOs special */
body.ios .fullscreenButtonEnter{
    display: none !important;
}

/* Not Desktop */
@media only screen and (max-width: 1279px) {
    .hideAtMobile{
        display: none !important;
    }
}


/* Smartphones Horizontal */
@media only screen and (orientation: landscape) and (max-width: 1024px) {
    :root {
        --thumbLineHeight: 60px !important;
        --footerHeight: 50px !important;
        --headerHeight:0px !important;
        --hotspotSize:20px;
        --hotspotIconSize:16px;
        --f-thumb-width: 48px !important;
        --f-thumb-height: 36px !important;
    }

    .footer{
        height:var(--footerHeight);
    }
    .buttonPrimary{
        width: 36px;
        height: 36px;
    }
    .slideTitleContainer,
    .headerProjectTitle,
    .menuTop,
    .menuBottom {
        display: none !important;
    }

    .mainMenu {
        top: 0 !important;
        height: 100vh !important;
    }

    main {
        padding: 0 0 40px 0 !important;
    }


    .menuContainer {
        width: 35vw !important;
    }
    .buttonPrimary {
        padding: 5px 10px !important;
        font-size: 9px !important;
    }
    header {
        display: none !important;
    }
    .pageBgAnimated {
        animation: none;
        -webkit-animation: none;
    }
    .menuCloseButton {
        top: 0 !important;
        right: -35px !important;
        border-radius: 0 5em 5em 0 !important;
        background-color: var(--menu1levelBg) !important;
        transform-origin: left;
        border-left: none;
        box-shadow: none !important;
    }
    .buttonSecondary i {
        display: none;
    }
    .popupCloseButton {
        top: 2px !important;
        right: 2px !important;
    }
    .f-button{
        width:30px !important;
        height:30px !important;
    }
    .f-button .material-icons {
        font-size: 14px !important;
    }
    .f-button.is-next {
        right: 0 !important;
    }
    .f-button.is-prev{
        left:0 !important;
    }
}