:root {
  --violet: #5810f2;
  --white: #fff;
  --black: #212529;
  --gray: #e9ecef;
  --blue: #3010f2;
  --font-family: "Panton", sans-serif;
}

@font-face {
  font-display: swap;
  font-family: 'Panton';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Panton/Panton-Regular.woff2') format('woff2'),
      url('../fonts/Panton/Panton-Regular.ttf') format('truetype'),
}

@font-face {
  font-display: swap;
  font-family: 'Panton';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Panton/Panton-SemiBold.woff2') format('woff2'),
      url('../fonts/Panton/Panton-SemiBold.ttf') format('truetype'),
}

@font-face {
  font-display: swap;
  font-family: 'Panton';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Panton/Panton-Bold.woff2') format('woff2'),
      url('../fonts/Panton/Panton-Bold.ttf') format('truetype'),
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,strong {
  font-weight: bolder;
}

small {
  font-size: 87%;
}

sub,sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button,input,optgroup,select,textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,input {
  overflow: visible;
}

button,select {
  text-transform: none;
}

[type="button"],[type="reset"],[type="submit"],button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

* {
  box-sizing: border-box;
}

details,main {
  display: block;
}

code,kbd,pre,samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

[hidden],template {
  display: none;
}

a,button {
  -webkit-tap-highlight-color: transparent;
}

.link,a {
  text-decoration: none;
  transition: .15s;
}

.link:hover,a:hover {
}

.link:active,a:active {
  color: #460dc2;
}

a:not([class]) {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
}

a:not([class]):hover {
}

a:not([class]):active {
  text-decoration-color: transparent;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  background: var(--white);
}

.h1,.h2,.h3,.h4,.h5,h1,h2,h3,h4,h5 {
  color: var(--black);
  font-family: var(--font-family);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
}

.h1,h1 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 32px;
}

.h2,h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 24px;
}

.h3,h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 16px;
}

.h4,h4 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.text,p {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  margin: 16px 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.wrapper {
  overflow: hidden;
}

.page-container {
  flex: 1 1 auto;
}

.btn {
  font-family: var(--font-family);
  color: var(--violet);
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
  line-height: unset;
  position: relative;
  text-decoration: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  min-height: 52px;
  transition: .2s;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--violet);
}

.btn--reset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  min-height: 1px;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn--accent {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.btn--accent:hover {
}

.btn--accent:active {
}

.btn--red {
  color: var(--white);
  background: #d0011a;
  border-color: #d0011a;
}

.btn--red:hover {
}

.btn--red:active {
}

.btn--light {
  color: var(--violet);
  background: var(--white);
  border-color: var(--white);
}

.btn--light:hover {
}

.btn--light:active {
  color: var(--violet);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .7);
}

.btn--cross:before {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.btn--cross:before {
  background-image: url('../img/icons/cross.svg');
}

.btns-spacer {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -12px;
}

.btns-spacer > * {
  margin-right: 12px;
  margin-bottom: 12px;
}

.input {
  margin-bottom: 12px;
  display: block;
  position: relative;
}

.input__cell {
  position: relative;
  font-family: var(--font-family);
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--black);
  border-radius: 8px;
  min-height: 52px;
  padding: 0 16px;
  width: 100%;
  outline: none;
  transition: .2s;
  resize: none;
}

.input__cell:focus::placeholder {
  color: transparent;
}

.input__cell::placeholder {
  color: rgb(33, 37, 41, .7);
}

select.input__cell {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  background-size: 24px;
  outline: none;
}

.input__checkbox {
  display: none;
}

.input__checkbox:checked + .input__checkbox-label:before {
  background-color: var(--violet);
  background-image: url('../img/icons/checkbox-active.svg');
}

.input__checkbox-label {
  position: relative;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  padding-left: 32px;
  cursor: pointer;
}

