@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.header {
  position: absolute;
  z-index: 1;
  font-family: "Exo", sans-serif;
  font-weight: 500;
  width: 100%;
}
.header_scrolled {
  position: fixed;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  background: hsl(284deg, 80%, 8%);
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    top: -50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    top: -50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
.header .container-fluid {
  width: 90%;
}
.header .container-fluid .nav-info {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  color: white;
  transition: 0.5s;
}
.header .container-fluid .nav-info .nav-info__text {
  color: white;
  text-decoration: none;
}
.header .container-fluid .nav-info .nav-info__text:hover {
  color: hsl(219deg, 69%, 56%);
  transition: 0.5s;
}
.header .container-fluid .navbar-brand {
  color: white;
}
.header .container-fluid .navbar-logo {
  color: white;
}
.header .container-fluid .navbar-toggler {
  border: 1px solid white;
}
.header .container-fluid .navbar-toggler-icon {
  background-image: url(../img/menu.png);
  color: white;
}
.header .container-fluid .collapse .nav-link {
  color: white;
  margin: 0px 0px 0px 30px;
  transition: 800ms;
}
.header .container-fluid .collapse .nav-link:hover {
  color: hsl(219deg, 69%, 56%);
  transition: 800ms;
}
.header .container-fluid .collapse .nav-linkelement::before {
  content: "";
  display: block;
  width: 7.14px;
  height: 7.14px;
  border-radius: 50%;
  background: hsl(219deg, 69%, 56%);
}
.header .container-fluid .dropdown-menu {
  width: 130px;
}

body {
  background: hsl(283deg, 89%, 7%);
  font-family: "Montserrat", sans-serif;
}
body .main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
}
body .main > * {
  margin: 0 auto;
}
body .main .background {
  position: absolute;
  height: 100vh;
  width: 100%;
  z-index: 0;
  opacity: 0.5;
}
body .main .background video {
  z-index: 0;
  position: absolute;
  opacity: 0.5;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .main .background .video__slide {
  width: 100%;
  -webkit-clip-path: circle(0% at 0 50%);
          clip-path: circle(0% at 0 50%);
}
body .main .background .video__slide.active {
  -webkit-clip-path: circle(150% at 0 50%);
          clip-path: circle(150% at 0 50%);
}
body .main .slider__bg {
  z-index: 100;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60vh;
  padding-top: 2rem;
  gap: 0.25rem;
  cursor: pointer;
}
body .main .slider__bg .slider__bg--btn {
  z-index: 100;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.392);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}
body .main .slider__bg .slider__bg-btn:hover {
  transform: scale(1.2);
}
body .main .slider__bg .active {
  background: #fff;
  color: #fff;
}
body .main .search {
  z-index: 100;
}
body .main .search--special {
  margin-top: 100px;
}
body .main .search .search__label {
  cursor: pointer;
  margin-right: 5px;
  padding: 10px 40px 5px;
  background-color: hsl(219deg, 4%, 7%);
  color: white;
  border-radius: 20px 20px 0 0;
  position: relative;
}
body .main .search .search__label:hover {
  background: hsl(219deg, 69%, 56%);
}
body .main .search .search__radio {
  display: none;
}
body .main .search .search__radio:checked + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  width: 7.14px;
  height: 7.14px;
  border-radius: 50%;
  background: hsl(219deg, 69%, 56%);
}
body .main .search .search__radio[id=tab-first]:checked ~ .content .tab-first, body .main .search .search__radio[id=tab-second]:checked ~ .content .tab-second {
  display: block;
}
body .main .search .content .tab {
  display: none;
  bottom: 100px;
  width: 100%;
  padding: 2%;
  min-height: 200px;
  background-color: hsla(0deg, 0%, 100%, 0.1);
  margin-right: 35px;
  box-shadow: 9px 9px 5px 5px rgba(26, 25, 25, 0.75);
}
body .main .search .content .tab--special {
  display: block;
  margin-top: 200px;
}
body .main .search .content .tab .tab__item {
  width: 244.5px;
  font-size: 15px;
  padding: 1%;
  margin: 12px 0 0 17px;
}
body .main .search .content .tab .tab__item--extra {
  padding: 0;
}
body .main .search .content .tab .tab__item--extra .tab__title {
  color: #fff;
  margin: 0 0 0 4%;
  width: 40px;
  display: inline;
}
body .main .search .content .tab .tab__item--extra .tab__item--special {
  padding: 7px;
  margin: 0 0 0 10px;
  width: 90px;
  display: inline;
}
body .main .search .content .tab .tab__title {
  color: #fff;
  margin: 0 0 0 4%;
}
body .main .search .content .tab .tab__button {
  margin-top: 20px;
  margin-left: 30%;
  font-size: 20px;
  width: 25%;
  padding: 0.5%;
  background-color: white;
}
body .main .text {
  z-index: 100;
  padding: 20px;
}
body .main .text .list {
  background-color: hsl(219deg, 4%, 7%);
  color: white;
  list-style-position: inside;
  list-style: disc;
  padding-left: 40px;
}
body .main .text .list__item {
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: start;
  color: rgb(83, 83, 83);
}
body .main .slider-lightbox {
  margin-top: 250px;
}
body .main .slider-lightbox .gallery a .thumb-picture {
  width: 30%;
  height: auto;
  border: 2px solid #fff;
  transition: transform 0.15s ease;
  position: relative;
}
body .main .slider__bg {
  z-index: 100;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  gap: 0.25rem;
  cursor: pointer;
}
body .main .slider__bg .slider__bg--btn {
  z-index: 100;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.392);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}
