@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

button {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

table a {
    color: #419ef4;
}

.container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #454545;
    overflow-x: hidden;
    background-color: #F1F2F4;
    min-width: 320px;
}

h2 {
    margin-bottom: 25px;
}

.title {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    color: #363030;
    max-width: 530px;
}

.ordered-list {
    margin: 10px 0;
    padding: 0;
    counter-reset: list-counter;
}

.ordered-list__item {
    display: flex;
}

.ordered-list__item::before {
    counter-increment: list-counter;
    content: counter(list-counter)'.';
    display: inline-flex;
    font-weight: 700;
    margin-right: 10px;
}

.img-shadow {
    padding: 0 20px 20px 0;
    position: relative;
    height: 100%;
}

.img-shadow::after {
    content: '';
    position: absolute;
    background-color: #419EF4;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    bottom: 0;
    right: 0;
}

.img-shadow img {
    position: inherit;
    z-index: 1;
    width: 100%;
    border-radius: 6px;
}

.block-shadow {
    position: relative;
    padding: 0 10px 10px 0;
}

.block-shadow::after {
    content: '';
    position: absolute;
    background-color: #419EF4;
    border: 1px solid #419EF4;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    transition: bottom .3s, right .3s, box-shadow .3s;
}

a.block-shadow:hover::after, .trims__item.block-shadow:hover::after, .block-shadow.block-shadow--active::after {
    bottom: 10px;
    right: 10px;
    box-shadow: none;
}

.block-shadow:hover .trims__item-top::after {
    box-shadow: inset 0 2px 0 0 #fff, inset 2px 0 0 0 #fff;
}

/* =============== tooltip =============== */
.tooltip {
	display: inline-flex;
    margin: 0 5px;
}

.tooltip-btn {
	cursor: pointer;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background-color: #419ef4;
}

.tooltip-content {
	display: none;
	position: absolute;
 	font-weight: 400;
	font-size: 14px;
	min-width: 150px;
	max-width: 350px;
/* 	width: max-content; */
    margin: 0 10px;
	padding: 15px;
	background: #419ef4;
	transition: visibility 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
	color: #fff;
	border-radius: 6px;
	-webkit-filter: drop-shadow(1px 2px 1px #bcbcbc);
	filter: drop-shadow(1px -1px 1px #bcbcbc);
}
.tooltip-content[data-popper-reference-hidden] {
	visibility: hidden;
    pointer-events: none;
}
.tooltip-content[show-popper] {
	display: block;
	z-index: 9999;
}
.tooltip-arrow, .tooltip-arrow::before {
	position: absolute;
    width: 12px;
    height: 12px;
    background: inherit;
}
.tooltip-arrow {
	visibility: hidden;
}
.tooltip-arrow::before {
  visibility: visible;
  content: "";
  transform: rotate(45deg);
}
.tooltip-content[data-popper-placement^="top"] .tooltip-arrow {
  bottom: -4px;
}
.tooltip-content[data-popper-placement^="bottom"] .tooltip-arrow {
  top: -4px;
}
.tooltip-content[data-popper-placement^="left"] .tooltip-arrow {
  right: -4px;
}
.tooltip-content[data-popper-placement^="right"] .tooltip-arrow {
  left: -4px;
}
.tooltip-content[data-popper-reference-hidden] .tooltip-arrow::before {
  visibility: hidden;
}

/* ========== Hover Effect ========== */
.hover-effect {
    position: relative;
}

.hover-effect::before, .hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}

.hover-effect::before {
    right: 0;
    opacity: 0.7;
    top: 0;
}

.hover-effect::after {
    bottom: 0;
    opacity: 0.7;
    left: 0;
}

.hover-effect:hover::after, .hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}

