/* import fonts */

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

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

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

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

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

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

/* import fonts END */

/* **************************************************************************************************************************************** */

/* css reset */

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

address {
  font-style: normal;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  color: #000;
}

input,
select {
  width: 100%;
  margin: 0;
  border: 1px solid #000;
  box-shadow: none;
  border-radius: 0;
  padding: 5px 15px;
  background: transparent;
}

input::-moz-placeholder {
  color: #000;
}

input::-webkit-input-placeholder {
  color: #000;
}

input:-ms-input-placeholder {
  color: #000;
}

input::placeholder {
  color: #000;
}

.form_white input::-moz-placeholder {
  color: #fff;
}

.form_white input::-webkit-input-placeholder {
  color: #fff;
}

.form_white input:-ms-input-placeholder {
  color: #fff;
}

.form_white input::placeholder {
  color: #fff;
}

.form_white input,
.form_white textarea,
.form_white select {
  color: #fff;
}

.form_white input,
.form_white select {
  border-color: #fff;
}

.p-20 {padding: 30px 0 0 0!important;}

button {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(../img/ico_select.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 35px;
}

.select::-ms-expand {
  display: none;
}

.select:hover {
}

.select:focus {
  box-shadow: none;
  box-shadow: none -moz-mac-focusring;
  color: inherit;
  outline: none;
}

.select option {
  font-weight: normal;
}

body {
  min-height: 100vh;
  line-height: 1.3;
}

ul,
ol {
  list-style: none;
}

:focus {
  outline: 0;
}

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

blockquote,
q {
  quotes: none;
}

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

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

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 0.8em;
}

sup {
  top: -5px;
}

sub {
  bottom: -2px;
}

pre {
  font: inherit;
}

/* css reset END */

/* **************************************************************************************************************************************** */

/* common styles */

body {
  font-family: "Stem", Arial, sans-serif;
  font-size: 16px;
  color: #1c252c;
  position: relative;
  font-weight: 300;
  padding: 0px;
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
  background: #ededed;
}

.compensate-for-scrollbar {
  margin: 0 auto !important;
  overflow: auto !important;
}

.resp_table {
  width: 100%;
}

.resp_table tr td:before {
  display: none;
}

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

.form_title {
  color: inherit;
  font-size: 20px;
  padding: 0px;
  margin: 0px;
  text-align: center;
  padding-bottom: 20px;
}

.form_title span {
  display: block;
  white-space: nowrap;
}

input,
textarea,
select,
button,
.btn {
  height: 48px;
}

form .form-group_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

form .form-group_wrapper .form-group:nth-child(1) {
  width: 58%;
}

form .form-group_wrapper .form-group:nth-child(2) {
  width: 41%;
}

form .form-group {
  position: relative;
  margin-bottom: 10px;
}

form .form-group input {
  width: 100%;
}

form .form-group .btn {
  width: 100%;
}

.has-danger input,
.has-danger select,
.has-danger textarea {
  border-width: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c86461;
}

#form_popup {
  display: none;
}

.popup_container {
  width: 520px;
  max-width: 100%;
  padding: 35px;
  overflow: hidden !important;
  position: relative;
  box-sizing: border-box;
  background: white;
  text-align: center;
}

.popup_container .form-group {
  margin-bottom: 10px;
}

form.popup_container .form-group button {
  width: 100%;
}

.alert.fancybox-content {
  overflow: hidden;
}

.not_agree button {
  background-color: #cccccc !important;
  cursor: auto !important;
  color: white !important;
}

.agree_field {
  font-size: 12px;
  line-height: 100%;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  top: 0px;
  font-weight: 300;
  margin-top: -2px;
}

.agree_field a {
  color: inherit;
  text-decoration: underline;
}

.agree_field input {
  width: auto;
  height: auto;
  z-index: -1;
  visibility: visible;
}

.agree_field > span {
  padding-left: 25px;
  display: inline-block;
}

.agree_field input + .inp_style {
  position: absolute;
  top: -1px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #000;
  display: none;
}

.agree_field input + .inp_style:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  display: none;
  position: absolute;
  top: 2px;
  left: 2px;
}

.agree_field input:checked + .inp_style:before {
  display: block;
}

.form_white .agree_field a,
.form_white .agree_field {
  color: #fff;
}

.form_white .agree_field input + .inp_style {
  border-color: #fff;
}

.form_white .agree_field input + .inp_style:before {
  background: #fff;
}

.main {
}

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

.title {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
}

.title_white {
  color: #fff;
}

.text_black {
  color: #1c252c;
}

.text_upp {
}

.btn {
  background: #014637;
  color: #fff;
  text-align: center;
  width: 280px;
  display: flex;
  align-items: center;
  border: 1px solid #014637;
  position: relative;
  text-decoration: none;
  transition: all 0.2s linear;
}

.btn.orange {
  background-color: rgb(224, 89, 48);
  border-color: rgb(224, 89, 48);
}

.btn.orange span {
  font-weight: 700;
}

.btn span {
  display: inline-block;
  width: 100%;
}

.btn:hover {
  background-color: #1c252c;
  border-color: #1c252c;
}

.btn.grey {
  background-color: #1c252c;
  border-color: #1c252c;
}

.btn.grey:hover {
  background-color: #014637;
  border-color: #014637;
}

.btn.glass {
  background-color: transparent;
  color: #1c252c;
  border-color: #1c252c;
}

.btn.glass:hover {
  background-color: #014637;
  border-color: #014637;
  color: #fff;
}

.top_phone.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* common styles END */

/*************************************************************************************************************************/

.header .mob-menu-btn {
  display: none;
}