body .main .slider__bg .slider__bg-btn:hover {
  transform: scale(1.2);
}
body .main .slider__bg .active {
  background: #fff;
  color: #fff;
}
body .main .cards {
  margin: 200px auto 50px;
  width: 100%;
}
body .main .cards .wrap {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main .cards .wrap .cards__item {
  min-height: 168px;
  width: 300px;
  height: auto;
  position: relative;
  perspective: 1000px;
}
body .main .cards .wrap .cards__item .cards__picture {
  width: 100%;
  margin-top: 20px;
}
body .main .cards .wrap .cards__item .front,
body .main .cards .wrap .cards__item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 10px;
}
body .main .cards .wrap .cards__item .front {
  background-color: hsl(219deg, 4%, 7%);
}
body .main .cards .wrap .cards__item .back {
  background: hsl(219deg, 4%, 7%);
  transform: rotateY(180deg);
}
body .main .cards .wrap .cards__item .back .list {
  width: 100%;
  margin: 5px;
}
body .main .cards .wrap .cards__item .back .list .list__item {
  margin: 10px;
  color: white;
}
body .main .cards .wrap .cards__item .back .list .list__item--btn {
  text-align: center;
}
body .main .cards .wrap .cards__item .back .list .list__btn {
  border: 1px solid rgb(171, 171, 171);
  margin-top: 20px;
  width: 270px;
  height: 20px;
}
body .main .cards .wrap .cards__item:hover .front {
  transform: rotateY(180deg);
}
body .main .cards .wrap .cards__item:hover .back {
  transform: rotateY(360deg);
}
body .main .coment {
  padding: 50px;
}
body .main .coment .coment__container {
  background: rgba(237, 237, 237, 0.7882352941);
  border-radius: 10px;
  box-shadow: 8px 4px 10px 3px black;
  border-radius: 1.15rem;
  background: hsl(219deg, 4%, 7%);
  min-width: 300px;
  min-height: 200px;
  padding: 15px;
}
body .main .coment .coment__container .coment__title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
  color: white;
  font-weight: 700;
}
body .main .coment .coment__container .coment__copy {
  padding: 20px 5px;
  border-top: 2px solid rgba(128, 128, 128, 0.627);
}
body .main .coment .coment__container .coment__copy .coment__text {
  color: hsl(219deg, 8%, 75%);
  line-height: 25px;
}
body .main .blocks .block {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 100px;
}
body .main .blocks .block .block__item {
  width: 100px;
  margin: 0 auto;
  opacity: 0.2;
  transition: 0.1s;
}
body .main .blocks .block .block__item:hover {
  opacity: 1;
  transition: 0.1s;
}
body .main .blocks .block .block__item__picture {
  width: 100px;
}
body .main .car-info {
  padding: 200px 0 0;
  margin-left: 10px;
}
@media screen and (min-width: 770px) {
  body .main .car-info {
    padding: 200px 6.5% 0;
  }
}
body .main .car-info .car-info__item {
  font-family: "Exo", sans-serif;
  font-size: 50px;
  color: white;
  font-weight: 600;
  line-height: 60px;
  width: 70%;
}
body .main .car-info .car-info__item--primary {
  font-family: "Exo", sans-serif;
  color: hsl(219deg, 8%, 75%);
  font-weight: 400;
  line-height: 25px;
  margin-top: 50px;
  line-height: 25px;
  width: 400px;
}
body .main .car-info .btn {
  margin: 41px 0 20px;
  --bs-btn-padding-x: 0;
}
body .main .car-info .btn .btn__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 204px;
  padding: 15px 23.38px 18px;
  background-color: hsl(219deg, 69%, 56%);
  border-radius: 10px;
  font-size: 19px;
  line-height: 30px;
  color: #ffffff;
}
body .main .car-info .card__wrapper {
  position: relative;
}
body .main .car-info .card__wrapper .car__picture {
  width: 620px;
}
body .main .car-info .card__wrapper .card__primary {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 433px;
  top: 350px;
  border-radius: 1.25rem;
  background-color: hsla(0deg, 0%, 100%, 0.1);
  width: 200px;
  padding: 20px;
}
body .main .car-info .card__wrapper .card__primary .card__item {
  font-family: "Exo", sans-serif;
  font-size: 1.25rem;
  color: hsl(0deg, 0%, 100%);
  font-weight: 700;
}
body .main .car-info .card__wrapper .card__primary .card__item--special {
  font-family: "Exo", sans-serif;
  font-size: 1rem;
  color: hsl(219deg, 8%, 75%);
  line-height: 22px;
  margin-top: 15px;
}
body .main .container--special {
  margin-top: 150px;
}
body .main .container--special .choise-car__text {
  margin: 0 auto;
  width: 380px;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 38px;
  color: white;
}
body .main .container--special .cards {
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 35px;
}
body .main .container--special .cards .card__title {
  width: 320px;
  padding: 50px 20px 70px;
  margin: 20px auto;
  border-radius: 1.15rem;
  position: relative;
  overflow: hidden;
  background: hsl(219deg, 4%, 7%);
}
body .main .container--special .cards .card__title--special {
  margin: 20px auto;
}
@media screen and (min-width: 1049px) {
  body .main .container--special .cards .card__title--special {
    margin: 20px 0 20px auto;
  }
}
body .main .container--special .cards .card__title--primary {
  margin: 20px auto;
}
@media screen and (min-width: 1049px) {
  body .main .container--special .cards .card__title--primary {
    margin: 20px auto 20px 0;
  }
}
body .main .container--special .cards .card__title .white {
  background-color: hsla(219deg, 33%, 32%, 0.5);
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 180px;
  height: 180px;
  filter: blur(64px);
}
body .main .container--special .cards .card__title:hover {
  background: hsl(210deg, 4%, 9%);
}
body .main .container--special .cards .card__title .card__text {
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.9rem;
}
body .main .container--special .cards .card__title .card__text--primary {
  color: hsl(219deg, 8%, 75%);
  font-size: 1.5rem;
}
body .main .container--special .cards .card__title .card__picture {
  padding: 20px 20px;
}
body .main .container--special .cards .card__title .card__picture img {
  width: 250px;
  transition: 1s;
}
body .main .container--special .cards .card__title .card__picture img:hover {
  transform: matrix(1, 0, 0, 1, 0, 15);
  transition: 1s;
}
body .main .container--special .cards .card__title .card__subtitle {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  color: #fff;
  margin: 40px 0px 30px 0px;
}
body .main .container--special .cards .card__title .card__text--special {
  color: white;
}
body .main .container--special .card__wrapper {
  margin: 0px 0px 150px 0px;
}
body .main .container--special .card__wrapper .card-about__title {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  margin-top: 100px;
  width: 338px;
  min-height: 300px;
  background: hsl(219deg, 4%, 7%);
}
body .main .container--special .card__wrapper .card-about__title:hover {
  background: hsl(210deg, 4%, 9%);
}
body .main .container--special .card__wrapper .card-about__title .card-about__text {
  margin-top: 74px;
  text-align: center;
}
body .main .container--special .card__wrapper .card-about__title .card-about__text--primary {
  font-size: 1rem;
  line-height: 30px;
  text-align: center;
  margin-top: 20px;
  color: #ffffff;
}
body .main .form__wrapper {
  display: flex;
  -moz-column-gap: 180px;
       column-gap: 180px;
  margin-top: 200px;
  margin-bottom: 70px;
  width: 800px;
  height: 500px;
  border-radius: 10px;
  background: white;
}
body .main .form__wrapper .picture {
  padding-top: 70px;
}
body .main .form__wrapper .form {
  margin-top: 130px;
}
body .main .form__wrapper .form .form__title {
  font-family: "Exo", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
body .main .form__wrapper .form .password {
  margin-top: 20px;
}
body .main .form__wrapper .form input {
  border: 1px solid black;
  padding: 5px;
  border-radius: 10px;
}
body .main .form__wrapper .form .btn {
  display: flex;
  width: 120px;
  margin-top: 30px;
  background: black;
  color: white;
  text-transform: none;
  flex-direction: column;
}

.footer {
  margin-bottom: 40px;
}
.footer .footer__inner {
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
  padding: 0px 100px;
  margin: 90px 0 0;
  font-family: "Exo", sans-serif;
  font-weight: 700;
  color: white;
}
.footer .footer__inner .footer__link {
  margin: 0 0 20px;
}
.footer .footer__inner .footer__link .footer__text {
  font-family: "Exo", sans-serif;
  font-weight: 400;
  width: 72%;
  margin-top: 20px;
  color: hsl(219deg, 8%, 75%);
  line-height: 22px;
}
.footer .footer__inner .footer__link .footer__text:hover {
  color: hsl(219deg, 69%, 56%);
}
.footer .footer__inner .footer__link .footer__icon {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 20px;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */