@import url(../fonts/stylesheet.css);
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #151515;
  font: 17px/26px HelveticaNeue, "TimesNewRoman", Verdana, sans-serif;
  background: #ffffff;
  min-width: 320px;
}

@media only screen and (max-width: 767px) {
  body {
    background: #f0f0f0;
  }
}

img {
  border-style: none;
  vertical-align: top;
  image-rendering: crisp-edges;
}

a {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  color: #000;
  outline: none;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

* {
  outline: none;
  font-weight: normal;
  font-style: normal;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-height: 1px;
}

main,
header,
nav,
section,
article,
aside,
footer,
figure,
menu,
dialog {
  display: block;
}

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

input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

textarea,
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
}

strong {
  font-weight: bold;
}

em {
  font-weight: 300;
}

/*slick slider css start*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-slide {
  display: block;
  float: left;
  height: 100%;
  min-height: 1px;
}

/*slick slider css end*/
.btn {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 5px 15px;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease .2s;
  -moz-transition: all ease .2s;
  -o-transition: all ease .2s;
  transition: all ease .2s;
  text-transform: uppercase;
}

.btn:active {
  -webkit-transform: translate(0, 1px);
  -ms-transform: translate(0, 1px);
  -o-transform: translate(0, 1px);
  -moz-transform: translate(0, 1px);
       transform: translate(0, 1px);
}

.btn.btn-primary {
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  padding: 5px 10px;
  text-transform: uppercase;
  padding: 14px 55px 14px 30px;
  position: relative;
  margin: 0 auto; /*man_corr*/
  display: block; /*man_corr*/
}

.btn.btn-primary:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: auto;
  right: 27px;
  width: 19px;
  height: 15px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -78px -16px;
  opacity: 1;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.btn.btn-primary:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: auto;
  right: 27px;
  width: 19px;
  height: 15px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -78px 1px;
  opacity: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.btn.btn-primary:hover {
  background: #ffffff;
  color: #151515;
}

.btn.btn-primary:hover:after {
  opacity: 0;
}

.btn.btn-primary:hover:before {
  opacity: 1;
}

.btn.btn-yellow {
  background: #ffcd00;
  color: #151515;
}

.btn.btn-yellow:hover {
  background: #f1c200;
}

.btn.btn-black {
  border: 2px solid #151515;
  background: none;
  color: #151515;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: bold;
}

.btn.btn-black:hover {
  background: #151515;
  color: #ffcd00;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #151515;
  z-index: 9999;
}

.header .header-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 55px;
}

.header .phone-link {
  text-align: center;
  margin: 0 0 -2px;
}

.header .phone-link a {
  font-weight: 500;
  color: #959595;
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}

.header .logo {
  width: 115px;
  height: 35px;
  margin: 0;
}

@media only screen and (max-width: 1300px) {
  .header {
    display: block;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding-left: 280px;
}

@media only screen and (max-width: 1300px) {
  #wrapper {
    padding-left: 0;
  }
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 991px) {
  .container {
    padding: 0 15px;
  }
}

.logo {
  display: block;
  width: 180px;
  height: 67px;
  margin: 0 auto 14vh;
}

.logo a {
  display: block;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/logo.png) no-repeat;
  -o-background-size: contain;
     background-size: contain;
}

.mob-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  letter-spacing: -6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

