@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Roboto", sans-serif;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
  color: #fff;
}

a,
a:visited {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
  color: #fff;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  color: #fff;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

header {
  position: fixed;
  width: 100%;
  max-height: 100px;
  height: 100%;
  padding: 15px 15px 15px 120px;
  display: flex;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.8, 0.2, 0.2, 0.8);
  z-index: 9;
}
@media screen and (max-width: 980px) {
  header {
    padding-left: 0;
    justify-content: flex-start;
    top: 0;
  }
}
header.header-out {
  transform: translateY(-150px);
}
header.header-scrolled {
  background: #000000;
}
header .logo {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  header .logo {
    margin-right: 40px;
    margin-left: 20px;
  }
}
header .language li {
  text-transform: uppercase;
  list-style: none;
  font-size: 20px;
  margin-right: 20px;
  color: #f79330;
}
header .language li a {
  color: #f79330;
}
@media screen and (max-width: 980px) {
  header .language {
    margin-right: auto;
  }
}
header .social ul {
  display: flex;
  list-style: none;
  margin: 0;
}
header .social ul li:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 980px) {
  header .social ul li:not(:last-child) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 980px) {
  header .social {
    display: none;
  }
}
header .hamburger-menu .menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  max-width: 300px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 48px 40px 38px;
  list-style: none;
  text-align: center;
  background-color: #000000;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
header .hamburger-menu .menu__box nav ul a {
  text-align: left;
  display: block;
  padding: 12px 0;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  text-decoration: none;
}
header .hamburger-menu .menu__box .social {
  position: absolute;
  bottom: 38px;
  display: none;
}
@media screen and (max-width: 980px) {
  header .hamburger-menu .menu__box .social {
    display: block;
  }
}
header .hamburger-menu .menu__box .social .description {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}
header .hamburger-menu .menu__box .menu__close {
  display: flex;
  align-items: center;
  position: fixed;
  top: 25px;
  left: 240px;
  width: 32px;
  height: 20px;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 980px) {
  header .hamburger-menu .menu__box .menu__close {
    right: 35px;
    left: auto;
  }
}
header .hamburger-menu .menu__box .menu__close > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3.5px;
  background-color: #fff;
  transform: rotate(45deg);
}
header .hamburger-menu .menu__box .menu__close > span::after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 3.5px;
  background-color: #fff;
  transform: rotate(95deg);
}
header .hamburger-menu .menu__box .menu__close .menu__close > span {
  transform: rotate(45deg);
}
header .hamburger-menu .menu__box .menu__close .menu__close > span::before {
  top: 0;
  transform: rotate(0);
}
header .hamburger-menu .menu__box .menu__close .menu__close > span::after {
  top: 0;
  transform: rotate(90deg);
}