.header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(7px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__container {
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header__logo-block {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header__logo {
}

.header__logo1 {
}

.header__logo-text {
  font-size: 12px;
  padding-left: 17px;
  border-left: 1px solid #cdcdcd;
}

.header__logo-text_big {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.header__logo-text_sm {
}

.header__addr {
}

.header__phone {
  font-weight: 700;
}

.header__btn {
  width: 210px;
}

.header__menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid #cdcdcd;
}

.header__menu-item {
  position: relative;
  padding: 15px 0 10px 0;
  transition: all 0.2s linear;
}

.header__menu-item:hover {
  text-shadow: 0.15px -0.15px #000, -0.15px 0.15px #000;
}

.header__menu-item:before {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  height: 3px;
  width: 0;
  background: #014637;
  transition: all 0.2s linear;
}

.header__menu-item:hover:before {
  width: 100%;
  left: 0;
}

/************************************************************************************************************150px 765px**/

.banner {
  position: relative;
  height: auto;
  overflow-x: hidden;
  z-index: 1;
  padding-top: 125px;
}

.banner__container {
}

.banner__content {
  margin: 0 auto;
  padding: 30px 40px;
  /* position: relative; */
  /* z-index: 1; */
  background: rgb(255 255 255 / 90%);
  max-width: 690px;
}

.banner__content:before {
  content: "";
  display: block;
  width: 86%;
  height: 100%;
  background: rgb(255 255 255 / 50%);
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.banner__title-block {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
}

.banner__title {
}

.banner__title_text-sm {
  font-size: 22px;
}

.banner_bg-block {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  transform: translateX(-50%);
  z-index: -1;
}

.banner_bg {
}

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

.banner__btn {
  margin: 0 auto;
  margin-top: 20px;
  z-index: 1;
}

/**************************************************************************************************************/

.timer {
  margin-top: 40px;
}

.timer__container {
}

.timer__content {
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
}

.timer__form-block {
  width: 100%;
  max-width: 520px;
}

.timer__form-title {
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 10px;
}

.timer__form {
}

.timer__timer {
  transform: scale(0.9);
  transform-origin: center right;
}

.timer__timer div[id*="timer"] {
}

.timer__timer span[id*="timer"] {
}

/**************************************************************************************************************/

.models-menu {
  margin-top: 75px;
}

.models-menu__container {
}

.models-menu__title {
}

.models-menu__content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: center;
  position: relative;
}

.models-menu__item {
  opacity: 0.5;
  transition: all 0.3s linear;
}

.models-menu__item:hover {
  opacity: 1;
}

.models-menu__img-block {
}

.models-menu__img {
}

.models-menu__text {
  margin-top: -10px;
}

/**************************************************************************************************************/

.models {
}

.model {
  margin-top: 50px;
}

.model__container {
}

.model__content {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.model__main {
  position: relative;
  /* margin-top: 40px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.model__info {
}

.model__title {
  font-size: 46px;
  font-weight: 700;
  white-space: nowrap;
}

.car_benefit {
  position: absolute;
  right: 0;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAxCAMAAACrgNoQAAAAkFBMVEUAAAAbJSwcJCwcJSwcJCwgJTAYIygcJSwbIysgIDAcJCsdJC0bJCwdJCwcJCweJSoQICAcJSwcJCwbJCsbIy0QIDAbJSwbJSscJSxUW2DGyMqqrbA4QEbj5OXGycpxd3uNkZZ/hIhjaW7x8vIqMjm4u72bn6LU1te4ur1xdntGTVPU1deboKIqMznU1thiaG6wFtoYAAAAGHRSTlMA33/vvyAgb18Qn4+PX0AwEM+vcFAQz89XBw/pAAABw0lEQVRIx5WVa1OzMBCFE65Ca2tr9T1AIrdCL/rq//93amcy3WRDLc8nmDknexaWRTCy3SJ/lT9E22CViT/I0ggW0eNNeRCCIYN4Sp9SObX4q8QRJnn1FFmFuIFcufoH/MEj089y7HAHJFUs4bCvO2YIr50zvTqUw7uCQ2T0ARzqvgUaXcPh2R+oeCuLSxn92TmhXi6GnEQv6rEvT+b2dNBVV5BowaVACEOny6otQDi3Q9kXpIT9CoYTPHTH63X6YyAj9FbAQ1FaDyrGHANexG6e4UEs5hmWIrphUNywFXLaUDXcIEU4aagqT6RQgBvOyui5AT5Dq5XR32dAo5XRc4Okqc1AN31Fhr2ymt6Qu4/WXNG5bkfrI1rAPoszfNEXZ+2L//0enF5ZoxGDULZg1EcQEmu8UWhWQmla4J+7Aj5YF9UIK5EQGSiHBhbNOyiJWQLXvg9HEmE/lFbGXPyShCDQfdTpEawAX2RK65rsJ0Jg/lQSNl2pq7F35ZDCsIaLapszDCSQ4Rl3kApCAA+8AeqYp+epeB5GIjGJXAsP2QITLJ+EnySHhygR0yRL6YQJnNM563S7uUxXuMlTln2Sp6mDvwFfy6wz9T/ybQAAAABJRU5ErkJggg==")
    0px center no-repeat;
  border-radius: 50px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  color: rgba(28, 37, 44, 1);
  padding: 10px 20px;
  padding-left: 59px;
  margin-left: auto;
  margin-top: -61px;
  border: 1px solid rgba(28, 37, 44, 1);
}

.car_benefit b {
  font-weight: 700;
  white-space: nowrap;
  margin-left: 10px;
}

.car_credit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding-left: 64px;
  width: 311px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #1c252c;
  white-space: nowrap;
  border-radius: 50px;
  background: #e1e1e1;
  bottom: 0;
  left: 314px;
  transition: all 0.2s linear;
}
.car_credit:hover {
  color: #fff;
}
.car_credit:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: url(../img/car_credit_ico.svg) 50% 50% no-repeat #014637;
  z-index: 2;
}
.car_credit:after {
  content: "";
  position: absolute;
  left: 8px;
  width: 0;
  height: 100%;
  background: #014637;
  border-radius: 50px;
  transition: all 0.2s linear;
}
.car_credit:hover:after {
  width: 100%;
}
.car_credit span {
  position: relative;
  z-index: 2;
}
.model__about-btn1 {
  font-weight: 700;
  width: 280px;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #1c252c;
  display: flex;
  align-items: center;
  padding-left: 67px;
  position: relative;
  margin-top: 15px;
}

.model__about-btn1:before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/car_ico_insale.svg) 50% no-repeat #1c252c;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.model__about-btn1:hover:before {
  background-color: #014637;
}

.model__about-btn1 span {
}

.model__btns {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 10px;
}

.model__btn {
}

.model__img-block {
  position: relative;
  /* width: 100%; */
  /* margin-left: -75px; */
  margin-bottom: 47px;
  z-index: 1;
  margin-top: -73px;
}

.model__img-block:before {
  content: "";
  display: block;
  width: 350px;
  height: 350px;
  background: #1c252c;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: 30px;
  z-index: -1;
  display: none;
}

.model__img-block.active:before {
  animation: circle 0.2s linear;
}

@keyframes circle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.35);
  }
  100% {
    transform: scale(1);
  }
}

#patriot .model__img-block {
}

#pikap .model__img-block {
}

#profi .model__img-block {
  margin-bottom: 80px;
}

#sgr .model__img-block {
  margin-bottom: 64px;
}

#sgr_anniversary .model__img-block {
}

.model__img {
  /* position: absolute; */
  /* width: 500px; */
  /* height: 404px; */
  max-width: 540px;
}

.model__tech {
  display: flex;
  flex-direction: column;
  gap: 24px;
  display: none;
}

.model__tech-item {
  /* display: flex; */
  /* gap: 10px; */
  position: relative;
}

.model__progress-button {
  position: absolute;
  bottom: -8px;
  right: 0;
}

.model__progress-button .circle {
  pointer-events: none;
  width: 100px;
  height: 100px;
  fill: none;
  stroke: #014637;
  stroke-width: 7;
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
  transition: all 0.5s linear;
  transform: rotate(90deg);
}

.param1 .model__progress-button .circle {
  transition: all 0.6s linear;
}

.param2 .model__progress-button .circle {
  transition: all 0.7s linear;
}

.param3 .model__progress-button .circle {
  transition: all 0.8s linear;
}

.loading .model__progress-button .circle {
  stroke-dashoffset: 0;
}

.model__tech-name {
  transform: rotate(-90deg);
  position: absolute;
  top: 35px;
  left: -100px;
  font-size: 14px;
  max-width: 115px;
  text-align: center;
}

.model__tech-val {
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* border: 7px solid #014637; */
  position: relative;
}

.model__tabs {
  margin-top: 30px;
  /* margin-bottom: 30px; */
  padding-top: 30px;
  border-top: 1px solid #cccccc;
  display: flex;
  gap: 7px;
  order: 1;
}

.model__tabs.none {
  display: none;
}

.model__tabs-item {
  /*display: flex;*/
  /*flex-direction: column-reverse;*/
  /*justify-content: space-between;*/
  display: grid;
  justify-content: center;
  align-items: center;
  width: 198px;
  height: auto;
  text-align: center;
  border: 1px solid #cdcdcd;
  font-size: 11px;
  padding: 10px 5px;
  transition: all 0.15s linear;
  cursor: pointer;
}

.model__tabs-item.active,
.model__tabs-item:hover {
  background-color: #1c252c;
  border-color: #1c252c;
  color: #fff;
}

.model__tabs-name {
  padding-bottom: 7px;
}

.model__tabs-name .text_grey {
  opacity: 0.5;
  display: block;
}

#profi .model__tabs-name .text_grey {
  display: inline;
}

.model__tabs-img-block {
  display: flex;
  justify-content: center;
}

.model__tabs-img {
}

.model .gallery_cont {
  padding: 0px 40px;
  background: #fff;
}
.model .gallery {
  padding: 10px 0;
  border-top: 1px solid #cccccc;
}
#sgr .gallery_cont {
  display: none;
}

/** model-slider ***************************************************************************************************/
.swiper.mySwiperModels {
  /* padding-top: 20px; */
  /* padding-bottom: 10px; */
  /* background: #fff; */
}

.swiper-pagination {
  display: none;
  bottom: -24px !important;
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -50px) !important;
  top: var(--swiper-navigation-top-offset, 50%) !important;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -50px) !important;
  top: var(--swiper-navigation-top-offset, 50%) !important;
  right: auto;
}

.swiper-pagination-bullet-active {
  background: #014637 !important;
}