.mob-menu li {
  letter-spacing: 0;
  width: 33.3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.mob-menu li:first-child {
  background: #ffcd00;
}

.mob-menu li:first-child + li {
  background: #151515;
}

.mob-menu li:last-child {
  background: #ffffff;
}

.mob-menu .ico {
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

.mob-menu .ico img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

@media only screen and (max-width: 1300px) {
  .mob-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav {
  background: #151515;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 280px;
  z-index: 100;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.nav .content-holder {
  padding: 50px 22px 50px 22px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-right: -20px;
  padding-left: 20px;
  max-height: 100%;
}

.nav .nav-list {
  padding: 0 17px;
  margin: 0 0 20vh;
  list-style: none;
}

.nav .nav-list li.acitve a {
  color: #ffffff;
}

.nav .nav-list li.acitve a:after {
  border-left-color: #ffffff;
}

.nav .nav-list a {
  color: #959595;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  padding: 15px 25px 15px 0;
  display: block;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.nav .nav-list a:hover {
  color: #ffffff;
}

.nav .nav-list a:hover:after {
  border-left-color: #ffffff;
}

.nav .nav-list a:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 0;
  left: auto;
  width: 0;
  height: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  border-top: 4px solid transparent;
  border-left: 8px solid #959595;
  border-bottom: 4px solid transparent;
}

.nav .phone-link {
  text-align: center;
  margin: 0 0 -2px;
}

.nav .phone-link a {
  font-weight: 500;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}

.nav .recall-link {
  text-align: left;
  margin: 0 0 4.5vh;
}

.nav .recall-link a {
  font-size: 15px;
  line-height: 1.2;
  color: #959595;
  text-decoration: none;
  padding-bottom: 1px;
  display: inline-block;
  border-bottom: 1px dotted #959595;
  margin-left: 28px;
  position: relative;
}

.nav .recall-link a:hover {
  color: #ffffff;
}

.nav .recall-link a:after {
  content: '';
  position: absolute;
  top: 3px;
  left: -27px;
  width: 14px;
  height: 14px;
  background: url(../images/sprite.png) no-repeat;
  background-position: 0 0;
}

.nav .addres-box span {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-left: 25px;
}

.nav .addres-box span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 16px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -22px 0;
}

.nav .copy {
  display: none;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.nav .copy span {
  display: inline-block;
  vertical-align: middle;
}

.nav .copy a {
  display: inline-block;
  vertical-align: top;
}

.nav .copy a img {
  vertical-align: top;
}

@media only screen and (max-width: 1300px) {
  .nav {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    z-index: 1;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
  .nav .content-holder {
    padding: 39px 25px 80px;
    margin: 0 0 0 0;
    height: auto;
    overflow: hidden;
  }
  .nav .logo {
    margin-bottom: 39px;
  }
  .nav .nav-list {
    display: none;
  }
  .nav .recall-link {
    text-align: center;
  }
  .nav .addres-box {
    margin-bottom: 34px;
  }
  .nav .copy {
    display: block;
  }
}

.top-section {
  position: relative;
}

.top-section .main-slider .slide {
  position: relative;
  height: 100vh;
  -o-background-size: cover;
     background-size: cover;
  background-position: 50% 50%;
}

.top-section .main-slider .slide .bg_img {
  display: none;
}

.top-section .main-slider .slick-dots {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  letter-spacing: 0;
}

.top-section .main-slider .slick-dots li {
  display: block;
  height: auto;
  margin: 10px 0;
  padding: 0;
}

.top-section .main-slider .slick-dots li.slick-active button:after {
  background: #ffffff;
}

.top-section .main-slider .slick-dots button {
  border: none;
  letter-spacing: 0;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  background: none;
  position: relative;
  display: block;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
}

.top-section .main-slider .slick-dots button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid #ffffff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.top-section .inner-holder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  background-color: rgba(21, 21, 21, 0.5);
  z-index: 10;
  overflow: hidden;
}

.top-section .inner-holder.form-open .form-box {
  top: 50%;
}

.top-section .inner-holder.form-open .context-box {
  top: 200vh;
}

.top-section .inner-holder.form-open .bottom-box .btn:before {
  content: attr(data-form-open);
}

.top-section .inner-holder .context-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  padding: 10px 20px 80px 61px;
}

.top-section .inner-holder h3 {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  display: block;
  margin: 0 0 30px;
  color: #ffffff;
  text-transform: uppercase;
}

.top-section .inner-holder h2 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 30px;
  color: #ffffff;
}

.top-section .inner-holder h2 span {
  color: #ffcd00;
  font-weight: bold;
}

.top-section .inner-holder .bottom-box {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.top-section .inner-holder .bottom-box .btn {
  height: 80px;
  background: #ffcd00;
  color: #151515;
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 10px;
}

.top-section .inner-holder .bottom-box .btn:hover {
  background: #f1c200;
}

.top-section .inner-holder .bottom-box .btn:after {
  content: '';
  width: 19px;
  height: 26px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -51px 0;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.top-section .inner-holder .bottom-box .btn:before {
  content: attr(data-form-close);
  font-weight: bold;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #151515;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.top-section .inner-holder .form-box {
  position: absolute;
  top: -200vh;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 10px 20px 80px 61px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.top-section .inner-holder .form-box .default-form {
  max-width: 360px;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .top-section .main-slider .slide {
    height: -webkit-calc(100vh - 40px);
    height: -moz-calc(100vh - 40px);
    height: calc(100vh - 40px);
  }
}

@media only screen and (max-width: 991px) {
  .top-section .main-slider .slide {
    height: 700px;
  }
  .top-section .main-slider .slick-dots {
    top: auto;
    bottom: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    right: auto;
  }
  .top-section .main-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
  }
  .top-section .inner-holder {
    width: 100%;
  }
  .top-section .inner-holder .bottom-box .btn {
    height: 70px;
  }
  .top-section .inner-holder .form-box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .top-section .inner-holder .context-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 520px) {
  .top-section .inner-holder h2 {
    font-size: 28px;
  }
  .top-section .inner-holder h3 {
    font-size: 15px;
  }
  .top-section .inner-holder .btn-primary {
    padding-left: 10px;
    padding-right: 60px;
    text-align: center;
    width: 100%;
  }
  .top-section .inner-holder .bottom-box .btn {
    font-size: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top-section .inner-holder .bottom-box .btn:after {
    min-width: 26px;
    display: block;
  }
  .top-section .inner-holder .bottom-box .btn:before {
    display: block;
  }
  .top-section .inner-holder.form-open .form-box {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    top: 54px;
  }
}

.default-form .row {
  margin-bottom: 2.3vh;
}

.default-form .row.error .input {
  border-bottom-color: red;
}

.default-form .input {
  font-size: 15px;
  line-height: 1.2;
  color: #dadada;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #dadada;
  padding: 0 20px;
  background: none;
  height: 50px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.default-form .input:focus::-webkit-input-placeholder {
  color: transparent;
}

.default-form .input:focus:-ms-input-placeholder {
  color: transparent;
}

.default-form .input::focus::-moz-placeholder {
  color: transparent;
}

.default-form .input:focus::-webkit-input-placeholder {
  color: transparent;
}

.default-form .input::-webkit-input-placeholder {
  color: #dadada;
  opacity: 1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.default-form .input::-webkit-input-placeholder {
  color: #dadada;
  opacity: 1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.default-form .input:-moz-placeholder {
  color: #dadada;
  opacity: 1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.default-form .input::-moz-placeholder {
  color: #dadada;
  opacity: 1;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.default-form .checkbox {
  padding-top: 2.5vh;
  margin-bottom: 4vh;
}

.default-form .checkbox.error span:after {
  background: red;
}

.default-form .checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  opacity: 0;
  cursor: pointer;
}

.default-form .checkbox input[type="checkbox"]:checked + span:before {
  opacity: 1;
}

.default-form .checkbox span {
  padding-left: 26px;
  color: #ffffff;
  font-size: 13px;
  line-height: 22px;
  position: relative;
  display: block;
}

.default-form .checkbox span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #ffffff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.default-form .checkbox span:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 11px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -3px -19px;
  z-index: 100;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
}

.default-form .checkbox span a {
  display: inline-block;
  text-decoration: underline;
  color: #ffcd00;
}

.default-form .checkbox span a:hover {
  text-decoration: none;
}

.default-form .submit-box .btn {
  display: block;
  width: 100%;
  color: #151515;
  text-transform: uppercase;
  background: #ffcd00;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  padding: 16px 10px;
  width: 100%;
}

.default-form .submit-box .btn:hover {
  background: #f1c200;
}

@media only screen and (max-width: 991px) {
  .default-form .row {
    margin-bottom: 9px;
  }
  .default-form .input {
    height: 45px;
    padding: 0 12px;
  }
  .default-form .checkbox {
    padding-top: 14px;
    margin-bottom: 23px;
  }
  .default-form .submit-box .btn {
    padding: 13px 10px;
  }
}

.example-section {
  padding: 63px 0 0 0;
}

.example-section .title-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.example-section .title-holder h2 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  color: #151515;
  display: inline-block;
  padding-right: 30px;
  margin: 0;
  margin-bottom: 15px;
}

.example-section .title-holder .btn {
  margin-bottom: 15px;
  font-weight: bold;
  padding: 18px 39px;
}

.example-section .btn-box {
  display: none;
  padding-top: 40px;
}

.example-section .btn-box .btn {
  margin-bottom: 15px;
  font-weight: bold;
  padding: 15px 3px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .example-section {
    padding: 51px 0 0 0;
  }
  .example-section .title-holder {
    display: block;
    text-align: center;
  }
  .example-section .title-holder .btn {
    display: none;
  }
  .example-section .title-holder h2 {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .example-section .btn-box {
    display: block;
    text-align: center;
  }
}

.example-slider {
  overflow: hidden;
}

.example-slider:hover .slick-arrow {
  opacity: 1;
}

.example-slider .slide {
  position: relative;
  -o-background-size: cover;
     background-size: cover;
  background-position: 50% 50%;
  color: #ffffff;
  z-index: 1;
}

.example-slider .slide:hover .hover-list {
  opacity: 1;
}

.example-slider .slide:hover:after {
  opacity: .5;
}

.example-slider .slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(-45deg, #151515 0%, black 30%, #b08d00 100%);
  background-image: -webkit-linear-gradient(-45deg, #151515 0%, black 30%, #b08d00 100%);
  background-image: -ms-linear-gradient(-45deg, #151515 0%, black 30%, #b08d00 100%);
  opacity: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.example-slider .slide .bg_img {
  display: none;
}

.example-slider .slide .hover-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  opacity: 1;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.example-slider .slide .cont {
  position: relative;
  height: 100%;
  height: 340px;
  max-width: 340px;
  margin: 0 auto;
  padding: 32px 10px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}

.example-slider .slide strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.example-slider .slide em {
  display: block;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
}

.example-slider .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: 25px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 0 50px 5px #000000;
          box-shadow: 0 0 50px 5px #000000;
  border: none;
  text-indent: -9999px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
  opacity: 0;
}

.example-slider .slick-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 31px;
  background: url(../images/sprite.png) no-repeat;
  z-index: 10;
  display: block;
}

.example-slider .slick-arrow.slick-prev {
  left: 0;
}

.example-slider .slick-arrow.slick-prev:after {
  background-position: -170px -2px;
  left: 15px;
}

.example-slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.example-slider .slick-arrow.slick-next:after {
  background-position: -201px -2px;
  right: 15px;
}

@media only screen and (max-width: 991px) {
  .example-slider .slick-arrow {
    display: none !important;
  }
}

@media only screen and (max-width: 520px) {
  .example-slider .slide {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -20px;
    margin-right: -20px;
  }
  .example-slider .slide.slick-current {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    z-index: 100;
  }
  .example-slider .slide strong {
    font-size: 17px;
  }
  .example-slider .slide em {
    font-size: 15px;
  }
  .example-slider .slide .cont {
    height: 320px;
	padding: 30px 10px 16px;
  }
  .example-slider .slide .hover-list {
	    font-size: 13px;
  }
}

.usasge-section {
  padding: 64px 0 75px 0;
}

.usasge-section h2 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 39px;
  text-align: center;
}

.usasge-section .text-box {
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  background: #ffffff;
  padding: 0 20px 40px;
  max-width: 800px;
  margin: 0 auto -300px;/*r-corr (-160)*/
  z-index: 100;
  position: relative;
  color: #000;/*r-corr*/
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0.2 ); /* IE6-9 */
}

.usasge-section .text-box .btn {
  font-weight: bold;
  padding: 17px 60px 15px 25px;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
}

.usasge-section .text-box .btn:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: auto;
  right: 28px;
  width: 18px;
  height: 14px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -79px 0;
}

.usasge-section h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 26px;
}

.usasge-section p {
  margin: 0 0 32px;
}

@media only screen and (max-width: 767px) {
  .usasge-section {
    margin-top: 58px;
    padding-top: 52px;
    padding-bottom: 33px;
    background: #ffffff;
  }
  .usasge-section .text-box {
    width: auto;
    display: block;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 520px) {
  .usasge-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .usasge-section h3 {
    font-size: 19px;
    text-align: center;
  }
  .usasge-section .text-box {
    padding-left: 60px;
    padding-right: 60px;
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 33px;
  }
  .usasge-section .text-box .btn {
    display: none;
  }
  .usasge-section .text-box p {
    margin-bottom: 0;
  }
}

.credit-slider {
  margin-bottom: 44px;
}

.credit-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  vertical-align: middle;
}

.credit-slider .slide {
  height: 600px;
  line-height: 600px;
  text-align: center;
  position: relative; /*r-corr*/
}

.credit-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: #ffffff;
  z-index: 10;
  text-indent: -9999px;
  border: none;
  padding: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
}

.credit-slider .slick-arrow:hover {
  background: #ffcd00;
}

.credit-slider .slick-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 30px;
  margin-top: -15px;
  margin-left: -9px;
  background: url(../images/sprite.png) no-repeat;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.credit-slider .slick-arrow.slick-prev {
  left: 0;
}

.credit-slider .slick-arrow.slick-prev:after {
  background-position: -108px -1px;
}

.credit-slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.credit-slider .slick-arrow.slick-next:after {
  background-position: -140px -1px;
}

@media only screen and (max-width: 991px) {
  .credit-slider .slide {
    height: 500px;
    line-height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .credit-slider .slide {
    height: 400px;
    line-height: 400px;
  }
}

@media only screen and (max-width: 520px) {
  .credit-slider .slide {
    /*height: 170px;*/
	height: 297px;
    line-height: 170px;
  }
  .credit-slider .slick-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}

.nav-slider:after {
  content: '';
  position: absolute;
  top: 33px;
  left: 13%;
  right: 13%;
  background: url(../images/img2.png) no-repeat;
  height: 2px;
}

.nav-slider .slide {
  text-align: center;
  cursor: pointer;
}

.nav-slider .slide span {
  color: #959595;
  font-size: 17px;
  line-height: 1.2;
  display: block;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.nav-slider .slide.slick-current .loop .box {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  background: #ffffff;
}

.nav-slider .slide.slick-current span {
  color: #151515;
  font-weight: 500;
}

.nav-slider .slide.slick-current:hover .loop .box {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  background: #ffffff;
}

.nav-slider .slide.slick-current:hover .loop .box:after {
  opacity: 0.251;
}

.nav-slider .slide:hover .loop .box {
  -webkit-transform: scale(0.7);
     -moz-transform: scale(0.7);
      -ms-transform: scale(0.7);
       -o-transform: scale(0.7);
          transform: scale(0.7);
  background: #ffffff;
}

.nav-slider .slide:hover .loop .box:after {
  opacity: .4;
}

.nav-slider .slide:hover span {
  color: #151515;
  font-weight: 500;
}

.nav-slider .loop {
  display: inline-block;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-bottom: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-slider .loop .box {
  vertical-align: middle;
  background: #ffcd00;
  width: 20px;
  height: 20px;
  border: 8px solid #ffcd00;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  cursor: pointer;
  -webkit-transform: scale(0.6);
     -moz-transform: scale(0.6);
      -ms-transform: scale(0.6);
       -o-transform: scale(0.6);
          transform: scale(0.6);
}

.nav-slider .loop .box:after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #ffcd00;
  opacity: 0.251;
}

.nav-slider .slick-list {
  /*overflow: visible;*/
  overflow: hidden;
}

.nav-slider .slick-list:after {
  content: '';
  clear: both;
  display: block;
}

@media only screen and (max-width: 520px) {
  .nav-slider:after {
    left: 5%;
    right: 5%;
  }
  .nav-slider .slide {
    padding: 0 10px;
  }
  .nav-slider .slide:first-child {
    text-align: left;
  }
  .nav-slider .slide:last-child {
    text-align: right;
  }
  .nav-slider .slide span {
    display: none;
  }
}

.advantages-section {
  background: #ffcd00;
  padding: 65px 0 80px;
  text-align: center;
}

.advantages-section h2 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 47px;
  text-align: center;
  color: #151515;
}

.advantages-section .list {
  padding: 0;
  margin: 0 -10px 39px;
  list-style: none;
  letter-spacing: -6px;
  color: #151515;
}

.advantages-section .list .slide {
  letter-spacing: 0;
  width: 25%;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 15px;
}

.advantages-section .list .ico {
  text-align: center;
  margin-bottom: 26px;
}

.advantages-section .list .ico img {
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.advantages-section .list .text {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
}

.advantages-section .list .slick-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 2px solid #151515;
  background: none;
  text-indent: -9999px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 10;
  background-color: #ffcd00;
}

.advantages-section .list .slick-arrow.slick-prev {
  left: 10px;
  background-image: url(../images/img3.png);
}

.advantages-section .list .slick-arrow.slick-next {
  left: auto;
  right: 10px;
  background-image: url(../images/img4.png);
}

@media only screen and (max-width: 767px) {
  .advantages-section .slide {
    padding: 0 60px;
  }
  .advantages-section .list .slide {
    padding: 0 60px;
  }
}

@media only screen and (max-width: 520px) {
  .advantages-section {
    padding-top: 50px;
    padding-bottom: 49px;
  }
  .advantages-section h2 {
    font-size: 24px;
    margin-bottom: 34px;
  }
  .advantages-section .list {
    margin-bottom: -2px;
  }
}

.map-section {
  position: relative;
}

.map-section .map {
  height: 480px;
}

.map-section #map_canvas {
  width: 100% !important;
  height: 100% !important;
}

.map-section .info-holder {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  width: 50%;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #151515;
}

.map-section .copy {
  position: absolute;
  top: auto;
  bottom: 17px;
  left: auto;
  right: 21px;
  font-size: 15px;
  line-height: 1.2;
  color: #151515;
}

.map-section .copy span {
  display: inline-block;
  vertical-align: middle;
}

.map-section .copy a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.map-section h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 36px;
  font-weight: bold;
}

.map-section .quast-box {
  max-width: 400px;
  padding: 0 20px 35px;
  margin: 0 auto 40px;
  border: 4px solid #ffcd00;
  border-top: none;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
}

.map-section .quast-box .title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -24px 23px;
  position: relative;
  top: -14px;
}

.map-section .quast-box .title-box span {
  height: 4px;
  background: #ffcd00;
  display: block;
  width: 100%;
}

.map-section h3 {
  white-space: nowrap;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  margin-top: 0;
  padding: 0 20px;
}

.map-section .btn-box .btn {
  padding: 16px 25px;
  font-weight: bold;
  font-size: 15px;
}

@media only screen and (max-width: 991px) {
  .map-section .map {
    height: 600px;
  }
  .map-section .info-holder {
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    padding: 35px 10px 60px;
  }
  .map-section .copy {
    display: none;
  }
}

@media only screen and (max-width: 520px) {
  .map-section h2 {
    font-size: 24px;
  }
  .map-section .quast-box {
    font-size: 14px;
    padding-bottom: 22px;
  }
  .map-section .quast-box .title-box {
    margin-bottom: 0;
  }
  .map-section h3 {
    font-size: 19px;
    line-height: 21px;
  }
}

.popup-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.popup-holder .bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  filter: alpha(opacity=75);
  opacity: .75;
  width: 100% !important;
  height: 100% !important;
}

.popup {
  position: absolute;
  max-width: 320px;
  width: 100%;
  background: #ffffff;
  padding: 35px 28px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.popup .close-popup {
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  background: url("../images/bg-21.png") no-repeat;
  width: 20px;
  height: 20px;
  overflow: hidden;
  color: transparent;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.popup .close-popup:hover {
  opacity: .8;
}

.popup p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 15px;
}

.popup.big {
  max-width: 850px;
}

.popup .text-holder {
  text-align: left;
}

.popup .text-holder h2 {
  text-align: center;
  font-weight: bold;
}

.popup .text-holder h3 {
  font-weight: bold;
}

.popup .text-holder p {
  text-align: left;
}

.title-popup {
  text-align: center;
  display: block;
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 20px;
}

.form-popup {
  padding: 15px 0 0 0;
}

.form-popup .holder-input {
  position: relative;
  margin-bottom: 20px;
}

.form-popup .holder-input.name:after {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  margin: -8px 0 0;
  background: url(../images/bg-22.png) no-repeat;
  width: 11px;
  height: 15px;
}

.form-popup .holder-input.phone-number:after {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  margin: -8px 0 0;
  background: url(../images/bg-23.png) no-repeat;
  width: 15px;
  height: 15px;
}

.form-popup .holder-input input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  color: #a9a9a9;
  border: 1px solid #dadada;
  padding: 0 20px 0 42px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.form-popup .holder-input input:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-popup .holder-input input:focus:-ms-input-placeholder {
  color: transparent;
}

.form-popup .holder-input input::focus::-moz-placeholder {
  color: transparent;
}

.form-popup .holder-input input:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-popup .holder-input input.error {
  border-color: #ff0000;
}

.form-popup .submit {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  border: none;
  font-size: 17px;
  line-height: 20px;
  padding: 15px 42px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  color: #ffffff;
}

.form-popup .checkbox {
  position: relative;
  margin-bottom: 14px;
}

.form-popup .checkbox.error span:after {
  border-color: red;
}

.form-popup .checkbox span {
  display: block;
  cursor: pointer;
  font-size: 15px;
  line-height: 17px;
  overflow: hidden;
  padding: 0 0 0 26px;
  margin: 0;
  font-style: normal;
}

.form-popup .checkbox span a {
  color: #ffcd00;
  text-wrap: unrestricted;
}

.form-popup .checkbox span a:hover {
  text-decoration: none;
}

.form-popup .checkbox span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #959595;
}

.form-popup .checkbox span:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 1px;
  width: 14px;
  height: 11px;
  background: url(../images/sprite.png) no-repeat;
  background-position: -3px -19px;
  z-index: 100;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
}

