@font-face {
  font-family: 'Exo';
  src: url("../fonts/Exo.ttf") format("truetype");
  font-weight: 400; }

@font-face {
  font-family: 'Exo';
  src: url("../fonts/Exo-Bold.ttf") format("truetype");
  font-weight: 600; }

@font-face {
  font-family: 'PTSans';
  src: url("../fonts/PTSans-Regular.ttf") format("truetype");
  font-weight: 400; }

@font-face {
  font-family: 'PTSans';
  src: url("../fonts/PTSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'PTSans';
  src: url("../fonts/PTSans-Bold.ttf") format("truetype");
  font-weight: 600; }

@font-face {
  font-family: 'PTSans';
  src: url("../fonts/PTSans-BoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic; }

body {
  font-family: 'Exo';
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
  background-color: #fafafa;
  -webkit-font-smoothing: antialised; }

a:hover, a:focus {
  text-decoration: none; }

button,
input {
  outline: none; }

select::-ms-expand {
  display: none; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0; }

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0; }

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0; }

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.text-center {
  text-align: center; }

.text-unredline {
  border-bottom: 1px dashed #496ec5; }

.link {
  color: #496ec5; }

.section-header {
  font: 600 34px 'Exo';
  text-transform: uppercase;
  text-align: center; }
  .section-header:after {
    content: '';
    display: block;
    background: #496ec5;
    width: 65px;
    height: 4px;
    position: absolute;
    bottom: -25px; }
  .section-header span {
    color: #496ec5; }

.contact-list {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .contact-list li > span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 25px;
    height: 25px; }
  .contact-list a {
    color: #fff;
    text-transform: uppercase; }

.ks,
.vodafone,
.lifesell,
.address {
  background: url(../img/contacts.png); }

.vodafone {
  background-position: 0 0; }

.ks {
  background-position: 75px 0; }

.lifesell {
  background-position: 50px 0; }

.address {
  background-position: 25px 0; }

.btn {
  padding: 0 !important;
  background: #3ba532;
  border-bottom: 4px solid #37982e !important;
  max-width: 235px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600 !important;
  letter-spacing: 1px;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease; }
  .btn:hover {
    background: #4ebc45; }

.input-wrap {
  font: 600 16px 'PTSans';
  margin-bottom: 30px; }
  .input-wrap input {
    border: 1px solid #d5d5d5;
    padding-left: 30px;
    width: 300px;
    font-weight: 400; }
  .input-wrap label {
    display: block;
    margin-bottom: 5px; }
  .input-wrap span {
    color: #ff0000; }

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.alert {
  display: none;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  position: fixed;
  top: 90px;
  left: 25%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  z-index: 1050; }

/* header */
.main-header {
  background: #496ec5;
  height: 75px;
  z-index: 10; }
  .main-header .container-inner {
    width: 100%;
    left: 0; }
  .main-header .logo-wrap {
    padding: 10px 0;
    background-color: #fff; }
    .main-header .logo-wrap:after {
      content: '';
      position: absolute;
      right: -10px;
      height: 66px;
      width: 100%;
      top: 0;
      z-index: -1;
      background-color: #fff;
      -webkit-transform: skewX(-35deg);
          -ms-transform: skewX(-35deg);
              transform: skewX(-35deg); }
  .main-header .contact-list {
    padding: 25px 0; }

.header-left,
.header-right {
  height: 66px; }

.header-right {
  width: 80%; }

.header-left {
  width: 20%;
  background: #fff; }

.callback-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 15px;
  font-size: 16px; }
  .callback-wrap span {
    margin-bottom: 5px;
    color: #a3ef00;
    border-bottom: 1px dashed #a3ef00; }
  .callback-wrap p {
    color: #fff; }

/* END header */
/* banner */
.banner {
  padding: 70px 0;
  height: 725px;
  background: url("../img/banner.jpg") no-repeat fixed;
  -webkit-background-size: cover;
          background-size: cover; }

.banner-text_header {
  font: 600 48px 'Exo';
  text-transform: uppercase; }
  .banner-text_header span {
    color: #496ec5; }

.banner-text_descr {
  display: inline-block;
  padding: 3px 60px 6px 20px;
  margin: 25px 0 50px;
  background: #496ec5;
  font: 22px 'Exo';
  color: #fff; }

.banner-advantage-wrap {
  z-index: 10; }
  .banner-advantage-wrap .banner-advantage_icon {
    width: 50px;
    height: 50px;
    background: #fff;
    margin-right: 20px;
    -webkit-box-shadow: 0px 16px 16.2px 1.8px rgba(0, 3, 2, 0.17);
            box-shadow: 0px 16px 16.2px 1.8px rgba(0, 3, 2, 0.17); }
    .banner-advantage-wrap .banner-advantage_icon .banner-icon_mask {
      top: 10px;
      left: 10px;
      width: 100%;
      height: 100%;
      background: url("../img/banner-adv-bg.png") repeat;
      z-index: -1; }
    .banner-advantage-wrap .banner-advantage_icon img {
      margin: auto; }
  .banner-advantage-wrap .banner-advantage_text {
    margin: auto 0;
    font-family: 'PTSans'; }
    .banner-advantage-wrap .banner-advantage_text span {
      font-weight: 600; }
    .banner-advantage-wrap .banner-advantage_text .banner-advantage_header {
      text-transform: uppercase;
      font-size: 16px; }

.main-form-wrap {
  font: 400 16px 'PTSans';
  padding: 40px 15px;
  background: #fff;
  border-style: dashed;
  border-width: 3px;
  border-color: rgba(73, 110, 197, 0.46);
  z-index: 50; }
  .main-form-wrap .form-header {
    font-size: 22px; }
  .main-form-wrap .section-header {
    margin-bottom: 25px; }
    .main-form-wrap .section-header:after {
      left: 40%;
      bottom: -15px; }
  .main-form-wrap .form-text span {
    font-weight: 600; }

.main-form {
  padding: 0 15px;
  margin-top: 25px; }
  .main-form .input-wrap input {
    height: 55px;
    text-align: center;
    width: 100%; }
  .main-form .input-wrap input[type=submit] {
    max-width: 100%; }
  .main-form p {
    color: #6a6a6a;
    margin: 10px 0; }

.banner-image-wrap {
  bottom: 40px;
  z-index: 1;
  -webkit-transform: translateY(-90px);
      -ms-transform: translateY(-90px);
          transform: translateY(-90px); }

/* END banner */
/* tabs */
.tabs {
  background: url("../img/tabs-bg.jpg"); }
  .tabs .section-header {
    margin-bottom: 50px; }
    .tabs .section-header:after {
      left: 48%; }
  .tabs .tabs-container {
    background: #fafafa;
    width: 900px;
    margin: 60px auto 60px;
    padding-left: 25px;
    padding-right: 25px; }

.nav-tabs {
  width: 30%;
  border-bottom: 0; }

.tab-content {
  width: 70%; }

.tab-content > .active {
  background: #fff;
  -webkit-box-shadow: 0px 19px 43.71px 3.29px rgba(0, 3, 2, 0.12);
          box-shadow: 0px 19px 43.71px 3.29px rgba(0, 3, 2, 0.12);
  padding: 35px 40px; }

.nav-tabs > li > a {
  text-transform: uppercase;
  color: #dddddd;
  font: 600 22px 'Exo';
  -webkit-border-radius: 0;
          border-radius: 0;
  border: 0;
  height: 95px; }
  .nav-tabs > li > a:hover {
    background: transparent; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border: 0; }

.nav-tabs > li.active {
  -webkit-box-shadow: 0px 19px 43.71px -17px rgba(0, 3, 2, 0.12);
          box-shadow: 0px 19px 43.71px -17px rgba(0, 3, 2, 0.12); }

.nav-tabs > li.active > a {
  margin-right: 0; }

.tab-pane {
  min-height: 500px; }

.buttons-wrap {
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
  margin-bottom: 40px;
  font: 0 'PTSans'; }
  .buttons-wrap .spring-btn {
    display: inline-block;
    height: 50px;
    width: 50%;
    font-size: 16px;
    line-height: 50px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    background: transparent;
    border: 0; }
    .buttons-wrap .spring-btn.active {
      color: #fff;
      background: #496ec5;
      -webkit-transition: all .35s ease;
      -o-transition: all .35s ease;
      transition: all .35s ease; }
      .buttons-wrap .spring-btn.active:hover {
        background: #5c87eb; }

.form-center,
.form-lists {
  font: 0 'PTSans'; }
  .form-center .input-wrap input[type=radio],
  .form-center .input-wrap input[type=checkbox],
  .form-lists .input-wrap input[type=radio],
  .form-lists .input-wrap input[type=checkbox] {
    border: 2px solid #e4e4e4;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    padding: 0.5em;
    width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
    -webkit-appearance: none; }
  .form-center .input-wrap input[type=radio]:checked,
  .form-center .input-wrap input[type=checkbox]:checked,
  .form-lists .input-wrap input[type=radio]:checked,
  .form-lists .input-wrap input[type=checkbox]:checked {
    background: url("../img/checked.png") no-repeat center center;
    -webkit-background-size: 9px 9px;
            background-size: 9px 9px; }
  .form-center .input-wrap label,
  .form-lists .input-wrap label {
    margin-bottom: 0; }
  .form-center .input-wrap > div,
  .form-lists .input-wrap > div {
    width: 50%; }
  .form-center .input-wrap:first-child,
  .form-lists .input-wrap:first-child {
    margin-top: 40px; }

.inner-tab-container {
  font: 600 16px 'PTSans'; }
  .inner-tab-container .inner-tab-header {
    margin-left: -40px;
    margin-right: -40px;
    padding: 10px 40px;
    background: #f6f6f6; }
    .inner-tab-container .inner-tab-header p:first-child {
      margin-right: 35px; }
  .inner-tab-container .inner-tab-content {
    padding: 15px 0 25px; }
    .inner-tab-container .inner-tab-content input {
      height: 50px;
      font-weight: 400;
      padding-left: 10px; }
      .inner-tab-container .inner-tab-content input:first-child {
        margin-right: 35px; }

.select-style {
  border: 1px solid #ccc;
  width: 55px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  overflow: hidden;
  z-index: 10; }

.select-style.select-trailer {
  width: 120px; }

.select-style:after {
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 13px;
  right: 5px;
  z-index: -1; }

.select-style select {
  padding: 5px 8px;
  width: 100%;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.select-style select:focus {
  outline: none; }

.select-style-bg {
  width: 20px;
  height: 32px;
  right: 0;
  position: absolute;
  background: #496ec5;
  z-index: -1; }

.select-trailer {
  margin-bottom: 25px; }

#center-btn,
#lists-btn {
  height: 60px; }

.form-price .input-wrap input {
  height: 60px; }

.form-price .input-wrap.d-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }

.form-size {
  margin-top: 25px; }
  .form-size .input-wrap {
    margin-bottom: 10px; }
    .form-size .input-wrap label {
      width: 55%; }
    .form-size .input-wrap input {
      height: 30px;
      width: 40%; }
    .form-size .input-wrap.d-flex {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .form-size .input-wrap .btn {
      height: 60px; }

/* END tabs */
/* production */
.production {
  padding: 70px 0;
  height: 760px;
  background: url("../img/production-bg.png") no-repeat fixed;
  -webkit-background-size: cover;
          background-size: cover; }
  .production .section-header {
    color: #fff;
    margin-bottom: 75px; }
    .production .section-header:after {
      background: #fff;
      left: 45%; }

.production-image_small {
  width: 25%;
  background: #26499b;
  color: #fff; }

.production-image {
  width: 37.5%; }
  .production-image:not(:last-child) {
    color: #fff; }
  .production-image:last-child .production-image_header:after {
    background: #496ec5; }
  .production-image img {
    width: 100%; }

.production-image_small img,
.production-image img {
  display: block; }

.production-image_small-wrap {
  right: -1px;
  top: 25%; }

.production-image_mask {
  width: 100%;
  height: 100%;
  top: 0;
  padding: 30px 25px;
  font: 600 22px 'Exo'; }
  .production-image_mask .production-image_header {
    text-transform: uppercase;
    margin-bottom: 15px; }
    .production-image_mask .production-image_header:after {
      content: '';
      position: absolute;
      display: block;
      height: 2px;
      width: 50px;
      background: #fff;
      bottom: -15px; }
  .production-image_mask a {
    font: 400 16px 'PTSans';
    border-bottom: 1px dashed #496ec5;
    text-transform: none; }

/* END production */
/* delivery */
.delivery {
  height: 250px;
  background: #fafafa; }
  .delivery > .container-inner {
    position: absolute;
    width: 100%;
    height: 500px;
    top: -250px; }
  .delivery .section-header {
    text-align: left; }

.delivery-wrap {
  background: url("../img/map-section.jpg");
  height: 500px;
  padding-left: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 21px 57px 0px rgba(0, 3, 2, 0.09);
          box-shadow: 0px 21px 57px 0px rgba(0, 3, 2, 0.09); }

/* END delivery */
/* results */
.results {
  background: #fafafa;
  padding: 80px 0; }
  .results .section-header {
    margin-bottom: 65px; }
    .results .section-header:after {
      left: 47%; }

/* END results */
/* adv */
.adv {
  background: url("../img/adv-bg.png");
  padding: 35px 0; }
  .adv .section-header {
    color: #fff; }
    .adv .section-header:after {
      content: none; }

/* END adv */
/* footer */
.main-footer {
  background: #496ec5;
  padding: 30px 0; }

/* END footer */
/* media */
@media screen and (min-width: 768px) {
  .address a {
    pointer-events: none; } }

@media screen and (min-width: 1900px) {
  /* header */
  .header-left {
    width: 30%; }
  /* END header */ }

@media screen and (min-width: 2400px) {
  /* header */
  .header-left {
    width: 40%; }
  /* END header */ }

@media screen and (min-width: 3400px) {
  /* header */
  .header-left {
    width: 50%; }
  /* END header */ }

@media screen and (min-width: 5000px) {
  /* header */
  .header-left {
    width: 60%; }
  /* END header */ }

@media screen and (min-width: 7900px) {
  /* header */
  .header-left {
    width: 65%; }
  /* END header */ }

@media screen and (max-width: 1200px) {
  /* header */
  .callback-wrap span {
    color: #ff9800;
    border-bottom: 1px dashed #ff9800; }
  .callback-wrap p {
    color: #000; }
  /* END header */
  /* banner */
  .main-form .input-wrap input {
    padding-left: 5px; }
  /* END banner */
  /* production */
  .production-image_small-wrap img {
    width: 100%; }
  /* End production */ }

@media screen and (max-width: 992px) {
  /* header */
  .logo-wrap img {
    width: 100%; }
  /* END header */
  /* banner */
  .banner {
    height: auto;
    padding-bottom: 0; }
  .main-form-box {
    margin-top: 40px; }
  .main-form-wrap .section-header:after {
    left: 45%; }
  /* END banner */
  /* tabs */
  .tabs .tabs-container {
    width: 100%; }
  .tabs-container_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .nav-tabs,
  .tab-content {
    width: 100%; }
  .tab-content {
    z-index: 30; }
  .nav > li, .nav > li > a {
    display: inline-block; }
  .nav-tabs > li > a {
    height: 65px; }
  .nav-tabs > li.active {
    -webkit-box-shadow: 1px 0px 25.71px 3px rgba(0, 3, 2, 0.12);
            box-shadow: 1px 0px 25.71px 3px rgba(0, 3, 2, 0.12); }
  /* END tabs */
  /* production */
  .production {
    height: auto; }
  .production-images-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .production-image_small,
  .production-image {
    width: 50%;
    margin: 0 auto; }
  .production-image_small-wrap {
    position: relative; }
  /* END production */
  /* delivery */
  .delivery {
    height: auto; }
    .delivery > .container-inner {
      position: relative;
      height: auto;
      top: initial; }
  /* END delivery */
  /* footer */
  .main-footer .contact-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .main-footer .contact-list li {
      margin-bottom: 15px; }
  /* END footer */ }

@media screen and (max-width: 768px) {
  .hidden-xs {
    display: none; }
  /* header */
  .header-right {
    background: #fff; }
  .header-left,
  .header-right {
    height: 67px; }
  .main-header .logo-wrap img {
    width: auto; }
  .main-header .logo-wrap:after {
    content: none; }
  /* END header */
  /* banner */
  .banner-advantage-wrap {
    margin-top: 20px; }
  /* END banner */
  /* tabs */
  .nav-tabs > li > a {
    font-size: 16px;
    height: 45px; }
  /* END tabs */
  /* delivery */
  .production-image_small,
  .production-image {
    width: 70%;
    margin: 0 auto; }
  .delivery-wrap {
    height: 400px;
    background-position: -480px center; }
  /* END delivery */ }

@media screen and (max-width: 640px) {
  /* sections */
  .section-header {
    font-size: 28px; }
  /* END sections */
  /* banner */
  .banner-text_header {
    font-size: 32px; }
  .banner-text_descr {
    font-size: 18px;
    margin: 15px 0 30px; }
  .nav > li,
  .nav > li > a {
    display: block; }
  /* END banner */ }

@media screen and (max-width: 540px) {
  /* tabs */
  .form-center .input-wrap,
  .form-lists .input-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .form-center .input-wrap > div,
    .form-lists .input-wrap > div {
      margin-bottom: 10px;
      width: 100%; }
  .form-size .input-wrap input,
  .form-size .input-wrap label {
    width: 100%; }
  .form-size .input-wrap.d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .inner-tab-container .inner-tab-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .inner-tab-container .inner-tab-header p {
      margin-bottom: 5px; }
  .inner-tab-container .inner-tab-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .inner-tab-container .inner-tab-content input:first-child {
      margin-right: 0;
      margin-bottom: 5px; }
  /* END tabs */
  /* production */
  .production-image_mask {
    font-size: 18px;
    padding: 15px 10px; }
  /* END production */
  /* footer */
  .main-footer .contact-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  /* END footer */ }

@media screen and (max-width: 440px) {
  /* tabs */
  .buttons-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .buttons-wrap .spring-btn {
      width: 100%; }
  .form-price .input-wrap input {
    width: 100%;
    padding-left: 10px; }
  .nav-tabs > li > a {
    font-size: 15px; }
  /* END tabs */
  /* delivery */
  .delivery-wrap {
    height: 350px;
    background-position: -350px center;
    -webkit-background-size: cover;
            background-size: cover; }
  /* END delivery */ }

@media screen and (max-width: 400px) {
  /* delivery */
  .delivery-wrap {
    height: 300px;
    background-position: -300px center;
    -webkit-background-size: cover;
            background-size: cover; }
  /* END delivery */ }

@media screen and (max-width: 320px) {
  /* delivery */
  .delivery-wrap {
    height: 250px;
    background-position: -250px center;
    -webkit-background-size: cover;
            background-size: cover; }
  /* END delivery */ }

/* END media */
