* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear:after {
  content: "";
  display: block;
  clear: both;
}
body {
  background: #000;
}
.wrapper {
  max-width: 1024px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  color: #d0d0d0;
}
.left-block {
  display: block;
  float: left;
  width: 25%;
  background: #333333;
  padding: 20px 15px;
  text-align: center;
  min-height: 770px;
}
.right-block-img {
  display: block;
  float: right;
  width: 38%;
  min-height: 770px;
  position: relative;
  overflow: hidden;
}
.right-block-img img {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 100%;
  min-width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
          transition: all 0.6s ease-in-out;
}
.right-block-img img:hover {
  -webkit-transform: translateX(-60%);
      -ms-transform: translateX(-60%);
          transform: translateX(-60%);
}
.title-absolute {
  position: absolute;
  right: 5px;
  text-align: right;
  top: 160px;
  z-index: 500;
}
.title-absolute p {
  display: inline-block;
  background: #333333;
  padding: 20px 10px;
  font-size: 18px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.right-block {
  color: #fff;
  display: block;
  float: right;
  width: 37%;
  background: #000;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  text-align: justify;
  text-transform: uppercase;
  font-size: 12px;
}
.right-block p {
  padding-bottom: 30px;
}
.right-block .title {
  font-size: 14px;
  padding-bottom: 17px;
  text-align: center;
}
.phone-block {
  padding: 30px 0;
}
.phone-block a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
.phone-block a:hover {
  opacity: .7;
}
.top-menu li {
  text-align: left;
  padding-bottom: 15px;
}
.top-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}
.top-menu li a:hover {
  opacity: .7;
}
.button-pop {
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  width: 225px;
  border: 2px solid #fff;
  margin: 0px auto 60px auto;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  background: #000;
}
.button-pop:hover {
  background: #fff;
  color: #000;
}
.call-button {
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  width: 225px;
  border: 2px solid #fff;
  margin: 0px auto 60px auto;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  background: #000;
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}
.call-button:hover {
  background: #fff;
  color: #000;
}
.bg-pop {
  position: absolute;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
  background: rgba(51, 51, 51, 0.9);
  z-index: 999;
}
.pop {
  width: 330px;
  padding: 34px 15px;
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}
.pop p {
  padding-bottom: 20px;
}
.pop input[type="text"],
.pop input[type="tel"],
.pop input[type="email"],
.pop textarea {
  display: block;
  width: 100%;
  line-height: 30px;
  height: 40px;
  background: #cccccc;
  border: none;
  margin-bottom: 10px;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  font-family: 'Roboto', sans-serif;
}
.pop textarea {
  height: 100px;
  font-family: 'Roboto', sans-serif;
  padding-top: 8px;
  margin-bottom: 10px;
}
.pop input[type="submit"] {
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  width: 225px;
  border: 2px solid #fff;
  margin: 0px auto 60px auto;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  background: #000;
}
.pop input[type="submit"]:hover {
  background: #fff;
  color: #000;
}
.close {
  width: 15px;
  height: 15px;
  background: url(../images/close.png);
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.close:hover {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
*::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
*:-moz-placeholder {
  color: #000;
  opacity: 1;
}
*::-moz-placeholder {
  color: #000;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.success {
  display: none;
  padding: 15px 30px !important;
  text-transform: uppercase;
  width: 330px;
  height: 330px;
  background: #000;
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.success span {
  background: #5f8208;
  display: block;
  padding: 15px 0;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.logo-mob {
  display: none;
}
@media screen and (max-width: 850px) and (min-width: 767px) {
  .pop {
    width: 290px;
  }
  .success {
    width: 260px;
  }
  .logo img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .left-block {
    float: none;
    width: 100%;
    height: 50px;
    min-height: 40px;
    padding-top: 0;
    margin-bottom: 55px;
  }
  .logo {
    display: none;
  }
  .logo-mob {
    position: absolute;
    display: block;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .logo-mob img {
    width: 175px;
  }
  .phone-block {
    display: none;
  }
  .top-menu {
    width: 100%;
    padding: 10px;
    text-align: left;
    position: absolute;
    background: #333333;
    z-index: 500;
    display: none;
    left: 0;
    top: 49px;
  }

  .top-menu li {
    display: block;
    text-align: left;
    border-top: 2px solid #fff;
    padding: 5px 10px;
  }
  .top-menu li:last-child {
    border-bottom: 2px solid #fff;
  }
  .mobile-menu {
    width: 20px;
    height: 15px;
    float: left;
    margin-top: 13px;
    margin-right: 20px;
    cursor: pointer;
    background: url(../images/menu_mob.png);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .active-mob {
    background: url(../images/close.png) center center no-repeat;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .right-block .button-pop {
    margin-bottom: 0;
    position: absolute;
    background: #333333;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 80px;
    left: 50%;
  }
  .right-block .button-pop:hover {
    color: #fff;
  }
  .right-block {
    width: 100%;
    padding: 10px 10px 20px 10px;
  }
  .right-block .title {
    display: none;
  }
  .call-button {
    display: block;
    margin-bottom: 0;
    text-decoration: none;
  }
  .right-block-img {
    float: none;
    width: 100%;
    min-height: 160px;
    position: static;
  }
  .right-block-img img {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 90%;
    display: block;
    max-width: 500px;
    margin: 0 auto;
    min-width: 1px;
  }
  .title-absolute {
    position: relative;
    right: auto;
    top: auto;
    background: none;
    text-align: center;
  }
  .title-absolute p {
    background: none;
    font-size: 14px;
    color: #fff;
    padding-bottom: 10px;
  }
  .title-absolute p:last-child {
    display: none;
  }
  .bg-pop {
    position: fixed;
  }
  .pop {
    top: 80px;
  }
  .left-block {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  body {
    padding-top: 100px;
  }
  .close {
    top: 65px;
  }
  .success {
    background: none;
    top: 80px;
  }
  .right-block-img img:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  .right-block .button-pop {
    width: 95%;
  }
}