.form-popup .checkbox label {
  display: block;
  position: relative;
}

.form-popup .checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.form-popup .checkbox input[type="checkbox"]:checked + span:before {
  opacity: 1;
}

.form-popup .time-work {
  text-align: left;
}

.slide-title {
	color: #fff;
    position: absolute;
    width: 100%;
    max-width: 800px;
	left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mail-box a {
	color:#fff;
	text-align: center;
	padding-left: 25px;
}
.mail-box a:hover{
	cursor: pointer;
}
.mail-box {
	margin-top: 12px;
}

@media only screen and (max-width: 520px) {
  .slide-title {
	-webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);}
}

/*2020-01-18 mann_corr*/
.left-half {
	display: block;
	width: 50%;
	float: left;
}
.right-half {
	display: block;
    width: 50%;
	float: right;
}
.cl_all {
	clear: both;
}
.repair-subjects {
	font-weight: 500;
    font-size: 19px;
    line-height: 1.2;
    display: block;
    margin: 0 0 39px;
    color: #ffffff;
    text-transform: uppercase;
}
.subj-title {
	padding: 10px 0 30px 50px;
	background-position: 0px 0px;
	background-size: 40px;
	background-repeat: no-repeat;
}
.repair-subjects .main-pc {
	background-image: url(../images/pc-100.png);
}.repair-subjects .main-nb {
	background-image: url(../images/nb-100.png);
}.repair-subjects .main-tv {
	background-image: url(../images/tv-100.png);
}.repair-subjects .main-phone {
	background-image: url(../images/phone-100.png);
}

