/*
_______________________________________________________________________________
Media Queries                                                   [media_queries]
_______________________________________________________________________________

/* media_queries_mobile */
/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

@media only screen and (min-width : 320px) and (max-width : 568px){
}

@media only screen and (min-width : 576px) and (max-width : 768px) and (orientation : landscape) {

}

@media only screen and (max-width : 480px)  {

}

/* Medium screens */
@media all and (max-width: 800px) {

}

/* Small screens */
@media all and (max-width: 500px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

@media only screen and (max-width : 428px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
/* media_queries_non_mobile */
/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}
/* iPad 14 */
@media only screen and (max-width : 810px) {

}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}

/* ----------- iPad Pro 10.5" ----------- */
/* Portrait and Landscape */
@media only screen
and (min-device-width: 834px)
and (max-device-width: 1112px)
and (-webkit-min-device-pixel-ratio: 2) {


}

/* ----------- iPad Pro 14.7.1" ----------- */
/* Portrait and Landscape */
@media only screen
and (min-width: 810px)
and (max-width: 1080px) {

}

/* ----------- iPad Pro 12.9" ----------- */

/* Portrait and Landscape */
@media only screen
and (min-width: 1024px)
and (max-width: 1366px)
and (-webkit-min-device-pixel-ratio: 2) {

}

/* Portrait and Landscape */
@media only screen
and (min-width: 981px)
and (max-width: 1366px)
and (-webkit-min-device-pixel-ratio: 2) {

}

/* Portrait */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen
and (min-device-width: 1024px)
and (max-device-height: 1366px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait)  {

}

/* Landscape */
/* Declare the same value for min- and max-width to avoid colliding with desktops */
/* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
@media only screen
and (min-device-width: 1024px)
and (max-device-height: 1366px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {

}

/* ----------- Galaxy Fold ----------- */
/* Landscape */
@media(max-width: 280px){
    .logo-big {
        display: none!important;
    }

    .logo-small {
        display: block!important;
        width: 20px!important;
        height: 20px!important;
    }
}

@media screen and (max-width: 676px) {

}

@media only screen and (min-width: 350px) {
}

@media only screen and (min-width: 370px) {

}

@media (max-width: 400px){

}

@media only screen and (min-width: 400px) {

}

@media only screen and (min-width: 567px) {

    img.logo-big {
        display: block;
    }

    img.logo-small {
        display: none;
    }
}

@media only screen and (min-width: 500px) {
}

@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 630px) {

}

@media only screen and (min-width: 666px) {

    img.logo-big {
        display: block;
    }

    img.logo-small {
        display: none;
    }
}

@media only screen and (min-width: 769px) {

    img.logo-big {
        display: block;
    }

    img.logo-small {
        display: none;
    }

}

@media only screen and (min-width: 800px) {


}

@media only screen and (min-width: 810px) {

}

@media only screen and (min-width: 820px) {

}

@media only screen and (min-width: 1000px) {
}

@media only screen and (min-width: 1200px) {


}

@media only screen and (min-width: 1400px) {
}

@media only screen and (min-width: 1600px) {

}

@media only screen and (min-width: 1919px) {

}

/*Small devices (landscape phones, 576px and up)*/
@media only screen and (min-width: 576px) {
    .logo-small {
        width:194px;
    }
}
/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .logo-small {
        width:194px;
    }
}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {

}
/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {

}
/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {

}

