/* Кольори */
.mainTrans {
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
}
.mainTransAlt {
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}
/*==========  Desktop First Method  ==========*/
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
  #nav.active a#menu {
    background: #428bca;
    color: #fff;
  }
  #nav.active ul {
    display: block;
  }
  #nav a#menu {
    display: block;
  }
  #nav ul {
    display: none;
  }
  #content .prices .price-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  #hero .site-heading h1 {
    font-size: 45px;
  }
  #hero .site-heading .slogan {
    font-size: 19px;
  }
  .social-links {
    margin-top: 15px;
  }
  .social-links .icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 482px) {
  h1 span.break {
    display: block;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  #hero {
    min-height: 470px;
  }
  #content .prices .price-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
/* Custom, iPhone Retina */
/*==========  Mobile First Method  ==========*/
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
