/* xl <= Extra extra large (xxl) */
@media (max-width : 1400px) {
  .hidden-xl {
    display: none;
  }
  .top-content {
    top: 25px;
  }
}

/* lg <= Extra large (xl) */
@media (max-width : 1200px) {
  .hidden-lg {
    display: none;
  }
  .footer-background {
    min-height: 530px;
  }
}

/* md <= Large (lg) */
@media (max-width : 992px) {
  .hidden-md {
    display: none;
  }
  .top-body h1 {
    font-size: 24px;
  }
  .top-content {
    top: 28px;
  }
  .top-body ul {
    margin: 0 0 3px 0;
  }
  .top-body ul li {
    padding-top: 0;
  }
  .footer-background {
    min-height: 550px;
  }
}

/* sm <= Medium (md) */
@media (max-width : 768px) {
  .hidden-sm {
    display: none;
  }
  .top-img {
    min-height: 1050px;
  }
  .top-request {
    top: 30px;
  }
  .main-menu {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    max-height: 0;
    font-size: 0;
    overflow: hidden;
    transition: .2s all;
  }
  .wrapper a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #555;
  }
  .wrapper li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-background {
    min-height: 1050px;
  }
  .wrapper .active-otzyvy, ul li.active a {
    color: #fff;
    font-style: normal;
    font-weight: 500;
  }
  #tseny .section-body .container {
    padding-left: 0;
    padding-right: 0;
  }
  #tseny {
    background-color: #FAFAFA;
  }
  #tseny .section-body h2 {
    padding-bottom: 10px;
  }
  #tseny .section-body {
    background-color: #FAFAFA;
    border: none;
    border-radius: 0;
  }
  #otzyvy .section-body .container {
    padding-left: 0;
    padding-right: 0;
  }
  #otzyvy {
    background-color: #FAFAFA;
  }
  #otzyvy .section-body h2 {
    padding-bottom: 10px;
  }
  #otzyvy .section-body {
    background-color: #FAFAFA;
    border: none;
    border-radius: 0;
  }
}

/* xs <= Small (sm) */
@media (max-width : 576px) {
  .hidden-xs {
    display: none;
  }
  .top-img {
    min-height: 850px;
  }
  .top-content {
    top: 25px;
  }
  .top-body ul {
    margin: 0 0 15px 0;
  }
  .top-body ul li {
    padding-top: 8px;
  }
  .footer-background {
    min-height: 1020px;
  }
}


/* === MOBILE FIRST === */

/* Custom (xs) */
@media (min-width : 0) {}

/* Small (sm) */
@media (min-width : 576px) {
  .hidden-min-sm {
    display: none;
  }
}

/* Medium (md) */
@media (min-width : 768px) {
  .hidden-min-md {
    display: none;
  }
  .navbar-header, .first , .second, .third,.fourth {
    display: none;
  }
  .nav>li {
    display: inline-block;
    text-align: center;
  }
  .wrapper a {
    padding: 10px;
  }
  #menu {
    text-align: center;
  }
}

/* Large (lg) */
@media (min-width : 992px) {
}

/* Extra large (xl) */
@media (min-width : 1200px) {
  .top-body {
    left: 30px;
  }
  .top-request {
    right: 30px;
  }
}

/* Extra extra large (xxl) */
@media (min-width : 1400px) {
  .top-body {
    left: 100px;
  }
  .top-request {
    right: 100px;
  }
}





