@media screen and (min-width: 1200px) {
  .info{
    padding-left: 50px;
    padding-right: 50px;
  }
  .menu{
    padding-top: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .info{
    padding-left: 50px;
    padding-right: 50px;
  }
  .menu{
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .menu{
    padding-top: 30px;
  }
}
@media screen and (min-width: 425px) and (max-width: 767px) {
  .menu{
    padding-top: 10px;
  }
  .expert h3{
    text-align: center;
  }
  .submenu{
    padding: 3px;
  }
}
@media screen and (max-width: 425px) {
  .menu{
    padding-top: 10px;
  }
  .expert h3{
    text-align: center;
  }
  .submenu{
    padding: 3px;
  }
  .contact h3{
    font-size: 15px;
  }
  .contact h4{
    font-size: 12px;
  }
  .contact img{
    width: 20px;
  }


}

body{
  background: url('../img/bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.info{
  background: url('../img/bg2.png');
  padding-top: 10px;
}
.expert{
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact h4{
  padding-left: 20px;
}

.submenu img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.submenu:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.expert  {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.expert:hover  {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
