@font-face {
  font-family: 'Oswald-Light';
  src: url("../fonts/Oswald-Light.eot");
  src: url("../fonts/Oswald-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Oswald-Light.woff") format("woff"), url("../fonts/Oswald-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Oswald-Regular';
  src: url("../fonts/Oswald-Regular.eot");
  src: url("../fonts/Oswald-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Oswald-Regular.woff") format("woff"), url("../fonts/Oswald-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Oswald-SemiBold';
  src: url("../fonts/Oswald-SemiBold.eot");
  src: url("../fonts/Oswald-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Oswald-SemiBold.woff") format("woff"), url("../fonts/Oswald-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Oswald-Regular';
  font-weight: normal;
  background: url("../img/bg.png") repeat top center #fff;
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
button:focus {
  outline: none;
}
a {
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #fff;
  color: #000;
  text-shadow: none;
}
::selection {
  background: #fff;
  color: #000;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
::-moz-placeholder {
  color: #999;
  opacity: 1;
}
:-moz-placeholder {
  color: #999;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  -moz-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
/*==============================
	Header
==============================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
}
.header__wrap {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  width: 260px;
}
.header__wrap:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #b82222;
  z-index: 1;
}
.header__wrap:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #b82222;
  z-index: 2;
  border-bottom: solid 20px #fff;
  border-right: solid 20px #fff;
  border-left: solid 20px transparent;
  border-top: solid 20px transparent;
}
.header__logo {
  position: relative;
  z-index: 3;
  width: 90px;
}
.header__logo img {
  width: 100%;
  margin-left: -10px;
}
.header__tagline {
  position: relative;
  z-index: 3;
  font-size: 10px;
  color: #fff;
  margin: 0;
}
.header__social {
  height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: start;
  -moz-box-direction: start;
  -ms-flex-direction: start;
  flex-direction: start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__social a {
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}
.header__social a img {
  position: relative;
  z-index: 2;
}
.header__social a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.header__social a:first-child {
  margin-left: 0;
}
.header__social a:hover:before {
  opacity: 1;
}
.header__wa {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../img/whatsapp-bg.png") no-repeat center/cover;
}
.header__wa img {
  width: 24px;
}
.header__call {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../img/phone-bg.png") no-repeat center/cover;
}
.header__call img {
  width: 24px;
}
.header__call--desk {
  display: none;
}
.header__phone {
  display: none;
}
.header__contacts {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .header__content {
    height: 72px;
  }
  .header__wrap {
    height: 72px;
    width: 490px;
  }
  .header__wrap:after {
    width: 70px;
    height: 70px;
    border-bottom: solid 36px #fff;
    border-right: solid 36px #fff;
    border-left: solid 36px transparent;
    border-top: solid 36px transparent;
  }
  .header__logo {
    width: auto;
  }
  .header__logo img {
    margin-left: -20px;
  }
  .header__tagline {
    font-size: 20px;
    line-height: 24px;
  }
  .header__social {
    height: 72px;
  }
  .header__social a {
    width: 50px;
    height: 50px;
  }
  .header__wa img {
    width: 30px;
  }
  .header__call img {
    width: 30px;
  }
}
@media (min-width: 1200px) {
  .header__phone {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 72px;
    margin-left: 35px;
  }
  .header__phone a {
    font-size: 34px;
    color: #555;
    line-height: 40px;
  }
  .header__phone p {
    margin-bottom: 0;
    font-size: 16px;
    color: #555;
    font-family: 'Oswald-Light';
    letter-spacing: 2px;
    padding-left: 25px;
    position: relative;
  }
  .header__phone p:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: 50%;
    margin-top: -5px;
    background: url("../img/dott.png") no-repeat center;
  }
  .header__call--desk {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header__call--mob {
    display: none;
  }
}
/*==============================
	Home
==============================*/
.home {
  position: relative;
  padding: 70px 0;
  background: url("../img/home/bg.png") no-repeat center bottom/cover #fff;
  overflow: hidden;
}
.home:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/home/car1.png") no-repeat center bottom 100px;
  z-index: 1;
}
.home .container {
  position: relative;
  z-index: 2;
}
.home__title {
  font-family: 'Oswald-SemiBold';
  font-size: 22px;
  color: #000;
  font-weight: normal;
  margin-bottom: 10px;
}
.home__tagline {
  font-family: 'Oswald-SemiBold';
  font-size: 20px;
  color: #b82222;
  font-weight: normal;
  margin-bottom: 10px;
}
.home__list li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.home__list img {
  width: 40px;
  height: auto;
  margin-right: 20px;
  margin-left: -5px;
}
.home__list span {
  font-family: 'Oswald-SemiBold';
  font-size: 14px;
  color: #555;
}
.home__list span b {
  font-weight: normal;
  color: #b82222;
}
.home__wrap {
  margin: 30px auto 0;
  width: 100%;
  max-width: 320px;
  background-color: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 28px 54px 0 rgba(18,18,18,0.2);
  box-shadow: 0 28px 54px 0 rgba(18,18,18,0.2);
  border: 1px solid #000;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.home__wrap p {
  font-size: 16px;
  color: #555;
  font-family: 'Oswald-SemiBold';
  margin-bottom: 10px;
  text-align: center;
}
.home__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  width: 190px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald-SemiBold';
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  background-color: #b82222;
  background-image: -moz-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -webkit-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -ms-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  position: relative;
  overflow: hidden;
}
.home__btn:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.home__btn:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -30%;
  z-index: 1000;
  margin-left: 0;
  margin-top: 0;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  width: 20px;
  height: 140%;
  background-color: #fff;
  background-image: -moz-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -webkit-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -ms-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: linear-gradient(0deg, #fff 27%, #fff 85%);
  -webkit-border-radius: 45px;
  border-radius: 45px;
  -webkit-box-shadow: 0 0 29px 10px #fff;
  box-shadow: 0 0 29px 10px #fff;
  opacity: 0.25;
  -webkit-animation: 4s ease-out infinite light;
  animation: 4s ease-out infinite light;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  pointer-events: none;
}
.home__btn span {
  position: relative;
  z-index: 3;
}
.home__btn:hover {
  color: #fff;
}
.home__btn:hover:before {
  opacity: 1;
}
.home__car {
  display: none;
}
@media (min-width: 768px) {
  .home {
    padding-top: 140px;
  }
  .home__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .home__tagline {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home__list img {
    width: 60px;
    margin-right: 30px;
    margin-left: -10px;
  }
  .home__list span {
    font-size: 18px;
  }
  .home__wrap {
    max-width: 450px;
    padding: 20px 40px;
    margin: 30px 0 0;
  }
  .home__wrap p {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home__btn {
    height: 50px;
    width: 270px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .home {
    padding: 150px 0;
  }
  .home:before {
    display: none;
  }
  .home__title {
    font-size: 32px;
  }
  .home__tagline {
    font-size: 26px;
  }
  .home__wrap {
    margin-top: 80px;
    z-index: 2;
    position: relative;
  }
  .home__car {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    top: -170px;
    z-index: 1;
  }
  .home__car img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .home {
    padding: 230px 0 100px;
    background-size: auto;
  }
  .home__title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .home__tagline {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .home__list img {
    margin-right: 35px;
  }
  .home__list span {
    font-size: 20px;
  }
  .home__wrap {
    margin-top: 100px;
  }
}
@-webkit-keyframes light {
  0% {
    left: -25%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 180%;
  }
}
/*==============================
	Section
==============================*/
.section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.section--dark {
  background-color: #000;
}
.section--dark1 {
  background: url("../img/section1/bg1.png") no-repeat center/cover #000;
}
.section--dark1 .section__title p {
  width: 250px;
  margin: 0 auto;
}
.section--dark2 {
  overflow: hidden;
  background: url("../img/section4/bg1.png") no-repeat center/cover #000;
}
.section--dark3 {
  background: url("../img/section6/bg1.jpg") no-repeat center/cover #000;
}
.section--dark3 .container {
  position: relative;
  z-index: 2;
}
.section--dark3:before,
.section--dark3:after {
  content: '';
  position: absolute;
  display: block;
  width: 150px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}
.section--dark3:before {
  top: 115px;
  right: 10px;
  background: url("../img/section6/1.png") no-repeat center/100%;
}
.section--dark3:after {
  bottom: 60px;
  left: 10px;
  background: url("../img/section6/2.png") no-repeat center/100%;
}
.section--dark4 {
  overflow: hidden;
  background: url("../img/section8/bg1.png") no-repeat center/cover #000;
}
.section--3 .container {
  position: relative;
  z-index: 2;
}
.section--3:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../img/section3/bg.png") no-repeat center bottom 200px;
}
.section__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.section__title h2 {
  font-family: 'Oswald-SemiBold';
  font-size: 22px;
  font-weight: normal;
  color: #555;
  margin-bottom: 5px;
  display: block;
  text-align: center;
}
.section__title h2 span {
  color: #b82222;
}
.section__title p {
  display: block;
  text-align: center;
  font-family: 'Oswald-Light';
  font-size: 18px;
  color: #555;
  margin-bottom: 0;
}
.section__title p span {
  color: #b82222;
}
.section__title--white h2,
.section__title--white p {
  color: #fff;
}
.section__title--white h2 span,
.section__title--white p span {
  color: #f00;
}
.section__title--margin {
  margin-top: 40px;
}
.section__collapse-btn {
  color: #eee;
  font-size: 16px;
  display: block;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
}
.section__collapse-btn:before {
  content: 'Свернуть...';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #fff;
}
.section__collapse-btn[aria-expanded="true"] {
  color: transparent;
}
.section__collapse-btn[aria-expanded="true"]:before {
  opacity: 1;
}
.section__list {
  font-size: 20px;
  color: #555;
  font-family: 'Oswald-Light';
}
.section__list--1 {
  margin-top: 30px;
}
@media (min-width: 576px) {
  .section--dark1 .section__title p {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section--dark1 {
    background: url("../img/section1/bg2.png") no-repeat center bottom/cover;
    padding-bottom: 140px;
  }
  .section--dark2 {
    background: url("../img/section4/bg2.png") no-repeat center/cover #000;
  }
  .section--dark3 {
    background: url("../img/section6/bg2.jpg") no-repeat center/cover #000;
  }
  .section--dark3:before,
  .section--dark3:after {
    width: 200px;
    height: 200px;
    margin-top: -50px;
  }
  .section--dark3:before {
    top: 50%;
    right: 50%;
    margin-right: 200px;
  }
  .section--dark3:after {
    bottom: auto;
    left: 50%;
    top: 50%;
    margin-left: 200px;
  }
  .section--dark4 {
    background: url("../img/section8/bg2.jpg") no-repeat center/cover #000;
  }
  .section--3:before {
    background-position: center bottom;
  }
  .section__title h2 {
    font-size: 26px;
  }
  .section__title p {
    font-size: 26px;
  }
  .section__title--margin {
    margin-top: 60px;
  }
  .section__collapse {
    display: block !important;
  }
  .section__collapse-btn {
    display: none;
  }
  .section__list {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .section__title h2 {
    font-size: 30px;
  }
  .section__title p {
    font-size: 30px;
  }
  .section__title--margin {
    margin-top: 80px;
  }
  .section--dark2 {
    padding: 180px 0;
  }
  .section--dark3 {
    padding: 120px 0 180px;
  }
  .section--dark3:before,
  .section--dark3:after {
    width: 360px;
    height: 360px;
    margin-top: -110px;
  }
  .section--dark3:before {
    top: 50%;
    right: 50%;
    margin-right: 400px;
  }
  .section--dark3:after {
    bottom: auto;
    left: 50%;
    top: 50%;
    margin-left: 400px;
  }
  .section--dark4 {
    padding-bottom: 180px;
  }
}
/*==============================
	Box1
==============================*/
.box1 {
  display: block;
  margin: 30px auto 0;
  max-width: 250px;
  width: 100%;
}
.box1 img {
  width: 100%;
  margin-bottom: 20px;
}
.box1 p {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  font-family: 'Oswald-Light';
  margin-bottom: 0;
}
.box1 p b {
  color: #b82222;
}
@media (min-width: 768px) {
  .box1 {
    max-width: 100%;
    margin: 50px 0 0;
  }
}
@media (min-width: 1200px) {
  .box1 {
    margin: 70px 0 0;
  }
}
/*==============================
	Details
==============================*/
.details {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}
.details__box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 50px;
  max-width: 340px;
}
.details__box--1 {
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.details__box--1 .details__title span {
  color: #555;
}
.details__box--1 .details__list li {
  color: #555;
}
.details__box--1 .details__list li span {
  color: #b82222;
}
.details__box--2 {
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
.details__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  height: 100px;
}
.details__title span {
  font-size: 20px;
  color: #bbb;
  width: 170px;
  padding-left: 15px;
  margin-right: 20px;
}
.details__list {
  border: 3px solid #bbb;
  padding: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.details__list li {
  font-size: 20px;
  line-height: 24px;
  color: #bbb;
  font-family: 'Oswald-Light';
  margin-bottom: 15px;
}
.details__list li:last-child {
  margin-bottom: 0;
}
.details__img {
  position: absolute;
  bottom: -150px;
  left: 50%;
  margin-left: -145px;
}
@media (min-width: 768px) {
  .details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .details__box {
    max-width: 330px;
  }
  .details__box--1 {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .details__box--2 {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .details__list {
    height: 560px;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .details {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .details__box {
    margin-top: 60px;
    max-width: 350px;
  }
  .details__list {
    height: 520px;
  }
}
@media (min-width: 1200px) {
  .details {
    margin-bottom: 0;
  }
  .details__img {
    bottom: auto;
    margin-left: 0;
    left: -130px;
    top: -40px;
  }
  .details__box {
    margin-top: 70px;
  }
}
/*==============================
	Diagnostics
==============================*/
.diagnostics {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 40px;
  width: 100%;
}
.diagnostics__box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  padding: 0 15px;
}
.diagnostics__box span {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 2;
}
.diagnostics__box--1 img {
  width: 100%;
  max-width: 225px;
}
.diagnostics__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../img/section4/btn.png") no-repeat center/100% auto;
  width: 130px;
  height: 130px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 0 160px 25px #00d400;
  box-shadow: 0 0 160px 25px #00d400;
  position: relative;
  z-index: 1;
}
.diagnostics__link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  pointer-events: none;
}
.diagnostics__link img {
  width: 70px;
  position: relative;
  z-index: 2;
}
.diagnostics__link:hover:before {
  opacity: 1;
}
@media (min-width: 768px) {
  .diagnostics__box span {
    font-size: 20px;
  }
  .diagnostics__link {
    width: 170px;
    height: 170px;
    margin-top: 30px;
  }
  .diagnostics__link img {
    width: 110px;
  }
}
@media (min-width: 992px) {
  .diagnostics {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .diagnostics__box {
    width: 225px;
    padding: 0;
  }
  .diagnostics__box--1 {
    margin-right: 200px;
  }
}
/*==============================
	Example
==============================*/
.example {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px auto 0;
  width: 100%;
  max-width: 418px;
}
.example__head {
  position: relative;
  margin-bottom: 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.example__head img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.example__head h3 {
  margin-bottom: 0;
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-family: 'Oswald-Light';
  font-size: 20px;
  line-height: 22px;
  font-weight: normal;
  margin-left: 20px;
}
.example__table {
  position: relative;
  width: 100%;
}
.example__table thead tr td {
  color: #555;
  font-size: 14px;
  font-family: 'Oswald-SemiBold';
  font-weight: normal;
  text-align: right;
  line-height: 18px;
  padding: 0 0 0 5px;
}
.example__table thead tr td:first-child {
  padding: 0 5px 0 0;
}
.example__table thead tr:first-child td {
  text-align: center;
}
.example__table tbody tr td {
  color: #555;
  font-size: 14px;
  font-family: 'Oswald-Light';
  padding: 5px 0 5px 5px;
  text-align: right;
}
.example__table tbody tr td:first-child {
  text-align: left;
  padding: 5px 0;
}
.example__price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.example__price span {
  font-size: 34px;
  color: #b82222;
  font-family: 'Oswald-Light';
}
.example__price p {
  font-size: 50px;
  margin: 0;
  line-height: 50px;
  background-image: -webkit-linear-gradient(90deg, #b82222 27%, #f00 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b82222;
  font-family: 'Oswald-SemiBold';
  display: block;
}
@media (min-width: 768px) {
  .example {
    margin: 60px auto 0;
  }
  .example__table {
    height: 250px;
  }
}
@media (min-width: 992px) {
  .example__table {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  .example {
    margin: 70px auto 0;
  }
}
/*==============================
	Bigbtn
==============================*/
.bigbtn {
  position: relative;
  margin: 40px auto;
  width: 250px;
  height: 250px;
}
.bigbtn:before,
.bigbtn:after {
  content: '';
  position: absolute;
  border: 1px solid #bbb;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  display: block;
  pointer-events: none;
}
.bigbtn:before {
  z-index: 1;
  -webkit-animation: 2s ease-out infinite pulse1;
  animation: 2s ease-out infinite pulse1;
}
.bigbtn:after {
  z-index: 2;
  -webkit-animation: 2s ease-out infinite pulse2;
  animation: 2s ease-out infinite pulse2;
}
.bigbtn__content {
  z-index: 3;
  width: 250px;
  height: 250px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 14px 16px 2px rgba(18,18,18,0.29);
  box-shadow: 0 14px 16px 2px rgba(18,18,18,0.29);
  background-image: -moz-linear-gradient(0deg, #981d1d 12%, #ff2929 92%);
  background-image: -webkit-linear-gradient(0deg, #981d1d 12%, #ff2929 92%);
  background-image: -ms-linear-gradient(0deg, #981d1d 12%, #ff2929 92%);
  background-image: linear-gradient(0deg, #981d1d 12%, #ff2929 92%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  font-family: 'Oswald-SemiBold';
  text-align: center;
  overflow: hidden;
  position: relative;
}
.bigbtn__content span {
  position: relative;
  z-index: 2;
}
.bigbtn__content:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.bigbtn__content:hover {
  color: #fff;
}
.bigbtn__content:hover:before {
  opacity: 1;
}
.bigbtn--footer {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}
.bigbtn--footer:before,
.bigbtn--footer:after {
  display: none;
}
.bigbtn--footer .bigbtn__content {
  width: 180px;
  height: 180px;
  font-size: 20px;
}
.bigbtn--small {
  width: 180px;
  height: 180px;
  margin: 80px auto 0;
}
.bigbtn--small .bigbtn__content {
  width: 180px;
  height: 180px;
  font-size: 20px;
}
.bigbtn--small:before {
  -webkit-animation: 2s ease-out infinite pulse3;
  animation: 2s ease-out infinite pulse3;
}
.bigbtn--small:after {
  -webkit-animation: 2s ease-out infinite pulse4;
  animation: 2s ease-out infinite pulse4;
}
@media (min-width: 768px) {
  .bigbtn {
    margin: 60px auto 40px;
  }
  .bigbtn--small {
    margin: 80px auto 0;
  }
}
@media (min-width: 992px) {
  .bigbtn--small {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 15px;
  }
}
@media (min-width: 1200px) {
  .bigbtn {
    margin: 100px auto 40px;
  }
  .bigbtn--small {
    margin: 0;
    left: 110px;
  }
}
@-webkit-keyframes pulse1 {
  0% {
    width: 200px;
    height: 200px;
    opacity: 1;
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse2 {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse3 {
  0% {
    width: 130px;
    height: 130px;
    opacity: 1;
  }
  100% {
    width: 380px;
    height: 380px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse4 {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 480px;
    height: 480px;
    opacity: 0;
  }
}
/*==============================
	Warranty
==============================*/
.warranty {
  position: relative;
  width: 100%;
}
.warranty__text {
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  font-family: 'Oswald-Light';
}
.warranty__text span {
  color: #b82222;
}
.warranty__img {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .warranty {
    margin-top: 50px;
  }
  .warranty__img {
    width: calc(100% - 200px);
    margin-left: 200px;
    margin-top: 0;
  }
  .warranty__text {
    position: absolute;
    width: 190px;
    left: 0;
    margin-top: 0;
  }
  .warranty__text--1 {
    top: 50px;
  }
  .warranty__text--2 {
    bottom: 50px;
  }
}
@media (min-width: 992px) {
  .warranty__text {
    font-size: 18px;
  }
  .warranty__text--1 {
    top: 80px;
  }
  .warranty__text--2 {
    bottom: 80px;
  }
}
/*==============================
	Cars
==============================*/
.cars {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 40px;
}
.cars__box {
  width: 32%;
}
.cars__box img {
  width: 100%;
}
.cars__box p {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  font-family: 'Oswald-Light';
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .cars {
    margin-bottom: 60px;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .cars {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .cars__box {
    width: 255px;
  }
}
@media (min-width: 1200px) {
  .cars {
    margin-bottom: 80px;
    margin-top: 60px;
  }
}
/*==============================
	Repairs
==============================*/
.repairs {
  position: relative;
  width: 100%;
  height: 450px;
  margin-top: 20px;
}
.repairs__box {
  position: absolute;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  height: 90px;
  width: 220px;
  background: url("../img/section6/parallelogram.png") no-repeat center/cover;
}
.repairs__box--1 {
  left: 0;
  top: 0;
}
.repairs__box--2 {
  left: 9%;
  top: 90px;
}
.repairs__box--3 {
  left: 50%;
  top: 180px;
  margin-left: -110px;
}
.repairs__box--4 {
  right: 9%;
  top: 270px;
}
.repairs__box--5 {
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .repairs {
    height: 220px;
    margin-top: 40px;
  }
  .repairs__box--2 {
    top: 0;
    left: 50%;
    margin-left: -110px;
  }
  .repairs__box--3 {
    top: 0;
    right: 0;
    left: auto;
    margin-left: 0;
  }
  .repairs__box--4 {
    top: auto;
    bottom: 0;
    left: 50%;
    margin-left: -230px;
  }
  .repairs__box--5 {
    top: auto;
    bottom: 0;
    right: 50%;
    margin-right: -230px;
  }
}
@media (min-width: 992px) {
  .repairs {
    height: 300px;
    margin-top: 60px;
  }
  .repairs__box {
    width: 300px;
    height: 120px;
    font-size: 16px;
  }
  .repairs__box--2 {
    margin-left: -150px;
  }
  .repairs__box--4 {
    margin-left: -310px;
  }
  .repairs__box--5 {
    margin-right: -310px;
  }
}
@media (min-width: 1200px) {
  .repairs {
    height: 360px;
    margin-top: 80px;
  }
  .repairs__box {
    width: 340px;
    height: 140px;
    font-size: 18px;
  }
  .repairs__box--1 {
    left: 40px;
  }
  .repairs__box--2 {
    margin-left: -170px;
  }
  .repairs__box--3 {
    right: 40px;
  }
  .repairs__box--4 {
    margin-left: -344px;
  }
  .repairs__box--5 {
    margin-right: -344px;
  }
}
/*==============================
	Contacts
==============================*/
.contacts {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 30px;
}
.contacts__wrap {
  height: 90px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contacts__wrap--2 {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.contacts__title {
  color: #b82222;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Oswald-SemiBold';
}
.contacts__text {
  font-size: 18px;
  color: #555;
  font-family: 'Oswald-Light';
  margin: 0;
  line-height: 20px;
}
.contacts__call {
  font-family: 'Oswald-SemiBold';
  font-size: 18px;
  color: #555;
}
.contacts__call:hover {
  color: #555;
}
@media (min-width: 992px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 60px;
  }
  .contacts__wrap {
    height: auto;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .contacts__wrap--2 {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .contacts__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .contacts__text {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 28px;
  }
  .contacts__call {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .contacts {
    margin-top: 70px;
  }
}
.map {
  position: relative;
  width: 100%;
  height: 290px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .map {
    margin-top: 60px;
    height: 510px;
  }
}
@media (min-width: 1200px) {
  .map {
    margin-top: 70px;
  }
}
/*==============================
	CTA
==============================*/
.cta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.cta p {
  font-size: 18px;
  color: #555;
  font-family: 'Oswald-SemiBold';
  margin-bottom: 20px;
  text-align: center;
}
.cta a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 270px;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald-SemiBold';
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  background-color: #b82222;
  background-image: -moz-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -webkit-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -ms-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  position: relative;
  overflow: hidden;
}
.cta a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.cta a:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -30%;
  z-index: 1000;
  margin-left: 0;
  margin-top: 0;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  width: 20px;
  height: 140%;
  background-color: #fff;
  background-image: -moz-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -webkit-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -ms-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: linear-gradient(0deg, #fff 27%, #fff 85%);
  -webkit-border-radius: 45px;
  border-radius: 45px;
  -webkit-box-shadow: 0 0 29px 10px #fff;
  box-shadow: 0 0 29px 10px #fff;
  opacity: 0.25;
  -webkit-animation: 4s ease-out infinite light;
  animation: 4s ease-out infinite light;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  pointer-events: none;
}
.cta a span {
  position: relative;
  z-index: 3;
}
.cta a:hover {
  color: #fff;
}
.cta a:hover:before {
  opacity: 1;
}
@media (min-width: 768px) {
  .cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
  }
  .cta p {
    text-align: left;
    margin-bottom: 0;
    margin-right: 60px;
    font-size: 24px;
    line-height: 30px;
  }
}
/*==============================
	Footer
==============================*/
.footer {
  padding-top: 50px;
  background: url("../img/footer/bg1.jpg") no-repeat center/cover;
}
.footer__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__copyright {
  font-size: 20px;
  color: #fff;
  font-family: 'Oswald-Light';
  line-height: 24px;
  margin-bottom: 30px;
}
.footer__com {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}
.footer__com a {
  font-size: 24px;
  color: #fff;
  font-family: 'Oswald-SemiBold';
  text-decoration: underline;
}
.footer__com a:hover {
  color: #fff;
  text-decoration: none;
}
.footer__com a.desk {
  display: none;
}
.footer__com p {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 20px;
  color: #fff;
  font-family: 'Oswald-Light';
  line-height: 22px;
}
.footer__nav,
.footer__nav2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer__nav a,
.footer__nav2 a {
  font-size: 20px;
  font-family: 'Oswald-Light';
  color: #fff;
  text-decoration: underline;
}
.footer__nav a:hover,
.footer__nav2 a:hover {
  color: #fff;
  text-decoration: none;
}
.footer__info {
  width: 100%;
  font-size: 12px;
  color: #808080;
  line-height: 14px;
  margin-bottom: 20px;
}
.footer__info a {
  color: #808080;
}
.footer__info a:hover {
  color: #808080;
}
.footer__info--last {
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    background: url("../img/footer/bg2.jpg") no-repeat center/cover;
    padding-top: 0;
  }
  .footer__content {
    position: relative;
    height: 500px;
    width: 100%;
  }
  .footer__content .bigbtn--footer {
    position: absolute;
    top: 40px;
    left: 50%;
    margin: 0 0 0 -90px;
  }
  .footer__nav {
    position: absolute;
    left: 0;
    top: 60px;
    margin-bottom: 0;
  }
  .footer__nav2 {
    position: absolute;
    margin-bottom: 0;
    top: 240px;
    left: 285px;
  }
  .footer__com {
    position: absolute;
    right: 0;
    top: 60px;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 0;
  }
  .footer__copyright {
    position: absolute;
    margin: 0;
    left: 0;
    bottom: 35px;
  }
  .footer__info {
    position: absolute;
    right: 0;
    bottom: 35px;
    margin: 0;
    width: 380px;
  }
  .footer__info--last {
    left: 0;
    bottom: 5px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .footer__com a.desk {
    display: block;
  }
  .footer__com a.mob {
    display: none;
  }
}
/*==============================
	Modal
==============================*/
.modal {
  position: relative;
  margin: 40px auto 0;
  width: 100%;
  max-width: 350px;
  padding: 35px 30px 30px;
  border: 1px solid #000;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 28px 54px 0 rgba(18,18,18,0.2);
  box-shadow: 0 28px 54px 0 rgba(18,18,18,0.2);
  background-color: #fff;
}
.modal .mfp-close {
  display: none;
}
.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}
.modal__title {
  font-size: 20px;
  color: #555;
  font-weight: normal;
  font-family: 'Oswald-SemiBold';
  margin-bottom: 25px;
  line-height: 24px;
}
.modal__text {
  font-size: 20px;
  color: #555;
  font-family: 'Oswald-Light';
  margin-bottom: 25px;
  line-height: 24px;
}
.modal__input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  color: #555;
  font-size: 18px;
  border: 1px solid #000;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 15px;
  position: relative;
}
.modal__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald-SemiBold';
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  box-shadow: 0 3px 6px 1px rgba(18,18,18,0.3);
  background-color: #b82222;
  background-image: -moz-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -webkit-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: -ms-linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  background-image: linear-gradient(0deg, #b82222 27%, #ff2929 85%);
  position: relative;
  overflow: hidden;
  margin-top: 5px;
}
.modal__btn:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -webkit-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: -ms-linear-gradient(0deg, #fb0 27%, #ff0 85%);
  background-image: linear-gradient(0deg, #fb0 27%, #ff0 85%);
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal__btn:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -30%;
  z-index: 1000;
  margin-left: 0;
  margin-top: 0;
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  transform: rotate(25deg);
  width: 20px;
  height: 140%;
  background-color: #fff;
  background-image: -moz-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -webkit-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: -ms-linear-gradient(0deg, #fff 27%, #fff 85%);
  background-image: linear-gradient(0deg, #fff 27%, #fff 85%);
  -webkit-border-radius: 45px;
  border-radius: 45px;
  -webkit-box-shadow: 0 0 29px 10px #fff;
  box-shadow: 0 0 29px 10px #fff;
  opacity: 0.25;
  -webkit-animation: 4s ease-out infinite light;
  animation: 4s ease-out infinite light;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  pointer-events: none;
}
.modal__btn span {
  position: relative;
  z-index: 3;
}
.modal__btn:hover {
  color: #fff;
}
.modal__btn:hover:before {
  opacity: 1;
}
.modal__checkbox {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.modal__checkbox input:not(:checked),
.modal__checkbox input:checked {
  position: absolute;
  left: -9999px;
}
.modal__checkbox input:not(:checked) + label,
.modal__checkbox input:checked + label {
  font-size: 14px;
  color: #555;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  line-height: 16px;
  margin: 0;
}
.modal__checkbox input:not(:checked) + label:before,
.modal__checkbox input:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #000;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.modal__checkbox input:not(:checked) + label:after,
.modal__checkbox input:checked + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  background: url("../img/check.png") no-repeat center;
}
.modal__checkbox input:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.modal__checkbox input:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.5;
}
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
@-moz-keyframes light {
  0% {
    left: -25%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 180%;
  }
}
@-webkit-keyframes light {
  0% {
    left: -25%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 180%;
  }
}
@-o-keyframes light {
  0% {
    left: -25%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 180%;
  }
}
@keyframes light {
  0% {
    left: -25%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 180%;
  }
}
@-moz-keyframes pulse1 {
  0% {
    width: 200px;
    height: 200px;
    opacity: 1;
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse1 {
  0% {
    width: 200px;
    height: 200px;
    opacity: 1;
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
  }
}
@-o-keyframes pulse1 {
  0% {
    width: 200px;
    height: 200px;
    opacity: 1;
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
  }
}
@keyframes pulse1 {
  0% {
    width: 200px;
    height: 200px;
    opacity: 1;
  }
  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
  }
}
@-moz-keyframes pulse2 {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse2 {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
  }
}
@-o-keyframes pulse2 {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
  }
}
@keyframes pulse2 {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
  }
}
@-moz-keyframes pulse3 {
  0% {
    width: 130px;
    height: 130px;
    opacity: 1;
  }
  100% {
    width: 380px;
    height: 380px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse3 {
  0% {
    width: 130px;
    height: 130px;
    opacity: 1;
  }
  100% {
    width: 380px;
    height: 380px;
    opacity: 0;
  }
}
@-o-keyframes pulse3 {
  0% {
    width: 130px;
    height: 130px;
    opacity: 1;
  }
  100% {
    width: 380px;
    height: 380px;
    opacity: 0;
  }
}
@keyframes pulse3 {
  0% {
    width: 130px;
    height: 130px;
    opacity: 1;
  }
  100% {
    width: 380px;
    height: 380px;
    opacity: 0;
  }
}
@-moz-keyframes pulse4 {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 480px;
    height: 480px;
    opacity: 0;
  }
}
@-webkit-keyframes pulse4 {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 480px;
    height: 480px;
    opacity: 0;
  }
}
@-o-keyframes pulse4 {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 480px;
    height: 480px;
    opacity: 0;
  }
}
@keyframes pulse4 {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 480px;
    height: 480px;
    opacity: 0;
  }
}