.input__checkbox-label a:not([class]) {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.input__checkbox-label a:not([class]):hover {
}

.input__checkbox-label a:not([class]):active {
  text-decoration-color: trasnparent;
}

.input__checkbox-label:before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
  border: 1px solid var(--violet);
  border-radius: 3px;
  position: absolute;
  top: -3px;
  left: 0;
  transition: .2s;
}

.form__group {
}

.form__group > * {
}

.form__group > *:last-child {
}

.form__error {
  color: #f11;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}

.form__send {
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
}

.form__agree {
  display: block;
  margin: 16px 0 0;
}

.form__row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.form__row > * {
  flex: 1 1 240px;
  margin: 0;
}

.iti {
  width: 100%;
}

.iti__selected-country-primary {
  padding: 0;
  display: flex;
  justify-content: center;
  min-width: 64px;
  max-width: 64px;
  transition: .2s;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}

.iti__selected-country .iti__flag {
  margin: 0;
}

.iti__country-container {
  padding: 0;
  border-right: 1px solid var(--nature-100);
}

.iti__arrow {
  border: none;
  width: 12px;
  height: 12px;
  min-width: 12px;
  margin-left: 4px;
  background: url('../img/icons/iti-chevron-down.svg') no-repeat center / contain;
  transition: .2s;
}

.iti__arrow--up {
  transform: rotate(180deg);
}

.iti.iti--inline-dropdown .iti__dropdown-content {
  border-radius: 8px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border: none;
  margin-top: 4px;
  overflow: hidden;
}

.iti__country {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  width: 100%;
  min-height: 40px;
  transition: .2s;
}

.iti__country-list .iti__flag {
  margin-right: 8px;
}

.iti__country-name {
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.iti__flag {
  height: 16px;
}

.iti__dial-code {
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-left: auto;
}

.iti__search-input {
  display: none;
}

.iti .input__cell {
  padding-left: 72px !important;
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.visibility-hidden {
  visibility: hidden;
}

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

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.img-cover--wrap {
  overflow: hidden;
  position: relative;
}

.hide-xl-down {
}

.hide-xl-only {
}

.hide-lg-down {
}

.hide-lg-up {
}

.hide-md-down {
}

.hide-md-up {
}

.hide-sm-down {
}

.hide-sm-only {
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  z-index: 9999;
  display: none;
  overflow: auto;
  padding: 16px;
  transition: opacity 0.3s ease-in-out;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: .5;
}

.modal__close:hover {
}

.modal__close:active {
  opacity: 1;
}

.modal__square {
  background: var(--white);
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-width: 742px;
  width: 100%;
  padding: 24px;
}

.modal__square--tiny {
  max-width: 460px;
}

.modal__square--tiny .modal__body {
  margin: 0;
}

.modal__title {
  color: var(--violet);
  text-transform: none;
  margin: 0 0 12px;
}

.modal__desc {
  color: var(--violet);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin: 0;
}

.modal__form {
  margin: 32px 0 0;
}

.modal__form .input__cell {
  background: var(--gray);
  border-color: var(--gray);
}

.modal__form .iti__arrow {
  background-image: url('../img/icons/iti-chevron-down-dark.svg');
}

.modal__body {
}

.modal__logo--wrap {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%);
}

.modal__status {
  text-align: center;
}

.modal__status-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin: 0 auto 32px;
}

.modal__status-title {
  margin: 0 0 24px;
}

.modal__status-desc {
  font-size: 16px;
}

.modal__status-btn {
  margin: 24px 0 0;
  width: 100%;
}

.slick-arrow {
  background: var(--violet);
  opacity: .77;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  min-width: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  z-index: 60;
}

.slick-arrow:before {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  width: 32px;
  height: 32px;
  transition: .2s;
  opacity: 1;
}

.slick-arrow:hover {
}

.slick-arrow:active {
  opacity: 1;
}

.slick-prev:before {
  background-image: url('../img/icons/chevron-left-light.svg');
}

.slick-next:before {
  background-image: url('../img/icons/chevron-right-light.svg');
}

.slick-dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.slick-dots li {
  margin: 0 8px 0 0;
  width: auto;
  height: auto;
}

.slick-dots li button {
  position: relative;
  width: 12px;
  height: 12px;
  min-width: 8px;
  background: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 50%;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  background: var(--violet);
}

.slick-dots li:last-child {
  margin: 0;
}

.section {
  position: relative;
  margin-top: 48px;
  margin-bottom: 48px;
}

.section:last-child {
  margin-bottom: 0;
}

.section:first-child {
  margin-top: 0;
}

.section--narrow {
  max-width: 1048px;
  margin-right: auto;
  margin-left: auto;
}

.section__head {
  margin-bottom: 24px;
}

.section__title {
  text-align: center;
  margin: 0;
}

.section__title span {
  color: var(--violet);
}

.section--border-warning {
  padding: 40px;
  border-radius: 8px;
}

.section--border-warning::before {
  content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	background-color: #fff;
	z-index: 1;
}

.section--border-warning:after {
  content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: repeating-linear-gradient(45deg, yellow 0, yellow 10px, #000 10px, #000 20px);
	z-index: -1;
}

.section--border-warning .section__head, 
.section--border-warning .calc{
  position: relative;
  z-index: 2;
}

.rating {
  display: flex;
  align-items: center;
}

.rating__caption {
  margin-right: 4px;
  margin-bottom: 0;
}

.rating__img {
  min-width: 92px;
  max-width: 92px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  padding: 20px 0;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  cursor: pointer;
  transition: .2s;
  display: block;
  min-width: 184px;
  max-width: 184px;
}

.header__logo:hover {
}

.header__logo:active {
  opacity: .7;
}

.header__panel {
  display: flex;
  align-items: center;
}

.header__panel > * {
}

.header__panel > *:first-child {
  margin: 0;
}

.commun__item {
  display: flex;
}

.commun__item.-phone- .commun__item-link {
}

.commun__item-link {
  display: inline-flex;
  color: var(--violet);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

.commun__item-link:hover {
}

.commun__item-link:active {
  transform: scale(1.06);
}

.banner__col {
  background: var(--violet);
  border-radius: 20px;
  padding: 20px;
}

.banner__info {
  position: relative;
  z-index: 1;
}

.banner__img--wrap {
  margin: 0 0 16px;
}

.banner__title {
  color: var(--white);
  font-weight: 600;
  margin: 0 0 20px;
}

.banner__desc {
  color: var(--white);
  font-style: italic;
}

.banner__form {
  margin: 8px 0 0;
  align-items: flex-start;
}

.banner__form .form__error {
  color: #fff;
}

.banner__form .input {
  margin: 0 0 8px;
  width: 100%;
}

.banner__form .input__cell {
  color: var(--white);
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.banner__form .input__cell::placeholder {
  color: var(--white);
}

.banner__form .input__cell:focus::placeholder {
  color: transparent;
}

.banner__form .form__send {
  width: 100%;
}

.banner__anchor {
  font-weight: 700;
  
}

.benefits__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -4px;
  margin-left: -4px;
  margin-bottom: -8px;
}

.benefits__card {
  width: 50%;
  padding: 0 4px;
  margin-bottom: 8px;
}

.benefits__card-body {
  position: relative;
  border: 1px solid var(--violet);
  padding: 28px 12px;
  border-radius: 4px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.benefits__card-icon--wrap {
  min-width: 48px;
  max-width: 48px;
  margin: 0 auto 12px;
}

.benefits__card-logo--wrap {
  margin: 0 32px 0 0;
}

.benefits__card-rating {
  margin-bottom: 4px;
}

.benefits__card-title {
  margin-bottom: 8px;
}

.benefits__card-desc {
  margin: 0;
  font-size: 12px;
}

.benefits__card--rating {
}

.benefits__card--rating .benefits__card-body {
  padding: 0;
  justify-content: flex-start;
}

.benefits__card--rating .benefits__card-desc {
}

.calc {

}

.calc__form .iti__arrow {
  background-image: url('../img/icons/iti-chevron-down-dark.svg');
}

.cars__slider {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.cars__slider .slick-list {
  padding: 0 20px;
}

.cars__slider .slick-track {
  display: flex;
}

.cars__card {
  min-width: 280px;
  max-width: 280px;
  height: auto;
  padding: 0 4px;
}

.cars__card-body {
  position: relative;
  height: 100%;
  background: var(--gray);
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.cars__card-img {
  position: absolute;
  top: 0;
  left: 0;
}

.cars__card-img--wrap {
  position: relative;
  padding-top: 66.5%;
  overflow: hidden;
}

.cars__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
}

.cars__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.cars__card-btn {
  width: 100%;
  min-height: 42px;
  margin: 12px 0 0;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery__slider {
  margin-right: -20px;
  margin-left: -20px;
}

.gallery__slider .slick-list {
  padding: 0 20px;
}

.gallery__slider .slick-prev {
  left: 36px;
}

.gallery__slider .slick-next {
  right: 36px;
}

.gallery__card {
  width: calc(100vw - 80px);
  padding: 0 4px;
}

.gallery__card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery__card-img--wrap {
  position: relative;
  padding-top: 67%;
  overflow: hidden;
  border-radius: 8px;
}

.faq__item {
  background: var(--gray);
  border-radius: 8px;
  margin: 0 0 8px;
  padding: 20px;
}

.faq__item:last-child {
  margin: 0;
}

.faq__btn {
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: normal;
  text-align: left;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}

.faq__btn::after {
  content: '';
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 32px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  background-image: url('../img/icons/cross.svg');
  transform: rotate(45deg);
  transition: .2s;
  margin-left: 16px;
}

.faq__btn[aria-expanded="true"]:after {
  transform: rotate(0);
}

.faq__btn[aria-expanded="true"] ~ .faq__content {
  margin-top: 12px;
}

.faq__btn:hover {
}

.faq__btn:active {
  color: var(--violet);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: .2s ease;
}

.faq__content > *:last-child {
  margin-bottom: 0;
}

.faq__content > *:first-child {
  margin-top: 0;
}

.feedback {
  position: relative;
  color: #fff;
  background: var(--black);
  border-radius: 8px;
  padding: 20px 20px 32px;
  min-height: 510px;
}

.feedback__info {
  width: 100%;
}

.feedback__title {
  color: var(--white);
  text-align: center;
  margin: 0 0 24px;
}

.feedback__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.feedback__list-item {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
}

.feedback__list-item:last-child {
  margin: 0;
}

.feedback__list-img {
  min-width: 34px;
  max-width: 34px;
  margin-right: 12px;
}

.feedback__caption {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 16px;
}

.feedback__form {
  margin-top: 40px;
}

.feedback__form .input__cell {
  color: var(--white);
  background: rgba(255, 255, 255, 0.3);
  border: none;
}

.feedback__form .input__cell::placeholder {
  color: var(--white);
}

.feedback__form .input__cell:focus::placeholder {
  color: transparent;
}

.feedback__form .form__agree a:not([class]) {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.feedback__form .form__agree a:not([class]):hover {
}

.feedback__form .form__agree a:not([class]):active {
  text-decoration-color: transparent;
}

.feedback__img--wrap {
  margin: 0 0 16px;
}

.footer {
  margin-top: 80px;
}

.footer__logo {
  min-width: 276px;
  max-width: 276px;
  margin: 0 0 20px;
}

.footer__copy {
  max-width: 620px;
}

.footer__copy p {
  color: rgba(33, 37, 41, 0.5);
  margin: 0;
}

.footer__copy p a {
  color: rgba(33, 37, 41, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__copy p a:hover {
  color: var(--violet);
  text-decoration-color: transparent;
}
.commun__item-link2 {
    display: inline-flex;
    color: var(--violet);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}
@media (min-width: 576px) {
  .hide-sm-only {
    display: none;
  }

  .modal__status-desc {
    font-size: 18px;
  }

  .slick-dots {
    margin-top: 36px;
  }

  .slick-dots li {
    margin: 0 12px 0 0;
  }

  .rating__img {
    min-width: 130px;
    max-width: 130px;
  }

  .header__panel > * {
    margin-left: 24px;
  }

  .benefits__row {
    margin-right: -8px;
    margin-left: -8px;
    margin-bottom: -16px;
  }

  .benefits__card {
    padding: 0 8px;
    margin-bottom: 16px;
  }

  .benefits__card-logo--wrap {
    margin: 0 auto 20px;
  }

  .benefits__card-rating {
    margin-bottom: 16px;
  }

  .benefits__card--rating .benefits__card-body {
    padding: 24px 20px;
  }

  .cars__card {
    min-width: 420px;
    max-width: 420px;
    padding: 0 8px;
  }

  .cars__card-title {
    font-size: 22px;
  }

  .gallery__card {
    padding: 0 8px;
  }

  .faq__item {
    padding: 20px 24px;
  }

  .feedback {
    padding: 60px;
  }

  .feedback__list-item {
    font-size: 20px;
  }

  .feedback__list-img {
    min-width: 40px;
    max-width: 40px;
    margin-right: 24px;
  }

  .feedback__form {
    margin-top: 64px;
  }

  .footer {
    padding: 24px 0;
    background: #f8f9fa;
  }
}

@media (min-width: 768px) {
  .h1,h1 {
    font-size: 40px;
  }

  .h2,h2 {
    font-size: 44px;
  }

  .h3,h3 {
    font-size: 24px;
  }

  .container {
    padding: 0 32px;
  }

  .form__group {
    display: flex;
    align-items: flex-start;
  }

  .form__group > * {
    width: 100%;
    margin: 0 12px 0 0;
  }

  .form__group > *:last-child {
    margin: 0;
  }

  .hide-md-up {
    display: none;
  }

  .modal {
    padding: 32px;
  }

  .modal__close {
    top: 20px;
    right: 20px;
  }

  .modal__square {
    padding: 48px 90px;
  }

  .modal__square--tiny {
    padding: 48px;
  }

  .modal__form {
    margin: 42px 0 0;
  }

  .modal__body {
    max-width: 360px;
    margin-left: auto;
  }

  .section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .section__head {
    margin-bottom: 60px;
  }

  .rating__caption {
    margin-right: 12px;
  }

  .header__logo {
    min-width: 243px;
    max-width: 243px;
  }

  .header__panel > * {
    margin-left: 40px;
  }

  .banner__col {
    padding: 60px 60px 72px;
  }

  .banner__img--wrap {
    margin: 0 0 24px;
  }

  .banner__title {
    margin: 0 0 36px;
  }

  .banner__form {
    display: flex;
  }

  .banner__form .input {
    margin: 0 16px 0 0;
  }

  .benefits__card {
    width: 33.3%;
  }

  .benefits__card-icon--wrap {
    min-width: 60px;
    max-width: 60px;
    margin: 0 auto 20px;
  }

  .benefits__card-title {
    margin-bottom: 28px;
  }

  .benefits__card-desc {
    font-size: 16px;
  }

  .cars__slider {
    margin-right: -32px;
    margin-left: -32px;
  }

  .cars__slider .slick-list {
    padding: 0 32px;
  }

  .gallery__slider {
    margin-right: -32px;
    margin-left: -32px;
  }

  .gallery__slider .slick-list {
    padding: 0 32px;
  }

  .faq__btn {
    font-size: 24px;
  }

  .feedback__img--wrap {
    margin: 0 0 -12px;
  }
}

@media (min-width: 992px) {
  .link:hover,a:hover {
    color: #460dc2;
  }

  a:not([class]):hover {
    text-decoration-color: transparent;
  }

  .btn--accent:hover {
    color: var(--white);
    background: #460dc2;
    border-color: #460dc2;
  }

  .btn--accent:active {
    color: var(--white);
    background: #460dc2;
    border-color: #460dc2;
  }

  .btn--red:hover {
    color: var(--white);
    background: #db172e;
    border-color: #db172e;
  }

  .btn--red:active {
    color: var(--white);
    background: #db172e;
    border-color: #db172e;
  }

  .btn--light:hover {
    color: var(--violet);
    background: rgba(255, 255, 255, .7);
    border-color: rgba(255, 255, 255, .7);
  }

  .input__checkbox-label a:not([class]):hover {
    text-decoration-color: trasnparent;
  }

  .hide-lg-up {
    display: none;
  }

  .modal__close:hover {
    opacity: .7;
  }

  .modal__close:active {
    opacity: 1;
  }

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

  .header__logo:hover {
    opacity: .7;
  }

  .commun__item-link:hover {
    transform: scale(1.06);
  }

  .banner__info {
    width: 55%;
  }

  .banner__img--wrap {
    position: absolute;
    top: 57%;
    right: -45px;
    width: 63%;
    transform: translateY(-50%);
    margin: 32px 0 0;
  }

  .banner__title {
    margin: 0 0 16px;
  }

  .banner__form {
    max-width: 340px;
    display: block;
  }

  .banner__form .input {
    margin: 0 0 8px;
  }

  .benefits__row {
    margin-right: -30px;
    margin-left: -30px;
    margin-bottom: -60px;
  }

  .benefits__card {
    padding: 0 30px;
    margin-bottom: 60px;
  }

  .benefits__card-body {
    padding: 32px 24px;
  }

  .benefits__card--rating .benefits__card-body {
    padding: 24px 36px;
  }

  .cars__slider {
    margin-right: -16px;
    margin-left: -16px;
    margin-bottom: -32px;
  }

  .cars__slider .slick-list {
    padding: 0;
  }

  .cars__card {
    min-width: 1px;
    max-width: 100%;
    width: 33.3%;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .gallery__slider {
    margin: 0;
  }

  .gallery__slider .slick-list {
    padding: 0;
    border-radius: 8px;
  }

  .gallery__card {
    width: auto;
    padding: 0;
  }

  .gallery__card-img--wrap {
    padding-top: 44%;
    min-height: 480px;
    border-radius: 0;
  }

  .faq__btn:hover {
    color: var(--violet);
  }

  .feedback {
    padding: 60px 90px;
  }

  .feedback__info {
    width: 60%;
  }

  .feedback__title {
    font-size: 40px;
  }

  .feedback__form .form__agree a:not([class]):hover {
    text-decoration-color: transparent;
  }

  .feedback__img--wrap {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 44%;
    transform: translateY(-50%);
    margin: 32px 0 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1384px;
  }

  .hide-xl-only {
    display: none;
  }
}

@media (max-width: 1199px) {
  .hide-xl-down {
    display: none;
  }
}

@media (max-width: 991px) {
  .hide-lg-down {
    display: none;
  }

  .banner__anchor {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hide-md-down {
    display: none;
  }

  .modal__logo--wrap {
    display: none;
  }
}

@media (max-width: 577px) {
  .hide-sm-down {
    display: none;
  }

  .commun__item.-phone- .commun__item-link {
    color: transparent;
    font-size: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--violet) url('../img/icons/phone.svg') no-repeat center/20px;
  }

  .benefits__card-logo--wrap {
    min-width: 140px;
    max-width: 140px;
  }

  .benefits__card--rating {
    width: 100%;
    margin-top: 32px;
  }

  .benefits__card--rating .benefits__card-body {
    border: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
  }

  .benefits__card--rating .benefits__card-desc {
    padding-left: 172px;
  }
}