.social__list-item {
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.social__list-item + .social__list-item {
    margin-left: 30px;
}

.social__list-link {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: block;
    height: 100%;
}

.social__list-link:hover {
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.gradient-blue {
    background: -o-linear-gradient(267.6deg, #2D9AFF -1.3%, #91CAFF 123.67%);
    background: linear-gradient(182.4deg, #2D9AFF -1.3%, #91CAFF 123.67%);
}

.header {
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 100px;
    background-position: right top;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.header__top {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 28px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

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

.header__logo span {
    margin: 0 5px;
}

.header__menu-btn {
    height: 31px;
    width: 45px;
    cursor: pointer;
    z-index: 15;
    position: relative;
}

.header__menu-btn span {
    display: block;
    height: 3px;
    width: 45px;
    position: absolute;
    z-index: 15;
    -webkit-transition: all 0.2s cubic-bezier(0, 1.15, 1, 0.53);
    -o-transition: all 0.2s cubic-bezier(0, 1.15, 1, 0.53);
    transition: all 0.2s cubic-bezier(0, 1.15, 1, 0.53);
    background-color: #000;
}

.header__menu-btn span:first-child {
    top: 0;
}

.header__menu-btn span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header__menu-btn span:last-child {
    bottom: 0;
}

.header__menu-btn--active span {
    -webkit-transition: all 0.2s cubic-bezier(0.33, -0.11, 0.83, 1.85);
    -o-transition: all 0.2s cubic-bezier(0.33, -0.11, 0.83, 1.85);
    transition: all 0.2s cubic-bezier(0.33, -0.11, 0.83, 1.85);
}

.header__menu-btn--active span:first-child {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.header__menu-btn--active span:nth-child(2) {
    opacity: 0;
    height: 0;
}

.header__menu-btn--active span:last-child {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.header-form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 105px;
}

.header-item__btn {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.07em;
    color: #FFFFFF;
    padding: 12px 80px 10px 80px;
    background-color: #419EF4;
    border-radius: 6px;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.header-item__btn:hover {
    -webkit-box-shadow: 3px 3px 15px rgba(26, 14, 62, 0.5);
    box-shadow: 3px 3px 15px rgba(26, 14, 62, 0.5);
}

.header-item {
    max-width: 25%;
    width: 100%;
}

.header-item + .header-item {
    margin-left: 20px;
}

.header-item__title {
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.07em;
}

.header-item__input-btn {
    display: none;
}

.header-item__select {
    font-size: 18px;
    line-height: 22px;
    color: #1D1D1D;
    max-height: 45px;
}

.header .selectize-input {
    padding: 14px 8px;
    height: 45px;
}

.header .selectize-control.single .selectize-input, .header .selectize-dropdown.single {
    background-color: #F1F2F4;
    border-radius: 6px;
    border: none;
}

.header .selectize-control.single .selectize-input.dropdown-active {
    border-radius: 6px 6px 0 0;
}

.header .header .selectize-control.single .selectize-input, .header .header .selectize-dropdown.single {
    border-radius: none;
}

.header .selectize-dropdown-content {
    font-size: 12px;
}

.header .selectize-control.single .selectize-input:after {
    border: none;
    width: 11px;
    height: 11px;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background-size: contain;
}

.header .selectize-control.single .selectize-input.dropdown-active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header__main-title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
    max-width: 500px;
    text-shadow: 9px 9px 15px rgba(0, 0, 0, 0.25);
}

.header .catalog-header__title {
    max-width: 575px;
}

.header .blog-header__title {
    max-width: 100%;
}

.header__main-description {
    text-shadow: 9px 9px 15px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    max-width: 500px;
}

.header__menu {
    position: absolute;
    height: 100%;
    max-width: 580px;
    width: 100%;
    background-color: #419EF4;
    padding: 65px 75px;
    top: 0;
    right: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    opacity: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.33, -0.11, 0.83, 1.85);
    -o-transition: all 0.25s cubic-bezier(0.33, -0.11, 0.83, 1.85);
    transition: all 0.25s cubic-bezier(0.33, -0.11, 0.83, 1.85);
}

.header__menu--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header__menu-title {
    color: #fff;
    overflow-x: hidden;
}

.header__menu-link {
    color: #fff;
    display: block;
}

.header-social {
    position: absolute;
    bottom: 65px;
    left: 75px;
}

.header-social__item {
    display: inline-block;
}

.header-social__item + .header-social__item {
    margin-left: 28px;
}

.info {
    padding: 115px 0;
}

.info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.info__item-main {
    max-width: 515px;
    margin-right: 55px;
}

.info__item-title {
    margin-bottom: 25px;
    max-width: 380px;
}

.info__item-text p + p {
    margin-top: 30px;
}

.info__item-img {
    margin-right: -100px;
}

.select {
    padding-bottom: 115px;
}

.select__title {
    margin-bottom: 15px;
}

.select__description {
    margin-bottom: 25px;
}

.select__table-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 80px 40px 70px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    background-color: #F1F2F4;
    border: 1px solid #419EF4;
    border-radius: 6px;
    z-index: 4;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.04em;
}

.select__table {
    position: relative;
    z-index: 4;
    max-width: 100%;
    width: 100%;
    padding: 0 12px 12px 0;
}

.select__table::after {
    content: '';
    position: absolute;
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    background-color: #419EF4;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.select__table-item {
    max-width: 25%;
}

.vehicles {
    padding: 60px 0 85px;
    background-color: #f5f7fa;
}

.vehicles__title {
    margin-bottom: 15px;
}

.vehicles__description {
    margin-bottom: 30px;
    max-width: 360px;
    display: inline-block;
}

.vehicles__main {
    max-width: 825px;
}

.vehicles__main-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.vehicles__main-name {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #828282;
}

.vehicles-table {
    padding-right: 30px;
}

.vehicles-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.vehicles-table__line {
    background-color: #419EF4;
    position: absolute;
    height: 1px;
    width: 100%;
    top: calc(50% - .5px);
}

.vehicles-table__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 170%;
    color: #454545;
    max-width: 50%;
    padding-right: 25px;
}

.vehicles-table__capacity {
    padding-left: 25px;
    width: 120px;
    display: inline-block;
}

.vehicles-table__name, .vehicles-table__capacity {
    position: relative;
    z-index: 10;
    background-color: #f5f7fa;
}

.terminology {
    padding: 75px 0 45px;
    color: #fff;
}

.terminology__inner {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 100px bottom;
}

.terminology__title {
    color: #fff;
    margin-bottom: 55px;
}

.terminology__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.terminology__item {
    margin-top: 60px;
    margin-right: 45px;
    max-width: calc(100% / 3 - 45px);
    width: 100%;
}

.terminology__item:nth-child(3n) {
    margin-right: 0;
}

.terminology__item:nth-child(-n + 3) {
    margin-top: 0;
}

.terminology__item-title {
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 20px;
    padding-right: 15px;
    max-width: 250px;
    position: relative;
}

.terminology__item-title::before {
    content: '';
    position: absolute;
    width: 155px;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #fff;
}

.trailers {
    padding: 75px 0 100px;
}

.trailers__title {
    margin-bottom: 20px;
}

.trailers__description {
    margin-bottom: 40px;
    max-width: 690px;
}

.trailers__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.trailers__item {
    padding: 0 10px 10px 0;
    max-width: calc(100% / 3 - 10px);
    width: 100%;
    margin-top: 20px;
}

.trailers__item:nth-child(-n + 3) {
    margin-top: 0;
}

.trailers__item-inner {
    padding: 10px 30px 10px 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    min-height: 430px;
    height: 100%;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #419EF4;
    border-radius: 6px;
}

.trailers__item-img {
    margin-bottom: 40px;
    display: inline-block;
}

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

.trailers__item-settings {
    text-align: left;
}

.trailers__item-option {
    position: relative;
    padding-left: 10px;
}

.trailers__item-option::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #419EF4;
    position: absolute;
    left: -2px;
    top: 8px;
}

.trailers__item-option + .trailers__item-option {
    margin-top: 8px;
}

.note {
    padding-bottom: 60px;
}

.note__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-size: auto;
    background-position: right top;
    margin-right: -35px;
    background-repeat: no-repeat;
}

.note__info {
    padding: 25px 0;
}

.note__info-title {
    margin-bottom: 25px;
}

.note__info-text {
    background-color: #fff;
    -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    max-width: 570px;
    padding: 35px 20px 30px 30px;
}

.note__info-text p + p {
    margin-top: 25px;
}

.note__img {
    display: none;
    width: 100%;
}

.usefulness {
    background-color: #f5f7fa;
    padding: 60px 0 70px;
}

.usefulness__item-info-title {
    margin-bottom: 25px;
}

.usefulness__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.usefulness__item:nth-child(even) .usefulness__item-img {
    margin-right: -80px;
}

.usefulness__item:nth-child(even) .usefulness__item-info {
    margin-right: 45px;
}

.usefulness__item:nth-child(odd) .usefulness__item-img {
    margin-left: -80px;
}

.usefulness__item:nth-child(odd) .usefulness__item-info {
    margin-left: 45px;
}

.usefulness__item:nth-child(odd) .usefulness__item-info p:last-child {
    max-width: 485px;
}

.usefulness__item + .usefulness__item {
    margin-top: 105px;
}

.usefulness__item-info {
    max-width: 510px;
}

.usefulness__item-info-text p + p {
    margin-top: 25px;
}

.usefulness__item-info-text a {
    color: #419EF4;
    border-bottom: 1px solid #419EF4;
}

.footer {
    padding: 10px 0;
    background-color: #1A1535;
    color: #fff;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__company-logo {
    display: block;
    margin-bottom: 5px;
}

.footer__company-copywrite {
    font-size: 12px;
    line-height: 15px;
    max-width: 250px;
}

.footer__social-item .footer__social-link:hover {
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.catalog {
    padding: 65px 0 50px;
}

.catalog__title {
    margin-bottom: 25px;
}

.catalog__description {
    margin-bottom: 30px;
    max-width: 650px;
}

.catalog__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.catalog__item {
    max-width: calc(100% / 3 - 10px);
    margin-top: 20px;
    display: block;
    width: 100%;
}

.catalog__item:nth-child(-n + 3) {
    margin-top: 0;
}

.catalog__item-info {
    padding: 0 20px;
}

.catalog__item-inner {
    background: #fff;
    position: relative;
    z-index: 10;
    border: 1px solid #419EF4;
    border-radius: 6px;
    text-align: center;
    height: 100%;
    padding: 20px 15px 30px 15px;
}

.catalog__item-img {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.catalog__item-title {
    margin-bottom: 10px;
}

.catalog__item-capacity, .catalog__item-title {
    text-align: left;
}

.header-catalog__top {
    margin-bottom: 105px;
}

.header-black {
    color: #454545;
    padding-bottom: 75px;
    background-color: #fff;
}

.header-black .header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-black .header__main-title {
    max-width: 450px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    color: #363030;
    text-shadow: none;
}

.header-black .header__main-info {
    padding-top: 80px;
}

.header-black .header__main-description {
    color: rgba(69, 69, 69, 0.3);
    text-shadow: none;
}

.header-black .header__top {
    margin-bottom: 35px;
}

.header-black .header__menu-btn span {
    background-color: #000;
}

.header-black .header__menu-title {
    color: #363030;
}

.header-black .header-social__link:hover {
    -webkit-filter: drop-shadow(0 0 5px rgba(54, 48, 48, 0.7));
    filter: drop-shadow(0 0 5px rgba(54, 48, 48, 0.7));
}

.header__main-img {
    margin-right: -55px;
}

.trims {
    padding: 70px 0 40px;
}

.trims__title {
    margin-bottom: 30px;
}

.trims__items + .trims__items, .trim__item + .trim__items, .trims__item + .trims__item {
    margin-top: 10px;
}

.trims__item-name {
    line-height: 170%;
    font-weight: 700;
    padding-right: 40px;
    transition: color .3s;
}

.trims__item-wrap {
    position: relative;
    border-radius: 6px;
    border: 0.5px solid #419EF4;
    z-index: 10;
    background-color: #fff;
}

.trims__item-top {
    cursor: pointer;
    padding: 12px 0 12px 30px;
    position: relative;
    transition: background-color .3s;
}

.trims__item-top:hover, .trims__item-top.trims__item-top--active {
    background-color: #419ef4;
}

.trims__item-top:hover .trims__item-name, .trims__item-top.trims__item-top--active .trims__item-name {
    color: #ffffff;
}

/*.trims__item-top::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: calc(50% - 6px);*/
/*    right: 17px;*/
/*    z-index: 20;*/
/*    width: 20px;*/
/*    height: 12px;*/
/*    background-image: url(../images/dropdown-arrow.svg);*/
/*    background-repeat: no-repeat;*/
/*    -webkit-transform: rotate(0);*/
/*    -ms-transform: rotate(0);*/
/*    transform: rotate(0);*/
/*    background-size: contain;*/
/*    -webkit-transition: all .3s;*/
/*    -o-transition: all .3s;*/
/*    transition: all .3s;*/
/*}*/

.trims__item-top::after {
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    right: 17px;
    z-index: 20;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 2px 0 0 #000, inset 2px 0 0 0 #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center;
    -webkit-transition: transform .3s, box-shadow .3s, top .3s;
    -o-transition: transform .3s, box-shadow .3s, top .3s;
    transition: transform .3s, box-shadow .3s, top .3s;
}

.trims__item-top--active::after {
    box-shadow: inset 0 2px 0 0 #fff, inset 2px 0 0 0 #fff;
    top: calc(50% - 14px);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.trims__item-dropdown {
    padding: 15px 30px;
    font-size: 16px;
    line-height: 24px;
    display: none;
}

.trims-dropdown__block + .trims-dropdown__block {
    margin-top: 15px;
}

.trims-dropdown__block p + p {
    margin-top: 15px;
}

.trims-dropdown__block-grey {
    margin: 15px 0;
    padding: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-color: #f5f5f5;
}

.trims-dropdown__block-grey + .trims-dropdown__block-grey {
    margin-top: 30px;
}

.trims-dropdown__row {
    display: flex;
    flex-wrap: wrap;
}

.trims-dropdown__col:not(:last-child) {
    margin-right: 3%;
}

.trims-dropdown__col {
    margin-bottom: 20px;
    width: 31%;
    flex: none;
}

.trims-dropdown__img {
    margin-bottom: 15px;
    display: block;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.trims-dropdown__img img {
    width: 100%;
    vertical-align: middle;
}

.trims-dropdown__heading {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

a.trims-dropdown__heading {
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -ms-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
a.trims-dropdown__heading:hover {
    color: #419ef4;
}

.trims-dropdown__heading + .trims-dropdown__img {
    margin-top: 10px;
}

.trims-dropdown__title {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.trims-dropdown__title .specs-icon {
    margin-right: 10px;
}

.trims-dropdown__title .tooltip-up {
    margin: 0 5px;
}

.trims-dropdown__text + .trims-dropdown__text {
    margin-top: 45px;
}

.note-black {
    background-position: right 220px top 20px;
    padding-bottom: 95px;
}

.note-black .note__info {
    padding: 0 0 20px;
}

.note-black__title {
    max-width: 700px;
    color: rgba(69, 69, 69, 0.3);
    margin-bottom: 20px;
    text-shadow: 0px 4px 15px #F6F7FA;
}

.note-black__text {
    max-width: 670px;
}

.warning {
    padding: 70px 0;
}

.warning__description {
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 170%;
    color: #fff;
    margin-bottom: 20px;
}

.warning__title {
    color: #fff;
    max-width: 100%;
}

.slider {
    padding: 75px 0 55px;
}

.slider__title {
    margin-bottom: 25px;
}

.slider__description {
    margin-bottom: 25px;
}

.swiper-container {
    margin-bottom: 80px;
}

.swiper-container .catalog__item {
    max-width: 320px;
}

.swiper-wrapper {
    margin-bottom: 50px;
}

.swiper-slide {
    width: 100%;
    max-width: 320px;
}

.swiper-slide:empty {
    min-height: 50px;
    max-width: calc(((100vw - 1000px) / 2) - 20px);
    width: 100%;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    top: unset;
    left: calc(((100vw - 1000px) / 2));
    bottom: 0;
    max-width: calc((100vw - 1000px) / 2 + 900px);
}

.slider__text {
    max-width: 1100px;
    margin-left: calc((100vw - 1000px) / 2);
}

.slider__text a {
    color: #419EF4;
    font-weight: 700;
}

/* =============== section blog =============== */

.blog-header__main-description {
    max-width: 100%;
}

/* =============== section blogpost =============== */
.blogpost {
    padding-top: 65px;
}

.blogpost h2 {
    margin-top: 30px;
}

.blogpost a {
    color: #419EF4;
}

.blogpost p + p {
    margin-top: 30px;
}

.blogpost ul {
    margin: 30px 0;
}

.blogpost ul li {
    padding-left: 12px;
    margin-bottom: 5px;
    position: relative;
}

.blogpost ul li:last-child {
    margin-bottom: 0
}

.blogpost ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #442
}

.blogpost table {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0
}

.blogpost table td, table th {
    padding: 10px;
    border: 1px solid #442;
}

.blogpost table caption {
    margin-bottom: 10px;
}

.interesting-articles {
    padding-bottom: 35px;
}

/* =============== section common styles =============== */
.section {
    padding: 65px 0 50px;
}

.section__heading {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 30px;
}

.section__row, .section__block {
    margin-bottom: 20px;
}

.section__row {
    display: flex;
}

.section__row > * {
    width: 50%;
}

.section__col:first-child {
    margin-right: 55px;
}

.section__img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* =============== cards common styles =============== */

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

.cards__item {
    max-width: calc(100% / 3 - 10px);
    margin-top: 20px;
    display: block;
    width: 100%;
}

.cards__item:nth-child(-n + 3) {
    margin-top: 0;
}

.cards__item-inner {
    background: #fff;
    position: relative;
    z-index: 10;
    border: 1px solid #419EF4;
    border-radius: 6px;
    height: 100%;
    padding: 20px 15px 30px 15px;
}

.cards__item-img {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.cards__item-info {
    padding: 0 20px;
}

.cards__item-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
}

.cards__item-text {
    font-size: 14px;
    line-height: 18px;
}

.cards__item-date {
    margin-top: 20px;
}

/* =============== pagination =============== */

.pagination {
    padding: 28px 15px;
    margin-top: 60px;
    background-color: #DCDCDC;
}

.pagination__inner {
    margin: 0 auto;
    max-width: 418px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination__btn {
    cursor: pointer;
    padding: 0;
    border: none;
}

.pagination__btn.disabled {
    pointer-events: none;
}

.pagination__btn-prev {
    margin-left: 10px;
}

.pagination__btn-next {
    margin-right: 10px;
}

.pagination__btn-icon {
    transition: transform .3s;
}

.pagination__btn:hover .pagination__btn-icon,
.pagination__btn:focus .pagination__btn-icon {
    transform: scale(1.3);
}

.pagination__links {
    margin: 0 10px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.pagination__link {
    transition: color .3s;
}

.pagination__link:hover, .pagination__link.active {
    color: #419ef4;
}

.pagination__link.active {
    font-weight: 700;
}

.pagination__separator {
    margin: 0 5px;
}



/* =============== products amazon =============== */
.products-amazon {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.products-amazon__item {
    display: flex;
    flex-direction: column;
    flex: none;
    width: 120px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.products-amazon__item:hover .products-amazon__title {
    color: #333;
}

.products-amazon__img {
    height: 90px;
    margin-bottom: 10px;
    text-align: center;
}

.products-amazon__img img {
    max-width: 100%;
}

.products-amazon__title {
    font-size: 14px;
    font-weight: 600;
	color: #419ef4;
	padding-top:5px;
}


.amzlink {
	font-weight: bold;
	color: #419ef4;
}

.amzimg {
	padding:20px;
}


/* =============== dropdown =============== */
.dropdown {
    margin-top: 15px;
}

.dropdown.opened {
    align-self: flex-start;
}

.dropdown-btn {
    cursor: pointer;
    border: none;
    padding: 0;
    position: relative;
}

.dropdown-btn::before,
.dropdown-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 8px;
    border-bottom: 9px solid #fff;
    transition: transform .4s;
}

.dropdown-btn::before {
    left: calc(100% + 10px);
    transform: rotate(135deg);
}

.dropdown-btn::after {
    left: calc(100% + 16px);
    transform: rotate(-135deg);
}

.dropdown-btn.active::before {
    transform: rotate(45deg);
}

.dropdown-btn.active::after {
    transform: rotate(-45deg);
}

.dropdown-menu {
    display: none;
    margin-top: 10px;
    transition: height .5s;
}

.dropdown-menu__item:not(:last-child) {
    margin-bottom: 5px;
}

.dropdown-menu__link {
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

.dropdown-menu__link:hover {
    border-color: #fff;
}

/* =============== Feedback form =============== */

.feedback-content {
    max-width: 760px;
    margin: 0 auto;
}

.feedback-text {
    font-size: 20px;
}

.feedback-form {
    margin-top: 30px;
}

.feedback-form__group {
    position: relative;
    margin-bottom: 30px;
}

.feedback-form__field, .feedback-form__message {
    width: 100%;
    padding-top: 20px;
    background-color: transparent;
    border: none;
    outline: none;
}

.feedback-form__field:focus + .feedback-form__label::after, .feedback-form__message:focus + .feedback-form__label::after {
    transform: translatex(0);
}

.feedback-form__field:focus + .feedback-form__label, .feedback-form__message:focus + .feedback-form__label {
    border-bottom-color: transparent;
}

.feedback-form__field:focus + .feedback-form__label .feedback-form__text, .feedback-form__message:focus + .feedback-form__label .feedback-form__text {
    transform: translatey(-85%);
    font-size: 14px;
    color: #007aff;
}

.feedback-form__field {
    height: 50px;
}

.feedback-form__message {
    resize: none;
    min-height: 150px;
}

.feedback-form__label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-size: 18px;
    border-bottom: 1px solid #000;
    transition: border-bottom-color 0s;
    overflow: hidden;
}

.feedback-form__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #007aff;
    transform: translatex(-101%);
    transition: transform 0.3s ease;
}

.feedback-form__label.active {
    border-bottom-color: transparent;
}

.feedback-form__label.active::after {
    transform: translatex(0);
}

.feedback-form__label.active .feedback-form__text {
    transform: translatey(-85%);
    font-size: 14px;
    color: #007aff;
}

.feedback-form__text {
    position: absolute;
    left: 0;
    top: 15px;
    transition: all 0.3s ease;
}

.feedback-form__error {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 5px;
    font-size: 14px;
    color: red;
}

.feedback-form__btn {
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    background: linear-gradient(-30deg, #1a87ff 50%, #007aff 50%);
    padding: 15px 40px;
    margin-top: 30px;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, color 0.3s;
}

.feedback-form__btn:hover {
    background: #fff;
    color: #007aff;
}

.feedback-form__btn:hover span:nth-child(1) {
    -webkit-animation: 2s animateTop linear infinite;
    animation: 2s animateTop linear infinite;
}

.feedback-form__btn:hover span:nth-child(2) {
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

.feedback-form__btn:hover span:nth-child(3) {
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

.feedback-form__btn:hover span:nth-child(4) {
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}

.feedback-form__btn span {
    position: absolute;
}

.feedback-form__btn span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#007aff));
    background: linear-gradient(to left, rgba(8, 20, 43, 0), #007aff);
}

.feedback-form__btn span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#007aff));
    background: linear-gradient(to top, rgba(8, 20, 43, 0), #007aff);
}

.feedback-form__btn span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#007aff));
    background: linear-gradient(to right, rgba(8, 20, 43, 0), #007aff);
}

.feedback-form__btn span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#007aff));
    background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #007aff);
}

@-webkit-keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-webkit-keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}


@media (max-width: 1280px) {
    .info__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .info__item-main {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .info__item .info__item-title {
        max-width: 100%;
    }

    .info__item-img {
        width: 80%;
    }

    .usefulness .usefulness__item .usefulness__item-img {
        margin-left: 0;
        margin-right: 0;
    }

    .usefulness__item-info {
        max-width: 450px;
    }

    .usefulness__item ul {
        margin: 15px 0;
    }

    .usefulness__item ul li::before {
        content: '';
        display: inline-block;
        margin-right: 5px;
        width: 10px;
        height: 10px;
        border-radius: 10px;
        background-color: #419ef4;
    }

    .section__row {
        display: flex;
        flex-wrap: wrap;
    }

    .section__row > * {
        width: 100%;
    }

    .section__col:first-child {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

@media (max-width: 1100px) {
    .terminology__item {
        max-width: calc(50% - 45px);
    }

    .terminology__item:nth-child(3n) {
        margin-right: 45px;
    }

    .terminology__item:nth-child(-n + 3) {
        margin-top: 60px;
    }

    .terminology__item:nth-child(-n + 2) {
        margin-top: 0;
    }

    .terminology__item:nth-child(even) {
        margin-right: 0;
    }

    .terminology__inner {
        background-position: right 250px bottom;
    }
}

@media (max-width: 1060px) {
    .swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        left: 25px;
        right: 25px;
        max-width: 100%;
        width: auto;
    }

    .swiper-slide:empty {
        max-width: 0;
    }
}

@media (max-width: 1000px) {
    .header-form__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .header .header-item {
        max-width: calc(50% - 25px);
        margin-top: 30px;
    }

    .header .header-item:nth-child(odd) {
        margin-left: 0;
    }

    .header .header-item:nth-child(-n + 2) {
        margin-top: 0;
    }

    .header-item__btn {
        width: 100%;
        text-align: center;
    }

    .header-item__title {
        margin-bottom: 10px;
    }

    .header-form__inner {
        margin-bottom: 45px;
    }

    .trailers__item {
        max-width: calc(50% - 10px);
    }

    .trailers__item-img {
        width: 80%;
    }

    .usefulness__item:nth-child(odd) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .usefulness__item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .usefulness__item:nth-child(odd) .usefulness__item-info p:last-child {
        max-width: 100%;
    }

    .usefulness__item-info {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .usefulness__item:nth-child(odd) .usefulness__item-info,
    .usefulness__item:nth-child(even) .usefulness__item-info {
        margin: 0 0 50px;
    }

    .catalog__item, .cards__item {
        max-width: calc(50% - 10px);
    }

    .catalog__item:nth-child(-n + 3), .cards__item:nth-child(-n + 3) {
        margin-top: 20px;
    }

    .catalog__item:nth-child(-n + 2), .cards__item:nth-child(-n + 2) {
        margin-top: 0;
    }

    .header {
        padding-bottom: 170px;
    }

    .header-black .header__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header__main-img {
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    }

    .slider__text {
        margin-left: 0;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .select__table-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }

    .select__table-item {
        max-width: calc(50% - 35px);
        width: 100%;
    }

    .select__table-item:nth-child(odd) {
        margin-right: 35px;
    }

    .terminology__inner {
        background-image: none !important;
    }

    .note__inner {
        background-size: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
    }

    .note__info-text {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        max-width: 100%;
    }

    .note__img {
        display: block;
    }

    .usefulness__item + .usefulness__item {
        margin-top: 90px;
    }

    .header.header-catalog {
        background-image: url(../images/header-bg2-mobile.jpg) !important;
        background-position: right center;
    }

    .trims__item-dropdown {
        padding: 20px 35px 30px 25px;
    }
}

@media (max-width: 700px) {
    p + p {
        margin-top: 15px;
    }

    .catalog__item:nth-child(-n + 3), .cards__item:nth-child(-n + 3) {
        margin-top: 0;
    }

    .catalog__item, .cards__item {
        max-width: 100%;
    }

    .catalog__item + .catalog__item, .cards__item + .cards__item {
        margin-top: 20px;
    }

    .trims__item-dropdown {
        padding: 20px 35px 30px 15px;
    }

    table thead {
        display: none
    }

    table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 1px solid #442;
        overflow: hidden
    }

    table td,
    table th {
        display: block;
        text-align: right;
        border: none;
        border-bottom: 1px dotted #442
    }

    table td:not(:first-child),
    table th:not(:first-child) {
        text-align: right
    }

    table td:last-child {
        border-bottom: 0
    }

    table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700
    }

    table td.empty {
        display: none
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }

    .title {
        font-size: 28px;
        line-height: 34px;
    }

    .header__top {
        padding: 20px 0;
    }

    .header__menu {
        max-width: 100%;
    }

    .header {
        padding-bottom: 70px;
    }

    .header .header-item {
        max-width: 100%;
        margin: 20px 0 0;
    }

    .header .header-item:nth-child(-n + 2) {
        margin-top: 20px;
    }

    .header .header-item:nth-child(1) {
        margin-top: 0;
    }

    .header__menu-link + .header__menu-link {
        margin-top: 20px;
    }

    .header-item__title {
        font-weight: 700;
        letter-spacing: 0.07em;
        color: #FFFFFF;
    }

    .header-form__inner {
        margin-bottom: 35px;
    }

    .header__main-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 10px;
        text-shadow: 9px 9px 15px rgba(0, 0, 0, 0.25);
    }

    .header__main-description {
        font-size: 16px;
        line-height: 20px;
        text-shadow: 9px 9px 15px rgba(0, 0, 0, 0.25);
    }

    .header {
        background-position: right -35px top;
    }

    .info {
        padding: 50px 0;
    }

    .info__item-img {
        width: 100%;
    }

    .info__item-text, p {
        line-height: 24px;
    }

    .select {
        padding-bottom: 65px;
    }

    .vehicles {
        padding: 30px 0 35px;
    }

    .vehicles-table {
        padding-right: 0;
    }

    .vehicles-table__name {
        max-width: 230px;
        padding-right: 15px;
    }

    .vehicles-table__name,
    .vehicles-table__capacity {
        font-size: 16px;
    }

    .vehicles-table__capacity {
        max-width: 120px;
        width: 100%;
        padding-left: 15px;
    }

    .terminology {
        padding: 35px 0 60px;
    }

    .terminology .terminology__item {
        max-width: 80%;
        margin: 50px 0 0;
    }

    .terminology .terminology__item:first-child {
        margin-top: 0;
    }

    .trailers {
        padding: 50px 0;
    }

    .trailers__item {
        max-width: 100%;
    }

    .trailers__item + .trailers__item {
        margin-top: 20px;
    }

    .note {
        padding-bottom: 40px;
    }

    .usefulness__item + .usefulness__item {
        margin-top: 55px;
    }

    .usefulness {
        padding: 35px 0 30px;
    }

    .trims__item-name {
        line-height: 100%;
    }

    .trims-dropdown__col {
        width: 47%;
    }

    .block-shadow {
        padding: 0 7px 7px 0;
    }
}

@media (max-width: 400px) {
    .header__main-description {
        max-width: 250px;
    }

    .vehicles-table__name,
    .vehicles-table__capacity {
        font-size: 12px;
    }

    .vehicles-table__name {
        max-width: 180px;
    }

    .vehicles-table__capacity {
        max-width: 80px;
    }

    .terminology .terminology__item {
        max-width: 100%;
    }

    .note__info-title {
        max-width: 275px;
    }

    .note__info-text {
        padding: 0;
    }

    .usefulness__item:nth-child(odd) .usefulness__item-info,
    .usefulness__item:nth-child(even) .usefulness__item-info {
        margin: 0 0 30px;
    }

    .usefulness__item + .usefulness__item {
        margin-top: 40px;
    }

    .swiper-container .catalog__item {
        max-width: 300px;
    }

    .swiper-slide:empty {
        max-width: 0;
    }

    .trims-dropdown__col {
        width: 100%;
    }
    .trims-dropdown__col:not(:last-child) {
        margin-right: 0;
    }

    .trims-dropdown__col:last-child {
        margin-bottom: 0;
    }
}