.swiper-button-next:after {
  font-size: 20px !important;
  color: #000;
  background: rgba(255, 255, 255, 0);
  padding: 10px 14px;
  border: 1px solid #000;
  transition: all 0.2s linear;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #ffffff;
  background: #014637;
  border: 1px solid #014637;
}

.swiper-button-prev:after {
  font-size: 20px !important;
  color: #000;
  background: rgba(255, 255, 255, 0);
  padding: 10px 14px;
  border: 1px solid #000;
  transition: all 0.2s linear;
}

/*************************************************************************************************************/

/**************************************************************************************************************/

#instock {
  position: relative;
  padding-top: 80px;
  padding-bottom: 50px;
}

.instock_title {
  font-size: 36px;
  /* text-align: center; */
  font-weight: 700;
  margin-bottom: 25px;
}

.filter_quick_menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: none;
}

.filter_quick_menu li {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  margin-right: 50px;
  cursor: pointer;
}

.filter_quick_menu li.active,
.filter_quick_menu li:hover {
  color: #558b7f;
}

#filter_table {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

#filter_table .select_container {
  position: relative;
  width: 32%;
  display: inline-block;
  margin-left: 10px;
}

#filter_table .select_container:first-child {
  margin-left: 0px;
}

#filter_table .select_container:after {
  content: "";
  /* background:url(../img/ico_select.png) 0px 0px no-repeat; */
  width: 15px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  pointer-events: none;
}

#filter_table select {
  display: block;
  height: 44px;
  box-sizing: border-box;
  width: 100%;
  padding-left: 15px;
  padding-right: 35px;
  font-size: 16px;
  font-weight: 300;
  outline: none;
  border-radius: 0px;
  background: url(../img/ico_select.png) right 20px center no-repeat;
  border: 1px solid #014637;
  color: #000;
}

#filter_table select[name="models"] {
}

#filter_table select[name="complects"] {
}

#filter_table select[name="engine"] {
}

#filter_table select option {
  color: black;
}

.tb_complects {
  width: 100%;
  color: black;
  border-collapse: collapse;
  margin: 0px auto;
  font-weight: 400;
}

.tb_complects tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*border: 1px solid #d8d8d8;*/
  margin-bottom: 25px;
  border-radius: 4px;
  background: #fff;
}

.tb_complects.limit tr:nth-child(n + 5) {
  display: none;
}

.tb_complects tr:first-child {
  display: none;
}

.tb_complects tr th {
  text-align: left;
  font-size: 16px;
  /* text-transform:uppercase; */
  background: #ededed;
  font-size: 18px;
  font-weight: 400;
  padding: 15px;
  height: 53px;
  box-sizing: border-box;
}

.tb_complects tr td {
  box-sizing: border-box;
  vertical-align: middle;
  text-align: left;
}

.tb_complects tr td:nth-child(1) {
  width: 26.68%;
  padding-left: 35px;
  /*background: url("../img/complects/compl_bg.png") 0 50% no-repeat;*/
  display: flex;
  align-items: center;
  min-height: 205px;
}

.tb_complects tr td:nth-child(2) {
  width: 35.83%;
  padding-right: 15px;
}

.tb_complects tr td:nth-child(3) {
}

.tb_complects tr td:nth-child(4) {
}

.tb_complects_showmore {
}

.tb_complects_showmore:hover {
  /* border-color:#1c69d4; */
}