main section {
  position: relative;
}
main section.mkMotors__top {
  height: 100vh;
  padding: 100px 0 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)), url("../img/background.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top {
    padding-bottom: 150px;
    height: 100%;
  }
}
main section.mkMotors__top .container {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container {
    flex-direction: column;
    align-items: center;
    max-width: 600px;
  }
}
main section.mkMotors__top .container .left__container {
  padding: 100px 0 0;
  margin-bottom: auto;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container .left__container {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 660px) {
  main section.mkMotors__top .container .left__container {
    padding-top: 50px;
  }
}
main section.mkMotors__top .container .left__container p {
  padding: 0 0 20px;
  font-size: 40px;
}
main section.mkMotors__top .container .left__container .contact__block .contact p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
main section.mkMotors__top .container .left__container .contact__block .contact .phone {
  font-size: 26px;
  font-weight: 400;
  color: #f79330;
}
@media screen and (max-width: 420px) {
  main section.mkMotors__top .container .left__container .contact__block .contact .phone {
    font-size: 22px;
  }
}
main section.mkMotors__top .container .left__container .contact__block .contact:not(:last-child) {
  margin-bottom: 30px;
}
main section.mkMotors__top .container .left__container .title__block {
  margin-top: 40px;
  max-width: 660px;
  width: 100%;
}
main section.mkMotors__top .container .left__container .title__block h1 {
  font-size: 65px;
  text-transform: uppercase;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);
  line-height: 1.17;
  font-weight: 600;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container .left__container .title__block h1 {
    font-size: 62px;
  }
}
@media screen and (max-width: 660px) {
  main section.mkMotors__top .container .left__container .title__block h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  main section.mkMotors__top .container .left__container .title__block h1 {
    font-size: 30px;
  }
}
main section.mkMotors__top .container .left__container .title__block p {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.45;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container .left__container .title__block p {
    font-size: 22px;
  }
}
@media screen and (max-width: 660px) {
  main section.mkMotors__top .container .left__container .title__block p {
    font-size: 20px;
  }
}
main section.mkMotors__top .container .right__container {
  max-width: 360px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container .right__container {
    margin: 20px auto 0;
    max-width: 600px;
  }
}
main section.mkMotors__top .container .right__container .feedback__block {
  position: relative;
  max-width: 360px;
  width: 100%;
  padding: 34px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
main section.mkMotors__top .container .right__container .feedback__block::before {
  content: " ";
  height: 12px;
  width: 100%;
  background: rgba(247, 147, 48, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__top .container .right__container .feedback__block {
    max-width: 600px;
  }
}
main section.mkMotors__top .container .right__container .feedback__block .title {
  color: #000000;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}
main section.mkMotors__top .container .right__container .feedback__block .description {
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: #000000;
  font-weight: 300;
  margin-bottom: 24px;
}
main section.mkMotors__top .container .right__container .feedback__block input {
  color: #000000;
  background-color: #f4f4f4;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.33;
  width: 100%;
  border: 0 none;
  height: 64px;
  margin-bottom: 12px;
  padding: 22.5px 50px;
}
main section.mkMotors__top .container .right__container .feedback__block input.name {
  background: url("../icon/user.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 7% center;
}
main section.mkMotors__top .container .right__container .feedback__block input.phone {
  background: url("../icon/phone.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 7% center;
}
main section.mkMotors__top .container .right__container .feedback__block input.warning {
  border: 1px solid red;
}
main section.mkMotors__top .container .right__container .feedback__block textarea {
  padding: 0 20px;
  color: rgb(0, 0, 0);
  background-color: #f4f4f4;
  border-radius: 24px;
  font-size: 16px;
  height: 64px;
  margin-top: 20px;
  max-height: 85px;
  height: 100%;
  resize: none;
  width: 100%;
  padding: 12.5px 15px;
}
main section.mkMotors__top .container .right__container .feedback__block .warning__text {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}
main section.mkMotors__top .container .right__container .feedback__block .select__title {
  color: #000000;
  padding-bottom: 5px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  margin-top: 0px;
}
@media screen and (max-width: 660px) {
  main section.mkMotors__top .container .right__container .feedback__block .select__title {
    font-size: 16px;
  }
}
main section.mkMotors__top .container .right__container .feedback__block select {
  max-width: 360px;
  width: 100%;
  border-radius: 24px;
  font-size: 16px;
  height: 64px;
  padding: 22.5px 85px 15px;
  background: url("../icon/car_model.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 7% center;
  -webkit-appearance: none;
}
main section.mkMotors__top .container .right__container .feedback__block .warning__label {
  background: #f95d51;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 20px 0 0;
}
main section.mkMotors__top .container .right__container .feedback__block button {
  border-radius: 10px;
  width: 100%;
  height: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  background-color: #f79330;
  margin-top: 20px;
  box-shadow: 0px 18px 28px -9px rgba(247, 147, 48, 0.61);
  border-radius: 5px;
  border-color: none;
}
main section.mkMotors__top .arrow {
  position: absolute;
  cursor: pointer;
  left: 0;
  right: 0;
  bottom: 35px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50px;
  height: 30px;
  width: 100%;
  opacity: 1;
  animation: move 3s linear infinite;
}
main section.mkMotors__service {
  background-color: #f9f9f9;
  height: 100%;
}
main section.mkMotors__service .container .service__list {
  display: flex;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  height: 100%;
  grid-gap: 60px;
  padding: 80px 0 120px;
  grid-auto-flow: dense;
}
@media screen and (max-width: 1100px) {
  main section.mkMotors__service .container .service__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  main section.mkMotors__service .container .service__list {
    grid-gap: 25px;
  }
}
@media screen and (max-width: 510px) {
  main section.mkMotors__service .container .service__list {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
main section.mkMotors__service .container .service__list article {
  position: relative;
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 300;
  font-size: 20px;
  line-height: 110%;
  background: white;
  border-radius: 24px;
  padding: 16px 24px 16px 35px;
  gap: 20px;
  isolation: isolate;
  box-shadow: 0px 20px 15px 0 rgba(0, 0, 0, 0.2);
}
main section.mkMotors__service .container .service__list article::before {
  left: 0;
  content: " ";
  position: absolute;
  background: #f79330;
  width: 20px;
  height: 100%;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (max-width: 1100px) {
  main section.mkMotors__service .container .service__list article {
    margin: 0 auto;
  }
}
main section.mkMotors__service .container .service__list article img {
  max-width: 60px;
  width: 100%;
  z-index: 9;
}
main section.mkMotors__service .container .service__list article .title {
  margin: 0;
  max-width: 220px;
  width: 100%;
  margin-left: auto;
  opacity: 0.9;
}
@media screen and (max-width: 1100px) {
  main section.mkMotors__service .container .service__list article .title {
    margin-left: 25px;
  }
}
main section.mkMotors__albums {
  height: 100%;
}
main section.mkMotors__albums .albums__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__albums .albums__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
main section.mkMotors__albums .albums__list .picture {
  width: 100%;
  max-height: 100%;
  height: 21vmax;
  cursor: zoom-in;
  transition: all 0.3s;
}
main section.mkMotors__albums .albums__list .picture:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  main section.mkMotors__albums .albums__list .picture {
    height: 21vmax;
  }
}
main section.mkMotors__albums .albums__list .picture img {
  display: none;
}
main section.mkMotors__description {
  background: #f9f9f9;
}
main section.mkMotors__description .container {
  padding: 100px 15px;
}
main section.mkMotors__description .container.promo {
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 50px 15px 50px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__description .container.promo {
    min-height: auto;
  }
}
main section.mkMotors__description .container.promo .conditioner {
  position: relative;
  width: 100px;
  height: 100px;
  background: url(../icon/car__condition.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main section.mkMotors__description .container.promo .conditioner::before {
  position: absolute;
  content: " ";
  width: 150px;
  height: 150px;
  background: url(../icon/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 150px;
}
@media screen and (max-width: 1150px) {
  main section.mkMotors__description .container.promo .conditioner::before {
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  main section.mkMotors__description .container.promo .conditioner::before {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  main section.mkMotors__description .container.promo .conditioner {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
  }
}
@media screen and (max-width: 510px) {
  main section.mkMotors__description .container.promo .conditioner {
    max-width: 50px;
    max-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  main section.mkMotors__description .container.promo {
    justify-content: center;
    align-items: center;
  }
}
main section.mkMotors__description .container p {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
}
main section.mkMotors__description .container p:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__description .container p {
    font-size: 18px;
  }
}
@media screen and (max-width: 580px) {
  main section.mkMotors__description .container p {
    font-size: 16px;
  }
}
main section.mkMotors__description .container p.promo {
  font-family: "Russo One", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #2a2e30;
  text-align: center;
  margin: 0 auto;
  margin-top: auto;
  max-width: 710px;
  width: 100%;
}
@media screen and (max-width: 950px) {
  main section.mkMotors__description .container p.promo {
    margin-left: auto;
    margin-right: 0;
    max-width: 550px;
  }
}
@media screen and (max-width: 810px) {
  main section.mkMotors__description .container p.promo {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  main section.mkMotors__description .container p.promo {
    margin: 0 auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 510px) {
  main section.mkMotors__description .container p.promo {
    font-size: 16px;
  }
}
main section.mkMotors__feedback {
  height: 100vh;
  background-image: url("../img/background_2.jpg");
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
main section.mkMotors__feedback::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
main section.mkMotors__feedback .container {
  position: relative;
  padding: 70px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
main section.mkMotors__feedback .container .feedback__block {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 34px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
main section.mkMotors__feedback .container .feedback__block::before {
  content: " ";
  height: 12px;
  width: 100%;
  background: rgba(247, 147, 48, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (max-width: 980px) {
  main section.mkMotors__feedback .container .feedback__block {
    max-width: 600px;
  }
}
main section.mkMotors__feedback .container .feedback__block .title {
  color: #000000;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}
main section.mkMotors__feedback .container .feedback__block .description {
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: #000000;
  font-weight: 300;
  margin-bottom: 24px;
}
main section.mkMotors__feedback .container .feedback__block input {
  color: #000000;
  background-color: #f4f4f4;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.33;
  width: 100%;
  border: 0 none;
  height: 64px;
  margin-bottom: 12px;
  padding: 22.5px 50px;
}
main section.mkMotors__feedback .container .feedback__block input.name {
  background: url("../icon/user.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 5% center;
}
main section.mkMotors__feedback .container .feedback__block input.phone {
  background: url("../icon/phone.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 5% center;
}
main section.mkMotors__feedback .container .feedback__block input.warning {
  border: 1px solid red;
}
main section.mkMotors__feedback .container .feedback__block textarea {
  padding: 0 20px;
  color: rgb(0, 0, 0);
  background-color: #f4f4f4;
  border-radius: 24px;
  font-size: 16px;
  height: 64px;
  margin-top: 20px;
  max-height: 85px;
  height: 100%;
  resize: none;
  width: 100%;
  padding: 12.5px 15px;
}
main section.mkMotors__feedback .container .feedback__block .warning__text {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}
main section.mkMotors__feedback .container .feedback__block .select__title {
  color: #000000;
  padding-bottom: 5px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  margin-top: 0px;
}
@media screen and (max-width: 660px) {
  main section.mkMotors__feedback .container .feedback__block .select__title {
    font-size: 16px;
  }
}
main section.mkMotors__feedback .container .feedback__block select {
  max-width: 100%;
  width: 100%;
  border-radius: 24px;
  font-size: 16px;
  height: 64px;
  padding: 22.5px 85px 15px;
  background: url("../icon/car_model.svg"), #f4f4f4;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 7% center;
  -webkit-appearance: none;
}
main section.mkMotors__feedback .container .feedback__block .warning__label {
  background: #f95d51;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 20px 0 0;
}
main section.mkMotors__feedback .container .feedback__block button {
  border-radius: 10px;
  width: 100%;
  height: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  background-color: #f79330;
  margin-top: 20px;
  box-shadow: 0px 18px 28px -9px rgba(247, 147, 48, 0.61);
  border-radius: 5px;
  border-color: none;
}
main section.mkMotors__popularServices {
  background: #fff;
}
main section.mkMotors__popularServices .container {
  padding: 90px 15px 0;
}
main section.mkMotors__popularServices .container .services > .title {
  text-align: center;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 600;
  color: #000000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services > .title {
    font-size: 38px;
  }
}
@media screen and (max-width: 660px) {
  main section.mkMotors__popularServices .container .services > .title {
    font-size: 30px;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .button__clicker {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 1px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .button__clicker {
    overflow-x: scroll;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .button__clicker button {
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(247, 147, 48, 0.8);
  border-radius: 20px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  max-height: 145px;
  transition: all 0.8s;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .button__clicker button {
    min-width: 120px;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .button__clicker button.active {
  border: 2px solid #2a2e30;
  color: #000;
}
main section.mkMotors__popularServices .container .services .services__clicker .button__clicker button.active svg {
  fill: #000;
}
main section.mkMotors__popularServices .container .services .services__clicker .button__clicker button svg {
  max-width: 50px;
  width: 100%;
  max-height: 50px;
  margin-bottom: 15px;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker {
  position: relative;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .content__clicker {
    overflow: hidden;
    overflow-x: scroll;
    padding-top: 18px;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info {
  display: flex;
  align-items: center;
  position: absolute;
  background: #fff;
  color: #000;
  max-width: 400px;
  width: 100%;
  padding: 15px 6px 15px 90px;
  top: 10%;
  left: 0;
  box-shadow: 0px 20px 15px 0 rgba(0, 0, 0, 0.2);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info {
    position: sticky;
    top: 0;
    padding: 15px 6px 15px 70px;
    max-width: 320px;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info::before {
  position: absolute;
  left: 0;
  content: " ";
  height: 100%;
  width: 15px;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(247, 147, 48, 0.8);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info > div {
  display: none;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info > div.active {
  display: block;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .info svg {
  position: absolute;
  left: 25px;
  max-width: 35px;
  width: 100%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .all__services {
  position: absolute;
  right: 5%;
  bottom: 5%;
  background: rgba(247, 147, 48, 0.8);
  color: #fff;
  font-weight: 600;
  padding: 20px 30px;
  font-size: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .all__services {
    position: sticky;
    left: 0;
    bottom: 0;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-width: 600px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons {
    overflow: hidden;
    overflow-x: scroll;
    top: 5%;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50px;
  width: 100%;
  height: 100%;
  max-height: 50px;
  border-radius: 100%;
  background: rgba(247, 147, 48, 0.8);
  padding: 12px;
  transition: all 0.8s;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button {
    max-width: 40px;
    max-height: 40px;
  }
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.active {
  border: 2px solid #2a2e30;
  color: #000;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.active svg {
  fill: #000;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button:hover {
  transform: scale(1.1);
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button svg {
  max-width: 35px;
  width: 100%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.oil {
  left: 30%;
  top: 43%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.engine {
  left: 28%;
  top: 54%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.brake {
  left: 73%;
  top: 38%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.collapsed {
  left: 41%;
  top: 63%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.gearshift {
  left: 39%;
  top: 45%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker .buttons button.diagnostick {
  left: 48%;
  top: 50%;
}
main section.mkMotors__popularServices .container .services .services__clicker .content__clicker img {
  width: 100%;
  min-width: 600px;
}
main section.mkMotors__repair .container {
  padding: 90px 15px;
}
main section.mkMotors__repair .container .repair .title {
  color: #fff;
  padding: 12px 20px 12px 85px;
  text-align: left;
  font-size: 28px;
  line-height: 1.23;
  font-weight: 600;
  background: rgba(247, 147, 48, 0.8);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px 20px 15px 0 rgba(0, 0, 0, 0.2);
  background-image: url("../icon/services.svg");
  background-position: 2%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__repair .container .repair .title {
    background-size: 50px;
    font-size: 22px;
    padding-left: 60px;
  }
}
main section.mkMotors__repair .container .repair .content {
  display: flex;
}
main section.mkMotors__repair .container .repair .content .tabs {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid #f79330;
  border-top: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__repair .container .repair .content .tabs {
    display: none;
  }
}
main section.mkMotors__repair .container .repair .content .tabs .tab__link {
  text-align: left;
  color: #2a2e30;
  font-weight: 600;
  padding: 10px 20px;
  height: 50px;
  transition: all 0.5s;
}
main section.mkMotors__repair .container .repair .content .tabs .tab__link:hover {
  color: #fff;
  background: rgba(247, 147, 48, 0.8);
  background-image: url("../icon/tab_select.svg");
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 10%;
  padding-left: 45px;
}
main section.mkMotors__repair .container .repair .content .tabs .tab__link.active {
  color: #fff;
  background: rgba(247, 147, 48, 0.8);
  background-image: url("../icon/tab_select.svg");
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 10%;
  padding-left: 45px;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper {
  width: 100%;
  padding: 0 10px;
  overflow-y: auto;
  max-height: 425px;
}
@media screen and (max-width: 768px) {
  main section.mkMotors__repair .container .repair .content .tab__wrapper {
    max-height: 100%;
  }
}
@media screen and (min-width: 768px) {
  main section.mkMotors__repair .container .repair .content .tab__wrapper {
    height: 100%;
  }
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .tab__link {
  width: 100%;
  text-align: left;
  color: #2a2e30;
  padding: 10px 20px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  main section.mkMotors__repair .container .repair .content .tab__wrapper .tab__link {
    display: none;
  }
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .tab__link:hover {
  color: #fff;
  background: rgba(247, 147, 48, 0.8);
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .tab__link.active {
  color: #fff;
  background: rgba(247, 147, 48, 0.8);
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content {
  overflow: hidden;
  max-height: 0%;
  height: 0;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content.active {
  display: block;
  height: auto;
  max-height: 100%;
  transition: all 0.5s ease-out;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content .tab {
  display: flex;
  align-items: center;
  text-align: left;
  color: #2a2e30;
  padding: 10px 20px;
  height: 100%;
  border-bottom: 1px #8f9193 solid;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content .tab:hover {
  color: #fff;
  background: rgba(247, 147, 48, 0.8);
  padding-left: 45px;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content .tab .tab-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 100px 0 0;
  width: 100%;
}
main section.mkMotors__repair .container .repair .content .tab__wrapper .content .tab .tab-content .price {
  position: absolute;
  right: 0;
}
main .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  main .container {
    padding: 0 15px;
    max-width: 1100px;
  }
}
main .hidden-content {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 8;
  display: none;
}

footer {
  overflow: hidden;
}
footer .contacts {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .contacts {
    flex-direction: column-reverse;
  }
}
footer .contacts .geo {
  max-width: 100%;
  height: 700px;
  width: 100%;
}
/*footer .contacts .geo::before {*/
/*  content: " ";*/
/*  position: absolute;*/
/*  border: 1px solid;*/
/*  width: 100%;*/
/*  height: 101%;*/
/*  background: radial-gradient(farthest-side at bottom right, transparent 96%, #fff);*/
/*  top: -5px;*/
/*  border: none;*/
/*}*/
@media screen and (max-width: 768px) {
  footer .contacts .geo::before {
    display: none;
  }
}
footer .contacts .geo iframe {
  max-height: 700px;
  max-width: 100%;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .contacts .geo iframe {
    max-height: 300px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .contacts .geo {
    max-width: 100%;
    max-height: 300px;
  }
}
footer .contacts .contact__block {
  position: absolute;
  width: 453px;
  background: #ffffff;
  box-shadow: 0px 20px 30px -4px rgba(0, 0, 0, 0.3);
  border-radius: 30px 30px;
  padding: 34px 30px;
  color: #000;
  left: 5%;
}
@media screen and (max-width: 768px) {
  footer .contacts .contact__block {
    position: relative;
    width: 100%;
    left: auto;
  }
}
footer .contacts .contact__block .title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  text-align: center;
  color: #333333;
  margin-bottom: 20px;
}
footer .contacts .contact__block .contact__phone {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #878787;
  margin-top: 10px;
  height: 50px;
  padding: 0 50px;
  background: url("../icon/phone-contact.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 0% center;
}
footer .contacts .contact__block .contact__phone a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #878787;
}
footer .contacts .contact__block .contact__email {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #878787;
  margin-top: 10px;
  height: 50px;
  padding: 0 50px;
  background: url("../icon/email-contact.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 0% center;
}
footer .contacts .contact__block .contact__email a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #878787;
}
footer .contacts .contact__block .address {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #878787;
  width: 100%;
  height: 50px;
  padding: 0 50px;
  background: url("../icon/geo.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 0% center;
}

.callback {
  position: fixed;
  bottom: 7%;
  right: 2%;
  z-index: 99;
  background: #c3c3c4;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 15px rgba(247, 147, 48, 0.5), 0px 2px 4px rgba(247, 147, 48, 0.1), 0px 4px 8px rgba(247, 147, 48, 0.1), 0px 8px 16px rgba(247, 147, 48, 0.1);
  animation: phoneMove 3s linear infinite;
}
.callback .callback__phone {
  text-align: center;
  max-width: 100px;
  width: 100%;
  transform: rotateZ(-30deg);
  animation: phoneIconMove 6s linear infinite;
}
.callback .info__callback {
  text-align: center;
}

@keyframes phoneIconMove {
  0% {
    transform: rotateZ(-30deg);
  }
  2% {
    transform: rotateZ(-60deg);
  }
  4% {
    transform: rotateZ(-30deg);
  }
  6% {
    transform: rotateZ(0deg);
  }
  8% {
    transform: rotateZ(-30deg);
  }
  92% {
    transform: rotateZ(-30deg);
  }
  94% {
    transform: rotateZ(-60deg);
  }
  96% {
    transform: rotateZ(-30deg);
  }
  98% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-30deg);
  }
}
@keyframes phoneMove {
  0% {
    box-shadow: 0px 0px 0px 15px rgba(247, 147, 48, 0.5), 0px 2px 4px rgba(247, 147, 48, 0.1), 0px 4px 8px rgba(247, 147, 48, 0.1), 0px 8px 16px rgba(247, 147, 48, 0.1);
  }
  50% {
    box-shadow: 0px 0px 0px 2px rgba(247, 147, 48, 0.5), 0px 2px 4px rgba(247, 147, 48, 0.1), 0px 4px 8px rgba(247, 147, 48, 0.1), 0px 8px 16px rgba(247, 147, 48, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(247, 147, 48, 0.5), 0px 2px 4px rgba(247, 147, 48, 0.1), 0px 4px 8px rgba(247, 147, 48, 0.1), 0px 8px 16px rgba(247, 147, 48, 0.1);
  }
}
@keyframes move {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 35px;
  }
}
#menu__toggle {
  opacity: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 40px;
  left: 35px;
  width: 32px;
  height: 20px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .menu__btn {
    right: 35px;
    left: auto;
    top: 35px;
  }
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3.5px;
  background-color: #fff;
}

.menu__btn > span::before {
  content: "";
  top: -10px;
}

.menu__btn > span::after {
  content: "";
  top: 10px;
}

#menu__toggle:checked ~ .menu__btn span {
  color: #fff;
}
#menu__toggle:checked ~ .menu__btn span:before {
  background-color: #fff;
}
#menu__toggle:checked ~ .menu__btn span:after {
  background-color: #fff;
}

#menu__toggle:checked ~ .menu__btn > span {
  display: none;
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.animate-top {
  position: relative;
  animation: animatetop 0.4s;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.275);
}

.modal-content {
  margin: 5% auto;
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  margin-top: 0;
  font-size: 1.25rem;
}

.modal-header .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  border: 0;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.modal-body {
  flex: 1 1 auto;
  padding: 2rem;
}
.modal-body p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}
.modal-body .title {
  font-size: 36px;
  line-height: 1.23;
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
}
.modal-body form {
  display: flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
}
.modal-body form input {
  color: #000000;
  background-color: #fafafa;
  padding: 0 18px;
  height: 50px;
  font-size: 16px;
  line-height: 1.33;
  width: 100%;
  border: 0 none;
  border-radius: 10px;
  margin-bottom: 20px;
}
.modal-body form input.phone {
  margin-bottom: 0;
}
.modal-body form input.warning {
  border: 1px solid red;
}
.modal-body form button {
  border-radius: 10px;
  width: 100%;
  height: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  background-color: #f79330;
  margin-top: 20px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > * {
  margin: 5px;
}

/* buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-secondary {
  color: #fff;
  background-color: #7c8287;
  border-color: #7c8287;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}




  .modalDialog {
      position: fixed;
      font-family: Arial, Helvetica, sans-serif;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0,0,0,0.1);
      z-index: 99999;
      opacity:0;
      -webkit-transition: opacity 400ms ease-in;
      -moz-transition: opacity 400ms ease-in;
      transition: opacity 400ms ease-in;
      pointer-events: none;
      }
      .modalDialog.active {
      opacity:1;
      pointer-events: auto;
      }
      .modalDialog > div {
      width: 320px;
      position: relative;
      margin: 10% auto;
      padding: 20px 20px 13px 20px;
      border-radius: 10px;
      background: -moz-linear-gradient(#2edbe8, #01a6b2);
      background: #fff;
      background: -o-linear-gradient(#2edbe8, #01a6b2);
      }
      .modalDialog > div > img {
          margin: 0 auto;
          max-width: 100px;
          width: 100%;
      }
      .modalDialog > div > p{
          text-align: center;
          color: #f79330;
          margin-bottom: 0;
          margin: 10px 0 10px;
      }
      .close {
      background: #606061;
      color: #FFFFFF;
      line-height: 25px;
      position: absolute;
      right: -12px;
      text-align: center;
      top: -10px;
      width: 24px;
      text-decoration: none;
      font-weight: bold;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      border-radius: 12px;
      -moz-box-shadow: 1px 1px 3px #000;
      -webkit-box-shadow: 1px 1px 3px #000;
      box-shadow: 1px 1px 3px #000;
      }
      .close:hover { background: #f79330; }/*# sourceMappingURL=style.css.map */