@media only screen and (max-width: 520px){
	.left-half,
	.right-half{
		width: 100%;
		float: left;
	}
	.top-section .inner-holder h2 {
		margin-top: 150px;
	}
	.top-section .inner-holder h3 {
		margin: 0px 0 20px;
	}
	.subj-title {
		padding: 10px 0 20px 50px;
	}
}
@media only screen and (min-width: 990px) {
	.top-section .inner-holder {
		width: 100%;
	}
	.top-section .inner-holder .context-box {
		width: 90%;
	}
	.top-section .inner-holder h3 {
		font-size: 22px;
		text-align: center;
	}
	.top-section .inner-holder h2 {
		margin: 0 0 20px;
		text-align: center;
	} 
	.repair-subjects {
		font-size: 30px;
	}
}

@media only screen and (min-width: 1280px) {
	.subj-title {
		padding: 10px 0 50px 80px;
		background-size: 60px;
		margin: 0 auto;
		max-width: 350px;
	}
	.repair-subjects {
		font-size: 24px;
		padding: 20px 0 0px;
	}
	#stock .btn-box {
		padding-top: 20px;
		margin-left: -50px;
	}
	.repair-subjects .left-half {
		padding-left: 150px;
	}
	.repair-subjects .right-half {
		padding-right: 150px;
	}
	#stock .main-content {
		margin-left: -50px;
	}
}
@media only screen and (min-width: 1600px) {
	.subj-title {
		padding: 20px 0 70px 120px;
		background-size: 80px;
	}
	.repair-subjects {
		font-size: 30px;
		padding: 20px 0 20px;
	}
	#stock .btn-box {
		padding-top: 20px;
	}
	.top-section .inner-holder h3 {
		font-size: 26px;
	}
	.top-section .inner-holder h2 {
		margin: 0 0 10vh;
	}
}
@media only screen and (min-width: 990px) and (max-width: 1600px) {
	.top-section .inner-holder .context-box {
		width: 100%;
	}
	.top-section .inner-holder h3 {
		margin: 0 0 20px;		
	}
	.top-section .inner-holder h2 {
		margin: 0 0 36px;
	}
}
@media only screen and (min-width: 990px) and (max-width: 1600px) {
	.logo {
		margin: 0 auto 6vh;
	}
	.nav .nav-list {
		margin: 0 0 6vh;
	}
	.example-slider .slide .hover-list {
		font-size: 12px;
	}
	.example-slider .slide strong {
		font-size: 18px;
	}
}	
/*.2020-01-18 mann_corr*/