.tb_complects tr .btns {
  width: 26.5%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.tb_complects tr .btns .btn {
  width: 100%;
}

.tb_complects tr .btns .btn:first-child {
  margin-bottom: 10px;
}

.tb_complects tr td .param1 {
  font-weight: 300;
  font-size: 16px;
}

.tb_complects tr td .compl_techs {
  display: flex;
  justify-content: space-between;
}

.tb_complects tr td .param2 {
  font-weight: 500;
  font-size: 20px;
  color: #014637;
  margin-top: 10px;
  margin-bottom: 26px;
  line-height: 100%;
}

.tb_complects tr td .param3 {
  font-size: 18px;
  font-weight: 500;
  margin-right: 25px;
}

.tb_complects tr td .param3:last-child {
  margin-right: 0;
}

.tb_complects tr td .param3 b {
  font-size: 16px;
  display: block;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 5px;
}

/*************************************************************************************************************/

.buy-way {
  /* margin-top: 135px; */
  display: flex;
  justify-content: space-between;
}

.credit {
  position: relative;
  z-index: 1;
  background: url(../img/credit_bg.jpg) 50% no-repeat;
  width: 50%;
  transition: all 0.3s linear;
}

.credit:hover {
  width: 60%;
}

.credit__img-block {
}

.credit__img {
}

.credit__container {
}

.credit__content {
  /* position: absolute; */
  /* bottom: 60px; */
  /* left: 70px; */
  padding: 500px 0 60px 70px;
  max-width: 80%;
}

.credit__content:before {
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}

.credit:hover .credit__content:before {
  opacity: 0.35;
}

.credit__title {
  padding-bottom: 30px;
}

.credit__form {
}

.leasing {
  position: relative;
  z-index: 1;
  background: url(../img/leasing_bg.jpg) 50% no-repeat;
  width: 50%;
  transition: all 0.3s linear;
  width: 50%;
}

.leasing:hover {
  width: 60%;
}

.leasing__img-block {
}

.leasing__img {
}

.leasing__container {
}

.leasing__content {
  /* position: absolute; */
  /* bottom: 60px; */
  /* left: 70px; */
  padding: 500px 0 60px 70px;
  max-width: 80%;
}

.leasing__content:before {
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

.leasing:hover .leasing__content:before {
  opacity: 0.35;
  transition: all 0.3s linear;
}

.leasing__title {
  padding-bottom: 30px;
}

.leasing__form {
}

.slide2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.slide2 .container {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.slide2 img {
}

/****************************************************************************************************/

.conditions {
  margin-top: 100px;
}

.conditions__container {
}

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

.corp-info {
  width: 49%;
  background: #fff;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.corp-info__img-block {
  position: relative;
}

.corp-info__img {
}

.corp-info__title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  text-align: left;
  font-size: 25px;
}

.corp-info__items {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.corp-info__item {
  padding-left: 70px;
  min-height: 42px;
  /* display: flex; */
  /* align-items: center; */
}

.corp-info__item b {
}

.corp-info__item_ico1 {
  background: url(../img/corp_info/1.svg) 0 50% no-repeat;
}

.corp-info__item_ico2 {
  background: url(../img/corp_info/2.svg) 0 50% no-repeat;
}

.corp-info__item_ico3 {
  background: url(../img/corp_info/3.svg) 0 50% no-repeat;
}

.corp-info__item_ico4 {
  background: url(../img/corp_info/4.svg) 0 50% no-repeat;
}

.corp-info__item_ico5 {
  background: url(../img/corp_info/5.svg) 0 50% no-repeat;
}

.corp-info__item_ico6 {
  background: url(../img/corp_info/6.svg) 0 50% no-repeat;
}

.corp-info__btn {
  width: calc(100% - 80px);
  margin-left: 40px;
}

.asist-info {
  width: 49%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
}

.asist-info__img-block {
  position: relative;
}

.asist-info__img {
}

.asist-info__title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  text-align: left;
  font-size: 25px;
}

.asist-info__items {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.asist-info__item {
  padding-left: 70px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.asist-info__item b {
}

.asist-info__item_ico1 {
  background: url(../img/asist_info/1.svg) 0 50% no-repeat;
}

.asist-info__item_ico2 {
  background: url(../img/asist_info/2.svg) 0 50% no-repeat;
}

.asist-info__item_ico3 {
  background: url(../img/asist_info/3.svg) 0 50% no-repeat;
}

.asist-info__item_ico4 {
  background: url(../img/corp_info/1.svg) 0 50% no-repeat;
}

.asist-info__item_ico5 {
  background: url(../img/asist_info/5.svg) 0 50% no-repeat;
}

.asist-info__item_ico6 {
  background: url(../img/asist_info/6.svg) 0 50% no-repeat;
}

.asist-info__item_ico7 {
  background: url(../img/asist_info/7.svg) 0 50% no-repeat;
}

.asist-info__btn {
  width: calc(100% - 80px);
  margin-left: 40px;
}

/**************************************************************************************************************/

.to {
  margin-top: 100px;
}

.to__container {
}

.to__title {
}

.to__content {
  margin-top: 40px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
}

.to__form-block {
  width: 300px;
  margin-left: 60px;
}

.to__form-title {
  padding-bottom: 20px;
}

.to__form {
}

.to__list {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 60px;
}

.to__list-item {
  color: #014637;
  display: flex;
  white-space: nowrap;
  padding-left: 20px;
  position: relative;
}

.to__list-item:before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #014637;
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
}

.to__list-item b {
}

.to__list-item .text_black {
}

.to__text-sep {
  width: 100%;
  border-bottom: 1px dotted #1c252c;
}

.to__video {
  margin-top: 55px;
  margin-bottom: -5px;
}

.to__video video {
  width: 100%;
}

/**************************************************************************************************************/

.service-contract {
  margin-top: 100px;
  position: relative;
  height: 760px;
  overflow-x: hidden;
}

.service-contract__bg-block {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  z-index: -1;
}

.service-contract__bg {
}

.service-contract__container {
  z-index: 1;
}

.service-contract__title {
  padding-bottom: 10px;
  padding-top: 60px;
}

.service-contract__content {
}

.service-contract__desc {
  text-align: center;
}

.service-contract__btn {
  margin: 0 auto;
  margin-top: 30px;
}

/**************************************************************************************************************/

.contacts {
  margin-top: 100px;
}

.contacts__container {
}

.contacts__title {
  padding-bottom: 20px;
}

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

.contacts__info {
  background: #fff;
  padding: 45px;
}

.contacts__logo-block {
  display: flex;
  gap: 17px;
  align-items: center;
  padding-bottom: 40px;
}

.contacts__logo {
}

.contacts__logo1 {
}

.contacts__logo-text {
  padding-left: 17px;
  border-left: 1px solid #cdcdcd;
  font-size: 12px;
}

.contacts__logo-text_big {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.contacts__logo-text_sm {
}

.contacts__phone {
  font-size: 25px;
  font-weight: 700;
  padding-left: 36px;
  background: url(../img/contacts_ico1.svg) 0 50% no-repeat;
}

.contacts__addr {
  padding-left: 36px;
  background: url(../img/contacts_ico2.svg) 0 50% no-repeat;
  margin-top: 20px;
}

.contacts__openhours {
  padding-left: 36px;
  background: url(../img/contacts_ico3.svg) 0 50% no-repeat;
  margin-top: 20px;
}
.contacts__mail {
  display: block;
  margin-top: 16px;
  /* text-align: center; */
  padding-left: 36px;
}
.contacts__mail span {
  color: #000;
}
.contacts__btn {
  margin-top: 40px;
}

/**************************************************************************************************************/

#map1 {
  /* height: 380px; */
  height: 450px;
  width: 100%;
  max-width: 750px;
  /* background: url(../img/map.jpg) 50% 0% no-repeat; */
  background: url(../img/map.jpg);
  background-position: center;
  background-size: cover;
}

.webp #map1 {
  /* background: url(../img/map.webp) 50% 0% no-repeat; */
  background: url(../img/map.jpg);
  background-position: center;
  background-size: cover;
}

/**************************************************************************************************************/

.footer {
  padding: 20px 0;
  color: inherit;
}

.footer {
}

.footer__container {
}

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

.footer__copyright {
  font-size: 12px;
}

.footer__dislamer-btn {
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
}

.footer__comp-info {
}

.footer__sinoby-logo img {
  display: inline;
}

.footer__disclamer {
  font-size: 12px;
  text-align: left;
  /* padding-top: 35px; */
  padding-top: 0;
  width: 100%;
}

.copyright {
  font-size: 12px;
}

/* **************************************************************************************************************************************** */

/* media */

/* desktop and laptops */

@media only screen and (min-width: 1280px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1800px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1600px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1536px) {
}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  .title {
    font-size: 26px;
  }

  .credit__content,
  .leasing__content {
    left: 30px;
    width: 90%;
  }

  .credit__title,
  .leasing__title {
    text-align: left;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
}

/* tablets */

@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .container {
    max-width: 1082px;
    padding: 0 15px;
  }

  .title {
    font-size: 22px;
  }

  .header {
  }

  .header__container {
  }

  .header__content {
  }

  .header__logo-block {
  }

  .header__logo {
  }

  .header__logo1 {
  }

  .header__logo-text {
  }

  .header__logo-text_big {
  }

  .header__logo-text_sm {
  }

  .header__addr {
  }

  .header__phone {
  }

  .header__btn {
  }

  .header__menu {
  }

  .header__menu-item {
  }

  /**************************************************************************************************************/
  .banner {
  }

  .banner__container {
  }

  .banner__content {
  }

  .banner__title-block {
  }

  .banner__title {
  }

  .banner__title_text-sm {
  }

  .banner_bg-block {
  }

  .banner_bg {
  }

  .banner__title {
  }

  .banner__btn {
  }

  /**************************************************************************************************************/
  .timer {
  }

  .timer__container {
  }

  .timer__content {
  }

  .timer__form-block {
  }

  .timer__form-title {
  }

  .timer__form {
  }

  .timer__timer {
  }

  .timer__timer div[id*="timer"] {
  }

  .timer__timer span[id*="timer"] {
  }

  /**************************************************************************************************************/
  .models-menu {
  }

  .models-menu__container {
  }

  .models-menu__title {
  }

  .models-menu__content {
  }

  .models-menu__item {
  }

  .models-menu__img-block {
  }

  .models-menu__img {
  }

  .models-menu__text {
  }

  /**************************************************************************************************************/
  .models {
  }

  .model {
  }

  .model__container {
  }

  .model__content {
  }

  .model__main {
  }

  .model__info {
  }

  .model__title {
  }

  .model__about-btn1 {
  }

  .model__about-btn1 span {
  }

  .model__btns {
  }

  .model__btn {
  }

  .model__img-block {
  }

  .model__img {
    width: 500px;
  }

  .model__tech {
  }

  .model__tech-item {
  }

  .model__tech-name {
  }

  .model__tech-val {
  }

  .model__tabs {
    margin-bottom: 15px;
  }

  .model__tabs-item {
  }

  .model__tabs-name {
  }

  .model__tabs-img-block {
  }

  .model__tabs-img {
  }

  /**************************************************************************************************************/
  .buy-way {
  }

  .credit {
  }

  .credit__img-block {
  }

  .credit__img {
  }

  .credit__container {
  }

  .credit__content {
  }

  .credit__title {
  }

  .credit__form {
  }

  .leasing {
  }

  .leasing__img-block {
  }

  .leasing__img {
  }

  .leasing__container {
  }

  .leasing__content {
  }

  .leasing__title {
  }

  .leasing__form {
  }

  .credit__content,
  .leasing__content {
    left: 30px;
    width: 90%;
  }

  .credit__title,
  .leasing__title {
    text-align: left;
  }

  /****************************************************************************************************/
  .conditions {
  }

  .conditions__container {
  }

  .conditions__content {
  }

  .corp-info {
  }

  .corp-info__img-block {
  }

  .corp-info__img {
  }

  .corp-info__title {
  }

  .corp-info__items {
  }

  .corp-info__item {
  }

  .corp-info__item b {
  }

  .corp-info__item_ico1 {
  }

  .corp-info__item_ico2 {
  }

  .corp-info__item_ico3 {
  }

  .corp-info__item_ico4 {
  }

  .corp-info__item_ico5 {
  }

  .corp-info__item_ico6 {
  }

  .corp-info__btn {
  }

  .asist-info {
  }

  .asist-info__img-block {
  }

  .asist-info__img {
  }

  .asist-info__title {
  }

  .asist-info__items {
  }

  .asist-info__item {
  }

  .asist-info__item b {
  }

  .asist-info__item_ico1 {
  }

  .asist-info__item_ico2 {
  }

  .asist-info__item_ico3 {
  }

  .asist-info__item_ico4 {
  }

  .asist-info__item_ico5 {
  }

  .asist-info__item_ico6 {
  }

  .asist-info__item_ico7 {
  }

  .asist-info__btn {
  }

  /**************************************************************************************************************/
  .to {
  }

  .to__container {
  }

  .to__title {
  }

  .to__content {
  }

  .to__form-block {
  }

  .to__form-title {
  }

  .to__form {
  }

  .to__list {
  }

  .to__list-item {
  }

  .to__list-item b {
  }

  .to__list-item .text_black {
  }

  .to__text-sep {
  }

  .to__video {
  }

  .to__video video {
  }

  /**************************************************************************************************************/
  .service-contract {
  }

  .service-contract__bg-block {
  }

  .service-contract__bg {
  }

  .service-contract__container {
  }

  .service-contract__title {
  }

  .service-contract__content {
  }

  .service-contract__desc {
  }

  .service-contract__btn {
  }

  /**************************************************************************************************************/
  .contacts {
  }

  .contacts__container {
  }

  .contacts__title {
  }

  .contacts__content {
  }

  .contacts__info {
  }

  .contacts__logo-block {
  }

  .contacts__logo {
  }

  .contacts__logo1 {
  }

  .contacts__logo-text {
  }

  .contacts__logo-text_big {
  }

  .contacts__logo-text_sm {
  }

  .contacts__phone {
  }

  .contacts__addr {
  }

  .contacts__openhours {
  }

  .contacts__btn {
  }
}

@media only screen and (min-width: 768px) and (max-width: 1112px) {
  .container {
    /* max-width: 994px; */
    max-width: 930px;
  }

  .model__tech-val {
    /* position: relative; */
    margin-top: 10px;
  }

  .header {
  }

  .header__container {
  }

  .header__content {
  }

  .header__logo-block {
  }

  .header__logo {
  }

  .header__logo1 {
  }

  .header__logo-text {
  }

  .header__logo-text_big {
  }

  .header__logo-text_sm {
  }

  .header__addr {
  }

  .header__phone {
  }

  .header__btn {
  }

  .header__menu {
  }

  .header__menu-item {
  }

  /************************************************************************************************************* 645px */
  .banner {
    height: auto;
    background-size: cover;
  }

  .banner__container {
  }

  .banner__content {
  }

  .banner__title-block {
  }

  .banner__title {
  }

  .banner__title_text-sm {
  }

  .banner_bg-block {
    width: 1600px;
  }

  .banner_bg {
  }

  .banner__title {
  }

  .banner__btn {
  }

  /**************************************************************************************************************/
  .timer {
  }

  .timer__container {
  }

  .timer__content {
    flex-wrap: wrap;
  }

  .timer__form-block {
    max-width: 100%;
  }

  .timer__form-title {
    text-align: center;
    padding-bottom: 20px;
  }

  .timer__form {
  }

  .timer__timer {
    margin: 0 auto;
    margin-top: 20px;
  }

  .timer__timer div[id*="timer"] {
  }

  .timer__timer span[id*="timer"] {
  }

  /**************************************************************************************************************/
  .models-menu {
  }

  .models-menu__container {
  }

  .models-menu__title {
  }

  .models-menu__content {
  }

  .models-menu__item {
  }

  .models-menu__img-block {
  }

  .models-menu__img {
  }

  .models-menu__text {
  }

  /**************************************************************************************************************/
  .models {
  }

  .model {
  }

  .model__container {
  }

  .model__content {
  }

  .model__main {
    flex-wrap: wrap;
  }

  .model__info {
  }

  .model__title {
  }

  .model__about-btn1 {
  }

  .model__about-btn1 span {
  }

  .model__btns {
  }

  .model__btn {
  }

  .model__img-block {
    /* margin: 0 !important; */
    width: 58%;
  }

  .model__img {
    width: 100%;
    position: static;
  }

  .model__tech {
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 35px;
    align-items: stretch;
  }

  .model__tech-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 25%;
  }

  .model__tech-name {
    position: static;
    transform: unset;
    max-width: 100%;
  }

  .model__tech-val {
  }

  .model__tabs {
  }

  .model__tabs-item {
  }

  .model__tabs-name {
  }

  .model__tabs-img-block {
  }

  .model__tabs-img {
  }

  /**************************************************************************************************************/
  .buy-way {
    flex-wrap: wrap;
    justify-content: center;
  }

  .credit {
    max-width: 850px;
  }

  .credit__img-block {
  }

  .credit__img {
  }

  .credit__container {
  }

  .credit__content {
  }

  .credit__title {
  }

  .credit__form {
  }

  .leasing {
    max-width: 850px;
  }

  .leasing__img-block {
  }

  .leasing__img {
  }

  .leasing__container {
  }

  .leasing__content {
  }

  .leasing__title {
  }

  .leasing__form {
  }

  /****************************************************************************************************/
  .conditions {
  }

  .conditions__container {
  }

  .conditions__content {
  }

  .corp-info {
  }

  .corp-info__img-block {
  }

  .corp-info__img {
  }

  .corp-info__title {
  }

  .corp-info__items {
  }

  .corp-info__item {
  }

  .corp-info__item b {
  }

  .corp-info__item_ico1 {
  }

  .corp-info__item_ico2 {
  }

  .corp-info__item_ico3 {
  }

  .corp-info__item_ico4 {
  }

  .corp-info__item_ico5 {
  }

  .corp-info__item_ico6 {
  }

  .corp-info__btn {
  }

  .asist-info {
  }

  .asist-info__img-block {
  }

  .asist-info__img {
  }

  .asist-info__title {
  }

  .asist-info__items {
  }

  .asist-info__item {
  }

  .asist-info__item b {
  }

  .asist-info__item_ico1 {
  }

  .asist-info__item_ico2 {
  }

  .asist-info__item_ico3 {
  }

  .asist-info__item_ico4 {
  }

  .asist-info__item_ico5 {
  }

  .asist-info__item_ico6 {
  }

  .asist-info__item_ico7 {
  }

  .asist-info__btn {
  }

  /**************************************************************************************************************/
  .to {
  }

  .to__container {
  }

  .to__title {
  }

  .to__content {
  }

  .to__form-block {
  }

  .to__form-title {
  }

  .to__form {
  }

  .to__list {
  }

  .to__list-item {
  }

  .to__list-item b {
  }

  .to__list-item .text_black {
  }

  .to__text-sep {
  }

  .to__video {
  }

  .to__video video {
  }

  /**************************************************************************************************************/
  .service-contract {
  }

  .service-contract__bg-block {
  }

  .service-contract__bg {
  }

  .service-contract__container {
  }

  .service-contract__title {
  }

  .service-contract__content {
  }

  .service-contract__desc {
  }

  .service-contract__btn {
  }

  /**************************************************************************************************************/
  .contacts {
  }

  .contacts__container {
  }

  .contacts__title {
  }

  .contacts__content {
  }

  .contacts__info {
  }

  .contacts__logo-block {
  }

  .contacts__logo {
  }

  .contacts__logo1 {
  }

  .contacts__logo-text {
  }

  .contacts__logo-text_big {
  }

  .contacts__logo-text_sm {
  }

  .contacts__phone {
  }

  .contacts__addr {
  }

  .contacts__openhours {
  }

  .contacts__btn {
  }
}

