@font-face {
  font-family: "Eurostile Extended";
  font-style: normal;
  src: url("../fonts/Eurostile Extended Regular.ttf");
}

@font-face {
  font-family: 'Halvar Breit Lt';
  src: url('HalvarBreit-Lt.eot');
  src: local('Halvar Breitschrift Light'), local('HalvarBreit-Lt'),
      url('../fonts/HalvarBreit-Lt.eot?#iefix') format('embedded-opentype'),
      url('../fonts/HalvarBreit-Lt.woff2') format('woff2'),
      url('../fonts/HalvarBreit-Lt.woff') format('woff'),
      url('../fonts/HalvarBreit-Lt.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html {
  /*font-size: 62.5%;*/
  overflow-x: hidden;
}

*,
*::after,
*::before{
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

li {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; 
  height: 100%;
}

body {
  font-family: 'Halvar Breit Lt', sans-serif;
  background-color: #f1f0eb;
  overflow: hidden;
}

.section__title {
  font-size: 2rem;
  color: #000000;
}

.section {
  padding: 3rem 0;
}

.email {
  font-family: 'Halvar Breit Lt', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  transition: all 0.5s;
}

.header.active {
  transform: translateY(-100%);
  background-color: #f1f0eb;
}

.header__top,
.header__bottom {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.header__content {
  display: flex;
  justify-content: space-between;
}

.header__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 10px;
  bottom: -1px;
}

.header__wrap .email {
  color: #ffffff;
  font-size: 1rem;
}

.callback-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.account__img {
  display: block;
  width: 28px;
  height: 28px;
  background-image: url('../image/icon-user-w.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.header--dark .account__img {
  background-image: url('../image/icon-user.png');
}

.social__list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.callback__btn {
  display: inline-block;
  padding: 1.3rem 1.75rem;
  font-size: 0.875rem;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  font-weight: 500;
}

.header__wrap .menu {
  color: #ffffff;
}

.header--dark .menu {
  color: #000000;
}

.header--dark .select-selected {
  color: #000000;
}

.header--dark .select-selected:after {
  border-color: #000000 transparent transparent transparent;
}

.header--dark .select-items {
  background-color: #ffffff;
}

.header--dark .header__wrap .email {
  color: #000000;
}

.menu {
  display: flex;
  gap: 0.938rem;
}

.menu__link {
  font-size: 1rem;
  line-height: 1.2rem;
  text-transform: uppercase;
}

.social__link svg {
  width: 1.75rem;
  height: 1.75rem;
}

.header__wrap .logo-wrap {
  background-color: #000000;
  max-width: 210px;
  height: 60px;

}

.logo {
  height: 100%;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.section-banner {
  padding: 0;
}

.banner__item {
  height: 84vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.3);*/
}

.banner__content {
  padding-top: 4.5rem;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1;
  position: relative;
}

.banner__title {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2rem;
}

.section-about .section__title {
  text-align: center;
}

.section-about .section__text {
  background-color: #ffffff;
  padding: 1rem;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 10px;
  margin-top: 1rem;
}

.section-about .section__text p {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  text-align: center;
}

.section-about .section__text p:not(:last-child) {
  padding-bottom: 15px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.service__item {
  /*font-family: 'Eurostile Extended', sans-serif;*/
  padding: 1.2rem;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.service__img-wrap {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__item:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}

.service__item:hover .service__img {
  transform: scale(1.2);
  transition: all 0.5s;
}

.service__item:hover .service__btn {
  background-color: #ffffff;
  color: #000000;
}

.service__content {
  position: relative;
  display: grid;
  height: 100%;
}

.service__title {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.service__btn-wrap {
  text-align: right;
  padding-top: 16rem;
  margin-top: auto;
}

.service__btn {
  display: inline-block;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 1rem 2rem;
  text-transform: uppercase;
}

.section-cars .section__title {
  text-align: center;
  color: #000000;
}

.cars__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.cars__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  transition: 0.3s all;
  height: 100%;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}

.cars__title {
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1rem;
  display: block;
  padding-bottom: 1.5rem;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.cars__img-wrap {
  width: 100%;
  height: 250px;
  max-height: 250px;
}

.cars__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cars__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 1rem 0;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  color: #000000;
}

.cars__info-item {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cars__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.cars__btn {
  text-align: center;
  padding: 1rem 2rem;
  width: 100%;
  /*font-family: 'Eurostile Extended', sans-serif;*/
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  border: 1px solid #000000;
  border-radius: 10px;
  background-color: transparent;
  text-transform: uppercase;
  cursor: pointer;
}

.cars__item:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.cars__item:hover .cars__btn {
  background-color: #ffffff;
  color: #000000;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.breadcrumb {
  position: relative;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 400;
  color: #6c757d;
}

.breadcrumb:not(:first-child) {
  padding-left: 20px;
}

.breadcrumb:not(:first-child)::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6c757d;
  top: 4px;
  left: 0;
}

.section-car .section__title {
  padding-bottom: 25px;
  color: #000000;
}

.car__detail {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.car__gallery {
  flex: 0 0 70%;
  width: 70%;
  box-sizing: border-box;
}

.gallery {
  width: 100%;
  height: 98%;
  max-width: 100%;
  position: relative;
}

.gallery__item {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-height: 550px;
}

.gallery__item .slick-list,
.gallery__item .slick-track{
  height: 100%;
}

.gallery__arrow-wrap {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-top: 1px solid #ffffff;
}

.car__description {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  margin-top: 2rem;
}

.car__description-title {
  color: #000000;
  padding-bottom: 1rem;
  font-weight: 700;
}

.car__description-content {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.arrow {
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.arrow-left {
  border-left: 1px solid #ffffff;
}

.arrow-right {
  border-left: 1px solid #ffffff;
}

.gallery__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 60px;
  cursor: pointer;
}

.gallery__arrow:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.car__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.detail__info {
  flex: 0 0 28%;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  color: rgba(0,0,0,0.5);
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.detail__list {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}

.detail__line {
  display: block;
  width: 100%;
  background-color: #dee2e6;
  height: 2px;
  margin: 30px 0;
}

.detail__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.detail__item + .detail__item {
  padding-top: 10px;
}

.detail__value {
  color: #000000;
}

.detail__item.price .detail__value {
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
}

.btn {
  width: 100%;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s all;
}

.btn--dark {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}

.btn--white {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.btn--dark:hover {
  color: #000000;
  background-color: #ffffff;
}

.btn--white:hover {
  background-color: #000000;
  color: #ffffff;
}

.section-login,
.section-register {
  padding-top: 150px;
}

.section-login .section__title,
.section-register .section__title {
  text-align: center;
  padding-bottom: 25px;
}

.form {
  border: 1px solid #dee2e6;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.form__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.form__input {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  line-height: 1rem;
  max-height: 44px;
}

.form__desc {
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #6c757d;
}

.section-profile {
  padding-top: 150px;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  padding: 2rem;
}

.modal__content {
  background-color: #fefefe;
  padding: 1rem;
  border: 1px solid #888;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.modal__top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.modal__title {
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
  padding-bottom: 1rem;
}

.close {
  color: #aaa;
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 2rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.notification {
  text-align: center;
  display: none;
  padding-top: 15px;
}

.message {
  display: none;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  border-radius: 10px;
}

.message__success {
  background-color: green;
  color: #ffffff;
}

.message__error {
  background-color: red;
  color: #ffffff;
}

.section-calculate {
  padding-top: 150px
}

.section-calculate .section__title {
  text-align: center;
  padding-bottom: 25px;
}

.calculate__wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.curs__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.calculate,
.calculate__result {
  flex: 0 0 50%;
}

.calculate__result {
  display: none;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 1rem;
  height: fit-content;
}

.form__calculate {
  border: none;
}

.form__calculate .message {
  font-weight: 700;
}

.form__calculate .message__success {
  background-color: transparent;
  color: #008f00;
}

.form__calculate .message__error {
  background-color: transparent;
  color: #f70707;
}

.table__column {
  padding: 12px;
  max-height: 44px;
}

.calculate__table .table__column:nth-child(1) {
  text-align: right;
}

.calculate__table .table__column:nth-child(2) {
  padding-left: 15px;
  font-weight: 600;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 2rem;
}

.services__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  height: 350px;
}

.services__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.services__img-wrap {
  flex: 0 0 49%;
}

.services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.services__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 0 0 49%;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 10px;
  background-color: #ffffff;
}

.services__title {
  text-align: center;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(241 240 235);;
}

.services__text {
  display: block;
  text-align: left;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  height: 100%;
  overflow-y: auto;
  padding: 1rem 0;
}

.services__bottom {
  display: block;
  margin-top: auto;
}

.services__btn span {
  font-size: 0.875rem;
}

/* The container must be positioned relative: */
select {
  -webkit-appearance: none;
}
.custom-select {
  position: relative;
  width: 76px;
  font-family: 'Halvar Breit Lt', sans-serif;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: transparent;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #000000;
  padding: 8px 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.select-selected {
  color: #ffffff;
  text-transform: uppercase;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #f1f0eb;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.account__wrap {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  justify-content: space-between;
  gap: 15px;
  background-color: #ffffff;
  padding: 1rem;
  margin-top: 15px;
  border: 1px solid #6c757d;
  border-radius: 10px;
}

.account__sidebar {
  flex: 0 0 20%;
  border-right: 1px solid #6c757d;
}

.sidebar__item {
  padding: 0.875rem 0;
  border-bottom: 1px solid #6c757d;
  cursor: pointer;
}

.sidebar__item:last-child {
  border-bottom: none;
}

.account__info {
  padding: 1rem;
  width: 100%;
}

.account__items {
  flex: 0 0 80%;
  display: none;
}

.account__items.active {
  display: block;
}

.table {
	border: 1px solid #eee;
    font-size: 0.875rem;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
}
/*.table th:nth-child(1),
.table td:nth-child(1){
    width: 30%;
}*/
.table th {
	font-weight: bold;
	padding: 5px;
	background: #f1f0eb;
	border: 1px solid #dddddd;
}
.table td {
	padding: 1rem;
	border: 1px solid #eee;
	text-align: left;
    vertical-align: middle;
}
.table tbody tr:nth-child(odd){
	background: #fff;
}
.table tbody tr:nth-child(even){
	background: #F7F7F7;
}

.form-account {
  max-width: 60%;
}

.btn-account {
  max-width: 30%;
  padding: 0.875rem;
  margin-left: auto;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 2rem;
}

.news {
  padding: 1rem;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 10px;
  background-color: #ffffff;
}

.news__title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.news__content {
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.news__date {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid #dee2e6;
}

.footer__content {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  justify-content: space-between;
  gap: 20px;
}

.footer__wrap {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  flex: 0 0 50%;
  flex-direction: column;
  gap: 10px;
}

.footer__wrap .logo-wrap {
  padding-bottom: 0.875rem;
} 

.footer__wrap .logo {
  color: #000000;
  position: relative;
  left: -60px;
}

.footer__nav {
  margin-top: auto;
}

.footer__text {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.footer__callback-wrap {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  gap: 20px;
}

.footer__callback {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  flex-direction: column;
  gap: 10px;
}

.footer__callback .callback__btn {
  text-align: center;
  border-radius: 5px;
}

.work-time {
  padding-top: 1rem;
}

.address {
  padding-top: 3rem;
}

.address__text {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2rem;
}

.country__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  gap: 15px;
}

.country__item {
  text-align: center;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 10px;
  padding: 1rem;
  height: 100%;
  background-color: #ffffff;
}

.country__link {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.country__link .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
}

.icon-germany {
  background-image: url('../image/icon-germany.png');
}

.icon-spain {
  background-image: url('../image/icon-spain.png');
}

.icon-russia {
  background-image: url('../image/icon-russia.png');
}

.recommended {
  position: relative;
}

.recommended__list .slick-track {
  margin-left: inherit;
}

.recommended__list .cars__item {
  margin-left: 15px;
}

.recommended__arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.arrow__left {
  left: -25px;
}

.arrow__right {
  right: -25px;
}

.recommended__arrow .arrow {
  width: 20px;
  height: 20px;
  border: solid #000000;
  border-width: 0 3px 3px 0;
}

.links__title {
  padding-bottom: 10px;
  text-align: center;
  color: #000000;
  font-weight: 600;
}

.links-spain {
  display: none;
}

.calculate__link {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #1288e7;
}

.calculate__link + .calculate__link {
  padding-top: 15px;
}

.form.filter {
  display: grid;
  gap: 20px;
  max-width: 100%;
  background-color: #ffffff;
  margin-top: 2rem;
  transition: all 0.8s;
}

.form.filter div {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
}

.form.filter div label {
  font-size: 0.875rem;
}

.form.filter .btn {
  grid-area: btn;
  max-height: 50px;
  margin-top: auto;
}

.form.filter select,
.form.filter input {
  -webkit-appearance: none;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  line-height: 1rem;
  max-height: 44px;
}

.burger-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  width: 26px;
  height: 30px;
  padding: 8px 0;
}

.btn__line {
  display: block;
  height: 1px;
  background-color: #ffffff;
}

.sidebar {
  display: none;
  height: 100vh;
  overflow-y: auto;
  width: 300px;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .6s ease-in-out;
  z-index: 10;
  background-color: #ffffff;
}

.sidebar .select-selected {
  color: #000000;
}

.close__btn .btn__line {
  background-color: #000000;
}

.sidebar.show {
  display: block;
}

.sidebar__top {
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.sidebar__top .close__btn {
  position: absolute;
  top: 0;
  right: 0;
}

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

.sidebar__top .logo svg {
  width: 68%;
}

.close__btn {
  width: 20px;
  height: 20px;
  display: flex;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  flex-direction: column;
  justify-content: space-between;
}

.close__btn .btn__line {
    position: relative;
}

.close__btn .btn__line:nth-child(1) {
  transform: rotate(45deg);
  top: 1px;
}

.close__btn .btn__line:nth-child(2) {
  transform: rotate(-45deg);
  top: -18px;
}

.mobile__filter {
  display: none;
}

@media(max-width: 980px) {
  .callback-wrap .callback:nth-child(1),
  .callback-wrap .callback:nth-child(2) {
    display: none;
  }

  .header .header__nav {
    display: none;
  }

  .header__nav .menu {
    flex-direction: column;
    padding-top: 2rem;
    text-align: center;
  }

  .header__wrap .logo-wrap {
    height: 38px;
  }

  .mobile__filter {
    display: block;
    text-align: right;
    margin-top: 1rem;
  }

  .icon-filter {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../image/icon-filter.png);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    margin-left: auto;
  }

  .form.filter {
    display: none;
    flex-wrap: wrap;
  }

  .form.filter.show {
    display: flex;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
    transition: all 0.8s;
  }

  .form.filter div {
    flex: 0 0 46%;
  }

  .country__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .country__item {
    max-width: 500px;
    width: 100%;
  }

  .cars__list {
    grid-template-columns: 1fr 1fr;
  }

  .form.filter div input[type=number] {
    width: 100%;
  }

  .form {
    padding: 1rem;
  }

  .btn {
    padding: 1rem;
    font-size: 1rem;
  }

  .news__list {
    grid-template-columns: 1fr 1fr;
  }

  .car__detail {
    flex-direction: column;
  }

  .car__gallery {
    flex: 0 0 100%;
    width: 100%;
  }

  .gallery__item {
    max-height: none;
  }

  .cars__item {
    padding: 1rem;
  }

  .footer__wrap {
    text-align: center;
    gap: 15px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__callback-wrap {
    flex-direction: column;
  }

  .burger-btn {
    display: flex;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
  }

  .services {
    grid-template-columns: 1fr;
  }

  .address {
    padding-top: 1rem;
  }

  .account__wrap {
    flex-direction: column;
  }

  .account__sidebar {
    display: flex;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;    /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .sidebar__item {
    flex: 0 0 50%;
    text-align: center;
    border-bottom: none;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }

  .calculate__wrap {
    flex-direction: column;
  }

  .table.account__items {
    border: 0;
  }

  .table.account__items thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table.account__items tbody {
    display: block;
    width: 100%;
  }

  .table.account__items tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  .table.account__items td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  .table.account__items td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 10px;
  }

  .table.account__items td:last-child {
    border-bottom: 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
  }
}

@media(min-width: 980px) {
  .form.filter {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas:
      "one one two two seven seven"
      "three four five six eight eight"
      "nine ten eleven twelve thirteen fourteen"
      "btn btn btn btn btn btn";
  }

  .form.filter div:nth-child(1) {
    grid-area: one;
  }

  .form.filter div:nth-child(2) {
    grid-area: two;
  }

  .form.filter div:nth-child(3) {
    grid-area: three;
  }

  .form.filter div:nth-child(4) {
    grid-area: four;
  }

  .form.filter div:nth-child(5) {
    grid-area: five;
  }

  .form.filter div:nth-child(6) {
    grid-area: six;
  }

  .form.filter div:nth-child(7) {
    grid-area: seven;
  }

  .form.filter div:nth-child(8) {
    grid-area: eight;
  }

  .form.filter div:nth-child(9) {
    grid-area: nine;
  }

  .form.filter div:nth-child(10) {
    grid-area: ten;
  }

  .form.filter div:nth-child(11) {
    grid-area: eleven;
  }

  .form.filter div:nth-child(12) {
    grid-area: twelve;
  }

  .form.filter div:nth-child(13) {
    grid-area: thirteen;
  }

  .form.filter div:nth-child(14) {
    grid-area: fourteen;
  }

  .form.filter div input[type=number] {
    max-width: 150px;
  }
}

@media(max-width: 687px) {
  .header__bottom .header__content {
    justify-content: center;
  }

  .banner__item {
    height: 68vh;
  }

  .form.filter div select {
    max-width: 118px;
  }

  .form.filter div input[type=number] {
    max-width: 118px;
  }

  .cars__list {
    grid-template-columns: 1fr;
  }

  .cars__item {
    text-align: center;
  }

  .cars__info {
    flex-direction: column;
  }

  .cars__btn {
    padding: 1rem;
  }

  .services__item {
    height: auto;
  }

  .services__img-wrap {
    display: none;
  }

  .services__content {
    flex: 0 0 100%;
  }

  .news__list {
    grid-template-columns: 1fr;
  }

  .gallery__item {
    height: 320px;
  }

  .sidebar__item {
    flex: 0 0 100%;
  }
}

.banner__list {
  overflow-y: none;
}

.banner__item:nth-child(1) {
  display: block;
}

.banner__item {
  display: none;
}