@charset "UTF-8";
#quest {
  border: 1px solid #000000;
  padding: 7px 40px;
}

#quest:hover {
  border-color: #fff;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.buttons a {
  width: 200px;
  padding: 8px;
  margin: 15px 10px;
  background-color: #c8c8c8;
  text-align: center;
  letter-spacing: 1px;
  border: 1px solid #595959;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #595959;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.buttons a:hover {
  background-color: #0086d7;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 15px #00aced;
          box-shadow: 0 0 15px #00aced;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
}

/*Начало формы отправки сообщения*/
.form-send {
  /*display: flex;*/
  margin: 0 auto;
  max-width: 1280px;
  width: 93%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 50px;
}

.form-send h1 {
  font-family: "Adobe";
  color: #03a7f6;
  font-size: 50px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 575px) {
  .form-send h1 {
    text-align: center;
  }
}

.form-send table td {
  padding-right: 120px;
  vertical-align: top;
}

.form-send table td:last-child {
  padding-right: 0;
}

.form-send input,
.form-send textarea,
.form-send img.captcha {
  font-family: "AdobeCleanLight";
  height: 42px;
  width: 450px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  -webkit-box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
          box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
  -webkit-appearance: none;
  display: inline-block;
  border: none;
  outline: none;
}

.form-send textarea {
  height: 125px;
  padding-top: 7px;
  width: 670px;
  resize: none;
}

.form-send label {
  color: #0ca9f6;
  font-size: 16px;
  font-family: "Adobe";
  margin-top: 15px;
  width: 150px;
  display: inline-block;
}

.form-send img.captcha {
  width: auto;
  margin-top: 25px;
  padding: 0;
}

.form-send div.s {
  margin-left: 298px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.form-send div.s .sendsubmit {
  background: url("img/send.jpg") no-repeat center center;
  cursor: pointer;
}

.form-send div.s .sendsubmit:hover {
  opacity: 0.9;
}

.form-send .reset {
  width: 200px;
  margin-left: 20px;
  position: relative;
  top: -19px;
}

.form-send .reset1:after {
  content: "";
  cursor: pointer;
  display: inline-block;
  background: url("img/reset.png") no-repeat;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: -28px;
  top: -11px;
}

.send {
  margin-left: -5px;
}

.send:hover,
.enter:hover {
  -webkit-box-shadow: 0 0 20px 8px rgba(255, 255, 255, 0.9);
          box-shadow: 0 0 20px 8px rgba(255, 255, 255, 0.9);
  outline: 1px solid rgba(13, 99, 169, 0.73);
}

.sends {
  z-index: 300;
  width: 600px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -300px !important;
  background: rgba(233, 236, 238, 0.9);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0 10px 50px;
}

@media (max-width: 768px) {
  .sends {
    margin-top: 0 !important;
    top: 65px;
    left: 0;
    width: 100%;
  }
}

.pop-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pop {
  z-index: 300;
  max-width: 1000px;
  display: none;
  position: fixed;
  /*left: 50%;
     margin: 70px -500px;*/
  max-height: 100%;
  overflow: auto;
  background: #ddedf8e6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0 10px 50px;
}

@media (max-width: 1000px) {
  .pop {
    /* position: absolute; */
  }
}

@media (max-width: 768px) {
  .pop {
    top: 52px;
    padding: 0;
    padding-bottom: 50px;
  }
}

.form-pop-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 1000px) {
  .form-pop-data {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .form-pop-data {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pop-data {
  padding: 15px;
}

@media (max-width: 400px) {
  .pop-data {
    padding: 0;
  }
}

.pop h1 span {
  font-size: 30px;
}

.pop input {
  width: 280px;
}

.pop textarea {
  width: 578px;
}

@media (max-width: 700px) {
  .pop textarea {
    width: 280px;
  }
}

.pop table td {
  margin-right: 10px;
}

.pop table td:first-child {
  padding-right: 60px;
}

.pop .reset {
  width: 120px;
}

.close {
  cursor: pointer;
  float: right;
  margin: -10px 20px 0 0;
  opacity: 0.5;
}

.close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .close {
    margin: 0;
  }
}

/*new code*/
form #popup-form {
  margin: 0 auto;
  max-width: 1280px;
  width: 98%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 50px;
  overflow: hidden;
}

form fieldset label {
  margin-left: 4px;
}

form fieldset.left {
  display: block;
  float: left !important;
  width: 270px;
}

form fieldset.inleft {
  display: block;
  float: left !important;
  width: 450px;
}

form fieldset.left div input {
  height: 42px;
}

form fieldset.inleft div input {
  height: 42px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  margin-left: 4px;
  -webkit-box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
          box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
  -webkit-appearance: none;
}

form fieldset.left div input.form-send-element {
  -webkit-box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
          box-shadow: 0 0 10px -1px rgba(3, 167, 246, 0.6);
}

form fieldset.right {
  display: block;
  float: left !important;
  width: 300px;
  margin-left: 50px;
}

form fieldset.inright {
  display: block;
  float: left !important;
  width: 680px;
  margin-left: 70px;
  overflow: hidden;
}

form fieldset.right div textarea {
  height: 122px;
}

form fieldset.inright div textarea {
  height: 122px;
  margin-left: 4px;
  margin-right: 4px;
}

form fieldset.inright div input {
  margin-left: 4px;
}

input,
textarea {
  outline: none;
}

form .sss {
  width: 280px;
  margin-left: 300px;
  margin-top: 20px !important;
  margin-bottom: 15px !important;
}

@media (max-width: 1000px) {
  .sss {
    margin-left: 0 !important;
  }
}

form .aaa {
  width: 200px !important;
  margin-left: 350px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

form .sss .send-submit {
  background: url("img/send.jpg") no-repeat center center !important;
  cursor: pointer;
}

form .sss .send-submit:hover {
  opacity: 0.9;
}

form .aaa .send-submit {
  background: url("img/send.jpg") no-repeat center center !important;
  cursor: pointer;
}

form .aaa input {
  width: 320px !important;
}

form .aaa .send-submit:hover {
  opacity: 0.9;
}

.cleanfix {
  clear: both;
}

textarea {
  overflow: auto;
}

input::-ms-clear {
  display: none;
}

.field-input.input-ok {
  background: url("img/icon-ok.png") no-repeat right center #e3ffe5;
  border: 1px solid #96b796;
  line-height: 19px;
}

.field-input.input-error {
  background: url("img/icon-fail.png") no-repeat right center #ffebef;
  border: 1px solid red;
  line-height: 19px;
}

div.info #navigation {
  display: block;
  margin: 0 auto;
  width: 1200px;
  height: 20px;
  margin-top: 10px;
}

div.info ul {
  margin-left: -35px;
  height: 10px;
}

div.info ul li {
  display: block;
  float: left;
  padding-left: 10px;
  font-size: 14px;
  line-height: 30px;
  font-family: "HelveticaNeuCyr";
  color: #03a7f6;
}

div.info ul li span {
  border-right: 1px solid #03a7f6;
  margin-left: 10px;
}

div.info ul li a {
  color: #03a7f6;
}

div.info ul li a.hoverimg img {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  float: left;
  margin-top: 2px;
}

div.info ul li a:hover {
  background-color: #03a7f6;
  color: #fff;
}

div.info ul li a.hoverimg img:hover {
  background: url("img/homehover.png") no-repeat;
  width: 30px;
  height: 30px;
  position: relative;
}

div.info ul li.active a {
  background-color: #03a7f6;
  color: #fff;
}