@media only screen and (max-width: 1170px) {
  .to__list {
    margin-left: 40px;
    margin-top: 20px;
  }

  .to__form-block {
    width: 300px;
    margin-left: 40px;
  }

  .model__main {
    margin-top: 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .swiper-pagination {
    display: block;
  }
  .car_credit {
    bottom: auto;
    left: 0;
    top: 0px;
  }
  .model__about-btn1 {
    margin-top: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* .container {
        max-width: 930px;
    } */
}

@media only screen and (max-width: 960px) {
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .container {
    max-width: 100%;
  }

  .header {
  }

  .header__container {
  }

  .header__content {
  }

  .header__logo-block {
  }

  .header__logo {
  }

  .header__logo1 {
  }

  .header__logo-text {
  }

  .header__logo-text_big {
  }

  .header__logo-text_sm {
  }

  .header__addr {
  }

  .header__phone {
  }

  .header__btn {
  }

  .header__menu {
  }

  .header__menu-item {
  }

  /**************************************************************************************************************/
  .banner {
  }

  .banner__container {
  }

  .banner__content {
  }

  .banner__title-block {
  }

  .banner__title {
  }

  .banner__title_text-sm {
  }

  .banner_bg-block {
  }

  .banner_bg {
  }

  .banner__title {
  }

  .banner__btn {
  }

  /**************************************************************************************************************/
  .timer {
  }

  .timer__container {
  }

  .timer__content {
  }

  .timer__form-block {
  }

  .timer__form-title {
  }

  .timer__form {
  }

  .timer__timer {
  }

  .timer__timer div[id*="timer"] {
  }

  .timer__timer span[id*="timer"] {
  }

  /**************************************************************************************************************/
  .models-menu {
  }

  .models-menu__container {
  }

  .models-menu__title {
  }

  .models-menu__content {
  }

  .models-menu__item {
  }

  .models-menu__img-block {
  }

  .models-menu__img {
  }

  .models-menu__text {
  }

  /**************************************************************************************************************/
  .models {
  }

  .model {
  }

  .model__container {
  }

  .model__content {
  }

  .model__main {
  }

  .model__info {
  }

  .model__title {
  }

  .model__about-btn1 {
  }

  .model__about-btn1 span {
  }

  .model__btns {
  }

  .model__btn {
  }

  .model__img-block {
  }

  .model__img {
  }

  .model__tech {
  }

  .model__tech-item {
  }

  .model__tech-name {
  }

  .model__tech-val {
  }

  .model__tabs {
  }

  .model__tabs-item {
  }

  .model__tabs-name {
  }

  .model__tabs-img-block {
  }

  .model__tabs-img {
  }

  /**************************************************************************************************************/
  .buy-way {
  }

  .credit {
  }

  .credit__img-block {
  }

  .credit__img {
  }

  .credit__container {
  }

  .credit__content {
  }

  .credit__title {
  }

  .credit__form {
  }

  .leasing {
  }

  .leasing__img-block {
  }

  .leasing__img {
  }

  .leasing__container {
  }

  .leasing__content {
  }

  .leasing__title {
  }

  .leasing__form {
  }

  /****************************************************************************************************/
  .conditions {
  }

  .conditions__container {
  }

  .conditions__content {
  }

  .corp-info {
  }

  .corp-info__img-block {
  }

  .corp-info__img {
  }

  .corp-info__title {
  }

  .corp-info__items {
  }

  .corp-info__item {
  }

  .corp-info__item b {
  }

  .corp-info__item_ico1 {
  }

  .corp-info__item_ico2 {
  }

  .corp-info__item_ico3 {
  }

  .corp-info__item_ico4 {
  }

  .corp-info__item_ico5 {
  }

  .corp-info__item_ico6 {
  }

  .corp-info__btn {
  }

  .asist-info {
  }

  .asist-info__img-block {
  }

  .asist-info__img {
  }

  .asist-info__title {
  }

  .asist-info__items {
  }

  .asist-info__item {
  }

  .asist-info__item b {
  }

  .asist-info__item_ico1 {
  }

  .asist-info__item_ico2 {
  }

  .asist-info__item_ico3 {
  }

  .asist-info__item_ico4 {
  }

  .asist-info__item_ico5 {
  }

  .asist-info__item_ico6 {
  }

  .asist-info__item_ico7 {
  }

  .asist-info__btn {
  }

  /**************************************************************************************************************/
  .to {
  }

  .to__container {
  }

  .to__title {
  }

  .to__content {
  }

  .to__form-block {
  }

  .to__form-title {
  }

  .to__form {
  }

  .to__list {
  }

  .to__list-item {
  }

  .to__list-item b {
  }

  .to__list-item .text_black {
  }

  .to__text-sep {
  }

  .to__video {
  }

  .to__video video {
  }

  /**************************************************************************************************************/
  .service-contract {
  }

  .service-contract__bg-block {
  }

  .service-contract__bg {
  }

  .service-contract__container {
  }

  .service-contract__title {
  }

  .service-contract__content {
  }

  .service-contract__desc {
  }

  .service-contract__btn {
  }

  /**************************************************************************************************************/
  .contacts {
  }

  .contacts__container {
  }

  .contacts__title {
  }

  .contacts__content {
  }

  .contacts__info {
  }

  .contacts__logo-block {
  }

  .contacts__logo {
  }

  .contacts__logo1 {
  }

  .contacts__logo-text {
  }

  .contacts__logo-text_big {
  }

  .contacts__logo-text_sm {
  }

  .contacts__phone {
  }

  .contacts__addr {
  }

  .contacts__openhours {
  }

  .contacts__btn {
  }
}

@media only screen and (min-width: 768px) and (max-width: 834px) {
}

/* mobiles */

@media only screen and (max-width: 767px) {
  .car_credit {
    margin-top: 10px;
    position: relative;
    order: -1;
  }

  .header__content .popup.btn.header__btn {
    display: none;
  }

  .top_phone span {
    display: none;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
  }

  .top_phone {
    margin-right: 0;
    margin-top: 10px;
    width: 100%;
    padding-left: 0;
    text-align: center;
    background-position: 20% 50%;
    font-size: 18px;
    font-weight: 700;
  }

  .top_phone.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 10px 0;
    background: url(../img/ico_phone.png) 20% 70% no-repeat #ffffff;
    animation: blurblack 1s ease-out infinite;
  }

  .top_phone.fixed span {
    display: block;
    animation: none !important;
    margin-bottom: 0;
  }

  .container {
    max-width: 610px;
    padding: 0 15px;
  }

  @keyframes blurblack {
    from {
      text-shadow: 0px 0px 5px #fff, 0px 0px 5px #68a598, 0px 0px 5px #68a598,
        0px 0px 5px #68a598, 0px 0px 5px #68a598, 0px 0px 5px #68a598,
        0px 0px 5px #68a598, 0px 0px 5px #68a598, 0px 0px 10px #68a598,
        0px 0px 10px #68a598;
    }
  }
  .fancybox-type-image {
    width: 100% !important;
    margin: 0px !important;
    left: 0px !important;
  }

  .fancybox-close {
    right: 9px !important;
    top: 9px !important;
  }

  .fancybox-inner {
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .fancybox-wrap {
    margin: 0px !important;
    width: 100% !important;
    left: 0px !important;
    top: 20px !important;
  }

  .fancybox-type-image .fancybox-close {
    top: -8px !important;
  }

  .simple_slider .btn_left {
    display: none !important;
  }

  .simple_slider .btn_right {
    display: none !important;
  }

  .popup_container {
    width: 100%;
  }

  .form_white input::-moz-placeholder {
    color: #fff;
  }

  .form_white input::-webkit-input-placeholder {
    color: #fff;
  }

  .form_white input:-ms-input-placeholder {
    color: #fff;
  }

  .form_white input::placeholder {
    color: #fff;
  }

  .form_white input,
  .form_white textarea,
  .form_white select {
    color: #1c252c;
  }

  .form_white input::placeholder {
    color: #1c252c;
  }

  .form_white input,
  .form_white select {
    border-color: #014637;
  }

  .form_white .agree_field a,
  .form_white .agree_field {
    color: #014637;
  }

  .form_white .agree_field input + .inp_style {
    border-color: #1c252c;
  }

  .form_white .agree_field input + .inp_style:before {
    background: #1c252c;
  }

  .title {
    font-size: 4vw;
    line-height: normal;
  }

  form .form-group_wrapper {
    flex-wrap: wrap;
  }

  form .form-group_wrapper .form-group {
    width: 100% !important;
  }

  .title_white {
    color: inherit;
    margin-top: 20px;
  }

  .text_black {
  }

  .text_upp {
  }

  .btn {
    width: 100%;
  }

  /* common styles END */
  /*************************************************************************************************************************/
  .header .mob-menu-btn {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    z-index: 1;
    order: -1;
  }

  .header .mob-menu-btn span {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    background: #014637;
    transition: all 0.2s linear;
  }

  .header .mob-menu-btn span:nth-child(1) {
    top: 0;
  }

  .header .mob-menu-btn span:nth-child(2) {
    top: calc(50% - 1px);
    opacity: 1;
  }

  .header .mob-menu-btn span:nth-child(3) {
    bottom: 0;
  }

  .header .mob-menu-btn.active span:nth-child(1) {
    transform-origin: top right;
    transform: rotate(-45deg);
    top: -1px;
  }

  .header .mob-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .header .mob-menu-btn.active span:nth-child(3) {
    transform-origin: bottom right;
    transform: rotate(45deg);
    bottom: -1px;
  }

  .header {
  }

  .header__container {
  }

  .header__content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header__logo-block {
    order: -1;
    max-width: 85%;
  }

  .header__logo {
  }

  .header__logo1 {
  }

  .header__logo-text {
    font-size: 11px;
  }

  .header__logo-text_big {
    font-size: 20px;
  }

  .header__logo-text_sm {
  }

  .header__addr {
    display: none;
  }

  .header__phone {
    width: 100%;
    text-align: center;
    display: none;
  }

  .header__btn {
  }

  .header__menu {
    border: none;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    padding: 55px 15px 15px 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100vh;
  }
  
  .header__menu.active {left: 0;}

  .header__menu-item {
    padding-top: 0;
  }

  /*************************************************************************************************************95px*/
  .banner {
    /* overflow: auto; */
    height: auto;
    padding-top: 75px;
  }

  .banner__container {
  }

  .banner__content {
  padding: 0;
  background: none;
  }

  .banner__content:before {
    display: none;
  }

  .banner__title-block {
  }

  .banner__title {
  }

  .banner__title_text-sm {
    position: absolute;
  }

  .banner_bg-block {
    width: calc(100% + 200px);
    /* margin-left: -15px; */
    /* margin-right: -15px; */
    position: relative;
    /* transform: unset; */
    /* left: 37%; */
    margin: 20px 0;
  }

  .banner_bg {
  }

  .banner__title {
    font-size: 4vw;
    margin-top: 0;
    text-align: center;
    width: 100%;
    position: static;
  }

  .banner__btn {
    margin-top: 20px;
  }

  .banner__title_text-sm:nth-child(4) {
    margin-top: 5px;
  }
  /**************************************************************************************************************/
  .timer {
  }

  .timer__container {
  }

  .timer__content {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 35px 15px;
    padding-top: 100px;
  }

  .timer__form-block {
    order: 1;
  }

  .timer__form-title {
    font-size: 4vw;
    text-align: center;
  }

  .timer__form {
  }

  .timer__timer {
    transform: scale(0.5);
    width: 100%;
    position: absolute;
    left: -125px;
    top: 5px;
  }

  .timer__timer div[id*="timer"] {
  }

  .timer__timer span[id*="timer"] {
  }

  /**************************************************************************************************************/
  .models-menu {
    margin-top: 50px;
  }

  .models-menu__container {
  }

  .models-menu__title {
  }

  .models-menu__content {
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 35px;
  }

  .models-menu__item {
    max-width: 49%;
  }

  .models-menu__img-block {
  }

  .models-menu__img {
  }

  .models-menu__text {
  }

  .model .gallery_cont {
    padding: 0px 15px;
  }

  /**************************************************************************************************************/
  .slide2 {
  }

  .slide2 .container {
    flex-wrap: wrap;
  }

  .slide2 .container img {
  }

  .models {
  }

  .model {
  }

  .model__container {
  }

  .model__content {
    padding: 15px 15px;
    position: relative;
  }

  .model__main {
    flex-wrap: wrap;
  }

  .car_benefit {
    font-size: 13px;
    position: static;
    text-align: left;
    justify-content: left;
    /* position: absolute; */
    top: 0;
    margin: 0;
    order: -1;
    margin-left: 0;
    margin-right: auto;
    padding-left: 55px;
    background-position: 0px center;
    /* width: 100%; */
  }

  .model__info {
    width: 100%;
  }

  .model__title {
    order: -3;
    font-size: 6vw;
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }

  .model__about-btn1 {
    width: 100%;
    justify-content: center;
    padding-left: 48px;
    margin-top: 10px;
  }

  .model__about-btn1 span {
  }

  .model__btns {
    margin-top: 10px;
  }

  .model__btn {
  }

  .model__img-block {
    margin: 0 !important;
    order: -1;
    width: 100%;
  }

  .model__img-block:before {
    width: 175px;
    height: 175px;
    right: 0;
    top: 0;
  }

  .model__img {
  }

  .model__tech {
    display: none;
    flex-direction: revert;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 20px;
  }

  .model__tech-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .model__tech-name {
    position: static;
    transform: unset;
    padding-bottom: 10px;
  }

  .model__tech-val {
    width: 65px;
    height: 65px;
    font-size: 20px;
  }

  .model__progress-button {
    right: calc(50% - 50px);
    bottom: -22px;
    transform: scale(0.75);
    /* transform-origin: bottom center; */
  }

  .model__tabs {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: unset;
    row-gap: 7px;
    justify-content: space-between;
    order: -1;
  }

  .model__tabs-item {
    width: 49%;
    height: auto;
  }

  .model__tabs-name {
    /* height: 100%; */
    padding: 0;
  }

  .model__tabs-img-block {
    display: none;
  }

  .model__tabs-img {
  }

  /**************************************************************************************************************/

  .tb_complects tr {
    display: block;
    padding: 18px 10px;
  }
  .tb_complects tr td:nth-child(1) {
    padding-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .resp_table img {
    width: 300px;
  }
  .tb_complects tr td:nth-child(2) {
    width: 100%;
    padding-right: 0;
  }
  .tb_complects tr td:nth-child(3) {
    width: 100%;
    padding-right: 0;
    margin-top: 10px;
  }

  /**************************************************************************************************************/
  .buy-way {
    flex-wrap: wrap;
    gap: 50px;
    /* margin-top: 50px; */
  }

  .credit {
    width: 100%;
    background-size: 500px auto;
    background-position: 50% 0;
  }

  .credit__img-block {
  }

  .credit__img {
  }

  .credit__container {
    padding: 0 15px;
    margin: 0 auto;
  }

  .credit__content {
    position: static;
    margin-top: 15px;
    max-width: 100%;
    padding: 0;
    padding-top: 345px;
  }

  .credit__title {
    text-align: center;
  }

  .credit__form {
  }

  .leasing {
    width: 100%;
    background-size: 500px auto;
    background-position: 50% 0;
  }

  .leasing__img-block {
  }

  .leasing__img {
  }

  .leasing__container {
    padding: 0 15px;
    margin: 0 auto;
  }

  .leasing__content {
    position: static;
    margin-top: 15px;
    max-width: 100%;
    padding: 0;
    padding-top: 345px;
  }

  .leasing__title {
    text-align: center;
  }

  .leasing__form {
  }

  /****************************************************************************************************/
  .conditions {
    margin-top: 50px;
  }

  .conditions__container {
  }

  .conditions__content {
    flex-wrap: wrap;
  }

  .corp-info {
    width: 100%;
  }

  .corp-info__img-block {
  }

  .corp-info__img {
  }

  .corp-info__title {
  }

  .corp-info__items {
    padding: 20px 15px 15px 15px;
  }

  .corp-info__item {
  }

  .corp-info__item b {
  }

  .corp-info__item_ico1 {
  }

  .corp-info__item_ico2 {
  }

  .corp-info__item_ico3 {
  }

  .corp-info__item_ico4 {
  }

  .corp-info__item_ico5 {
  }

  .corp-info__item_ico6 {
  }

  .corp-info__btn {
    margin: 0 15px 0 15px;
    width: calc(100% - 30px);
  }

  .asist-info {
    width: 100%;
    margin-top: 60px;
  }

  .asist-info__img-block {
  }

  .asist-info__img {
  }

  .asist-info__title {
  }

  .asist-info__items {
    padding: 20px 15px 15px 15px;
  }

  .asist-info__item {
  }

  .asist-info__item b {
  }

  .asist-info__item_ico1 {
  }

  .asist-info__item_ico2 {
  }

  .asist-info__item_ico3 {
  }

  .asist-info__item_ico4 {
  }

  .asist-info__item_ico5 {
  }

  .asist-info__item_ico6 {
  }

  .asist-info__item_ico7 {
  }

  .asist-info__btn {
    margin: 0 15px 0 15px;
    width: calc(100% - 30px);
  }

  /**************************************************************************************************************/
  .to {
    margin-top: 50px;
  }

  .to__container {
  }

  .to__title {
  }

  .to__content {
    margin-top: 15px;
    padding: 35px 15px;
  }

  .to__form-block {
    width: 100%;
    margin: 0;
  }

  .to__form-title {
    text-align: center;
  }

  .to__form {
  }

  .to__list {
    margin-left: 0;
  }

  .to__list-item {
    flex-wrap: wrap;
    white-space: normal;
    font-size: 13px;
  }

  .to__list-item b {
    display: block;
    width: 100%;
  }

  .to__list-item .text_black {
  }

  .to__text-sep {
    display: none;
  }

  .to__video {
  }

  .to__video video {
  }

  /**************************************************************************************************************/
  .service-contract {
    height: auto;
    overflow: auto;
    margin-top: 50px;
  }

  .service-contract__bg-block {
    position: static;
    width: 100%;
    left: 0;
    transform: unset;
  }

  .service-contract__bg {
  }

  .service-contract__container {
  }

  .service-contract__title {
    padding-top: 15px;
  }

  .service-contract__content {
  }

  .service-contract__desc {
  }

  .service-contract__btn {
  }

  /**************************************************************************************************************/
  .contacts {
    margin-top: 50px;
  }

  .contacts__container {
  }

  .contacts__title {
  }

  .contacts__content {
    flex-wrap: wrap;
  }

  .contacts__info {
    padding: 35px 15px;
    width: 100%;
  }

  .contacts__logo-block {
  }

  .contacts__logo {
  }

  .contacts__logo1 {
  }

  .contacts__logo-text {
  }

  .contacts__logo-text_big {
  }

  .contacts__logo-text_sm {
  }

  .contacts__phone {
    font-size: 22px;
  }

  .contacts__addr {
  }

  .contacts__openhours {
  }

  .contacts__btn {
  }

  /************************************************************************/
  #map1 {
    margin-left: 0;
    width: 100%;
    max-width: none;
    height: 350px;
    background-position: 50% 50% !important;
  }

  /************************************************************************/
  .corp-info__title,
  .asist-info__title {
    position: relative;
    bottom: 0;
    width: 98%;
    left: 15px;
  }
}

@media only screen and (max-width: 640px) {
}

@media only screen and (max-width: 592px) {
}

@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 480px) {
  .model__tabs {
    /* gap: 4%; */
  }

  .model__tabs-item {
    /* width: 48%; */
    /* height: auto; */
    /* margin-bottom: 10px; */
    /* display: grid; */
    /* align-items: center; */
    /* justify-content: center; */
  }
  .tb_complects tr td .param3 {
    margin-bottom: 10px;
    display: flex;
  }
  .tb_complects tr td .param3 b {
    display: contents;
    margin-bottom: -2px;
  }
  .tb_complects tr td .compl_techs {
    display: block;
  }
}

@media only screen and (max-width: 414px) {
}

@media only screen and (max-width: 375px) {
}

@media only screen and (max-width: 360px) {
  .car_credit {
    width: 100%;
    font-size: 14px;
    padding-left: 54px;
  }
}

@media only screen and (max-width: 320px) {
}

/* **************************************************************************************************************************************** */

/* media END*/

/* FAQ */

.faq {
  padding-bottom: 50px;
}

.menu-accordion {
  width: 100%;
  color: #1c252c;
  font-weight: 300
}

/* .menu-accordion__item {
  border-bottom: .0625em solid rgba(0,0,0,.1)
} */

.menu-accordion__item-head {
  cursor: pointer;
  height: 100%;
  position: relative;
  line-height: 1.36;
  font-weight: 400;
  transition: all .3s ease-in;
  z-index: 2;
  background-color: #fff
}

.menu-accordion__item-head:after {
  content: "";
  position: absolute;
  padding: 0;
  right: .875em;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  transition: all .5s cubic-bezier(.19,1,.22,1)
}

.menu-accordion__item-head:after {
  width: .75em;
  height: .4375em;
  background-image: url(../img/faq-arrow.svg);
}

@media only screen and (min-width: 481px) and (min-aspect-ratio:18/13),only screen and (min-width:769px) {
  .menu-accordion__item-head:after {
      top:calc(50% - .15909em)
  }
}

@media only screen and (max-width: 480px),only screen and (max-width:768px) and (max-aspect-ratio:18/13) {
  .menu-accordion__item-head:after {
      top:calc(50% - .19444em);
      right: 5px;
  }
}

@media only screen and (min-width: 481px) and (min-aspect-ratio:18/13),only screen and (min-width:769px) {
  .menu-accordion__item-head {
      font-size:1.375em;
      padding: .90909em 1.09091em .45455em .90909em;
  }
}

@media only screen and (max-width: 480px),only screen and (max-width:768px) and (max-aspect-ratio:18/13) {
  .menu-accordion__item-head {
      font-size:1.125em;
      padding: 1.11111em 1.33333em .55556em 1.11111em;
  }
}

@media only screen and (min-width: 481px) and (min-aspect-ratio:18/13),only screen and (min-width:769px) {
  .menu-accordion__item-body {
      padding: .90909em 1.09091em .45455em .90909em;
  }
}

@media only screen and (max-width: 480px),only screen and (max-width:768px) and (max-aspect-ratio:18/13) {
  .menu-accordion__item-body {
      padding: 1.11111em 1.33333em .55556em 1.11111em;
  }
}



.menu-accordion__item-head_img {
  background-position: 0;
  background-repeat: no-repeat;
  vertical-align: top
}

@media only screen and (min-width: 481px) and (min-aspect-ratio:18/13),only screen and (min-width:769px) {
  .menu-accordion__item-head_img {
      min-height:4.54545em;
      background-size: 6.81818em 4.54545em;
      padding: 1.81818em 1.09091em 1.81818em 7.72727em;
  }
}

@media only screen and (max-width: 480px),only screen and (max-width:768px) and (max-aspect-ratio:18/13) {
  .menu-accordion__item-head_img {
      min-height:3.55556em;
      background-size: 3.88889em 1.66667em;
      padding: 1.11111em 1.33333em 1.11111em 4.88889em;
  }
}

.menu-accordion__item-head:hover {
  color: rgba(28,37,44,.75);
  transition: all .3s ease-in
}

.menu-accordion__item-head:hover:after {
  opacity: .75
}

.menu-accordion__item-body {
  max-height: 1500em;
  overflow: hidden;
  transition: all .4s ease-in
}

.is-closed .menu-accordion__item-body {
  max-height: 0;
  opacity: 0;
  transition: all .8s cubic-bezier(.19,1,.22,1)
}

.is-closed .menu-accordion__item-head:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 1.5s cubic-bezier(.19,1,.22,1)
}

.menu-accordion__item-body p {
  margin-bottom: 15px;
}

.list-success {
  margin-bottom: 15px;
}

.list-success li strong {
  display: block;
  margin-bottom: 10px;
}

/* COOKIES */

.cookie-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 300px;
  background: white;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  z-index: 9999;
  display: none; /* Сначала скрыто */
}

.cookie-text {
  margin: 0 0 15px 0;
  color: #333;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 0.2s;
}

.accept-btn {
  background: #014637;
  color: white;
}

.accept-btn:hover {
  background: #014637;
}

.hide-btn {
  background: #f0f0f0;
  color: #333;
}

.hide-btn:hover {
  background: #e0e0e0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer_politics {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 35px;
   width: 100%;
   gap: 30px;
}

.footer_politics a {
   font-size: 14px;
}

@media only screen and (max-width: 1250px) {
   .footer_politics {
      gap: 13px;
   }
}


@media only screen and (max-width: 767px) {
   .footer_politics {
      flex-direction: column;
      gap: 20px;
      padding-bottom: 50px;
      text-align: center;
   }

   #CalltouchWidgetFrame {
      position: absolute!important;
      bottom: 100px!important;
   }
}

