/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .container {
        max-width: 1280px;
        display: block;
        margin: 0 auto;
    }

    .footer_b-wrap p.right {
        float:right;
    }
    .footer_b-wrap p.left {
        float:left;
    }

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {


    .logo-wrap img {
        width: 212px;
    }
    .markH3 h3 {
        font-size: 19px;
    }

    .footer-wrap {
        text-align: center;
    }
    .footer-contacts-wrap {
        text-align: center;
        margin-top: 15px;
    }
    .footer_b-wrap p {
        text-align: center;
        float:none;
        display: block;
    }
    .footer_b-wrap p.right {
        float:none;
    }
    .footer_b-wrap p.left {
        float:none;
    }
    .oren_gerb img, .gerb_rossii img {
        width: 54px;
    }

}

/* 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) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .button-banner {
        display: inline-block;
        float: right;
    }

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}