/* mixins.less */
/* Variables */
html {
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #656565;
  box-sizing: border-box !important;
  position: relative;
}
@media (min-width: 768px) {
  body {
    padding-top: 135px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 75px;
  }
}
@media (min-width: 768px) {
  body .slide-to {
    margin-top: calc(0px -  135px);
    padding-top: 135px;
  }
}
@media (max-width: 767px) {
  body .slide-to {
    margin-top: calc(0px -  75px);
    padding-top: 75px;
  }
}
.cookie-info {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #656565;
  z-index: 999;
  padding: 10px 20px;
  text-align: center;
}
.cookie-info .btn {
  padding: 5px 20px;
  font-size: 16px;
  margin-left: 5px;
}
.text-align-center {
  text-align: center;
}
input:focus::-webkit-input-placeholder {
  color: transparent !important;
}
input:focus::-moz-placeholder {
  color: transparent !important;
}
input:focus:-ms-input-placeholder {
  color: transparent !important;
}
input:focus:-moz-placeholder {
  color: transparent !important;
}
input:focus::placeholder {
  color: transparent !important;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}
textarea:focus::-moz-placeholder {
  color: transparent !important;
}
textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}
textarea:focus:-moz-placeholder {
  color: transparent !important;
}
textarea:focus::placeholder {
  color: transparent !important;
}
.main-content {
  padding: 60px 0 50px 0;
  min-height: calc(100vh - 409px);
}
@media (max-width: 767px) {
  .main-content {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .main-content {
    padding-top: 68px;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), (-ms-high-contrast: none) and (min-width: 768px) {
  .main-content {
    padding-top: 216px;
  }
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a {
  color: #656565;
}
@media (max-width: 767px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  a {
    text-align: center;
  }
}
.fancybox-infobar span {
  color: #f5f5f5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}
h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
  text-align: center;
}
h1.center::after,
h2.center::after,
h3.center::after,
h4.center::after,
h5.center::after,
h6.center::after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
h1.line,
h2.line,
h3.line,
h4.line,
h5.line,
h6.line {
  margin-bottom: 15px;
}
h1.line::after,
h2.line::after,
h3.line::after,
h4.line::after,
h5.line::after,
h6.line::after {
  position: absolute;
  display: block;
  content: ' ';
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #656565;
}
.f-s-20px {
  font-size: 20px;
}
a {
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover {
  text-decoration: none !important;
  color: #E51C2B;
}
ul.checkmarker {
  list-style: none;
}
ul.checkmarker > li {
  position: relative;
}
ul.checkmarker > li::before {
  position: absolute;
  display: block;
  content: ' ';
  top: 0;
  left: -30px;
  width: 20px;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/check-solid.svg');
  background-size: contain;
}
.orange {
  color: #f47920;
}
.flex {
  display: flex;
}
.a-start {
  align-items: flex-start;
}
.strech {
  align-items: stretch;
}
.center {
  align-items: center;
}
.just-start {
  justify-content: flex-start;
}
.just-center {
  justify-content: center;
}
.just-space-between {
  justify-content: space-between;
}
.just-space-around {
  justify-content: space-around;
}
.column {
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .just-center-on-small {
    justify-content: center;
  }
}
.uppercase {
  text-transform: uppercase;
}
.icon {
  display: block;
  content: ' ';
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.phone {
  background-image: url("../images/phone.svg");
}
.icon.hours {
  background-image: url("../images/clock.svg");
}
.icon.address {
  background-image: url("../images/map-marker.svg");
}
.icon.inst {
  background-image: url("../images/inst.svg");
}
.icon.fb {
  background-image: url("../images/fb.svg");
}
.icon.envel {
  background-image: url("../images/envelope.svg");
}
.icon.home {
  background-image: url("../images/home.svg");
}
.icon.calendar {
  background-image: url("../images/calendar.svg");
}
.icon.road {
  background-image: url("/wp-content/uploads/2023/04/car_info_road.svg");
}
.icon.fuel {
  background-image: url("/wp-content/uploads/2023/04/car_info_fuel.svg");
}
.icon.enging {
  background-image: url("/wp-content/uploads/2023/04/car_info_engine.svg");
}
.icon.type {
  background-image: url("/wp-content/uploads/2023/04/car_info_car.svg");
}
.icon.gearbox {
  background-image: url("/wp-content/uploads/2023/04/car_info_gear-stick.svg");
}
.big-icon {
  width: 30px;
  height: 30px;
}
.small-icon {
  width: 15px;
  height: 15px;
}
@media (max-width: 767px) {
  .hide-on-small {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-on-small {
    display: none !important;
  }
}
*:focus {
  outline: 0 !important;
}
.hide-elem {
  display: none !important;
}
.r-btn-custom span,
.r-btn-custom input,
.r-btn-custom button {
  display: inline;
}
.r-btn-custom button {
  color: #656565;
  text-decoration: none;
  font-style: italic;
  background: none;
  cursor: pointer;
  border: none;
}
.r-btn-custom button:hover {
  text-decoration: underline;
}
.r-btn-custom {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  padding-top: 0;
}
.r-btn-custom input {
  position: absolute;
  opacity: 0;
  width: auto !important;
  cursor: pointer;
}
.r-btn-custom input ~ .checkmark::after {
  display: none;
}
.r-btn-custom input:checked ~ .checkmark::after {
  display: block;
  color: #656565;
}
.r-btn-custom .checkmark {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  padding: 1px;
  border-radius: 0;
  margin-right: 5px;
  margin-bottom: -2px;
  font-size: 18px;
  border: solid 1px #656565;
}
.r-btn-custom .checkmark::after {
  position: absolute;
  left: 0px;
  top: -5px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/check-solid.svg');
  background-size: contain;
  content: " ";
  color: #656565;
}
.r-btn-custom span,
.r-btn-custom button {
  display: inline;
}
.r-btn-custom span.checkmark,
.r-btn-custom button.checkmark {
  display: inline-block;
  background: #ffffff;
}
#more-info {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #more-info {
    text-align: right;
  }
}
/* Safari fix grid*/
.row:before,
.row:after {
  display: inline-block;
}
input.error {
  border-color: red !important;
  box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.7);
}
.r-btn-custom input.error ~ .checkmark {
  border-color: red !important;
  box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, 0.7);
}
/* Header */
.top-navs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
  border: none;
  z-index: 9999;
  background: #ffffff;
}
.top-navs .top-line {
  height: 85px;
  background: #ffffff;
}
.top-navs .top-line .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-navs .top-line .container::before,
.top-navs .top-line .container::after {
  display: none;
}
.top-navs .top-line .container .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navs .top-line .container .logo-box .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navs .top-line .container .logo-box .logo .logo-mobile,
.top-navs .top-line .container .logo-box .logo .logo-desctop {
  height: 46px;
  width: auto;
}
.top-navs .bottom-line {
  background: #1c61ae;
}
.top-navs ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-navs .top-line .container .contact-box {
    display: none;
  }
}
@media (min-width: 768px) and (min-width: 992px) and (max-width: 1199px) {
  .top-navs .top-line .container .leasing-page {
    display: none;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .top-navs.scrolled .top-line .container .logo-box {
    padding-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .top-navs .top-line {
    border-bottom: 1px solid #1c61ae;
    height: 75px;
  }
  .top-navs .top-line .container .logo-box .logo {
    position: relative;
    z-index: 1;
    height: calc(75px  -  1px);
  }
  .top-navs .top-line .container .logo-box .logo .logo-desctop {
    display: none;
  }
  .top-navs .top-line .container .wa-phone-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-navs .top-line .container .wa-phone-mail .cont-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1;
    background: #efefef;
    color: #f47920;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .top-navs .top-line .container .wa-phone-mail .cont-icon.wa-box {
    font-size: 26px;
  }
  .top-navs .top-line .container .contact-box,
  .top-navs .top-line .container .langs {
    display: none;
  }
  .top-navs .bottom-line {
    position: fixed;
    top: 75px;
    left: 100%;
    right: -100%;
    bottom: 0;
    padding-bottom: 60px;
    overflow-x: auto;
  }
  .top-navs .bottom-line .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .top-navs .bottom-line .container .langs,
  .top-navs .bottom-line .container .wa-phone-mail,
  .top-navs .bottom-line .container .menu-navs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .top-navs .bottom-line .container .langs a,
  .top-navs .bottom-line .container .wa-phone-mail a,
  .top-navs .bottom-line .container .menu-navs a {
    display: block;
    color: #ffffff;
  }
  .top-navs .bottom-line .container .langs {
    padding: 15px 0;
  }
  .top-navs .bottom-line .container .langs li {
    padding: 0;
    margin: 0;
  }
  .top-navs .bottom-line .container .langs li a {
    font-size: 22px;
    line-height: 1;
    padding: 5px 10px;
  }
  .top-navs .bottom-line .container .langs li a:hover {
    color: #f47920;
  }
  .top-navs .bottom-line .container .langs li.active a {
    color: #f47920;
  }
  .top-navs .bottom-line .container .menu-navs {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% +  30px);
    flex-direction: column;
  }
  .top-navs .bottom-line .container .menu-navs li {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .top-navs .bottom-line .container .menu-navs li a {
    width: 100%;
    padding: 10px 15px;
    color: #ffffff;
    background: transparent;
  }
  .top-navs .bottom-line .container .menu-navs li a:hover {
    background: #f47920;
  }
  .top-navs .bottom-line .container .menu-navs li.current-menu-item a {
    background: #f47920;
  }
  .top-navs .bottom-line .container .wa-phone-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-navs .bottom-line .container .wa-phone-mail .cont-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 35px;
    height: 35px;
    font-size: 24px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .top-navs .bottom-line .container .wa-phone-mail .cont-icon.wa-box {
    font-size: 30px;
  }
}
@media (max-width: 767px) and (max-width: 575px) {
  .top-navs .top-line .container .wa-phone-mail {
    display: none;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .top-navs .bottom-line .container .wa-phone-mail {
    display: none;
  }
}
@media (max-width: 1200px) {
  .top-navs .col-btn-box {
    display: block;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 60px;
  }
  .top-navs .col-btn-box .col-btn {
    display: block;
    content: '';
    position: relative;
    width: 35px;
    height: 5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    border-radius: 2.5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #E51C2B;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  .top-navs .col-btn-box .col-btn::before,
  .top-navs .col-btn-box .col-btn::after {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    border-radius: 2.5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    display: block;
    content: '';
    background: #E51C2B;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  .top-navs .col-btn-box .col-btn::before {
    top: -10px;
  }
  .top-navs .col-btn-box .col-btn::after {
    bottom: -10px;
  }
}
@media (max-width: 767px) and (max-width: 330px) {
  .top-navs .col-btn-box {
    width: 40px;
  }
}
@media (max-width: 449px) {
  .top-navs .col-btn-box {
    width: 7vw;
  }
  .top-navs .col-btn-box .col-btn {
    width: 7vw;
    height: 1.1vw;
    -webkit-border-radius: 0.6vw;
    -moz-border-radius: 0.6vw;
    border-radius: 0.6vw;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .top-navs .col-btn-box .col-btn::before,
  .top-navs .col-btn-box .col-btn::after {
    height: 1.1vw;
    -webkit-border-radius: 0.6vw;
    -moz-border-radius: 0.6vw;
    border-radius: 0.6vw;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .top-navs .col-btn-box .col-btn::before {
    top: -2.5vw;
  }
  .top-navs .col-btn-box .col-btn::after {
    bottom: -2.5vw;
  }
}
@media (min-width: 1200px) {
  .top-navs .col-btn-box {
    display: none;
  }
}
@media (max-width: 1200px) {
  body.top-navs-opened {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
  }
  body.top-navs-opened #top {
    position: fixed;
    display: block;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: #000000;
    opacity: .5;
    z-index: 999;
  }
  body.top-navs-opened .top-navs::after {
    opacity: 1;
  }
  body.top-navs-opened .top-navs .bottom-line {
    opacity: 1;
    height: auto;
    overflow: auto;
    display: block;
    left: 0;
    right: 0;
  }
  body.top-navs-opened .top-navs .container .col-btn-box {
    z-index: 999999;
  }
  body.top-navs-opened .top-navs .container .col-btn-box .col-btn {
    background: transparent;
  }
  body.top-navs-opened .top-navs .container .col-btn-box .col-btn::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: 0px;
  }
  body.top-navs-opened .top-navs .container .col-btn-box .col-btn::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    bottom: 0px;
  }
}
/* Footer */
footer p,
footer a,
footer span {
  font-size: 15px;
}
footer .top-line {
  padding: 20px 0;
  background: #555555;
}
footer .top-line p,
footer .top-line h1,
footer .top-line h2,
footer .top-line h3,
footer .top-line h4,
footer .top-line h5,
footer .top-line h6,
footer .top-line span,
footer .top-line a {
  color: #ffffff;
}
footer .top-line .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .top-line .logo img {
  max-width: 225px;
}
footer .top-line .text {
  text-align: center;
}
footer .top-line .news-form {
  width: 80%;
}
footer .top-line .news-form input {
  width: calc(100% - 64px);
  background: #444444;
  border: none;
  padding: 10px;
  font-size: 14px;
}
footer .top-line .news-form button {
  text-transform: uppercase;
  padding: 10px;
  font-size: 14px;
  background: #757575;
  color: #ffffff;
  border: none;
  width: 60px;
}
footer .top-line .contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
footer .top-line .contact-box .info-text {
  padding-left: 10px;
}
footer .top-line .contact-box .info-text p {
  padding: 0;
  margin: 0;
}
footer .top-line .contact-box .info {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
@media (min-width: 768px) {
  footer .top-line .contact-box .info .tel-on-big-screen {
    text-decoration: none;
    pointer: default;
  }
}
footer .top-line .small-creen-info {
  text-transform: uppercase;
  font-size: 14px;
  color: #f47920;
  text-align: center;
  padding-top: 30px;
  margin-bottom: -40px;
}
footer .bottom-line {
  background: #444444;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 50px 0;
}
footer .bottom-line .logo img {
  margin-bottom: 20px;
  width: 240px;
}
footer .bottom-line a {
  color: #ffffff;
}
footer.pub-footer {
  background: #0F0F0F;
  color: #ffffff;
}
footer.pub-footer p,
footer.pub-footer a,
footer.pub-footer span {
  color: #ffffff;
}
footer.pub-footer .top-l {
  padding: 42px 0;
}
footer.pub-footer .top-l > .container > .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer.pub-footer .top-l > .container > .row {
    align-items: center;
    flex-direction: column;
  }
}
footer.pub-footer .top-l > .container > .row > div {
  padding-top: 10px;
  padding-bottom: 5px;
}
footer.pub-footer .top-l > .container > .row .logo {
  display: block;
  padding-bottom: 5px;
  margin-top: -5px;
  width: 80%;
  max-width: 296px;
}
footer.pub-footer .top-l > .container > .row .icon-block {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #ffffff;
  margin-bottom: 5px;
}
footer.pub-footer .top-l > .container > .row .icon-block .far,
footer.pub-footer .top-l > .container > .row .icon-block .fas {
  font-size: 20px;
  color: #f47920;
}
footer.pub-footer .bottom-l {
  padding: 5px 0;
  background: #E51C2B;
}
footer.pub-footer .bottom-l > .container .info-block {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 40px;
}
footer.mad-footer {
  background: #21262F;
  color: #ffffff;
}
footer.mad-footer p,
footer.mad-footer a,
footer.mad-footer span {
  color: #ffffff;
}
footer.mad-footer .top-l {
  padding: 20px 0;
}
footer.mad-footer .top-l > .container > .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer.mad-footer .top-l > .container > .row {
    align-items: center;
    flex-direction: column;
  }
}
footer.mad-footer .top-l > .container > .row > div {
  padding-top: 10px;
  padding-bottom: 5px;
}
footer.mad-footer .top-l > .container > .row .logo {
  display: block;
  padding-bottom: 5px;
  margin-top: -5px;
  width: 80%;
  max-width: 296px;
}
footer.mad-footer .top-l > .container > .row .icon-block {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #ffffff;
  margin-bottom: 5px;
}
footer.mad-footer .top-l > .container > .row .icon-block .far,
footer.mad-footer .top-l > .container > .row .icon-block .fas {
  font-size: 20px;
  color: #1c61ae;
}
footer.mad-footer .bottom-l {
  padding: 5px 0;
  background: #323740;
}
footer.mad-footer .bottom-l > .container .info-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* sections */
.more-info-block {
  font-size: 12px;
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-left: 2px solid #E51C2B;
}
.input-form .row {
  margin-right: -5px;
  margin-left: -5px;
}
.input-form .row .col,
.input-form .row .col-1,
.input-form .row .col-10,
.input-form .row .col-11,
.input-form .row .col-12,
.input-form .row .col-2,
.input-form .row .col-3,
.input-form .row .col-4,
.input-form .row .col-5,
.input-form .row .col-6,
.input-form .row .col-7,
.input-form .row .col-8,
.input-form .row .col-9,
.input-form .row .col-auto,
.input-form .row .col-lg,
.input-form .row .col-lg-1,
.input-form .row .col-lg-10,
.input-form .row .col-lg-11,
.input-form .row .col-lg-12,
.input-form .row .col-lg-2,
.input-form .row .col-lg-3,
.input-form .row .col-lg-4,
.input-form .row .col-lg-5,
.input-form .row .col-lg-6,
.input-form .row .col-lg-7,
.input-form .row .col-lg-8,
.input-form .row .col-lg-9,
.input-form .row .col-lg-auto,
.input-form .row .col-md,
.input-form .row .col-md-1,
.input-form .row .col-md-10,
.input-form .row .col-md-11,
.input-form .row .col-md-12,
.input-form .row .col-md-2,
.input-form .row .col-md-3,
.input-form .row .col-md-4,
.input-form .row .col-md-5,
.input-form .row .col-md-6,
.input-form .row .col-md-7,
.input-form .row .col-md-8,
.input-form .row .col-md-9,
.input-form .row .col-md-auto,
.input-form .row .col-sm,
.input-form .row .col-sm-1,
.input-form .row .col-sm-10,
.input-form .row .col-sm-11,
.input-form .row .col-sm-12,
.input-form .row .col-sm-2,
.input-form .row .col-sm-3,
.input-form .row .col-sm-4,
.input-form .row .col-sm-5,
.input-form .row .col-sm-6,
.input-form .row .col-sm-7,
.input-form .row .col-sm-8,
.input-form .row .col-sm-9,
.input-form .row .col-sm-auto,
.input-form .row .col-xl,
.input-form .row .col-xl-1,
.input-form .row .col-xl-10,
.input-form .row .col-xl-11,
.input-form .row .col-xl-12,
.input-form .row .col-xl-2,
.input-form .row .col-xl-3,
.input-form .row .col-xl-4,
.input-form .row .col-xl-5,
.input-form .row .col-xl-6,
.input-form .row .col-xl-7,
.input-form .row .col-xl-8,
.input-form .row .col-xl-9,
.input-form .row .col-xl-auto {
  padding-right: 5px;
  padding-left: 5px;
}
.input-form .row .col input,
.input-form .row .col-1 input,
.input-form .row .col-10 input,
.input-form .row .col-11 input,
.input-form .row .col-12 input,
.input-form .row .col-2 input,
.input-form .row .col-3 input,
.input-form .row .col-4 input,
.input-form .row .col-5 input,
.input-form .row .col-6 input,
.input-form .row .col-7 input,
.input-form .row .col-8 input,
.input-form .row .col-9 input,
.input-form .row .col-auto input,
.input-form .row .col-lg input,
.input-form .row .col-lg-1 input,
.input-form .row .col-lg-10 input,
.input-form .row .col-lg-11 input,
.input-form .row .col-lg-12 input,
.input-form .row .col-lg-2 input,
.input-form .row .col-lg-3 input,
.input-form .row .col-lg-4 input,
.input-form .row .col-lg-5 input,
.input-form .row .col-lg-6 input,
.input-form .row .col-lg-7 input,
.input-form .row .col-lg-8 input,
.input-form .row .col-lg-9 input,
.input-form .row .col-lg-auto input,
.input-form .row .col-md input,
.input-form .row .col-md-1 input,
.input-form .row .col-md-10 input,
.input-form .row .col-md-11 input,
.input-form .row .col-md-12 input,
.input-form .row .col-md-2 input,
.input-form .row .col-md-3 input,
.input-form .row .col-md-4 input,
.input-form .row .col-md-5 input,
.input-form .row .col-md-6 input,
.input-form .row .col-md-7 input,
.input-form .row .col-md-8 input,
.input-form .row .col-md-9 input,
.input-form .row .col-md-auto input,
.input-form .row .col-sm input,
.input-form .row .col-sm-1 input,
.input-form .row .col-sm-10 input,
.input-form .row .col-sm-11 input,
.input-form .row .col-sm-12 input,
.input-form .row .col-sm-2 input,
.input-form .row .col-sm-3 input,
.input-form .row .col-sm-4 input,
.input-form .row .col-sm-5 input,
.input-form .row .col-sm-6 input,
.input-form .row .col-sm-7 input,
.input-form .row .col-sm-8 input,
.input-form .row .col-sm-9 input,
.input-form .row .col-sm-auto input,
.input-form .row .col-xl input,
.input-form .row .col-xl-1 input,
.input-form .row .col-xl-10 input,
.input-form .row .col-xl-11 input,
.input-form .row .col-xl-12 input,
.input-form .row .col-xl-2 input,
.input-form .row .col-xl-3 input,
.input-form .row .col-xl-4 input,
.input-form .row .col-xl-5 input,
.input-form .row .col-xl-6 input,
.input-form .row .col-xl-7 input,
.input-form .row .col-xl-8 input,
.input-form .row .col-xl-9 input,
.input-form .row .col-xl-auto input,
.input-form .row .col textarea,
.input-form .row .col-1 textarea,
.input-form .row .col-10 textarea,
.input-form .row .col-11 textarea,
.input-form .row .col-12 textarea,
.input-form .row .col-2 textarea,
.input-form .row .col-3 textarea,
.input-form .row .col-4 textarea,
.input-form .row .col-5 textarea,
.input-form .row .col-6 textarea,
.input-form .row .col-7 textarea,
.input-form .row .col-8 textarea,
.input-form .row .col-9 textarea,
.input-form .row .col-auto textarea,
.input-form .row .col-lg textarea,
.input-form .row .col-lg-1 textarea,
.input-form .row .col-lg-10 textarea,
.input-form .row .col-lg-11 textarea,
.input-form .row .col-lg-12 textarea,
.input-form .row .col-lg-2 textarea,
.input-form .row .col-lg-3 textarea,
.input-form .row .col-lg-4 textarea,
.input-form .row .col-lg-5 textarea,
.input-form .row .col-lg-6 textarea,
.input-form .row .col-lg-7 textarea,
.input-form .row .col-lg-8 textarea,
.input-form .row .col-lg-9 textarea,
.input-form .row .col-lg-auto textarea,
.input-form .row .col-md textarea,
.input-form .row .col-md-1 textarea,
.input-form .row .col-md-10 textarea,
.input-form .row .col-md-11 textarea,
.input-form .row .col-md-12 textarea,
.input-form .row .col-md-2 textarea,
.input-form .row .col-md-3 textarea,
.input-form .row .col-md-4 textarea,
.input-form .row .col-md-5 textarea,
.input-form .row .col-md-6 textarea,
.input-form .row .col-md-7 textarea,
.input-form .row .col-md-8 textarea,
.input-form .row .col-md-9 textarea,
.input-form .row .col-md-auto textarea,
.input-form .row .col-sm textarea,
.input-form .row .col-sm-1 textarea,
.input-form .row .col-sm-10 textarea,
.input-form .row .col-sm-11 textarea,
.input-form .row .col-sm-12 textarea,
.input-form .row .col-sm-2 textarea,
.input-form .row .col-sm-3 textarea,
.input-form .row .col-sm-4 textarea,
.input-form .row .col-sm-5 textarea,
.input-form .row .col-sm-6 textarea,
.input-form .row .col-sm-7 textarea,
.input-form .row .col-sm-8 textarea,
.input-form .row .col-sm-9 textarea,
.input-form .row .col-sm-auto textarea,
.input-form .row .col-xl textarea,
.input-form .row .col-xl-1 textarea,
.input-form .row .col-xl-10 textarea,
.input-form .row .col-xl-11 textarea,
.input-form .row .col-xl-12 textarea,
.input-form .row .col-xl-2 textarea,
.input-form .row .col-xl-3 textarea,
.input-form .row .col-xl-4 textarea,
.input-form .row .col-xl-5 textarea,
.input-form .row .col-xl-6 textarea,
.input-form .row .col-xl-7 textarea,
.input-form .row .col-xl-8 textarea,
.input-form .row .col-xl-9 textarea,
.input-form .row .col-xl-auto textarea,
.input-form .row .col select,
.input-form .row .col-1 select,
.input-form .row .col-10 select,
.input-form .row .col-11 select,
.input-form .row .col-12 select,
.input-form .row .col-2 select,
.input-form .row .col-3 select,
.input-form .row .col-4 select,
.input-form .row .col-5 select,
.input-form .row .col-6 select,
.input-form .row .col-7 select,
.input-form .row .col-8 select,
.input-form .row .col-9 select,
.input-form .row .col-auto select,
.input-form .row .col-lg select,
.input-form .row .col-lg-1 select,
.input-form .row .col-lg-10 select,
.input-form .row .col-lg-11 select,
.input-form .row .col-lg-12 select,
.input-form .row .col-lg-2 select,
.input-form .row .col-lg-3 select,
.input-form .row .col-lg-4 select,
.input-form .row .col-lg-5 select,
.input-form .row .col-lg-6 select,
.input-form .row .col-lg-7 select,
.input-form .row .col-lg-8 select,
.input-form .row .col-lg-9 select,
.input-form .row .col-lg-auto select,
.input-form .row .col-md select,
.input-form .row .col-md-1 select,
.input-form .row .col-md-10 select,
.input-form .row .col-md-11 select,
.input-form .row .col-md-12 select,
.input-form .row .col-md-2 select,
.input-form .row .col-md-3 select,
.input-form .row .col-md-4 select,
.input-form .row .col-md-5 select,
.input-form .row .col-md-6 select,
.input-form .row .col-md-7 select,
.input-form .row .col-md-8 select,
.input-form .row .col-md-9 select,
.input-form .row .col-md-auto select,
.input-form .row .col-sm select,
.input-form .row .col-sm-1 select,
.input-form .row .col-sm-10 select,
.input-form .row .col-sm-11 select,
.input-form .row .col-sm-12 select,
.input-form .row .col-sm-2 select,
.input-form .row .col-sm-3 select,
.input-form .row .col-sm-4 select,
.input-form .row .col-sm-5 select,
.input-form .row .col-sm-6 select,
.input-form .row .col-sm-7 select,
.input-form .row .col-sm-8 select,
.input-form .row .col-sm-9 select,
.input-form .row .col-sm-auto select,
.input-form .row .col-xl select,
.input-form .row .col-xl-1 select,
.input-form .row .col-xl-10 select,
.input-form .row .col-xl-11 select,
.input-form .row .col-xl-12 select,
.input-form .row .col-xl-2 select,
.input-form .row .col-xl-3 select,
.input-form .row .col-xl-4 select,
.input-form .row .col-xl-5 select,
.input-form .row .col-xl-6 select,
.input-form .row .col-xl-7 select,
.input-form .row .col-xl-8 select,
.input-form .row .col-xl-9 select,
.input-form .row .col-xl-auto select,
.input-form .row .col .file-upload,
.input-form .row .col-1 .file-upload,
.input-form .row .col-10 .file-upload,
.input-form .row .col-11 .file-upload,
.input-form .row .col-12 .file-upload,
.input-form .row .col-2 .file-upload,
.input-form .row .col-3 .file-upload,
.input-form .row .col-4 .file-upload,
.input-form .row .col-5 .file-upload,
.input-form .row .col-6 .file-upload,
.input-form .row .col-7 .file-upload,
.input-form .row .col-8 .file-upload,
.input-form .row .col-9 .file-upload,
.input-form .row .col-auto .file-upload,
.input-form .row .col-lg .file-upload,
.input-form .row .col-lg-1 .file-upload,
.input-form .row .col-lg-10 .file-upload,
.input-form .row .col-lg-11 .file-upload,
.input-form .row .col-lg-12 .file-upload,
.input-form .row .col-lg-2 .file-upload,
.input-form .row .col-lg-3 .file-upload,
.input-form .row .col-lg-4 .file-upload,
.input-form .row .col-lg-5 .file-upload,
.input-form .row .col-lg-6 .file-upload,
.input-form .row .col-lg-7 .file-upload,
.input-form .row .col-lg-8 .file-upload,
.input-form .row .col-lg-9 .file-upload,
.input-form .row .col-lg-auto .file-upload,
.input-form .row .col-md .file-upload,
.input-form .row .col-md-1 .file-upload,
.input-form .row .col-md-10 .file-upload,
.input-form .row .col-md-11 .file-upload,
.input-form .row .col-md-12 .file-upload,
.input-form .row .col-md-2 .file-upload,
.input-form .row .col-md-3 .file-upload,
.input-form .row .col-md-4 .file-upload,
.input-form .row .col-md-5 .file-upload,
.input-form .row .col-md-6 .file-upload,
.input-form .row .col-md-7 .file-upload,
.input-form .row .col-md-8 .file-upload,
.input-form .row .col-md-9 .file-upload,
.input-form .row .col-md-auto .file-upload,
.input-form .row .col-sm .file-upload,
.input-form .row .col-sm-1 .file-upload,
.input-form .row .col-sm-10 .file-upload,
.input-form .row .col-sm-11 .file-upload,
.input-form .row .col-sm-12 .file-upload,
.input-form .row .col-sm-2 .file-upload,
.input-form .row .col-sm-3 .file-upload,
.input-form .row .col-sm-4 .file-upload,
.input-form .row .col-sm-5 .file-upload,
.input-form .row .col-sm-6 .file-upload,
.input-form .row .col-sm-7 .file-upload,
.input-form .row .col-sm-8 .file-upload,
.input-form .row .col-sm-9 .file-upload,
.input-form .row .col-sm-auto .file-upload,
.input-form .row .col-xl .file-upload,
.input-form .row .col-xl-1 .file-upload,
.input-form .row .col-xl-10 .file-upload,
.input-form .row .col-xl-11 .file-upload,
.input-form .row .col-xl-12 .file-upload,
.input-form .row .col-xl-2 .file-upload,
.input-form .row .col-xl-3 .file-upload,
.input-form .row .col-xl-4 .file-upload,
.input-form .row .col-xl-5 .file-upload,
.input-form .row .col-xl-6 .file-upload,
.input-form .row .col-xl-7 .file-upload,
.input-form .row .col-xl-8 .file-upload,
.input-form .row .col-xl-9 .file-upload,
.input-form .row .col-xl-auto .file-upload {
  width: 100%;
  max-width: 100%;
}
.yt-vid-slider .slick-arrow {
  z-index: 99;
}
.yt-vid-slider .slick-prev {
  left: 5px;
}
.yt-vid-slider .slick-next {
  right: 5px;
}
section.important-message {
  background: #f4e320;
  color: #656565;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
}
@media (min-width: 768px) {
  section.important-message {
    margin-top: -30px;
    margin-bottom: 30px;
  }
}
section.covid-banner {
  margin-top: -30px;
  overflow: hidden;
}
section.covid-banner .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  position: relative;
}
section.covid-banner .bg-img .bg-overlay {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .75;
}
section.covid-banner .bg-img .container {
  position: relative;
  z-index: 1;
}
section.covid-banner .bg-img .message-on-slider {
  position: relative;
  z-index: 1;
  background: #dcdcdc;
  font-size: 22px;
  color: #1c61ae;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
}
@media (max-width: 1199px) {
  section.covid-banner .bg-img .message-on-slider {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  section.covid-banner .bg-img .message-on-slider {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  section.covid-banner .bg-img .message-on-slider {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  section.covid-banner .bg-img .message-on-slider {
    font-size: 14px;
  }
}
section.covid-banner .ban-title-box {
  width: 100%;
  background: #f47920;
  padding-right: 10px;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}
section.covid-banner .ban-title-box .ban-title {
  text-transform: none;
  font-size: 39px;
  background: #1c61ae;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}
section.covid-banner .icon-blocks {
  margin: 50px 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
section.covid-banner .icon-blocks .icon-block {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 135px;
  margin: 0 60px;
}
section.covid-banner .icon-blocks .icon-block .key {
  position: absolute;
  top: 0;
  left: 0;
  background: #f47920;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
section.covid-banner .icon-blocks .icon-block .icon {
  margin: 10px;
  margin-top: -15px;
  width: 40px;
  height: 40px;
}
section.covid-banner .icon-blocks .icon-block .text {
  font-size: 25px;
  line-height: 27px;
  color: #444444;
  color: #f47920;
  font-weight: 500;
}
section.covid-banner .bottom {
  width: 100%;
  margin-bottom: 15px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
section.covid-banner .bottom .left-img-box {
  margin-top: -75px;
  margin-left: -75px;
  width: 65%;
  max-width: 320px;
  z-index: 1;
}
section.covid-banner .bottom .left-img-box .left-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  content: '';
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.covid-banner .bottom .right-side {
  z-index: 1;
  color: #1c61ae;
  font-size: 29px;
  text-align: center;
  position: relative;
}
section.covid-banner .bottom .right-side p,
section.covid-banner .bottom .right-side i,
section.covid-banner .bottom .right-side span {
  color: #1c61ae;
}
section.covid-banner .bottom .right-side .text {
  max-width: 250px;
}
section.covid-banner .bottom .right-side .bottom-txt {
  font-weight: bold;
  font-size: 37px;
}
section.covid-banner .bottom .right-side .orange {
  color: #f47920;
}
section.covid-banner .bottom .right-side::after {
  position: absolute;
  display: block;
  content: '';
  left: 50%;
  top: 75%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 300px;
  padding-top: 300px;
  z-index: -1;
  background: #ffffff;
  opacity: .75;
}
section.covid-banner .bottom .btn-box {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  section.covid-banner .bottom .btn-box {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  section.covid-banner .bottom .btn-box {
    left: 45%;
  }
}
@media (max-width: 991px) {
  section.covid-banner .bottom .btn-box .btn {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  section.covid-banner .bottom .btn-box .btn {
    font-size: 12px;
    line-height: 12px;
    padding: 10px 10px;
  }
}
@media (max-width: 1199px) {
  section.covid-banner .bottom .left-img-box {
    margin-top: -65px;
  }
}
@media (max-width: 991px) {
  section.covid-banner .ban-title-box .ban-title {
    font-size: 35px;
    height: 50px;
  }
  section.covid-banner .icon-blocks .icon-block {
    margin: 0 40px;
  }
  section.covid-banner .bottom .left-img-box {
    margin-top: -50px;
  }
  section.covid-banner .bottom .right-side::after {
    width: 260px;
    padding-top: 260px;
  }
}
@media (max-width: 767px) {
  section.covid-banner .ban-title-box .ban-title {
    font-size: 31px;
  }
  section.covid-banner .icon-blocks {
    margin: 20px 0;
    flex-wrap: wrap;
    z-index: 1;
  }
  section.covid-banner .icon-blocks .icon-block {
    margin: 30px;
    z-index: 2;
  }
  section.covid-banner .bottom .left-img-box {
    margin-top: -30px;
    width: 45%;
  }
  section.covid-banner .bottom .right-side::after {
    width: 230px;
    padding-top: 230px;
  }
}
@media (max-width: 575px) {
  section.covid-banner .ban-title-box .ban-title {
    font-size: 4.7vw;
  }
  section.covid-banner .icon-blocks {
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
  }
  section.covid-banner .icon-blocks .icon-block {
    margin: 30px;
    z-index: 2;
  }
  section.covid-banner .bottom {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  section.covid-banner .bottom .left-img-box {
    display: none;
  }
  section.covid-banner .bottom .right-side {
    margin-top: -30px;
    margin-bottom: 0;
    display: none;
  }
  section.covid-banner .bottom .btn-box {
    margin-top: -15px;
  }
}
section.leasing-03-2021 {
  padding-top: 50px;
  position: relative;
  color: #ffffff;
}
@media (min-width: 768px) {
  section.leasing-03-2021 {
    margin-top: -30px;
  }
}
@media (min-width: 576px) {
  section.leasing-03-2021 {
    padding-bottom: 50px;
  }
}
section.leasing-03-2021 p,
section.leasing-03-2021 h1,
section.leasing-03-2021 h2,
section.leasing-03-2021 h3,
section.leasing-03-2021 h4,
section.leasing-03-2021 h5,
section.leasing-03-2021 h6,
section.leasing-03-2021 span,
section.leasing-03-2021 a,
section.leasing-03-2021 li {
  color: #ffffff;
}
section.leasing-03-2021 .sect-bg {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.leasing-03-2021 .sect-bg .overlay {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
section.leasing-03-2021 .sect-bg .overlay::before,
section.leasing-03-2021 .sect-bg .overlay::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .5;
}
section.leasing-03-2021 .sect-bg .overlay::after {
  -webkit-clip-path: polygon(0 0, 55% 0, 35% 100%, 0 100%);
  clip-path: polygon(0 0, 55% 0, 35% 100%, 0 100%);
}
@media (max-width: 767px) {
  section.leasing-03-2021 .sect-bg .overlay::after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 45%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 45%);
  }
}
section.leasing-03-2021 .left-side .fill-in {
  font-size: 27px;
  font-weight: bold;
  color: #ffffff;
  line-height: 29px;
}
section.leasing-03-2021 .left-side .time {
  font-size: 27px;
  line-height: 29px;
  font-weight: bold;
  color: #E51C2B;
}
section.leasing-03-2021 .left-side .no-obligations {
  padding-top: 10px;
  color: #dcdcdc;
  padding-bottom: 20px;
}
section.leasing-03-2021 .left-side .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  section.leasing-03-2021 .left-side .fill-in,
  section.leasing-03-2021 .left-side .time,
  section.leasing-03-2021 .left-side .no-obligations {
    text-align: center;
  }
  section.leasing-03-2021 .left-side .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 767px) {
  section.leasing-03-2021-pub .leasing-row-2021 {
    display: flex;
    align-items: stretch;
  }
}
section.leasing-03-2021-pub .right-side {
  position: relative;
}
@media (min-width: 992px) {
  section.leasing-03-2021-pub .right-side {
    display: flex;
    align-items: center;
  }
}
section.leasing-03-2021-pub .right-side .icon-blocks {
  margin: 50px 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.leasing-03-2021-pub .right-side .icon-blocks .icon-block {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 25%;
  margin: 20px 0;
}
section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .key {
  position: absolute;
  top: 0;
  left: 0;
  background: #E51C2B;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .icon {
  margin: 10px;
  margin-top: -15px;
  width: 60px;
  height: 60px;
}
section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .text {
  font-size: 22px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 1199px) {
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .icon {
    width: 40px;
    height: 40px;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .text {
    font-size: 20px;
    line-height: 23px;
  }
}
@media (max-width: 991px) {
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block {
    width: 40%;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .icon {
    width: 50px;
    height: 50px;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .text {
    font-size: 20px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block {
    width: 25%;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .icon {
    width: 50px;
    height: 50px;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .text {
    font-size: 20px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  section.leasing-03-2021-pub .right-side .icon-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block {
    width: 140px;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .icon {
    width: 60px;
    height: 60px;
  }
  section.leasing-03-2021-pub .right-side .icon-blocks .icon-block .text {
    font-size: 20px;
    line-height: 23px;
  }
}
section.leasing-03-2021-pub .right-side .bottom {
  width: 100%;
  margin-bottom: 15px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 767px) {
  section.leasing-03-2021-pub .right-side .bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
  }
}
section.leasing-03-2021-pub .right-side .bottom .left-img-box {
  margin-bottom: 150px;
  margin-left: 50px;
  width: 45%;
  max-width: 200px;
  z-index: 2;
}
section.leasing-03-2021-pub .right-side .bottom .left-img-box .left-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  content: '';
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -o-transform: rotate(23deg);
}
section.leasing-03-2021-pub .right-side .bottom .right-side {
  z-index: 1;
  color: #1c61ae;
  font-size: 29px;
  text-align: center;
  position: relative;
}
section.leasing-03-2021-pub .right-side .bottom .right-side p,
section.leasing-03-2021-pub .right-side .bottom .right-side i,
section.leasing-03-2021-pub .right-side .bottom .right-side span {
  color: #1c61ae;
}
section.leasing-03-2021-pub .right-side .bottom .right-side .text {
  max-width: 250px;
}
section.leasing-03-2021-pub .right-side .bottom .right-side .bottom-txt {
  font-weight: bold;
  font-size: 37px;
}
section.leasing-03-2021-pub .right-side .bottom .right-side .orange {
  color: #f47920;
}
section.leasing-03-2021-pub .right-side .bottom .right-side::after {
  position: absolute;
  display: block;
  content: '';
  left: 50%;
  top: 75%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 300px;
  padding-top: 300px;
  z-index: -1;
  background: #ffffff;
  opacity: .75;
}
@media (max-width: 1199px) {
  section.leasing-03-2021-pub .right-side .bottom .left-img-box {
    max-width: 190px;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  section.leasing-03-2021-pub .right-side .bottom {
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  section.leasing-03-2021-pub .right-side .bottom .left-img-box {
    margin-bottom: 65px;
    max-width: 190px;
  }
}
@media (max-width: 766px) {
  section.leasing-03-2021-pub .right-side .bottom .left-img-box {
    margin-bottom: -35px;
    max-width: 170px;
  }
  section.leasing-03-2021-pub .right-side .bottom .right-side {
    margin-bottom: -60px;
  }
}
@media (max-width: 766px) {
  section.leasing-03-2021-pub .right-side .bottom {
    display: none;
  }
}
section.leasing-03-2021-pub .right-side .stamp {
  position: absolute;
  display: block;
  content: '';
  height: 150px;
  width: 150px;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.leasing-03-2021-pub .right-side .right-side-box {
  padding-left: 200px;
}
section.leasing-03-2021-pub .right-side .right-side-box .title-box {
  position: relative;
  padding-left: 5px;
  z-index: 1;
}
section.leasing-03-2021-pub .right-side .right-side-box .title-box::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  left: 0;
  top: 0;
  width: 100vw;
  -webkit-clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
  background: #1c61ae;
  z-index: -1;
}
section.leasing-03-2021-pub .right-side .right-side-box .title-box .title {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 10px 30px;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
}
section.leasing-03-2021-pub .right-side .right-side-box .title-box .title::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  left: 0;
  top: 0;
  width: 100vw;
  -webkit-clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
  background: #f47920;
  z-index: -1;
}
section.leasing-03-2021-pub .right-side .right-side-box .right-block {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
section.leasing-03-2021-pub .right-side .right-side-box .right-block:last-child {
  border: none;
}
section.leasing-03-2021-pub .right-side .right-side-box .right-block .line {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #ffffff;
}
section.leasing-03-2021-pub .right-side .right-side-box .right-block .line i {
  color: #f47920;
  margin-right: 10px;
  font-size: 24px;
}
section.leasing-03-2021-pub .right-side .bottom-box {
  width: 250px;
  z-index: 1;
  color: #ffffff;
  font-size: 29px;
  text-align: center;
  position: absolute;
  left: -15px;
  bottom: -45px;
  -webkit-transform: translate(-25%, 0);
  -moz-transform: translate(-25%, 0);
  -ms-transform: translate(-25%, 0);
  -o-transform: translate(-25%, 0);
}
section.leasing-03-2021-pub .right-side .bottom-box p,
section.leasing-03-2021-pub .right-side .bottom-box i,
section.leasing-03-2021-pub .right-side .bottom-box span {
  color: #ffffff;
}
section.leasing-03-2021-pub .right-side .bottom-box .text {
  max-width: 250px;
}
section.leasing-03-2021-pub .right-side .bottom-box .bottom-txt {
  font-weight: bold;
  font-size: 37px;
}
section.leasing-03-2021-pub .right-side .bottom-box::after {
  position: absolute;
  display: block;
  content: '';
  left: 50%;
  top: 75%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 300px;
  padding-top: 300px;
  z-index: -1;
  background: #f47920;
  opacity: .75;
}
@media (max-width: 991px) {
  section.leasing-03-2021-pub .right-side .right-side-box {
    padding-left: 150px;
    padding-top: 50px;
  }
  section.leasing-03-2021-pub .right-side .bottom-box {
    -webkit-transform: translate(10%, 0);
    -moz-transform: translate(10%, 0);
    -ms-transform: translate(10%, 0);
    -o-transform: translate(10%, 0);
  }
}
@media (max-width: 767px) {
  section.leasing-03-2021-pub .right-side .bottom-box {
    -webkit-transform: translate(-25%, 0);
    -moz-transform: translate(-25%, 0);
    -ms-transform: translate(-25%, 0);
    -o-transform: translate(-25%, 0);
  }
}
@media (max-width: 766px) {
  section.leasing-03-2021-pub .right-side .stamp {
    left: 50%;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
  }
  section.leasing-03-2021-pub .right-side .right-side-box {
    padding: 0;
    padding-top: 175px;
    padding-bottom: 135px;
  }
  section.leasing-03-2021-pub .right-side .bottom-box {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}
@media (max-width: 575px) {
  section.leasing-03-2021-pub .right-side .right-side-box {
    padding-bottom: 160px;
  }
  section.leasing-03-2021-pub .right-side .bottom-box {
    bottom: 0;
  }
}
@media (min-width: 767px) {
  section.leasing-03-2021-mad .leasing-row-2021 {
    display: flex;
    align-items: stretch;
  }
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% +  30px);
  display: flex;
  flex-wrap: wrap;
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block {
  width: 50%;
  padding: 8px 15px;
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .tlt-box {
  width: 100%;
  margin-bottom: 5px;
  padding-right: 5px;
  background: #1c61ae;
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .tlt-box .tlt {
  width: 100%;
  padding: 3px 0;
  padding-right: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background: #f47920;
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .line {
  font-size: 20px;
  margin: 10px 0;
  color: #ffffff;
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .line i {
  color: #f47920;
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .img-box {
  width: 200px;
  max-width: 100%;
  margin: auto;
}
section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .img-box .img {
  width: 100%;
  padding-top: 100%;
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -o-transform: rotate(23deg);
}
@media (max-width: 1199px) {
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block {
    width: 350px;
    max-width: 50%;
  }
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .tlt-box .tlt {
    font-size: 22px;
  }
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .line {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block {
    width: 350px;
    margin: auto;
    max-width: 100%;
    padding: 8px 15px;
  }
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .tlt-box .tlt {
    font-size: 22px;
  }
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block .line {
    font-size: 16px;
  }
  section.leasing-03-2021-mad .right-side .info-blocks-2021 .info-block.img-outer-box {
    display: none;
  }
}
section.leasing-04-2021 {
  padding-top: 50px;
  position: relative;
  color: #ffffff;
}
@media (min-width: 768px) {
  section.leasing-04-2021 {
    margin-top: -30px;
  }
}
@media (min-width: 576px) {
  section.leasing-04-2021 {
    padding-bottom: 50px;
  }
}
section.leasing-04-2021 p,
section.leasing-04-2021 h1,
section.leasing-04-2021 h2,
section.leasing-04-2021 h3,
section.leasing-04-2021 h4,
section.leasing-04-2021 h5,
section.leasing-04-2021 h6,
section.leasing-04-2021 span,
section.leasing-04-2021 a,
section.leasing-04-2021 li {
  color: #ffffff;
}
section.leasing-04-2021 .sect-bg {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.leasing-04-2021 .sect-bg .overlay {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
section.leasing-04-2021 .sect-bg .overlay::before,
section.leasing-04-2021 .sect-bg .overlay::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .5;
}
section.leasing-04-2021 .sect-bg .overlay::after {
  -webkit-clip-path: polygon(0 0, 50% 0, 40% 100%, 0 100%);
  clip-path: polygon(0 0, 50% 0, 40% 100%, 0 100%);
}
@media (min-width: 992px) {
  section.leasing-04-2021 .sect-bg .overlay::after {
    -webkit-clip-path: polygon(0 0, 45% 0, 35% 100%, 0 100%);
    clip-path: polygon(0 0, 45% 0, 35% 100%, 0 100%);
  }
}
@media (max-width: 767px) {
  section.leasing-04-2021 .sect-bg .overlay::after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 45%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 45%);
  }
}
section.leasing-04-2021 .left-side {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  section.leasing-04-2021 .left-side {
    min-height: 589px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  section.leasing-04-2021 .left-side {
    min-height: 669px;
  }
}
section.leasing-04-2021 .left-side .fill-in {
  font-size: 27px;
  font-weight: bold;
  color: #ffffff;
  line-height: 29px;
}
section.leasing-04-2021 .left-side .time {
  font-size: 27px;
  line-height: 29px;
  font-weight: bold;
  color: #f47920;
}
section.leasing-04-2021 .left-side .no-obligations {
  padding-top: 10px;
  color: #dcdcdc;
  padding-bottom: 20px;
}
section.leasing-04-2021 .left-side .r-btn-custom {
  margin-top: 5px;
}
section.leasing-04-2021 .left-side .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  section.leasing-04-2021 .left-side .fill-in,
  section.leasing-04-2021 .left-side .time,
  section.leasing-04-2021 .left-side .no-obligations {
    text-align: center;
  }
  section.leasing-04-2021 .left-side .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 767px) {
  section.leasing-04-2021-mad .leasing-row-2021 {
    display: flex;
    align-items: stretch;
  }
}
section.leasing-04-2021-mad .right-side .right-info .info-tlt {
  position: relative;
  z-index: 1;
  height: 45px;
  font-size: 26px;
  padding-left: 30px;
  display: flex;
  align-items: center;
}
section.leasing-04-2021-mad .right-side .right-info .info-tlt::before,
section.leasing-04-2021-mad .right-side .right-info .info-tlt::after {
  z-index: -1;
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  top: 0;
  width: 100vw;
  -webkit-clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%);
}
section.leasing-04-2021-mad .right-side .right-info .info-tlt::before {
  left: 0;
  background: #1c61ae;
}
section.leasing-04-2021-mad .right-side .right-info .info-tlt::after {
  left: 5px;
  background: #f47920;
}
section.leasing-04-2021-mad .right-side .right-info .list-elems {
  padding-left: 20px;
  padding-top: 15px;
  font-size: 24px;
}
@media (max-width: 1199px) {
  section.leasing-04-2021-mad .right-side .right-info .list-elems {
    font-size: 19px;
  }
}
@media (max-width: 766px) and (min-width: 576px) {
  section.leasing-04-2021-mad .right-side .right-info .list-elems {
    width: 50%;
  }
}
section.leasing-04-2021-mad .right-side .right-info .list-elems .line {
  padding: 10px 0;
}
section.leasing-04-2021-mad .right-side .right-info .list-elems .line i {
  color: #f47920;
}
@media (min-width: 767px) {
  section.leasing-04-2021-mad .right-side {
    display: flex;
    justify-content: flex-end;
    padding-top: 145px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  section.leasing-04-2021-mad .right-side .right-info {
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
  section.leasing-04-2021-mad .right-side .right-info .info-tlt {
    width: 80%;
  }
  section.leasing-04-2021-mad .right-side .right-info .list-elems {
    max-width: 219px;
    padding-left: 20px;
    padding-top: 15px;
    font-size: 17px;
  }
  section.leasing-04-2021-mad .right-side .right-info .list-elems .line {
    padding: 10px 0;
  }
  section.leasing-04-2021-mad .right-side .right-info .list-elems .line i {
    color: #f47920;
  }
}
@media (min-width: 992px) {
  section.leasing-04-2021-mad .right-side .right-info {
    max-width: calc(100% -  150px);
  }
}
@media (max-width: 766px) {
  section.leasing-04-2021-mad .right-side {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 766px) {
  section.leasing-04-2021-mad .right-side {
    margin-top: 20px;
    margin-bottom: 100px;
  }
}
section.leasing-04-2021-mad .banner-tlt {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  left: 0%;
  width: 100%;
  top: 30px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
}
@media (min-width: 767px) {
  section.leasing-04-2021-mad .banner-tlt {
    left: 42.9%;
    width: 57.1%;
    top: 30px;
    height: 90px;
    font-size: 3.5vw;
    padding: 30px;
  }
}
@media (min-width: 767px) and (min-width: 992px) {
  section.leasing-04-2021-mad .banner-tlt {
    padding-right: 13vw;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  section.leasing-04-2021-mad .banner-tlt {
    left: 47.9%;
    width: 52.1%;
  }
}
@media (max-width: 766px) {
  section.leasing-04-2021-mad .banner-tlt {
    display: none;
  }
}
section.leasing-04-2021-mad .discount {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 5vw;
  padding-right: 1vw;
  width: 16vw;
  height: 16vw;
  right: -2vw;
  font-weight: 600;
  font-size: 1.6vw;
  text-transform: uppercase;
  z-index: 1;
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
}
@media (min-width: 992px) {
  section.leasing-04-2021-mad .discount {
    top: -6vw;
  }
}
section.leasing-04-2021-mad .discount span {
  font-size: 1.9vw;
}
section.leasing-04-2021-mad .discount::before {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f47920;
  opacity: .75;
  z-index: -1;
}
@media (max-width: 1499px) and (min-width: 1200px) {
  section.leasing-04-2021-mad .discount {
    padding-top: 3vw;
    padding-right: 1vw;
    top: -4.5vw;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  section.leasing-04-2021-mad .discount {
    width: 18vw;
    height: 18vw;
    font-size: 1.7vw;
    top: -3vw;
    right: -3vw;
  }
  section.leasing-04-2021-mad .discount span {
    font-size: 3vw;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  section.leasing-04-2021-mad .discount {
    width: 30vw;
    height: 30vw;
    font-size: 4vw;
    padding-bottom: 4vw;
    bottom: -7vw;
    right: -4vw;
  }
  section.leasing-04-2021-mad .discount span {
    font-size: 5.5vw;
    padding-right: 2vw;
  }
}
@media (max-width: 766px) and (min-width: 576px) {
  section.leasing-04-2021-mad .discount {
    width: 50vw;
    height: 50vw;
    font-size: 5vw;
    padding-bottom: 5vw;
    bottom: -15vw;
    right: -7vw;
  }
  section.leasing-04-2021-mad .discount span {
    font-size: 8vw;
    padding-right: 3vw;
  }
}
@media (max-width: 575px) {
  section.leasing-04-2021-mad .discount {
    width: 160px;
    height: 160px;
    font-size: 16px;
    padding-bottom: 20px;
    bottom: -50px;
    right: -20px;
  }
  section.leasing-04-2021-mad .discount span {
    font-size: 20px;
    padding-right: 5px;
  }
}
section.leasing-04-2021-mad .left-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding-left: 3vw;
  padding-right: 30px;
  top: 270px;
  left: 38.5%;
  width: 250px;
  height: 180px;
  font-size: 24px;
  line-height: 1.1;
  z-index: 1;
}
section.leasing-04-2021-mad .left-box::before {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #f47920;
  opacity: .75;
  z-index: -1;
  -webkit-clip-path: polygon(2.5vw 0.5vw, calc(100% - 50px) 0, 100% calc(100% - 3vw), 0 100%);
  clip-path: polygon(2.5vw 0.5vw, calc(100% - 50px) 0, 100% calc(100% - 3vw), 0 100%);
}
@media (max-width: 991px) {
  section.leasing-04-2021-mad .left-box {
    left: 44.2%;
    width: 200px;
    font-size: 19px;
    line-height: 1.1;
    padding-left: 5.3vw;
  }
  section.leasing-04-2021-mad .left-box::before {
    -webkit-clip-path: polygon(2.3vw 0.5vw, calc(100% - 50px) 0, 100% calc(100% - 3vw), 0 100%);
    clip-path: polygon(2.3vw 0.5vw, calc(100% - 50px) 0, 100% calc(100% - 3vw), 0 100%);
  }
}
@media (max-width: 766px) {
  section.leasing-04-2021-mad .left-box {
    display: none;
  }
}
section.leasing-04-2021-mad .only {
  position: absolute;
  left: 41%;
  top: 57%;
  width: 230px;
  height: 170px;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  section.leasing-04-2021-mad .only {
    left: 50%;
    top: 380px;
    width: 150px;
  }
}
@media (max-width: 766px) {
  section.leasing-04-2021-mad .only {
    display: none;
  }
}
section.message-under-slider {
  position: relative;
  z-index: 9;
  background: #dcdcdc;
  font-size: 22px;
  color: #1c61ae;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
}
@media (max-width: 1199px) {
  section.message-under-slider {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  section.message-under-slider {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  section.message-under-slider {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  section.message-under-slider {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  section.leasing-2022 .leasing-row-2021 {
    display: flex;
    align-items: stretch;
  }
}
section.leasing-2022 .right-side {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
section.leasing-2022 .right-side .right-side-content {
  width: calc(100% +  15px);
  margin-right: -15px;
}
@media (min-width: 768px) {
  section.leasing-2022 .right-side .right-side-content {
    width: calc(100% +  calc(50vw - 360px));
    margin-right: calc(360px - 50vw);
    padding-left: 90px;
  }
}
@media (min-width: 992px) {
  section.leasing-2022 .right-side .right-side-content {
    width: calc(100% +  calc(50vw - 470px));
    margin-right: calc(470px - 50vw);
    padding-left: 135px;
  }
}
@media (min-width: 1200px) {
  section.leasing-2022 .right-side .right-side-content {
    width: calc(100% +  calc(50vw - 570px));
    margin-right: calc(570px - 50vw);
  }
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box {
  -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  background: #005BBB;
  padding-left: 15px;
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box {
  -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  background: #FFD500;
  padding-left: 15px;
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box {
  -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
  background: #f47920;
  padding: 15px 40px;
  padding-left: 65px;
  color: #ffffff;
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: none;
  padding: 0;
  padding-bottom: 15px;
  margin: 0;
  text-align: left;
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box .descr {
  font-size: 16px;
  padding: 0;
  padding-bottom: 15px;
  margin: 0;
  text-align: left;
}
section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box .descr p {
  text-align: left;
}
@media (max-width: 575px) {
  section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box {
    padding-left: 3vw;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box {
    padding-left: 3vw;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box {
    padding: 3vw 6vw;
    padding-left: 50px;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box .title {
    padding-bottom: 3vw;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-info-outer-box .right-side-info-inner-box .right-side-info-box .descr {
    font-size: 3.5vw;
    padding-bottom: 3vw;
  }
}
section.leasing-2022 .right-side .right-side-content .slogan {
  position: relative;
  z-index: 1;
  line-height: 1;
  display: inline-block;
  background: #ffffff;
  font-weight: bold;
  color: #005BBB;
  font-size: 27px;
  padding: 5px 10px;
  margin-left: 95px;
  margin-top: -15px;
}
@media (max-width: 575px) {
  section.leasing-2022 .right-side .right-side-content .slogan {
    font-size: 4vw;
    padding: 2vw 4vw;
    margin-left: calc(50px +  6vw);
    margin-top: -3vw;
    position: absolute;
  }
}
section.leasing-2022 .right-side .right-side-content .right-side-box {
  margin-top: 50px;
  padding-left: 50px;
  width: 100%;
}
section.leasing-2022 .right-side .right-side-content .right-side-box .title-box {
  -webkit-clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
  background: #005BBB;
  padding-left: 10px;
}
section.leasing-2022 .right-side .right-side-content .right-side-box .title-box .title {
  -webkit-clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
  background: #f47920;
  padding: 5px;
  padding-left: 15px;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
}
section.leasing-2022 .right-side .right-side-content .right-side-box .right-block {
  display: inline-block;
}
section.leasing-2022 .right-side .right-side-content .right-side-box .right-block .line {
  padding: 5px 10px;
}
section.leasing-2022 .right-side .right-side-content .right-side-box .right-block .line .far {
  margin-right: 5px;
  color: #f47920;
}
@media (max-width: 575px) {
  section.leasing-2022 .right-side .right-side-content .right-side-box {
    margin-left: 0px;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-box .title-box {
    padding-left: 3.4vw;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-box .title-box .title {
    padding: 1.7vw;
    padding-left: 5.1vw;
    margin-bottom: 3.4vw;
  }
  section.leasing-2022 .right-side .right-side-content .right-side-box .right-block .line {
    padding: 1.7vw 3.4vw;
  }
}
section.rotation-banner {
  margin-top: -75px;
  position: relative;
  width: 100%;
}
section.rotation-banner .important-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 0, 0, 0.7);
  z-index: 9;
  text-align: center;
}
@media (min-width: 1371px) {
  section.rotation-banner .important-message {
    font-size: 20px;
  }
}
@media (max-width: 1380px) {
  section.rotation-banner .important-message {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  section.rotation-banner .important-message {
    font-size: 14px;
  }
}
@media (max-width: 1370px) {
  section.rotation-banner {
    margin-top: -25px;
  }
}
section.rotation-banner .banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 60vh;
  position: relative;
}
section.rotation-banner .banner::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: ' ';
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#251f4a+0,251f4a+100&1+0,0.7+25,0.15+45,0.15+100,0+100 */
  background: -moz-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#0000004a', GradientType=1);
  /* IE6-9 */
}
@media (max-width: 767px) {
  section.rotation-banner .banner::after {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#251f4a+0,251f4a+100&1+0,0.7+25,0.15+45,0.15+100,0+100 */
    background: -moz-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.15) 85%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.15) 85%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.15) 85%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#0000004a', GradientType=1);
    /* IE6-9 */
  }
}
section.rotation-banner .banner .info-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 10;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  section.rotation-banner .banner .info-box {
    align-items: flex-end;
  }
}
section.rotation-banner .banner .info-box .eur-per-month {
  position: relative;
  height: 134px;
  margin-bottom: 20px;
}
section.rotation-banner .banner .info-box .eur-per-month .eur {
  font-size: 134px;
  font-weight: bold;
  color: #f47920;
  position: absolute;
  top: 0;
  left: 0;
  height: 134px;
}
section.rotation-banner .banner .info-box .eur-per-month .eur .eur-sign {
  position: absolute;
  left: 100%;
  bottom: -20px;
  font-size: 92px;
  font-weight: bold;
  color: #f47920;
  height: 92px;
  display: inline-block;
}
section.rotation-banner .banner .info-box .eur-per-month .eur .eur-sign .month {
  position: absolute;
  left: 100%;
  bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  height: 30px;
  display: inline-block;
}
section.rotation-banner .banner .info-box .text {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  section.rotation-banner .banner .info-box .text {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  section.rotation-banner .banner .info-box .text {
    font-size: 20px;
  }
}
@media (max-width: 499px) {
  section.rotation-banner .banner .info-box .text {
    font-size: 16px;
  }
}
section.intro-info {
  background: #656565;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/intro_info_bg.jpg");
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(50% + 45px) calc(100% - 30px), 50% 100%, calc(50% - 45px) calc(100% - 30px), 0 calc(100% - 30px));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(50% + 45px) calc(100% - 30px), 50% 100%, calc(50% - 45px) calc(100% - 30px), 0 calc(100% - 30px));
  z-index: 2;
}
section.intro-info .container {
  padding-top: 30px;
  padding-bottom: 60px;
}
section.intro-info .container .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
section.intro-info .container .row .info-block {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
section.intro-info .container .row .info-block .icon {
  display: block;
  width: 100px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: ' ';
}
@media (min-width: 768px) {
  section.intro-info .container .row .info-block .icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  section.intro-info .container .row .info-block .icon {
    margin-right: 20px;
  }
}
section.intro-info .container .row .info-block .icon.first {
  background-image: url("../images/first.svg");
}
section.intro-info .container .row .info-block .icon.wheel {
  background-image: url("../images/wheel.svg");
}
section.intro-info .container .row .info-block .icon.clients {
  background-image: url("../images/icon_clients.svg");
}
section.intro-info .container .row .info-block .icon.proc {
  background-image: url("../images/proc.svg");
}
section.intro-info .container .row .info-block .icon.cars {
  background-image: url("../images/icon_cars.svg");
}
@media (max-width: 768px) {
  section.intro-info .container .row .info-block .icon {
    margin-right: 0;
    margin-bottom: 10px;
    width: 60px;
    height: 40px;
  }
}
section.intro-info .container .row .info-block .title-top {
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 768px) {
  section.intro-info .container .row .info-block .title-top {
    font-size: 18px;
  }
}
section.intro-info .container .row .info-block .title-bottom {
  font-size: 15px;
}
@media (max-width: 768px) {
  section.intro-info .container .row .info-block .title-bottom {
    font-size: 14px;
  }
}
section.index-cars {
  margin-top: -30px;
  padding: 60px 0;
  background: #ffffff;
}
section.index-cars .small-btn {
  width: 100%;
}
section.index-cars .small-btn button {
  font-size: 16px;
  text-transform: none;
  width: auto;
  padding: 5px 10px;
  padding-right: 25px;
  background: #f5f5f5;
  color: #656565;
  border: 1px solid #656565;
}
section.index-cars .small-btn button:focus {
  outline: none;
}
@media (min-width: 768px) {
  section.index-cars .cars-info-slider {
    display: flex;
    align-items: stretch;
    justify-content: left;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  section.index-cars .car {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  section.index-cars .car {
    max-width: 450px;
    margin: auto;
  }
}
section.index-cars .car .img {
  width: 100%;
  padding-top: 60%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  /*&::after {
					display: block;
					content: ' ';
					position: absolute;
					top: 80%;
					left: 50%;
					right: 5%;
					bottom: 5%;
					background-color: @white-c;
					-webkit-mask: url('../images/logo-bottom.svg') no-repeat 50% 50%;
					mask: url('../images/logo-bottom.svg') no-repeat 50% 50%;
					opacity: .5;
				}*/
}

section.index-cars .car .auction_box_upper .img{
  padding-top: 100%;
}
:lang(ru-RU) section.index-cars .car .auction_box_upper .img {
  padding-top: 108.3%;
}
section.index-cars .car .img .discount {
  position: absolute;
  left: -29px;
  top: 19px;
  padding: 5px 25px;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  background: #E51C2B;
  width: 126px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
}
section.index-cars .car .img .spec-text {
  position: absolute;
  padding: 5px 25px;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  background: #f47920;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
  width: 155px;
  left: -36px;
  top: 28px;
  text-transform: uppercase;
  z-index: 9;
}
section.index-cars .car .img .place {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  background: #f47920;
}
section.index-cars .car .short-txt {
  background: #efefef;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.index-cars .car .car-open-imgs .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section.index-cars .car .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 15px;
  min-height: 70px;
  background: #656565;
}
@media (max-width: 1199px) and (min-width: 992px) {
  section.index-cars .car .info {
    min-height: 95px;
  }
}
section.index-cars .car .info .detail-box {
  padding: 5px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
@media (min-width: 768px) and (max-width: 991px) {
  section.index-cars .car .info .detail-box {
    font-size: 11px;
  }
}
section.index-cars .car .info .detail-box .icon {
  margin-right: 5px;
}
@media (max-width: 767px) {
  section.index-cars .car .info .detail-box .icon {
    width: 25px;
    height: 25px;
  }
}
section.index-cars .car .info .detail-box span {
  color: #ffffff;
}
section.index-cars .car .info.cars-open-info {
  color: #ffffff;
  align-items: center;
  padding: 20px 30px;
}
section.index-cars .car .info.cars-open-info .detail-box {
  line-height: 35px;
  display: flex;
  align-items: center;
}
section.index-cars .car .info.cars-open-info .detail-box .icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  section.index-cars .car .info.cars-open-info .detail-box .icon {
    width: 25px;
    height: 25px;
  }
}
section.index-cars .car .info.cars-open-info .detail-box span {
  color: #101010;
}
section.index-cars .car .info.cars-open-info .detail-box span.text {
  padding-left: 10px;
}
@media (min-width: 768px) {
  section.index-cars .car .info.cars-open-info .detail-box span.text {
    font-size: 16px;
  }
}
section.index-cars .car .info.cars-open-info p,
section.index-cars .car .info.cars-open-info div,
section.index-cars .car .info.cars-open-info a {
  color: #ffffff;
}
section.index-cars .car .price {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  flex-wrap: wrap;
  padding: 0px;
  height: 50px;
  background: #efefef;
}
section.index-cars .car .price .price-block .old {
  color: #656565;
  font-size: 13px;
  line-height: 13px;
  text-align: center;
  position: relative;
}
section.index-cars .car .price .price-block .old::after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #656565;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}
section.index-cars .car .price .price-block .current {
  color: #E51C2B;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}
section.index-cars .car .price .more-info {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
section.index-cars .car .price .more-info .view-more {
  background: none;
  text-align: center;
  text-transform: uppercase;
  line-height: 11px;
  font-size: 11px;
  text-decoration: none;
  color: #656565;
  border: 1px solid #656565;
  border-radius: 2px;
  padding: 5px 11px;
  padding-top: 6px;
  font-weight: 500;
}
section.index-cars .car .price .more-info .view-more:hover {
  color: #ffffff;
  background-color: #fea43b;
  background: -webkit-gradient(linear, left top, left bottom, from(#fea43b), to(#b66200));
  background: -webkit-linear-gradient(top, #fea43b, #b66200);
  background: -moz-linear-gradient(top, #fea43b, #b66200);
  background: -ms-linear-gradient(top, #fea43b, #b66200);
  background: -o-linear-gradient(top, #fea43b, #b66200);
}
section.index-cars .car .leasing {
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  background: #E51C2B;
  color: #ffffff;
  display: block;
  min-height: 60px;
}
section.index-cars .car .leasing:hover {
  color: #656565;
  text-decoration: none;
}
section.index-cars .car .cars-location {
  margin-left: 10px;
  border: 1px solid #f47920;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-right: 5px;
  line-height: 1;
}
section.index-cars .car .cars-location .map-marker-box {
  background: #f47920;
  padding: 3px;
  color: #ffffff;
  width: 23px;
  margin-right: 5px;
}
section.index-cars .car .cars-location span {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.index-cars .car .cars-open-text {
  padding: 40px;
}
section.index-cars .car .cars-open-text p {
  margin: 0;
}
section.index-cars .car .cars-open-text .btn {
  font-size: 18px;
}
section.index-cars .car .cars-open-text .equipment-info {
  padding-bottom: 30px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}
@media (max-width: 1200px) {
  section.index-cars .car .cars-open-text .equipment-info {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 992px) {
  section.index-cars .car .cars-open-text .equipment-info {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 450px) {
  section.index-cars .car .cars-open-text .equipment-info {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
section.index-cars .car .cars-open-text .equipment-info .inline-block {
  display: inline-block;
  width: 100%;
}
section.index-cars .car .cars-open-text .equipment-info .equip-info-block .block-title {
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  padding: 5px 10px;
  background: #E51C2B;
  color: #ffffff;
  margin-bottom: 5px;
}
section.index-cars .car .cars-open-text .equipment-info .equip-info-block ul {
  padding-left: 15px;
}
section.index-cars .car .car-open-title-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.index-cars .car .car-open-title-box .car-open-title {
  font-size: 28px;
  font-weight: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
  max-width: calc(100% -  155px);
}
section.index-cars .car .car-open-title-box .campaign {
  margin-left: 20px;
  padding: 5px 15px;
  color: #f47920;
  border: 2px solid #f47920;
}
section.index-cars .car .car-open-imgs {
  background: none;
  margin-top: 5px;
  margin-bottom: 25px;
}
section.index-cars .car .car-open-imgs .car-img-slider {
  margin: 0 -2px;
}
section.index-cars .car .car-open-imgs .car-img-slider .padding-2px {
  padding: 2px;
}
section.index-cars .car .car-open-imgs .car-img-slider .slick-prev {
  left: 5px;
  z-index: 99;
}
section.index-cars .car .car-open-imgs .car-img-slider .slick-next {
  right: 5px;
  z-index: 99;
}
@media (max-width: 600px) {
  section.index-cars .small-select-block {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  section.index-cars .small-select-block .title {
    width: 100%;
    text-align: left;
  }
}
section.index-cars .advertisment-block-cars {
  padding: 20px 0;
  width: 100%;
}
section.index-cars .advertisment-block-cars .adv-img-box {
  width: 100%;
  padding: 10px 0;
}
section.index-cars .advertisment-block-cars .adv-img-box .adv-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  content: '';
  width: 100%;
  padding-top: 75%;
}
section.index-cars.single-cars-page .car .main-price-box {
  text-align: right;
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .main-price-box .current-price {
    margin-top: -40px;
  }
}
section.index-cars.single-cars-page .car .main-price-box .current-price span {
  text-transform: uppercase;
  color: #E51C2B;
  font-weight: bold;
  font-size: 39px;
  line-height: 39px;
}
section.index-cars.single-cars-page .car .main-price-box .current-price span:last-child {
  font-size: 30px;
}
section.index-cars.single-cars-page .car .main-price-box .full-price {
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
}
section.index-cars.single-cars-page .car .main-price-box .full-price span {
  position: relative;
}
section.index-cars.single-cars-page .car .main-price-box .full-price span::before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: #a94442;
  left: 0;
  right: 0;
  top: calc(49%);
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(-15deg);
}
section.index-cars.single-cars-page .car .thumb-nail-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .thumb-nail-img {
    width: 82%;
  }
}
section.index-cars.single-cars-page .car .thumb-nail-img .discount {
  position: absolute;
  padding: 5px 25px;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  background: #E51C2B;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
  width: 220px;
  left: -45px;
  top: 50px;
  text-transform: uppercase;
  z-index: 9;
}
@media (max-width: 767px) {
  section.index-cars.single-cars-page .car .thumb-nail-img .thumbnail-slider-opener {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    z-index: 9;
  }
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .thumb-nail-img .thumbnail-slider-opener {
    display: none;
  }
}
section.index-cars.single-cars-page .car .car-img-gallery-slider .slick-prev,
section.index-cars.single-cars-page .car .car-img-gallery-slider .slick-next {
  top: auto;
  left: calc(50% - 10px);
  right: auto;
  bottom: auto;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  z-index: 9;
}
section.index-cars.single-cars-page .car .car-img-gallery-slider .slick-prev {
  top: 15px;
}
section.index-cars.single-cars-page .car .car-img-gallery-slider .slick-next {
  bottom: 15px;
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .car-open-imgs {
    width: 18%;
    padding-left: 2.5%;
    margin: 0;
  }
  section.index-cars.single-cars-page .car .car-open-imgs .img {
    margin-bottom: 3.7%;
  }
}
@media (max-width: 767px) {
  section.index-cars.single-cars-page .car .car-open-imgs {
    display: none;
  }
}
section.index-cars.single-cars-page .car .price-info {
  background-color: #8aaed5;
  background: -webkit-gradient(linear, left top, right top, from(#8aaed5), to(#1c61ae));
  background: -webkit-linear-gradient(left, #8aaed5, #1c61ae);
  background: -moz-linear-gradient(left, #8aaed5, #1c61ae);
  background: -ms-linear-gradient(left, #8aaed5, #1c61ae);
  background: -o-linear-gradient(left, #8aaed5, #1c61ae);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .price-info .leasing-phone {
    order: -1;
  }
}
@media (max-width: 991px) {
  section.index-cars.single-cars-page .car .price-info {
    flex-direction: column;
    background: #656565;
  }
  section.index-cars.single-cars-page .car .price-info .padding-bellow-991 {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
section.index-cars.single-cars-page .car .price-info .monthly-fee {
  color: #ffffff;
  font-size: 24px;
}
section.index-cars.single-cars-page .car .price-info .monthly-fee .big {
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
}
section.index-cars.single-cars-page .car .price-info .leasing-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
  color: #ffffff;
  font-weight: 500;
}
section.index-cars.single-cars-page .car .price-info .leasing-phone .phone {
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
}
section.index-cars.single-cars-page .car .price-info .leasing-phone .phone .thin {
  font-weight: 400;
}
section.index-cars.single-cars-page .car .price-info .leasing-phone .phone span {
  color: #ffffff;
}
section.index-cars.single-cars-page .car .price-info .leasing-phone::after {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 30px;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/icon_phone.svg');
  background-size: contain;
}
@media (min-width: 768px) {
  section.index-cars.single-cars-page .car .full-car-info.collapse {
    display: block !important;
  }
}
section.index-cars.single-cars-page .car .cars-open-text {
  padding: 20px 40px;
  flex-direction: column;
}
section.index-cars.single-cars-page .car .cars-open-text > a.show-on-small {
  font-size: 16px;
}
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info {
  margin: auto -40px;
  background: #E51C2B;
  padding: 10px 40px;
  color: #ffffff;
  text-align: center;
}
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info p,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h1,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h2,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h3,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h4,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h5,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info h6,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info span,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info i,
section.index-cars.single-cars-page .car .cars-open-text .default-sales-info b {
  color: #ffffff;
}
section.select-block {
  background: #dcdcdc;
  border: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 15px;
}
section.select-block .top-name {
  background: #0F0F0F;
  color: #ffffff;
  padding: 15px 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
section.select-block .middle .selects {
  padding: 15px 20px;
}
section.select-block .middle .selects .bootstrap-select {
  width: 100%;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.select-block .middle .selects .bootstrap-select .btn {
  background: #f5f5f5;
  border: 1px solid #cacaca;
  color: #656565;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: none;
  padding: 5px 15px;
  margin-bottom: 5px;
  width: 100%;
}
section.select-block .middle .selects .bootstrap-select .btn:focus {
  outline: none !important;
  box-shadow: none;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu {
  border: 1px solid #656565;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li {
  font-size: 18px;
  background: #f5f5f5;
  color: #656565;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.selected,
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.active {
  background: #656565;
  color: #ffffff;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.selected > a,
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.active > a {
  color: #ffffff;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.selected > a span,
section.select-block .middle .selects .bootstrap-select .dropdown-menu li.active > a span {
  color: #ffffff;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li > a:hover {
  background: #656565;
  color: #ffffff;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu li > a:hover span {
  color: #ffffff;
}
section.select-block .middle .selects .bootstrap-select .dropdown-menu.inner {
  border: none;
}
section.select-block .middle .selects .bootstrap-select.hidden-models {
  opacity: 0;
  z-index: -999;
  position: absolute;
  left: 0;
  top: 0;
}
section.select-block .middle .range {
  background: #656565;
  color: #ffffff;
  padding: 15px 20px;
}
section.select-block .middle .range .range-tlt {
  text-align: center;
}
section.select-block .middle .range .range-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.select-block .middle .range .range-box input {
  color: #656565;
  background: #f5f5f5;
  border: none;
  border-radius: 5px;
  width: 47%;
  max-width: 110px;
  padding: 0px;
  padding-left: 15px;
  text-align: center;
}
section.select-block .middle .range .range-box span {
  padding: 0 10px;
  color: #ffffff;
}
section.select-block .middle .range .range-box span:last-child {
  padding-right: 0;
}
section.select-block .middle .btn-box {
  padding: 0 10px;
}
section.select-block .middle .btn-box .btn {
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding: 8px 10px;
  position: relative;
  transform-style: preserve-3d;
}
section.select-block #select:hover {
  color: white;
  font-weight: 700;
}


section.select-block .middle .btn-box .btn:active {
  box-shadow: none;
}
section.select-block .middle .btn-box .no-bg {
  color: #656565;
  margin-bottom: 10px;
}
section.leasing {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/leasing-bg.jpg");
  background-size: cover;
  padding: 30px 0;
  color: #ffffff;
}
section.leasing h1,
section.leasing h2,
section.leasing h3,
section.leasing h4,
section.leasing h5,
section.leasing h6 {
  color: #ffffff;
}
section.leasing h1.line::after,
section.leasing h2.line::after,
section.leasing h3.line::after,
section.leasing h4.line::after,
section.leasing h5.line::after,
section.leasing h6.line::after {
  background: #ffffff;
}
section.leasing .max-width-leading {
  max-width: 900px;
  margin: auto;
}
section.leasing .range-sliders .sum,
section.leasing .range-sliders .time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  section.leasing .range-sliders .sum,
  section.leasing .range-sliders .time {
    margin-top: 10px;
  }
}
section.leasing .range-sliders .sum .left,
section.leasing .range-sliders .time .left {
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 10px;
  text-align: left;
  position: absolute;
  display: block;
  bottom: 100%;
  left: 0;
  width: auto;
}
@media (max-width: 767px) {
  section.leasing .range-sliders .sum .left,
  section.leasing .range-sliders .time .left {
    position: absolute;
    display: block;
    bottom: 100%;
    left: 0;
    width: auto;
  }
}
section.leasing .range-sliders .sum .right,
section.leasing .range-sliders .time .right {
  width: 100%;
}
section.leasing .range-sliders .sum .right input,
section.leasing .range-sliders .time .right input {
  background: none !important;
}
section.leasing .range-sliders .sum .right _:-ms-lang(x),
section.leasing .range-sliders .time .right _:-ms-lang(x),
section.leasing .range-sliders .sum .right input,
section.leasing .range-sliders .time .right input {
  margin-top: -30px;
  margin-bottom: -30px;
}
section.leasing .range-sliders .sum .num-val,
section.leasing .range-sliders .time .num-val {
  position: absolute;
  display: block;
  bottom: 100%;
  right: 0;
  font-size: 24px;
}
section.leasing .range-sliders .sum .num-val span,
section.leasing .range-sliders .time .num-val span {
  color: #f47920;
}
section.leasing .range-sliders .sum .num-val input,
section.leasing .range-sliders .time .num-val input {
  width: 80px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 5px;
  line-height: 24px;
  border: none;
  border-radius: 5px;
  color: #f47920;
  text-align: center;
}
section.leasing .info-blocks {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
}
@media (max-width: 767px) {
  section.leasing .info-blocks {
    padding-top: 30px;
  }
  section.leasing .info-blocks .slick-next {
    height: 38px;
    right: 15px;
  }
  section.leasing .info-blocks .slick-next::before {
    content: '>';
    font-size: 38px;
    font-family: 'Roboto', sans-serif;
  }
  section.leasing .info-blocks .slick-prev {
    height: 38px;
    left: 15px;
  }
  section.leasing .info-blocks .slick-prev::before {
    content: '<';
    font-size: 38px;
    font-family: 'Roboto', sans-serif;
  }
}
section.leasing .info-blocks .block {
  font-size: 10px;
  text-transform: uppercase;
  max-width: 240px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 30px 10px;
  padding-top: 80px !important;
}
@media (max-width: 767px) {
  section.leasing .info-blocks .block {
    max-width: 100%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  section.leasing .info-blocks .block {
    padding: 30px 40px;
  }
}
section.leasing .info-blocks .block::after {
  position: absolute;
  display: block;
  content: '';
  top: 20px;
  left: 0;
  right: 0;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.leasing .info-blocks .block.block-1::after {
  background-image: url('../images/proc.svg');
}
section.leasing .info-blocks .block.block-2::after {
  background-image: url('../images/aplic.svg');
}
section.leasing .info-blocks .block.block-3::after {
  background-image: url('../images/low-rates.svg');
}
section.leasing .info-blocks .block.block-4::after {
  background-image: url('../images/response-time.svg');
}
section.leasing .info-blocks .block.block-5::after {
  background-image: url('../images/easy-check.svg');
}
section.leasing .apply-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.leasing .apply-center .btn {
  font-size: 14px;
  line-height: 14px;
}
@media (min-width: 768px) {
  section.leasing .apply-center .btn {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  section.leasing .apply-center .btn {
    margin-top: 15px;
  }
}
section.leasing .apply-center .monthly-fee {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
section.leasing .apply-center .monthly-fee #monthly-fee {
  margin-left: 10px;
}
section.leasing .apply-center .monthly-fee span {
  font-size: 24px;
  color: #E51C2B;
}
section.leasing .repurchase form div,
section.leasing .repurchase .input-form div,
section.leasing .repurchase form span,
section.leasing .repurchase .input-form span,
section.leasing .repurchase form .read-more-button,
section.leasing .repurchase .input-form .read-more-button {
  color: #ffffff;
}
section.leasing .repurchase form div .r-btn-custom,
section.leasing .repurchase .input-form div .r-btn-custom,
section.leasing .repurchase form span .r-btn-custom,
section.leasing .repurchase .input-form span .r-btn-custom,
section.leasing .repurchase form .read-more-button .r-btn-custom,
section.leasing .repurchase .input-form .read-more-button .r-btn-custom {
  text-align: left;
  font-weight: 400;
}
section.leasing .repurchase form div .r-btn-custom span,
section.leasing .repurchase .input-form div .r-btn-custom span,
section.leasing .repurchase form span .r-btn-custom span,
section.leasing .repurchase .input-form span .r-btn-custom span,
section.leasing .repurchase form .read-more-button .r-btn-custom span,
section.leasing .repurchase .input-form .read-more-button .r-btn-custom span,
section.leasing .repurchase form div .r-btn-custom a,
section.leasing .repurchase .input-form div .r-btn-custom a,
section.leasing .repurchase form span .r-btn-custom a,
section.leasing .repurchase .input-form span .r-btn-custom a,
section.leasing .repurchase form .read-more-button .r-btn-custom a,
section.leasing .repurchase .input-form .read-more-button .r-btn-custom a {
  font-size: 12px;
}
section.leasing .repurchase form input,
section.leasing .repurchase .input-form input,
section.leasing .repurchase form textarea,
section.leasing .repurchase .input-form textarea {
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
}
section.leasing .repurchase form .advanced-input-form-opener,
section.leasing .repurchase .input-form .advanced-input-form-opener {
  text-align: center;
  color: #ffffff;
  background: #E51C2B;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
}
section.leasing .repurchase form .advanced-input-form-opener span,
section.leasing .repurchase .input-form .advanced-input-form-opener span {
  color: #ffffff;
}
section.leasing .repurchase form .advanced-input-form-opener button,
section.leasing .repurchase .input-form .advanced-input-form-opener button {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff;
  padding: 0;
}
section.leasing .repurchase form .advanced-input-form-opener button:hover,
section.leasing .repurchase .input-form .advanced-input-form-opener button:hover {
  text-decoration: underline;
  cursor: pointer;
}
section.leasing .repurchase form #advancedInputFormOpened,
section.leasing .repurchase .input-form #advancedInputFormOpened {
  max-width: 100%;
  text-align: center;
}
section.advanced-input-fields {
  padding: 50px 0;
  background: #efefef;
}
section.advanced-input-fields .advanced-form {
  max-width: 760px;
  margin: auto;
}
section.advanced-input-fields .advanced-form .title {
  font-size: 22px;
  font-weight: 500;
  color: #E51C2B;
}
section.advanced-input-fields .advanced-form .text-under-title {
  font-size: 14px;
  color: #656565;
}
section.advanced-input-fields .advanced-form .more-info-block {
  font-size: 12px;
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-left: 2px solid #E51C2B;
}
section.advanced-input-fields .advanced-form .file-upload {
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #dddddd;
  text-transform: none;
  width: 600px;
  max-width: 100%;
  margin: 5px 0;
  color: #251f4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
section.advanced-input-fields .advanced-form .file-upload .btn {
  background: #d5d5d5;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 3px 10px;
  color: #656565;
}
section.advanced-input-fields .advanced-form .file-upload input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
section.advanced-input-fields .advanced-form .file-upload input:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  section.advanced-input-fields .advanced-form .r-btn-custom {
    text-align: left;
  }
}
section.brands {
  padding: 50px 0;
  background: #ffffff;
}
section.brands .brand-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section.brands .brand-list a {
  padding: 15px;
}
section.brands .brand-list a .brand {
  height: 90px;
  width: 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  content: ' ';
}
@media (max-width: 420px) {
  section.brands .brand-list a .brand {
    width: 100px;
  }
}
section.brands .text {
  color: #0F0F0F;
  font-weight: 900;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 52px;
}
section.about {
  padding-bottom: 30px;
}
section.apply-btn-box {
  padding-top: 50px;
}
section.apply-btn-box .apply-box {
  padding: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.apply-btn-box .apply-box .white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: ' ';
  background: #ffffff;
  opacity: .7;
}
section.apply-btn-box .apply-box .btn {
  z-index: 10;
}
section.contacts .info {
  padding: 30px;
}
section.contacts .info p {
  margin: 0;
}
@media (min-width: 992px) {
  section.contacts .info {
    width: calc(100% -  550px);
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section.contacts .info {
    width: calc(100% -  350px);
  }
}
@media (max-width: 767px) {
  section.contacts .info {
    text-align: center;
  }
}
section.contacts .info .contact-info-row > div {
  padding-top: 15px;
  padding-bottom: 15px;
}
section.contacts .info .contact-info-row > div .title {
  padding-left: 21px;
  position: relative;
}
@media (max-width: 767px) {
  section.contacts .info .contact-info-row > div .title {
    display: inline-block;
  }
}
section.contacts .info .contact-info-row > div .title i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: #E51C2B;
}
@media (min-width: 768px) {
  section.contacts .info .contact-info-row > div .info-block {
    padding-left: 21px;
  }
}
@media (max-width: 549px) {
  section.contacts .map-section {
    width: 100%;
  }
}
section.contacts .map-section #map {
  width: 100%;
  height: 350px;
}
@media (min-width: 550px) {
  section.contacts .map-section #map {
    width: 500px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  section.contacts .map-section #map {
    width: 350px;
  }
}
section.repurchase {
  max-width: 760px;
  margin: auto;
}
section.repurchase .text-center {
  text-align: center;
}
section.repurchase .margin-b-0 {
  margin-bottom: 0;
}
section.repurchase .bootstrap-select {
  width: 600px !important;
  max-width: 100% !important;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.repurchase .bootstrap-select .btn {
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #656565;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: none;
  padding: 5px 15px;
  margin-bottom: 5px;
  width: 100%;
  height: 44px;
}
section.repurchase .bootstrap-select .btn:focus {
  outline: none !important;
  box-shadow: none;
}
section.repurchase .bootstrap-select .dropdown-menu {
  border: 1px solid #656565;
}
section.repurchase .bootstrap-select .dropdown-menu li {
  background: #f5f5f5;
  color: #656565;
}
section.repurchase .bootstrap-select .dropdown-menu li.selected,
section.repurchase .bootstrap-select .dropdown-menu li.active {
  color: #656565;
  color: #ffffff;
}
section.repurchase .bootstrap-select .dropdown-menu.inner {
  border: none;
}
section.repurchase .bootstrap-select.hidden-models {
  opacity: 0;
  z-index: -999;
  position: absolute;
  left: 0;
  top: 0;
}
section.repurchase p,
section.repurchase h1,
section.repurchase h2,
section.repurchase h3,
section.repurchase h4,
section.repurchase h5,
section.repurchase h6,
section.repurchase span,
section.repurchase a {
  color: #ffffff;
}
section.repurchase input,
section.repurchase textarea {
  font-size: 18px;
  padding: 15px 25px;
  background: #ffffff;
  border: 1px solid #dddddd;
  text-transform: none;
  width: 600px;
  max-width: 100%;
  margin: 5px 0;
  color: #656565;
}
section.repurchase input::placeholder,
section.repurchase textarea::placeholder {
  color: #656565;
  opacity: 1;
  /* Firefox */
}
section.repurchase input:-ms-input-placeholder,
section.repurchase textarea:-ms-input-placeholder {
  color: #656565;
}
section.repurchase input::-ms-input-placeholder,
section.repurchase textarea::-ms-input-placeholder {
  color: #656565;
}
section.repurchase .file-upload {
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #656565;
  text-transform: none;
  width: 600px;
  max-width: 100%;
  margin: 5px 0;
  color: #251f4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 44px;
}
section.repurchase .file-upload > div {
  color: #656565 !important;
}
section.repurchase .file-upload .btn {
  background: #d5d5d5;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 3px 10px;
  color: #656565;
}
section.repurchase .file-upload input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
section.repurchase .file-upload input:hover {
  cursor: pointer;
}
section.repurchase .privat-pol-checkbox {
  padding-top: 20px;
  width: 600px;
  max-width: 100%;
}
section.repurchase .input-width {
  max-width: 600px;
}
section.repurchase .btn-blue {
  width: 258px;
}
section.youtube-video-section {
  padding: 50px 0;
  background: #dcdcdc;
}
section.youtube-video-section .slick-arrow {
  z-index: 1;
}
section.youtube-video-section .slick-prev {
  left: 25px;
}
section.youtube-video-section .slick-next {
  right: 25px;
}
section.youtube-video-section .yt-outer-box {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
section.youtube-video-section .yt-outer-box .youtube-block {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
section.youtube-video-section .yt-outer-box .youtube-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: none;
}
section.youtube-video-section .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  section.youtube-video-section .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  section.youtube-video-section .text {
    padding-top: 15px;
  }
}
section.youtube-video-section .car-img {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/cars.png');
  background-size: contain;
}
section.discount > .container > .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.discount > .container > .row {
    margin: 0;
    padding: 0;
    background: #efefef;
  }
  section.discount > .container > .row .col-md-6:first-child {
    padding-left: 0;
  }
  section.discount > .container > .row .col-md-6:last-child {
    padding-right: 0;
  }
}
section.discount .img-box {
  width: 100%;
  padding-top: 75%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.discount .title {
  padding-top: 20px;
  font-size: 22px;
  color: #656565;
  font-weight: 500;
}
section.discount .title.small {
  font-size: 18px;
}
section.discount label {
  color: #868686;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 10px;
}
section.discount label.full-width {
  width: 100%;
}
section.discount label .checkmark {
  border-color: #868686;
}
section.discount .inline-inside {
  text-align: left;
}
section.discount .inline-inside label {
  display: inline-block;
  margin-right: 15px;
  width: auto;
  color: #868686;
}
@media (min-width: 768px) {
  section.discount .inline-inside label {
    text-align: left;
  }
}
section.discount .inline-inside label span {
  color: #868686;
  font-size: 16px;
  font-weight: normal;
}
section.discount .p-5 {
  padding: 5px;
}
section.discount .m-10 {
  margin-bottom: 5px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  section.discount .discount-form {
    margin-top: -20px;
  }
  section.discount .discount-form .row.small-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  section.discount .discount-form {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  section.discount .discount-form .small-center input {
    width: 100%;
    text-align: center;
  }
  section.discount .discount-form .small-center > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
section.advertisment {
  padding: 50px 0;
}
section.advertisment .big-ad,
section.advertisment .medium-ad,
section.advertisment .small-ad {
  width: 100%;
}
section.advertisment .big-ad .adv-img-box,
section.advertisment .medium-ad .adv-img-box,
section.advertisment .small-ad .adv-img-box {
  padding: 20px 0;
}
section.advertisment .big-ad .adv-img-box .adv-img,
section.advertisment .medium-ad .adv-img-box .adv-img,
section.advertisment .small-ad .adv-img-box .adv-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  content: '';
  width: 100%;
}
section.advertisment .big-ad .adv-img-box {
  width: 100%;
}
section.advertisment .big-ad .adv-img-box .adv-img {
  padding-top: 25%;
}
section.advertisment .medium-ad,
section.advertisment .small-ad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.advertisment .medium-ad .adv-img-box {
  width: 49%;
}
section.advertisment .medium-ad .adv-img-box .adv-img {
  padding-top: 50%;
}
section.advertisment .small-ad .adv-img-box {
  width: 32%;
}
section.advertisment .small-ad .adv-img-box .adv-img {
  padding-top: 75%;
}
@media (min-width: 768px) {
  section.news .column-count-prop {
    column-count: 2;
  }
}
section.news .date {
  font-size: 14px;
  color: #555555;
}
section.news .tags {
  margin: 10px 0px;
}
section.news .tags a {
  padding: 0 10px;
}
section.news .news-outer-block {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}
section.news .news-outer-block .news-block {
  width: 100%;
  display: inline-block;
}
section.news .news-outer-block .news-block .thumbnail-img {
  display: block;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 330px;
}
section.news .news-outer-block .news-block .text-section {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/polygon-bg.jpg');
  background-size: cover;
  width: 100%;
  height: 300px;
  padding: 15px;
}
section.news .news-outer-block .news-block .text-section .date {
  font-size: 14px;
  color: #555555;
}
section.news .news-outer-block .news-block .text-section .title {
  display: block;
  font-size: 18px;
  color: #656565;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 70px;
}
section.news .news-outer-block .news-block .text-section .excerpt {
  font-size: 14px;
  color: #656565;
  height: 120px;
  overflow: hidden;
  margin-bottom: 20px;
}
section.news .news-outer-block .news-block .text-section .read-more-box {
  text-align: right;
}
section.news .news-outer-block .news-block .text-section.video-block {
  padding: 0;
  content: '';
  position: relative;
  background-color: #656565;
}
section.news .news-outer-block .news-block .text-section.video-block::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #ffffff;
  font-size: 40px;
  content: '\f04b';
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  opacity: .5;
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.news .news-outer-block .news-block .text-section.video-block:hover::after {
  opacity: .75;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}
section.news .gallery .gallery-img {
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
section.addvert-banner {
  margin-bottom: 30px;
  background: #21232b;
  z-index: 1;
}
section.addvert-banner .bg-box {
  margin: auto;
  max-width: 1200px;
}
@media (max-width: 767px) {
  section.addvert-banner .bg-box {
    max-width: 400px;
  }
}
section.addvert-banner .bg-box .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  padding-top: 37.5%;
}
@media (max-width: 767px) {
  section.addvert-banner .bg-box .bg-img {
    padding-top: 100%;
  }
}
section.about-us {
  position: relative;
}
@media (min-width: 768px) {
  section.about-us {
    margin-top: -30px;
  }
}
section.about-us h1 {
  position: absolute;
  z-index: -99;
  top: 0;
  opacity: 0;
}
section.about-us .about-blocks .about-block {
  z-index: 1;
  position: relative;
  padding: 50px 100px;
  min-height: 250px;
}
section.about-us .about-blocks .about-block .about-bl-tlt {
  font-weight: bold;
  font-size: 27px;
  color: #E51C2B;
}
section.about-us .about-blocks .about-block h1,
section.about-us .about-blocks .about-block h2,
section.about-us .about-blocks .about-block h3,
section.about-us .about-blocks .about-block h4,
section.about-us .about-blocks .about-block h5,
section.about-us .about-blocks .about-block h6 {
  text-align: left;
}
section.about-us .about-blocks .about-block.img_vid::before,
section.about-us .about-blocks .about-block.img_vid::after {
  display: block;
  content: '';
  clear: both;
}
section.about-us .about-blocks .about-block.img_vid .img-sect {
  width: 400px;
  margin-bottom: 20px;
}
section.about-us .about-blocks .about-block.img_vid .img-sect .about-yt-box,
section.about-us .about-blocks .about-block.img_vid .img-sect .bg-img {
  width: 100%;
  padding: 0;
  padding-top: 60%;
}
section.about-us .about-blocks .about-block.img_vid .img-sect .about-yt-box {
  position: relative;
}
section.about-us .about-blocks .about-block.img_vid .img-sect .about-yt-box iframe {
  position: absolute;
  border: none;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.about-us .about-blocks .about-block.img_vid .img-sect .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.about-us .about-blocks .about-block ul {
  padding-left: 20px;
  text-align: left;
  list-style: none;
}
section.about-us .about-blocks .about-block ul li {
  position: relative;
}
section.about-us .about-blocks .about-block ul li::before {
  position: absolute;
  display: block;
  width: 15px;
  left: -20px;
  top: -2px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  font-size: 14px;
  color: #E51C2B;
}
section.about-us .about-blocks .about-block .red-disc {
  position: absolute;
  display: block;
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #E51C2B;
  width: 20px;
  height: 20px;
  top: 54px;
}
section.about-us .about-blocks .about-block::before {
  position: absolute;
  display: block;
  content: '';
  border: solid 2px #1c61ae;
  top: -1px;
  bottom: -1px;
}
section.about-us .about-blocks .about-block:nth-child(odd) {
  padding-left: 0;
  text-align: right;
}
section.about-us .about-blocks .about-block:nth-child(odd) h1,
section.about-us .about-blocks .about-block:nth-child(odd) h2,
section.about-us .about-blocks .about-block:nth-child(odd) h3,
section.about-us .about-blocks .about-block:nth-child(odd) h4,
section.about-us .about-blocks .about-block:nth-child(odd) h5,
section.about-us .about-blocks .about-block:nth-child(odd) h6 {
  text-align: right;
}
@media (min-width: 768px) {
  section.about-us .about-blocks .about-block:nth-child(odd) ul {
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
    list-style: none;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) ul li {
    position: relative;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) ul li::before {
    position: absolute;
    display: block;
    width: 15px;
    left: auto;
    right: -20px;
    top: -2px;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: bold;
    font-size: 14px;
    color: #f47920;
  }
}
section.about-us .about-blocks .about-block:nth-child(odd) .red-disc {
  right: 46px;
}
@media (min-width: 768px) {
  section.about-us .about-blocks .about-block:nth-child(odd).img_vid .img-sect {
    float: left;
    margin-right: 30px;
  }
}
section.about-us .about-blocks .about-block:nth-child(odd)::before {
  right: 49px;
  left: calc(50% -  100px);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-left: none;
}
section.about-us .about-blocks .about-block:nth-child(even) {
  padding-right: 0;
  text-align: left;
}
section.about-us .about-blocks .about-block:nth-child(even) h1,
section.about-us .about-blocks .about-block:nth-child(even) h2,
section.about-us .about-blocks .about-block:nth-child(even) h3,
section.about-us .about-blocks .about-block:nth-child(even) h4,
section.about-us .about-blocks .about-block:nth-child(even) h5,
section.about-us .about-blocks .about-block:nth-child(even) h6 {
  text-align: left;
}
section.about-us .about-blocks .about-block:nth-child(even) .red-disc {
  left: 46px;
}
@media (min-width: 768px) {
  section.about-us .about-blocks .about-block:nth-child(even).img_vid .img-sect {
    float: right;
    margin-left: 30px;
  }
}
section.about-us .about-blocks .about-block:nth-child(even)::before {
  right: calc(50% -  100px);
  left: 49px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-right: none;
}
section.about-us .about-blocks .about-block:first-child .red-disc {
  right: 40px;
}
section.about-us .about-blocks .about-block:first-child::before {
  border-top-right-radius: 0;
  border-top: none;
}
section.about-us .about-blocks .about-block:last-child {
  margin-bottom: 75px;
}
section.about-us .about-blocks .about-block:last-child::after {
  position: absolute;
  display: block;
  content: '';
  border: solid 2px #1c61ae;
  border-bottom: none;
  width: 110px;
  top: calc(100% -  1px);
  height: 110px;
}
section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::before {
  left: calc(50% +  100px);
}
section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::after {
  border-right: none;
  left: calc(50% -  1px);
  border-top-left-radius: 50px;
}
section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::before {
  right: calc(50% +  100px);
}
section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::after {
  border-left: none;
  right: calc(50% -  1px);
  border-top-right-radius: 50px;
}
@media (max-width: 991px) {
  section.about-us .about-blocks .about-block {
    padding: 40px 80px;
    min-height: 220px;
  }
  section.about-us .about-blocks .about-block .about-bl-tlt {
    font-size: 27px;
  }
  section.about-us .about-blocks .about-block h1,
  section.about-us .about-blocks .about-block h2,
  section.about-us .about-blocks .about-block h3,
  section.about-us .about-blocks .about-block h4,
  section.about-us .about-blocks .about-block h5,
  section.about-us .about-blocks .about-block h6 {
    text-align: left;
  }
  section.about-us .about-blocks .about-block.img_vid .img-sect {
    width: 350px;
    margin-bottom: 20px;
  }
  section.about-us .about-blocks .about-block .red-disc {
    width: 20px;
    height: 20px;
    top: 44px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) {
    padding-left: 0;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) .red-disc {
    right: 36px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd)::before {
    right: 39px;
    left: calc(50% -  80px);
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: none;
  }
  section.about-us .about-blocks .about-block:nth-child(even) {
    padding-right: 0;
  }
  section.about-us .about-blocks .about-block:nth-child(even) .red-disc {
    left: 36px;
  }
  section.about-us .about-blocks .about-block:nth-child(even)::before {
    right: calc(50% -  80px);
    left: 39px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: none;
  }
  section.about-us .about-blocks .about-block:first-child .red-disc {
    right: 30px;
  }
  section.about-us .about-blocks .about-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.about-us .about-blocks .about-block:last-child {
    margin-bottom: 50px;
  }
  section.about-us .about-blocks .about-block:last-child::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 110px;
    top: calc(100% -  1px);
    height: 110px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::before {
    left: calc(50% +  80px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 40px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::before {
    right: calc(50% +  80px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 40px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  section.about-us .about-blocks .about-block:nth-child(odd).img_vid .img-sect {
    float: left;
    margin-right: 30px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  section.about-us .about-blocks .about-block:nth-child(even).img_vid .img-sect {
    float: right;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  section.about-us .about-blocks .about-block {
    padding: 40px 60px;
    min-height: 220px;
  }
  section.about-us .about-blocks .about-block .about-bl-tlt {
    font-size: 25px;
  }
  section.about-us .about-blocks .about-block h1,
  section.about-us .about-blocks .about-block h2,
  section.about-us .about-blocks .about-block h3,
  section.about-us .about-blocks .about-block h4,
  section.about-us .about-blocks .about-block h5,
  section.about-us .about-blocks .about-block h6 {
    text-align: left;
  }
  section.about-us .about-blocks .about-block.img_vid .img-sect {
    width: 350px;
    max-width: 100%;
    float: none;
    margin: auto;
    margin-bottom: 20px;
  }
  section.about-us .about-blocks .about-block .red-disc {
    width: 20px;
    height: 20px;
    top: 44px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) {
    padding-left: 0;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) .red-disc {
    right: 21px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd)::before {
    right: 29px;
    left: calc(50% -  60px);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    border-left: none;
  }
  section.about-us .about-blocks .about-block:nth-child(even) {
    padding-right: 0;
  }
  section.about-us .about-blocks .about-block:nth-child(even) .red-disc {
    left: 21px;
  }
  section.about-us .about-blocks .about-block:nth-child(even)::before {
    right: calc(50% -  60px);
    left: 29px;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    border-right: none;
  }
  section.about-us .about-blocks .about-block:first-child .red-disc {
    right: 20px;
  }
  section.about-us .about-blocks .about-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.about-us .about-blocks .about-block:last-child {
    margin-bottom: 50px;
  }
  section.about-us .about-blocks .about-block:last-child::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 90px;
    top: calc(100% -  1px);
    height: 90px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::before {
    left: calc(50% +  60px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 30px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::before {
    right: calc(50% +  60px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 30px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  section.about-us .about-blocks .about-block:nth-child(odd).img_vid .img-sect {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  section.about-us .about-blocks .about-block:nth-child(even).img_vid .img-sect {
    margin-right: auto;
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  section.about-us .about-blocks .about-block {
    padding: 20px 30px;
    min-height: 220px;
  }
  section.about-us .about-blocks .about-block .about-bl-tlt {
    font-size: 25px;
  }
  section.about-us .about-blocks .about-block h1,
  section.about-us .about-blocks .about-block h2,
  section.about-us .about-blocks .about-block h3,
  section.about-us .about-blocks .about-block h4,
  section.about-us .about-blocks .about-block h5,
  section.about-us .about-blocks .about-block h6 {
    text-align: left;
  }
  section.about-us .about-blocks .about-block.img_vid .img-sect {
    width: 350px;
    max-width: 100%;
    float: none;
    margin: auto;
    margin-bottom: 15px;
  }
  section.about-us .about-blocks .about-block .red-disc {
    width: 16px;
    height: 16px;
    top: 1px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) {
    padding-left: 0;
    text-align: left;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) h1,
  section.about-us .about-blocks .about-block:nth-child(odd) h2,
  section.about-us .about-blocks .about-block:nth-child(odd) h3,
  section.about-us .about-blocks .about-block:nth-child(odd) h4,
  section.about-us .about-blocks .about-block:nth-child(odd) h5,
  section.about-us .about-blocks .about-block:nth-child(odd) h6 {
    text-align: left;
  }
  section.about-us .about-blocks .about-block:nth-child(odd) .red-disc {
    right: 10px;
  }
  section.about-us .about-blocks .about-block:nth-child(odd)::before {
    right: 9px;
    left: calc(50% -  30px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-left: none;
  }
  section.about-us .about-blocks .about-block:nth-child(even) {
    padding-right: 0;
    text-align: left;
  }
  section.about-us .about-blocks .about-block:nth-child(even) h1,
  section.about-us .about-blocks .about-block:nth-child(even) h2,
  section.about-us .about-blocks .about-block:nth-child(even) h3,
  section.about-us .about-blocks .about-block:nth-child(even) h4,
  section.about-us .about-blocks .about-block:nth-child(even) h5,
  section.about-us .about-blocks .about-block:nth-child(even) h6 {
    text-align: left;
  }
  section.about-us .about-blocks .about-block:nth-child(even) .red-disc {
    left: 10px;
  }
  section.about-us .about-blocks .about-block:nth-child(even)::before {
    right: calc(50% -  30px);
    left: 9px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-right: none;
  }
  section.about-us .about-blocks .about-block:first-child .red-disc {
    top: 15px;
    right: 2px;
  }
  section.about-us .about-blocks .about-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.about-us .about-blocks .about-block:last-child {
    margin-bottom: 25px;
  }
  section.about-us .about-blocks .about-block:last-child::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 50px;
    top: calc(100% -  1px);
    height: 50px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::before {
    left: calc(50% +  30px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 15px;
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::before {
    right: calc(50% +  30px);
  }
  section.about-us .about-blocks .about-block:last-child:not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 15px;
  }
}
section.eshop {
  margin-bottom: -30px;
  position: relative;
}
@media (min-width: 768px) {
  section.eshop {
    margin-top: -30px;
  }
}
section.eshop h1 {
  position: absolute;
  z-index: -99;
  top: 0;
  opacity: 0;
}
section.eshop .eshop-blocks .eshop-block {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 50px 100px;
  min-height: 200px;
}
section.eshop .eshop-blocks .eshop-block .eshop-bl-tlt {
  font-weight: bold;
  font-size: 27px;
  color: #f47920;
}
section.eshop .eshop-blocks .eshop-block h1,
section.eshop .eshop-blocks .eshop-block h2,
section.eshop .eshop-blocks .eshop-block h3,
section.eshop .eshop-blocks .eshop-block h4,
section.eshop .eshop-blocks .eshop-block h5,
section.eshop .eshop-blocks .eshop-block h6 {
  text-align: left;
}
section.eshop .eshop-blocks .eshop-block ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}
section.eshop .eshop-blocks .eshop-block .red-disc {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f47920;
  color: #ffffff;
  width: 26px;
  height: 26px;
  top: 65px;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
}
section.eshop .eshop-blocks .eshop-block .img-sect {
  padding: 0 30px;
}
section.eshop .eshop-blocks .eshop-block .img-sect .icon {
  width: 70px;
  height: 90px;
}
section.eshop .eshop-blocks .eshop-block::before {
  position: absolute;
  display: block;
  content: '';
  border: solid 2px #1c61ae;
  top: -1px;
  bottom: -1px;
}
section.eshop .eshop-blocks .eshop-block:nth-child(odd) {
  padding-left: 0;
  flex-direction: row-reverse;
  text-align: right;
}
section.eshop .eshop-blocks .eshop-block:nth-child(odd) .img-sect {
  padding-right: 0;
}
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h1,
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h2,
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h3,
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h4,
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h5,
section.eshop .eshop-blocks .eshop-block:nth-child(odd) h6 {
  text-align: right;
}
section.eshop .eshop-blocks .eshop-block:nth-child(odd) .red-disc {
  right: 45px;
}
section.eshop .eshop-blocks .eshop-block:nth-child(odd)::before {
  right: 49px;
  left: calc(50% -  100px);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-left: none;
}
section.eshop .eshop-blocks .eshop-block:nth-child(even) {
  padding-right: 0;
  text-align: left;
}
section.eshop .eshop-blocks .eshop-block:nth-child(even) .img-sect {
  padding-left: 0;
}
section.eshop .eshop-blocks .eshop-block:nth-child(even) h1,
section.eshop .eshop-blocks .eshop-block:nth-child(even) h2,
section.eshop .eshop-blocks .eshop-block:nth-child(even) h3,
section.eshop .eshop-blocks .eshop-block:nth-child(even) h4,
section.eshop .eshop-blocks .eshop-block:nth-child(even) h5,
section.eshop .eshop-blocks .eshop-block:nth-child(even) h6 {
  text-align: left;
}
section.eshop .eshop-blocks .eshop-block:nth-child(even) .red-disc {
  left: 45px;
}
section.eshop .eshop-blocks .eshop-block:nth-child(even)::before {
  right: calc(50% -  100px);
  left: 49px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-right: none;
}
section.eshop .eshop-blocks .eshop-block:first-child .red-disc {
  right: 38px;
}
section.eshop .eshop-blocks .eshop-block:first-child::before {
  border-top-right-radius: 0;
  border-top: none;
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2) {
  margin-bottom: 100px;
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2)::after {
  position: absolute;
  display: block;
  content: '';
  border: solid 2px #1c61ae;
  border-bottom: none;
  width: 110px;
  top: calc(100% -  1px);
  height: 110px;
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::before {
  left: calc(50% +  100px);
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::after {
  border-right: none;
  left: calc(50% -  1px);
  border-top-left-radius: 100px;
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::before {
  right: calc(50% +  100px);
}
section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::after {
  border-left: none;
  right: calc(50% -  1px);
  border-top-right-radius: 100px;
}
@media (max-width: 991px) {
  section.eshop .eshop-blocks .eshop-block {
    padding: 40px 80px;
    min-height: 160px;
  }
  section.eshop .eshop-blocks .eshop-block .eshop-bl-tlt {
    font-size: 27px;
  }
  section.eshop .eshop-blocks .eshop-block h1,
  section.eshop .eshop-blocks .eshop-block h2,
  section.eshop .eshop-blocks .eshop-block h3,
  section.eshop .eshop-blocks .eshop-block h4,
  section.eshop .eshop-blocks .eshop-block h5,
  section.eshop .eshop-blocks .eshop-block h6 {
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block .red-disc {
    top: 44px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) {
    padding-left: 0;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) .red-disc {
    right: 35px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd)::before {
    right: 39px;
    left: calc(50% -  80px);
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) {
    padding-right: 0;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) .red-disc {
    left: 35px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even)::before {
    right: calc(50% -  80px);
    left: 39px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: none;
  }
  section.eshop .eshop-blocks .eshop-block:first-child .red-disc {
    right: 27px;
  }
  section.eshop .eshop-blocks .eshop-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2) {
    margin-bottom: 80px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2)::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 110px;
    top: calc(100% -  1px);
    height: 110px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::before {
    left: calc(50% +  80px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 80px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::before {
    right: calc(50% +  80px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 80px;
  }
}
@media (max-width: 767px) {
  section.eshop .eshop-blocks .eshop-block {
    padding: 40px 60px;
    min-height: 120px;
  }
  section.eshop .eshop-blocks .eshop-block .eshop-bl-tlt {
    font-size: 25px;
  }
  section.eshop .eshop-blocks .eshop-block h1,
  section.eshop .eshop-blocks .eshop-block h2,
  section.eshop .eshop-blocks .eshop-block h3,
  section.eshop .eshop-blocks .eshop-block h4,
  section.eshop .eshop-blocks .eshop-block h5,
  section.eshop .eshop-blocks .eshop-block h6 {
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block .red-disc {
    top: 44px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) {
    padding-left: 0;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) .red-disc {
    right: 20px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd)::before {
    right: 29px;
    left: calc(50% -  60px);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    border-left: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) {
    padding-right: 0;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) .red-disc {
    left: 20px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even)::before {
    right: calc(50% -  60px);
    left: 29px;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    border-right: none;
  }
  section.eshop .eshop-blocks .eshop-block:first-child .red-disc {
    right: 17px;
  }
  section.eshop .eshop-blocks .eshop-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2) {
    margin-bottom: 60px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2)::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 90px;
    top: calc(100% -  1px);
    height: 90px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::before {
    left: calc(50% +  60px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 60px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::before {
    right: calc(50% +  60px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 60px;
  }
}
@media (max-width: 575px) {
  section.eshop .eshop-blocks .eshop-block {
    padding: 20px 30px;
    min-height: 100px;
  }
  section.eshop .eshop-blocks .eshop-block .eshop-bl-tlt {
    font-size: 25px;
  }
  section.eshop .eshop-blocks .eshop-block h1,
  section.eshop .eshop-blocks .eshop-block h2,
  section.eshop .eshop-blocks .eshop-block h3,
  section.eshop .eshop-blocks .eshop-block h4,
  section.eshop .eshop-blocks .eshop-block h5,
  section.eshop .eshop-blocks .eshop-block h6 {
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block .red-disc {
    width: 22px;
    height: 22px;
    font-size: 16px;
    top: 9px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) {
    padding-left: 0;
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h1,
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h2,
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h3,
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h4,
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h5,
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) h6 {
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) .red-disc {
    right: 9px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd)::before {
    right: 9px;
    left: calc(50% -  30px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-left: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) {
    padding-right: 0;
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h1,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h2,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h3,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h4,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h5,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) h6 {
    text-align: left;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even) .red-disc {
    left: 9px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(even)::before {
    right: calc(50% -  30px);
    left: 9px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-right: none;
  }
  section.eshop .eshop-blocks .eshop-block:first-child .red-disc {
    top: 15px;
    right: -1px;
  }
  section.eshop .eshop-blocks .eshop-block:first-child::before {
    border-top-right-radius: 0;
    border-top: none;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2) {
    margin-bottom: 30px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2)::after {
    position: absolute;
    display: block;
    content: '';
    border: solid 2px #1c61ae;
    border-bottom: none;
    width: 50px;
    top: calc(100% -  1px);
    height: 50px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::before {
    left: calc(50% +  30px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(even))::after {
    border-right: none;
    left: calc(50% -  1px);
    border-top-left-radius: 30px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::before {
    right: calc(50% +  30px);
  }
  section.eshop .eshop-blocks .eshop-block:nth-last-child(2):not(:nth-child(odd))::after {
    border-left: none;
    right: calc(50% -  1px);
    border-top-right-radius: 30px;
  }
}
@media (max-width: 399px) {
  section.eshop .eshop-blocks .eshop-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  section.eshop .eshop-blocks .eshop-block .img-sect {
    padding: 0;
    padding-bottom: 10px;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd),
  section.eshop .eshop-blocks .eshop-block:nth-child(even) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  section.eshop .eshop-blocks .eshop-block:nth-child(odd) .img-sect,
  section.eshop .eshop-blocks .eshop-block:nth-child(even) .img-sect {
    padding: 0;
    padding-bottom: 10px;
  }
}
section.eshop .eshop-bottom-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
section.eshop .eshop-bottom-block::before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #1c61ae;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
section.eshop .eshop-bottom-block .bottom-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  padding-top: 0;
}
section.eshop .eshop-bottom-block .bottom-block .bottom-title {
  color: #f47920;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 15px;
}
section.eshop .eshop-bottom-block .bottom-block .icon-blocks {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px 20px;
  padding-top: 0;
}
section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .icon {
  width: 33px;
  height: 33px;
  margin-bottom: 10px;
}
section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .tlt {
  color: #1c61ae;
  font-weight: bold;
  font-size: 19px;
  line-height: 22px;
  padding: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  section.eshop .eshop-bottom-block .bottom-block {
    width: 200px;
  }
  section.eshop .eshop-bottom-block .bottom-block .bottom-title {
    font-size: 25px;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl {
    padding: 15px;
    padding-top: 0;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .icon {
    width: 33px;
    height: 33px;
    margin-bottom: 10px;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .tlt {
    font-size: 19px;
    line-height: 22px;
  }
}
@media (max-width: 450px) {
  section.eshop .eshop-bottom-block .bottom-block {
    width: 145px;
  }
  section.eshop .eshop-bottom-block .bottom-block .bottom-title {
    font-size: 21px;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl {
    padding: 15px;
    padding-top: 0;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .icon {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
  }
  section.eshop .eshop-bottom-block .bottom-block .icon-blocks .icon-bl .tlt {
    font-size: 17px;
    line-height: 20px;
  }
}
section.eshop .bottom-text {
  padding: 30px 0;
  color: #1c61ae;
  font-weight: bold;
  text-align: center;
}
section.eshop .bottom-text p,
section.eshop .bottom-text a,
section.eshop .bottom-text h1,
section.eshop .bottom-text h2,
section.eshop .bottom-text h3,
section.eshop .bottom-text h4,
section.eshop .bottom-text h5,
section.eshop .bottom-text h6,
section.eshop .bottom-text span,
section.eshop .bottom-text i {
  color: #1c61ae;
}
section.leasing-subtitle-sect {
  text-align: center;
}
section.leasing-subtitle-sect .subtitle {
  font-size: 19px;
  margin-bottom: 5px;
}
section.leasing-subtitle-sect .under-subtitle {
  font-size: 11px;
  color: #f47920 !important;
}
section.leasing-subtitle-sect .under-subtitle p,
section.leasing-subtitle-sect .under-subtitle a,
section.leasing-subtitle-sect .under-subtitle h1,
section.leasing-subtitle-sect .under-subtitle h2,
section.leasing-subtitle-sect .under-subtitle h3,
section.leasing-subtitle-sect .under-subtitle h4,
section.leasing-subtitle-sect .under-subtitle h5,
section.leasing-subtitle-sect .under-subtitle h6,
section.leasing-subtitle-sect .under-subtitle span,
section.leasing-subtitle-sect .under-subtitle i {
  color: #f47920 !important;
}
section.about_2021 {
  position: relative;
  padding: 75px 0;
  z-index: 1;
}
section.about_2021 .sect-bg {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
section.about_2021 .sect-bg::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .85;
}
section.about_2021 .container {
  position: relative;
  z-index: 2;
}
section.about_2021 .container p,
section.about_2021 .container h1,
section.about_2021 .container h2,
section.about_2021 .container h3,
section.about_2021 .container h4,
section.about_2021 .container h5,
section.about_2021 .container h6,
section.about_2021 .container span,
section.about_2021 .container a {
  color: #ffffff;
}
section.about_2021 .about_2021-block {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
section.about_2021 .about_2021-block > div {
  padding: 15px;
}
section.about_2021 .about_2021-block .bg-img {
  width: 100%;
  padding-top: 60%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.about_2021 .about_2021-block .bg-img .far {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 45px;
}
section.about_2021 .about_2021-block .text-info {
  width: calc(100% - 490px);
}
section.about_2021 .about_2021-block .video-box {
  width: 490px;
}
@media (max-width: 1199px) {
  section.about_2021 .about_2021-block .text-info {
    width: calc(100% - 460px);
  }
  section.about_2021 .about_2021-block .video-box {
    width: 460px;
  }
}
@media (max-width: 991px) {
  section.about_2021 .about_2021-block .text-info {
    width: calc(100% - 370px);
  }
  section.about_2021 .about_2021-block .video-box {
    width: 370px;
  }
}
@media (max-width: 767px) {
  section.about_2021 .about_2021-block .text-info {
    width: 100%;
  }
  section.about_2021 .about_2021-block .video-box {
    width: 460px;
    max-width: 100%;
    margin: auto;
  }
}
section.thankyou {
  margin-top: -30px;
  margin-bottom: -30px;
  padding-top: 100px;
  padding-bottom: 100px;
}
section.thankyou.pub {
  background: #f2f6f9;
}
section.thankyou > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.thankyou > .container .thankyou-icon {
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 15px;
}
section.thankyou > .container h1 {
  font-weight: 300;
}
section.thankyou > .container .thankyou-info {
  text-align: center;
}
section.contacts-2022 {
  background: #f5f5f5;
}
@media (min-width: 768px) {
  section.contacts-2022 {
    margin-top: -17px;
  }
  section.contacts-2022 > .container > .row {
    display: flex;
    align-items: stretch;
  }
}
section.contacts-2022 .info-sect {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.contacts-2022 .info-sect .info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 270px;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}
section.contacts-2022 .info-sect .info-block .icon-block {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #ffffff;
}
section.contacts-2022 .info-sect .info-block .icon-block .far,
section.contacts-2022 .info-sect .info-block .icon-block .fas {
  font-size: 27px;
  color: #E51C2B;
}
section.contacts-2022 .info-sect .info-block .icon-block.mad-auto .far,
section.contacts-2022 .info-sect .info-block .icon-block.mad-auto .fas {
  color: #1c61ae;
}
section.contacts-2022 .info-sect .info-block .info-content {
  width: calc(100% -  60px);
  padding-top: 0;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
}
section.contacts-2022 .info-sect .info-block .info-content p {
  margin: 0;
}
section.contacts-2022 .info-sect .wase {
  width: 100%;
  text-align: center;
}
section.contacts-2022 .info-sect .wase a {
  display: inline-block;
  padding: 7px 45px;
  border-radius: 5px;
  background: #DFE2E6;
  text-align: center;
  font-weight: bold;
  margin: auto;
}
section.contacts-2022 .map-sect #map {
  min-height: 300px;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  section.contacts-2022 .map-sect #map {
    margin-left: -15px;
    width: calc(100% +  30px);
  }
}
@media (min-width: 768px) {
  section.contacts-2022 .map-sect #map {
    width: calc(100% +  calc(50vw - 360px));
  }
}
@media (min-width: 992px) {
  section.contacts-2022 .map-sect #map {
    width: calc(100% +  calc(50vw - 470px));
  }
}
@media (min-width: 1200px) {
  section.contacts-2022 .map-sect #map {
    width: calc(100% +  calc(50vw - 570px));
  }
}
section.cont-ban-bl {
  position: relative;
  padding: 80px 0;
  margin: 0;
  margin-bottom: -50px;
}
@media (max-width: 1199px) {
  section.cont-ban-bl {
    padding: 25px 0;
  }
}
section.cont-ban-bl .bg-img {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  margin: 0;
}
section.cont-ban-bl .bg-img::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: #000000;
  opacity: .74;
}
section.cont-ban-bl .container {
  position: relative;
}
section.cont-ban-bl .container .bl-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  color: #ffffff;
}
section.cont-ban-bl .container .bl-container .left-bl {
  position: relative;
  margin-right: 10px;
  z-index: 1;
  padding: 5px;
  padding-right: 15px;
  margin-bottom: 50px;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
}
section.cont-ban-bl .container .bl-container .left-bl.mad {
  margin-bottom: 20px;
  margin-right: 130px;
}
section.cont-ban-bl .container .bl-container .left-bl .line-1,
section.cont-ban-bl .container .bl-container .left-bl .line-2 {
  font-weight: 400;
  font-size: 32px;
  padding-right: 15px;
}
section.cont-ban-bl .container .bl-container .left-bl .line-2 {
  font-size: 30px;
  padding-right: 30px;
}
section.cont-ban-bl .container .bl-container .left-bl::before {
  position: absolute;
  display: block;
  content: '';
  z-index: -1;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100vw;
  background: #E51C2B;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
section.cont-ban-bl .container .bl-container .left-bl .stamp {
  position: absolute;
  display: block;
  content: '';
  width: 100px;
  height: 100px;
  right: 10px;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.cont-ban-bl .container .bl-container .left-bl .only {
  position: absolute;
  display: block;
  content: '';
  width: 140px;
  height: 130px;
  left: calc(100% -  15px);
  top: -10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
}
@media (max-width: 364px) {
  section.cont-ban-bl .container .bl-container .left-bl .only {
    width: calc(100vw -  220px);
  }
}
section.cont-ban-bl .container .bl-container .center-bl {
  max-width: 400px;
}
section.cont-ban-bl .container .bl-container .center-bl .bl-tlt {
  color: #E51C2B;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
section.cont-ban-bl .container .bl-container .center-bl .row {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
section.cont-ban-bl .container .bl-container .center-bl .row::before {
  display: none;
}
section.cont-ban-bl .container .bl-container .center-bl .far {
  color: #E51C2B;
}
section .bootstrap-select .dropdown-menu {
  z-index: 1040;
}
section .index-pagination-box .cars-pagination {
  text-align: right;
}
section .index-pagination-box .cars-pagination li {
  text-align: center;
}
.chat-block {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}
.chat-block .chat-icon {
  padding: 10px;
  display: block;
  border: none !important;
  border-radius: 50%;
}
.chat-block .chat-icon.dark-blue {
  background: #3974b1;
}
.chat-block .chat-icon.red {
  background: #ec5923;
}
.chat-block .chat-icon.green {
  background: #4dc247;
}
.chat-block .chat-icon.blue {
  background: #0084ff;
}
.chat-block .chat-icon div {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
}
.chat-block .chat-icon div.chat {
  -webkit-mask: url('../images/chat.svg') no-repeat 50% 50%;
  mask: url('../images/chat.svg') no-repeat 50% 50%;
}
.chat-block .chat-icon div.chat[aria-expanded=true] {
  -webkit-mask: url('../images/phone.svg') no-repeat 50% 50%;
  mask: url('../images/phone.svg') no-repeat 50% 50%;
}
.chat-block .chat-icon div.phone-call {
  -webkit-mask: url('../images/phone.svg') no-repeat 50% 50%;
  mask: url('../images/phone.svg') no-repeat 50% 50%;
}
.chat-block .chat-icon div.whatsapp {
  -webkit-mask: url('../images/whatsapp.svg') no-repeat 50% 50%;
  mask: url('../images/whatsapp.svg') no-repeat 50% 50%;
}
.chat-block .chat-icon div.messanger {
  -webkit-mask: url('../images/messanger.svg') no-repeat 50% 50%;
  mask: url('../images/messanger.svg') no-repeat 50% 50%;
}
.chat-block .opened-chat-block {
  position: absolute;
  bottom: 100%;
  margin-bottom: 10px;
}
.chat-block .opened-chat-block .chat-icon {
  margin-bottom: 10px;
}
.text-under-the-title {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  padding-top: 5px;
  text-align: center;
}
.leasing-page-block {
  margin-top: -134px;
  padding-top: 134px;
}
@media (max-width: 767px) {
  .leasing-page-block {
    margin-top: -68px;
    padding-top: 68px;
  }
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-30 {
  padding-top: 30px;
}
.input-form .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.input-form div .r-btn-custom,
.input-form span .r-btn-custom,
.input-form .read-more-button .r-btn-custom {
  font-weight: 400;
}
.input-form div .r-btn-custom span,
.input-form span .r-btn-custom span,
.input-form .read-more-button .r-btn-custom span,
.input-form div .r-btn-custom a,
.input-form span .r-btn-custom a,
.input-form .read-more-button .r-btn-custom a {
  font-size: 12px;
}
.input-form input,
.input-form textarea {
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #dddddd;
  text-transform: none;
  max-width: 600px;
  width: 100%;
  margin: 5px 0;
  color: #251f4a;
}
.page-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 20px;
  padding: 0 10px;
  width: 100%;
}
.page-switcher div {
  margin: 0 5px;
}
.page-switcher div a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  height: 25px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-decoration: none !important;
  background: #251f4a;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.page-switcher div.current a,
.page-switcher div:hover a {
  background-color: #fea43b;
  background: -webkit-gradient(linear, left top, left bottom, from(#fea43b), to(#b66200));
  background: -webkit-linear-gradient(top, #fea43b, #b66200);
  background: -moz-linear-gradient(top, #fea43b, #b66200);
  background: -ms-linear-gradient(top, #fea43b, #b66200);
  background: -o-linear-gradient(top, #fea43b, #b66200);
  color: #ffffff;
}
.hide-model {
  margin-left: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  display: none;
}
.index-pagination-box .page-switcher {
  justify-content: flex-end;
  gap: 10px 0;
}
/* buttons */
.btn {
  background-color: #f4e320;
  color: #ffffff;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.btn.small {
  font-size: 16px;
  line-height: 16px;
  padding: 10px 15px;
}
.btn.x-small {
  font-size: 12px;
  line-height: 12px;
  padding: 10px 10px;
}
.btn.no-bg {
  background: none;
  color: #656565;
}
.btn:hover,
.btn:focus,
.btn:focus-within {
  outline: none !important;
}
.order-btn {
  color: #656565;
  background: none;
  text-decoration: none !important;
}
.order-btn div {
  padding: 10px 20px;
  border: 2px solid #656565;
  color: #656565;
  display: inline-block;
}
.order-btn:hover div,
.order-btn:focus div {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: #656565;
}
input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #8b8a92;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
  position: relative;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  background-color: #f4e320;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4e320), to(#f47920));
  background: -webkit-linear-gradient(top, #f4e320, #f47920);
  background: -moz-linear-gradient(top, #f4e320, #f47920);
  background: -ms-linear-gradient(top, #f4e320, #f47920);
  background: -o-linear-gradient(top, #f4e320, #f47920);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #8b8a92;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #8b8a92;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
  position: relative;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  background-color: #f4e320;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4e320), to(#f47920));
  background: -webkit-linear-gradient(top, #f4e320, #f47920);
  background: -moz-linear-gradient(top, #f4e320, #f47920);
  background: -ms-linear-gradient(top, #f4e320, #f47920);
  background: -o-linear-gradient(top, #f4e320, #f47920);
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #8b8a92;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #8b8a92;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  position: relative;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  background-color: #f4e320;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4e320), to(#f47920));
  background: -webkit-linear-gradient(top, #f4e320, #f47920);
  background: -moz-linear-gradient(top, #f4e320, #f47920);
  background: -ms-linear-gradient(top, #f4e320, #f47920);
  background: -o-linear-gradient(top, #f4e320, #f47920);
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #8b8a92;
}
input[type=range]:focus::-ms-fill-upper {
  background: #8b8a92;
}
input[type=range]::-webkit-slider-thumb::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " | ";
  text-align: center;
}
input[type=range]::-moz-range-thumb::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " | ";
  text-align: center;
}
input[type=range]::-ms-thumb::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " | ";
  text-align: center;
}

@media (min-width: 768px) {
  .top-navs .bottom-line .container .menu-navs li.he1custom_btn a {
    height: 30px;
    color: #f47920;
    background: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    line-height: 30px;
  }
  .top-navs .bottom-line .container .menu-navs li.he1custom_btn a:hover {
    background: #f47920;
    color: white;
  }
}

.auction_promo_carbox_inside {
  height: 95%;
  color: #fff;
  background: url('/wp-content/themes/CarsOutlet/images/promo-car-item.jpg');
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 8px;
  padding: 2.2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: cover;
}
:lang(ru-RU) .auction_promo_carbox_inside {
  background-image: url('/wp-content/themes/CarsOutlet/images/promo-car-item-ru.png');
}
.auction_soon_carbox .auction_promo_carbox_inside {
  background: url('/wp-content/themes/CarsOutlet/images/Group 454.png');
  background-position: center;
  padding: 38px 32px;
  padding-top: 5rem;
  flex-direction: column;
}
.auction_promo_carbox_inside p {
  color: white;
  font-size: 16px;
}
.auction_soon_carbox .auction_promo_carbox_inside p {
  margin-bottom: 18px;
  line-height: 21px;
}
.auction_promo_carbox_inside .title {
  color: #38C260;
  font-size: 25px;
  font-weight: 700;
}
.auction_promo_carbox_inside .sub-title {
  font-size: 25px;
  font-weight: 900;
}
.auction_soon_carbox .auction_promo_carbox_inside .sub-title {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.6rem;
}
.auction_promo_carbox_inside a {
  font-size: 12px;
  font-weight: 700;
  background-color: #E5003C;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 4rem;
}
.auction_soon_carbox .auction_promo_carbox_inside a {
  background-color: #000;
  padding: 0.9rem 1.9rem;
}
.auction_soon_carbox .auction_promo_carbox_inside a::after {
  content: '';
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'%3E%3Cpath id='Subtraction_7' data-name='Subtraction 7' d='M16,19H3a3,3,0,0,1-3-3V3A3,3,0,0,1,3,0H16a3,3,0,0,1,3,3V16A3,3,0,0,1,16,19ZM8.217,8.105a3.3,3.3,0,0,0-2.327.985,3.178,3.178,0,0,0-.937,2.278,3.215,3.215,0,0,0,3.272,3.243A3.213,3.213,0,0,0,11.5,11.368c-.032-.113-.028-1.677-.025-2.612,0-.349,0-.6,0-.667a4.577,4.577,0,0,0,2.422.692l.154,0V6.991a2.509,2.509,0,0,1-1.894-.658,2.791,2.791,0,0,1-.673-1.9l-1.7-.041v7.259a1.536,1.536,0,0,1-1.534,1.283,1.64,1.64,0,0,1-1.229-.544,1.58,1.58,0,0,1,1.214-2.6,1.529,1.529,0,0,1,.525.093V8.152A3.192,3.192,0,0,0,8.217,8.105Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin-left: 9px;
  vertical-align: middle;
}

.madauto_partner_carbox_inside {
  background: #000b1c;
  text-align: center;
  padding-top: 140px;
  height: 95%;
}
.madauto_partner_carbox_inside p {
  color: white;
  font-weight: 600;
  font-size: 21px;
  padding: 0 6px;
  margin-bottom: 16px;
}
.madauto_partner_carbox_inside img {
  margin: 0 auto;
  max-width: 140px;
}
.madauto_partner_carbox_inside a {
  color: white;
  border: 1px solid white;
  padding: 4px 11px;
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
  font-size: 13px;
  transition: ease-in-out 0.2s;
  text-transform: uppercase;
}
.madauto_partner_carbox_inside a:hover {
  background: white;
  color: black;
}
@media (max-width: 1200px) {
  .madauto_partner_carbox_inside {
    padding-top: 100px;
    height: 91%;
  }
  .madauto_partner_carbox_inside p {
    font-size: 17px;
  }
  .madauto_partner_carbox_inside img {
    max-width: 115px;
  }
  .auction_promo_carbox {
    margin-bottom: 2rem;
  }
  .auction_promo_carbox_inside {
    max-width: 42rem;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
  }
}
@media (max-width: 768px) {
  .madauto_partner_carbox_inside {
    max-width: 450px;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 40px;
    margin-bottom: 22px;
  }

  .auction_promo_carbox_inside {
    min-height: 49rem;
    background: url(/wp-content/themes/CarsOutlet/images/promo-car-item-mob.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  :lang(ru-RU) .auction_promo_carbox_inside {
    background-image: url(/wp-content/themes/CarsOutlet/images/promo-car-item-mob-ru.png);
  }

  .auction_promo_carbox_inside .title {
    font-size: 32px;
  }
  .auction_promo_carbox_inside .sub-title {
    font-size: 32px;
  }
  .auction_promo_carbox_inside p {
    text-align: left;
    margin-bottom: 1rem;
  }
  .auction_promo_carbox_inside a {
    font-size: 16px;
  }
  .auction_soon_carbox .auction_promo_carbox_inside {
    background-size: cover;
    padding: 51px;
  }
}





.top-navs.header_wrapper {
  background: initial;
}
.header_wrapper > .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header_upper {
  height: 113px;
  background: #0F0F0F;
  transition: ease-in-out 0.25s;
}
.header_lower {
  height: 43px;
  background: rgb(0 0 0 / 45%);
}

.header_upper .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.header_lower .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_logo_wrap {
  display: block;
  margin: 0 50px 0 0;
}
.header_logo_wrap img {
  display: block;
  width: 258px;
  height: 42px;
}
.header_upper .langs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.header_upper .langs a {
  color: white;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.header_upper .langs li {
  position: relative;
}
.header_upper .langs li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: white;
}
.header_upper .langs li:last-of-type:before {
  content: initial;
}

.header_upper .menu-navs {
  display: flex;
  gap: 22px;
  margin: 0 0 0 auto;
  align-items: center;
  margin-top: 5px;
}
.header_upper .menu-navs a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1em;
  color: white;
  transition: ease-in-out 0.25s;
}
.header_upper .menu-navs a:hover {
  opacity: 0.75;
}

.header_upper .menu-navs .he_custom_1,
.btn_style_1 {
  display: block;
  background: #E51C2B;
  box-shadow: 0px 7px 15px #0000001D;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 9px 18px;
  transition: ease-in-out 0.25s;
  transform-style: preserve-3d;
  opacity: 1;
  position: relative;

  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: white;
  text-decoration: none;
}
/* .header_upper .menu-navs .he_custom_1 a::before,
.btn_style_1::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 80%;
  height: 5px;
  background: #0F0F0F;
  border-radius: 10px;
  z-index: -1;
  transform: translateX(-50%);
  transition: ease-in-out 0.4s;
} */
.header_upper .menu-navs .he_custom_2 a,
.btn_style_outline {
  display: block;
  box-shadow: 0px 7px 15px #0000001D;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  padding: 9px 18px;
  transition: ease-in-out 0.25s;
  opacity: 1;
  position: relative;
  width: fit-content;

  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: white;
}

.header_upper .menu-navs .he_custom_1 a:hover,
.btn_style_1:hover {
  border-color: white;
  background: transparent;
}
.header_upper .menu-navs .he_custom_1 a:hover::before,
.btn_style_1:hover::before {
  bottom: 5px;
  opacity: 0;
}
.header_upper .menu-navs .he_custom_2 a:hover,
.btn_style_outline:hover {
  border-color: #E51C2B;
  background: #E51C2B;
}
.btn_style_outline.btn_with_arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translate(50%, -50%);
  background-image: url(/wp-content/uploads/2023/04/arrow-14.svg);
  width: 31px;
  height: 11px;
  transition: ease-in-out 0.25s;
}
.btn_style_outline.btn_with_arrow:hover::before {
  right: -4px;
}

.header_upper .menu-navs .he_custom_2 a span {
  color: inherit;
  font-size: 1.2em;
}
.header_upper .menu-navs .he_new_item { position: relative; }
.header_upper .menu-navs .he_new_item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)translateY(-100%);
  background-image: url('/wp-content/uploads/2023/05/Group-330.svg');
  width: 55px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
html[lang="ru-RU"] .header_upper .menu-navs .he_new_item::after {
  background-image: url('/wp-content/uploads/2023/05/Group-331.svg');
}



@media (min-width: 768px) {
  body {
    padding-top: 113px;
  }
}


.header_lower .header_contact_box_wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}
.header_lower .header_contact_box_wrap > a {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.25s;
}
.header_lower .header_contact_box_wrap > a img {
  display: block;
  width: 100%;
  height: 100%;
}
.header_lower .header_contact_box_wrap > a:hover {
  opacity: 0.75;
}

.header_lower .current-users {
  margin: 0 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: white;
  opacity: 0.5;
}

.header_info_box_wrap {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0 0 0 45px;
}
.header_info_box {
  display: flex;
  align-items: center;
  gap: 13px;
}
.header_info_box p {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: white;
  margin: 0;
}

section.leasing-04-2023 {
  padding: 120px 0 60px 0;
  min-height: 790px;
  margin-top: -60px;
}

section.leasing-04-2023 .form_title2023 {
  color: white;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15em;
  text-align: center;
  max-width: 325px;
  margin: 0 auto;
}
section.leasing-04-2023 .form_title2023 span {
  color: #E51C2B;
}


.input-form input, .input-form textarea {
  font-size: 15px;
  line-height: 20px;
  padding: 11px 15px;
  border-radius: 8px;
  background: #ffffff;
  border: initial;
  text-transform: none;
  max-width: 600px;
  width: 100%;
  margin: 5px 0;
  color: #000000;
}

section.leasing-04-2023 .leasing-inp-2021 {
  padding: 22px 30px;
  background: rgb(0 0 0 / 56%);
  border-radius: 20px;
}
section.leasing-04-2023 .sect-bg .overlay::after {
  content: initial;
}
section.leasing-04-2023 .sect-bg .overlay::before {
  opacity: 0.58;
}

section.leasing-04-2023 .right-side {
  text-align: center;
  align-items: center !important;
}
.apply_content_title_1,
.apply_content_title_2 {
  font-weight: 900;
  text-align: center;
  color: white;
  margin: 0;
}
.apply_content_title_1 {
  font-size: 30px;
  line-height: 39px;
}
.apply_content_title_2 {
  font-size: 55px;
  line-height: 65px;
}


.apply_2023_offer_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 10px 0;
}
.apply_2023_offer {
  background: #E51C2B;
  border-radius: 22px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.apply_2023_offer img {
  width: 22px;
  height: 22px;
  display: block;
}
.apply_2023_offer p {
  font-weight: 900;
  font-size: 13px;
  line-height: 18px;
  color: white;
  margin: 0;
}

.video_leasing_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: white;
  text-align: center;
  margin: 14px 0 4px 0;
}
.video_leasing_name {
  background: white;
  border-radius: 8px;
  padding: 4px 15px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  bottom: -16px;

  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: black;
}
.video_leasing_name span {
  color: #E51C2B !important;
}

section.leasing-04-2023 div.video-wrap img:not(.video_arrow) {
  border-radius: 8px;
  width: 334px;
  height: 169px;
  object-fit: cover;
}

section.leasing-04-2023 .right-side .video-wrap {
  justify-content: center;
  left: -17px;
}
section.leasing-04-2023 .video-wrap .left-side-video,
section.leasing-04-2023 .video-wrap .right-side-video {
  max-width: 334px;
  position: relative;
}
section.leasing-04-2023 .video-wrap .left-side-video {
  top: 65px;
  right: -34px;
}

section.leasing-04-2023 div.video-wrap img.video_play_icon,
img.video_play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 23px;
  display: block;
  border-radius: initial;
  object-fit: initial;
}


section.leasing-04-2023 .video-wrap .left-side-video a,
section.leasing-04-2023 .video-wrap .right-side-video a {
  display: block;
}

section.leasing-04-2023 .form_person2023 {
  margin: 20px 0;
}
section.leasing-04-2023 .form_person2023 .d-flex {
  justify-content: center;
  gap: 2px;
}
section.leasing-04-2023 .form_person2023 [type="radio"] + label {
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: white;
  text-align: center;
  transition: ease-in-out 0.25s;
  margin: 0;
  width: fit-content;
}
section.leasing-04-2023 .form_person2023 [type="radio"]:checked + label {
  background: #E51C2B;
}

section.leasing-04-2023 .r-btn-custom {
  padding-left: 30px;
  position: relative;
  margin: 16px 0 6px 0;
  display: flex;
  align-items: center;
}
section.leasing-04-2023 .r-btn-custom .checkmark {
  border: 2px solid #FFFFFF;
  border-radius: 3px;
  background: transparent;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
section.leasing-04-2023 .r-btn-custom span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: white;
}



.btn {
  background: #E51C2B;
  border-radius: 8px;
  padding: 11px 40px;
  font-size: 14px;
  line-height: 18px;
  text-transform: initial;
}
.btn.small {
  font-size: 14px;
  line-height: 18px;
  padding: 11px 40px;
}


.right-side-video .btn_style_outline {
  margin: 10px auto 0 auto;
}


section.index-cars .index_car_row_new {
  margin-bottom: 25px;
}
section.index-cars #order-by {
  pointer-events: none;
}
section.index-cars .index_car_row_new .small-select-block {
  width: fit-content;
  margin-left: auto;
  padding: 0;
}
section.index-cars .index_car_row_new .dropdown-toggle {
  margin-left: auto;
  background: white;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 10px 55px 10px 20px;

  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: black;
}
.index_car_row_new .bootstrap-select {
  width: auto !important;
}
.index_car_row_new .dropdown-menu {
  left: initial;
  right: 0;
}

div.car-views-count {
  background: rgba(255,255,255,0.8);
  border-radius: 8px;

  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: black;
}
div.car-views-count:before {
  background-image: url(/wp-content/uploads/2023/04/user-1.svg);
  width: 10px;
  height: 10px;
}


section.index-cars .cars-info-slider .car {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px 6px 12px #00000014;
}

section.index-cars .car .short-txt.car_title_part {
	background: white;
  padding: 17px 22px 12px 22px;
  gap: 3px 10px;
  min-height: 73px;
}
.car_title_part .price-block {
	display: flex;
	flex-direction: column;
  flex-shrink: 0;
}
.car_title_part .price-block .current {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #E51C2B;
	margin-bottom: 4px;
	text-align: right;
}
.car_title_part .price-block .old {
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #A7A7A7;
	text-decoration: line-through;
	margin: 0;
	text-align: right;
}
.car_title_part > span {
	font-weight: 500;
	font-size: 14px;
	line-height: 19px;
	color: #0F0F0F;
}


section.index-cars .car .info {
  padding: 17px 22px 19px 22px;
  background: white;
  position: relative;
}

section.index-cars .car .info .detail-box span {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}
section.index-cars .car .info .detail-box .icon {
  width: 16px;
  height: 16px;
  margin-right: 9px;
}
section.index-cars .car .info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 44px);
  height: 1px;
  background: #E5E5E5;
  transform: translateX(-50%);
}


section.index-cars .car .leasing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px 9px 22px;
  background: #0F0F0F;
}
section.index-cars .car .leasing p {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: white;
  margin: 0;
  text-transform: initial;
}
section.index-cars .car .leasing p span {
  font-size: 14px;
  color: inherit;
}
section.index-cars .car .leasing .btn_style_outline {
  text-transform: initial;
  padding: 2px 18px;
  min-width: 100px;
}
section.index-cars .car .leasing .btn_style_outline:hover {
  background: white;
  color: #E51C2B;
}


.page-switcher div.current a,
.page-switcher div:hover a {
  background: #E51C2B;
}
.page-switcher div a {
  background: #0F0F0F;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
body section.index-cars {
  padding-bottom: 60px;
}
section.about_2023 .sect-bg::after {
  opacity: 0.66;
}
section.about_2023 {
  padding: 110px 0 105px 0;
}
section.about_2023 .about_2021-block {
  justify-content: space-between;
}

.about_2023_block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about_block_2023_left {
  padding: 0 !important;
}
.about_block_2023_left img {
  width: 100%;
  max-width: 465px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.about_2023 h3 {
  font-weight: 900;
  font-size: 35px;
  line-height: 1.1em;
  color: white;
  max-width: 320px;
  margin: 0 0 20px 0;
  text-transform: initial;
}
.about_2023 h3 span {
  color: #E51C2B !important;
}

section.about_2023 .container p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: white;
}
.about_2023_block_reverse h3, .about_2023_block_reverse p {
  margin-left: auto;
  text-align: right;
}

section.about_2023.about_2021 .about_2021-block > div {
  padding: 0;
}
section.about_2023.about_2021 .about_2021-block .text-info {
  width: 100%;
  max-width: 415px;
}

section.about_2023 .about_2021-block {
  margin-bottom: 92px;
}
section.about_2023 .about_2021-block:last-of-type {
  margin-bottom: 0;
}

.about_2023 .video_play_icon {
  width: 52px;
  height: 35px;
}


.slick-prev:before,
.slick-next:before {
  content: '';
  background: url('/wp-content/uploads/2023/04/arrow-10.svg');
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
}
.slick-next:before {
  transform: rotate(180deg);
}
.slick-prev {
  left: -35px;
}
.slick-next {
  right: -35px;
}
.slick-prev:hover, .slick-next:hover {
  opacity: 0.6;
}



.pf-wrap.pf-wrap-section {
  padding: 72px;
  background: url(/wp-content/uploads/2023/04/front-view-generic-brandless-moder-car.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

div.pf-wrap .header {
  background: transparent;
  padding: 66px 20px 20px 20px;
}
.pf-wrap .header .title {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.2em;
  color: #0F0F0F;
  margin: 0;
}
.pf-wrap .header .discount {
  font-weight: 900;
  font-size: 75px;
  line-height: 1.2em;
  color: #0F0F0F;
  margin: 0;
}
.pf-wrap .header .discount span {
  color: #E51C2B;
  font-size: inherit;
  line-height: inherit;
  background: initial;
  padding: 0;
  margin: 0;
}
.pf-wrap .header .subtitle {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2em;
  color: #0F0F0F;
}

.pf-wrap .header .pf-line {
  display: block;
  height: 1px;
  width: 100%;
  max-width: 288px;
  background: #0F0F0F;
  margin: 38px 0;
}

.pf-wrap .header .form-notice {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1em;
  color: #0F0F0F;
  margin: 0;
  max-width: 280px;
  text-align: left;
}


.pf-wrap .form .form-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2em;
  color: white;
  text-align: center;
  margin-bottom: 25px;
}
.pf-wrap .form .form-title span {
  color: #E51C2B;
}
.pf-wrap div.form {
  border-radius: 0;
  background: rgb(15 15 15 / 85%);
  padding: 40px 46px 30px 46px;
  max-width: 475px;
  margin-left: auto;
}


.pf-wrap .form .input-half {
  width: 100%;
  margin-bottom: 9px;
}

.pf-wrap .form .input {
  border-radius: 8px;
  height: 44px;
  padding: 10px 23px;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  border: none;
}
.pf-wrap .form .input-news .label {
  font-size: 16px;
  color: white;
  padding-left: 10px;
}

.pf-wrap .form .checkbox label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: white;
  max-width: 261px;
  margin: 0 auto;
}
.pf-wrap .form .input-news .checkbox label {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

.pub-footer .info-block span,
.pub-footer .info-block a {
  font-size: 12px;
  line-height: 1.3em;
  color: white;
}

.pub-footer .top-l .container {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 88px;
}
.footer_vl {
  height: 100%;
  width: 1px;
  background: #FFFFFF;
  opacity: 0.2;
}

.footer_top_column ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.footer_top_column ul li a,
.footer_top_column ul li {
  font-weight: 900;
  font-size: 12px;
  line-height: 18px;
}


.footer_navigation {
  padding: 0 20px;
}
.footer_top_column strong {
  color: #E51C2B;
  font-weight: 900;
  display: block;
}
.footer_top_column.ftc {
  height: 100%;
}
.ft_adress {
  max-width: 150px;
  height: 100%;
}

.ft_lease {
  max-width: initial;
  text-align: center;
  height: 100%;
}
.ft_lease p {
  line-height: 16px;
  margin: 0;
}
.ft_lease .btn_style_1 {
  margin: 12px 0 0 0;
  font-size: 12px;
  line-height: 1.25em;
}

.pub-footer .top-l .container::before,
.pub-footer .top-l .container::after {
  content: initial;
}

.pub-footer .footer_top_column p {
  font-size: 12px;
  line-height: 1.2em;
}

#serach-form br {
  display: none;
}
#serach-form .range {
  margin: 15px 0 30px 0;
}


@media (max-width: 1200px) {
  .header_wrapper .header_upper .menu-navs,
  .header_lower .current-users,
  .header_lower .header_contact_box_wrap,
  .header_upper .langs {
    display: none;
  }
  /* .header_upper .langs {
    margin-left: auto;
    margin-top: 0;
  } */
  .top-navs .col-btn-box {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .header_logo_wrap {
    width: 180px;
  }
  .header_upper {
    height: 80px;
  }
  /* .header_lower {
    display: none;
  } */
  .header_lower .container > *:not(.holiday_notice) {
    display: none;
  }
  .holiday_notice {
    margin: 0 auto !important;
  }
}

.mobile_menu_open {
  display: none;
}
body.top-navs-opened {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
body.top-navs-opened .mobile_menu_open {
  display: block;
  position: fixed;
  top: 113px;
  right: 0;
  width: 100%;
  height: calc(100dvh - 113px);
  height: calc(100dvh - 113px);
  background: white;
  z-index: 10000;
  padding: 45px 30px 120px 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: ease-in-out 0.25s;
}

@media (min-width: 1201px) {
  .mobile_menu_open { display: none !important; }
}
@media (max-width: 768px) {
  body.top-navs-opened .mobile_menu_open {
    top: 80px;
    height: calc(100dvh - 80px);
    height: calc(100dvh - 80px);
  }
}


.mobile_menu_open .langs  {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 5px auto 0 auto;
}
.mobile_menu_open .langs  a {
  color: black;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.mobile_menu_open .langs {
  list-style: none;
  padding: 0;
}
.mobile_menu_open .langs  li {
  position: relative;
  height: 22px;
}
.mobile_menu_open .langs  li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: black;
}
.mobile_menu_open .langs  li:last-of-type:before {
  content: initial;
}

.mobile_menu_open .current-users {
  margin: auto auto 20px auto;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: #0F0F0F;
  text-align: center;
}
.mobile_menu_open .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile_menu_open ul {
  list-style: none;
}
.mobile_menu_open .menu-navs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0;
  gap: 4px;
  margin: 30px 0;
}
.mobile_menu_open .menu-navs li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
}

.mobile_menu_open .header_contact_box_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.mobile_menu_open .header_contact_box_wrap > a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.25s;
  filter: invert(1);
}
.mobile_menu_open .header_contact_box_wrap > a img {
  display: block;
  width: 100%;
  height: 100%;
}
.mobile_menu_open .header_contact_box_wrap > a:hover {
  opacity: 0.75;
}

section.news {
  padding-top: 40px;
}


@media (max-width: 1000px) {
  .leasing-04-2023 .leasing-row-2021 {
    flex-direction: column;
  }
  .leasing-11-2022 .row .left-side {
    order: 2;
    border-radius: 0;
    margin-bottom: -30px;
    padding-bottom: 36px;
  }
  .leasing-04-2023 .left-side, .leasing-04-2023 .right-side {
    width: 100% !important;
  }
  .leasing-04-2023 .btn_style_outline.btn_with_arrow {
    display: none !important;
  }
  .leasing-04-2023 .right-side {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  section.leasing-07-2022 .right-side .video-wrap {
    gap: 32px;
  }
  .apply_2023_offer_wrap {
    margin-bottom: 0;
  }
  .leasing-04-2023 .right-side {
    padding-bottom: 0;
  }
  section.leasing-04-2023 .r-btn-custom {
    max-width: 360px;
    margin: 16px auto 6px auto;
  }
  section.leasing-04-2023 .r-btn-custom span {
    text-align: left;
  }
  .pf-wrap div.form {
    max-width: initial;
  }
  .pf-wrap.pf-wrap-section {
    padding: 70px 10px 0 10px;
  }
  .pf-wrap .header .title {
    font-size: 30px;
  }
  .pf-wrap .header .discount {
    font-size: 42px;
  }
  .pf-wrap .header .subtitle {
    font-size: 22px;
  }
  div.pf-wrap-section .container {
    display: block;
  }
  .pf-wrap div.form {
    position: relative;
    left: -25px;
    border-radius: 0;
    width: calc(100% + 50px);
    max-width: initial;
    padding: 40px 25px 30px 25px;
  }
  .pf-wrap .input-news {
    max-width: 285px;
    margin: 26px auto 15px auto;
  }
  .pf-wrap .input-news div.label {
    text-align: left;
    margin: 0 0 10px 0;
    display: block;
    padding: 0;
  }
}
@media (max-width: 500px) {
  .apply_content_title_1 {
    font-size: 25px;
    line-height: 35px;
  }
  .apply_content_title_2 {
    font-size: 43px;
    line-height: 54px;
  }
}

@media (max-width: 1000px) {
  .about_2023 .about_2021-block {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  section.about_2023.about_2021 .about_2021-block .text-info,
  section.about_2023.about_2021 .about_2021-block .text-info h3,
  section.about_2023.about_2021 .about_2021-block .text-info p {
    text-align: left;
    margin-left: initial;
  }
  section.about_2021 .about_2021-block .bg-img {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
  }
  section.about_2023 .about_2021-block {
    margin-bottom: 70px;
  }
}
@media (max-width: 600px) {
  section.about_2023 {
    padding: 110px 40px 105px 40px;
  }
}


@media (max-width: 1200px) {
  .pub-footer .top-l .container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .footer_vl {
    width: 150px;
    height: 1px;
  }
  .footer_top_column {
    text-align: center;
  }
  footer.pub-footer .bottom-l > .container .info-block {
    justify-content: center;
    flex-wrap: wrap;
  }
}

section.leasing.leasing-form-inputs {
  padding: 70px 0 40px 0;
  margin-top: -60px;
}

/* #popup-form {
  border-radius: 8px;
  margin: 10px 0;
}
#popup-form.pf-wrap div.form {
  border-radius: 0;
}
#popup-form.pf-wrap .header {
  padding: 0;
} */
#popup-form.pf-wrap .form {
  max-width: 660px;
}
.fancybox-stage .pf-wrap .header .subtitle,
.fancybox-stage .pf-wrap .header .discount,
.fancybox-stage .pf-wrap .header .title {
  color: white;
}
.fancybox-stage .pf-wrap .header {
  background-image: url(/wp-content/uploads/2024/07/zem-auto-klucis-1.png) !important;
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 260px;
}
html[lang="ru-RU"] .fancybox-stage .pf-wrap .header {
  background-image: url(/wp-content/uploads/2024/07/horizontal-ru.png) !important;
}

.leasing-03-2021.leasing-2022-calc {
  margin-top: -60px;
  padding-top: 80px;
}

@media (max-width: 768px) {
  #popup-form.pf-wrap div.form {
    left: 0;
    width: 100%;
  }
}


.request_banner {
  width: 100%;
  height: 263px;
  position: relative;
  padding-top: 30px;
  margin-top: -60px;
  display: flex;
  align-items: center;
}
.request_banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0F0F0F;
  opacity: 0.66;
  z-index: 1;
}
.request_banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  display: block;
}
.request_banner .container {
  position: relative;
  z-index: 5;
}

.request_banner h1 {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.2em;
  color: #FFFFFF;
  margin: 0;
  text-transform: initial;
}
.request_banner h1 span {
  color: #E51C2B;
}
.request_banner h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25em;
  color: white;
  margin: 7px 0 0 0;
  text-transform: initial;
}


.carorder_wrap {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  gap: 40px;

}
.carorder_left {
  width: 100%;
  max-width: 425px;
}
.carorder_right {
  width: 100%;
  max-width: 610px;
}

.col_text_1 {
  font-size: 23px;
  line-height: 27px;
  color: #0F0F0F;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.27);
  margin-bottom: 26px;
}
.carorder_left p:not(.col_text_1, .col_text_3) {
  font-size: 15px;
  line-height: 22px;
  color: #0F0F0F;
  margin-bottom: 10px;
}
.col_text_3 {
  padding-top: 24px;
  border-top: 1px solid rgba(112, 112, 112, 0.27);
  font-size: 18px;
  line-height: 24px;
  color: #0F0F0F;
  margin: 16px 0 15px 0;
}


.btn_style_1_with_line {
  display: block;
  width: fit-content;
  background: #E51C2B;
  box-shadow: 0px 7px 15px #0000001D;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 11px 43px;
  transition: ease-in-out 0.25s;
  transform-style: preserve-3d;
  opacity: 1;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: white;
  text-align: center;
  margin: 10px 0 0 0;
}
.btn_style_1_with_line span { position: relative; }
.btn_style_1_with_line span {
  font: inherit;
  color: inherit
}
.btn_style_1_with_line span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #0F0F0F;
  border-radius: 10px;
  z-index: -1;
  transition: ease-in-out 0.4s;
}

.btn_style_1_with_line:hover {
  color: white;
}
.btn_style_1_with_line:hover span::before {
  bottom: -3px;
  opacity: 0;
}



.carorder_form_wrap {
  width: 100%;
  background: #F5F5F5;
  border-radius: 8px;
  border: none;
  padding: 41px 68px 37px 68px;
}
.carorder_form_title {
  font-size: 18px;
  line-height: 1.1em;
  color: #0F0F0F;
  margin: 0 0 26px 0;
}
.carorder_form_row ~ .carorder_form_title {
  margin-bottom: 12px;
}


.carorder_form_inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.carorder_double_row {
  display: flex;
  gap: 13px;
}

.carorder_form_inputs input {
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  background: white;
  height: 44px;
  width: 100%;
  padding: 12px 23px;

  font-size: 15px;
  line-height: 1.2em;
  color: #000000;
  transition: ease-in-out 0.25s;
}
.carorder_form_inputs textarea {
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  background: white;
  min-height: 44px;
  max-height: 700px;
  height: 162px;
  width: 100%;
  padding: 18px 23px;
  resize: vertical;

  font-size: 15px;
  line-height: 1.2em;
  color: #000000;
}
.carorder_form_inputs input:focus,
.carorder_form_inputs textarea:focus {
  border-color: #5e5e5e;
}
.carorder_form_inputs input.input_error,
.carorder_form_inputs textarea.input_error {
  border-color: #ff0000;
  border-width: 2px;
}


div.carorder_submit_row {
  margin: 36px 0 0 0;
  padding: 36px 0 0 0;
  border-top: 1px solid rgba(163, 163, 163, 0.6);
  max-width: initial;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 34px;
}
div.carorder_submit_row .btn_style_1_with_line {
  margin: 0;
  padding: 11px 27px;
  height: 40px;
}

div.carorder_submit_row .checkbox {
  max-width: 261px;
  margin: 0;
}

div.carorder_submit_row.pf-wrap .checkbox label {
  font-size: 12px;
  line-height: 16px;
  color: #0F0F0F;
}
div.carorder_submit_row.pf-wrap .checkbox label::before {
  border: 2px solid #0F0F0F;
}

.carorder_submit_row label.agree.input_error {
  color: #E51C2B !important;
}
.carorder_submit_row label.agree.input_error::before {
  border-color: red !important;
}


@media (max-width: 1000px) {
  .carorder_wrap {
    flex-direction: column;
  }
  .carorder_left, .carorder_right {
    max-width: initial;
  }
}
@media (max-width: 768px) {
  .btn_style_1_with_line {
    margin: 10px auto 0 auto;
  }
  div.carorder_submit_row {
    flex-direction: column-reverse;
  }
  .carorder_form_wrap {
    padding: 41px 24px 37px 24px;
  }
}
@media (max-width: 500px) {
  .carorder_double_row {
    flex-direction: column;
    gap: 14px;
  }
}

.carorder_form_success_message p {
  font-size: 24px;
  line-height: 1.2em;
  color: #0F0F0F;
  margin: 30px 0 100px 0;
}


section.leasing section.repurchase .input-form input, section.leasing section.repurchase .input-form textarea {
  font-size: 15px;
  line-height: 20px;
  padding: 11px 15px;
  border-radius: 8px;
  background: #ffffff;
  border: initial;
  text-transform: none;
  width: 100%;
  margin: 5px 0;
  color: #000000;
}

.r-btn-custom span a {
  text-decoration: underline;
}


#send.btn_style_1_with_line {
  height: 40px;
}

.single_car_icon_1 {
  margin: 10px auto 10px 35px;
}
.single_car_icon_2 {
  margin: 10px auto 20px auto;
}
.single_car_icon_1 ~ .apply_2023_offer_wrap {
  max-width: 500px;
}

section.leasing-04-2023 .form_title2023.form_title_single2023 {
  font-size: 25px;
  line-height: 33px;
}

.single_car_form_text {
  font-size: 16px;
  line-height: 21px;
  color: white;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media (max-width: 1000px) {
  .single_car_icon_1 {
    margin: 10px auto 30px auto;
  }
  .single_car_form_text {
    position: initial;
    transform: initial;
    margin: 30px 0 0 0;
  }
}

@media (min-width: 1000px) {
  .post-type-archive-cars section.leasing-04-2023 {
    padding-bottom: 80px;
  }
}


.index_auction {
  margin: 84px 0 0 0;
}

.index_auction_promo.auction_wrap {
  display: flex;
  margin: 0;
  padding: 5rem 6rem;
  justify-content: flex-end;
  background-image: url('/wp-content/themes/CarsOutlet/images/promo-bg-2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-start;
  gap: 14rem;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 6rem;
  position: relative;
}
:lang(ru-RU) .index_auction_promo.auction_wrap {
  background-image: url('/wp-content/themes/CarsOutlet/images/promo-bg-ru-2.png');
}
.index_auction_promo.auction_wrap.index_auction_soon {
  background-image: url('/wp-content/uploads/2025/06/akcija-lv-1.png');
  max-width: 114rem;
  height: 490px;
  margin: 0 auto;
  margin-top: 1.9rem;
  border-radius: 0.8rem;
  box-shadow: 0px 11px 16px #00000029;
  padding-bottom: 3.9rem;
  margin-bottom: 9rem;
  align-items: center;
}
html[lang="ru-RU"] .index_auction_promo.auction_wrap.index_auction_soon {
  background-image: url('/wp-content/uploads/2025/06/akcija-ru-1.png');
}
.index_auction_promo.auction_wrap.index_auction_soon .i_auction_top,
.index_auction_promo.auction_wrap.index_auction_soon .auction_box {
  display: none;
}



.index_auction_promo .auction_box_title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 0.9rem;
}
.index_auction_promo .auction_box {
  max-width: 39rem;
  width: 100%;
}
.index_auction_promo.index_auction_soon .auction_box {
  box-shadow: none;
  max-width: 61rem;
  margin-left: -7.1rem;
  margin-right: -15.5rem;
  margin-top: -14.4rem;
  margin-bottom: -15rem;
}
.index_auction_promo.index_auction_soon .i_auction_top {
  max-width: 34.9rem;
}
.index_auction_promo.index_auction_soon .cont-icon img {
  width: 3.6rem;
}
.index_auction_promo .auction_box_time_remaining {
  position: relative;
  top: auto;
  right: auto;
  background-color: transparent;
  color: #000;
  font-weight: 400;
  padding: 0;
  padding-top: 2rem;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgb(134 134 134 / 55%);
  margin-top: 1rem;
  border-radius: 0;
}
.index_auction_promo .auction_box_features {
  position: relative;
  background-color: transparent;
  padding: 1rem 0;
}
.index_auction_promo .auction_box_lower_highlight {
  justify-content: center;
  padding: 2rem 4rem;
}
.index_auction_promo .auction_box_lower > div {
  padding-left: 0;
  padding-right: 0;
}
.index_auction_promo .auction_box_upper {
  min-height: auto;
}
.index_auction_promo .auction_box_lower {
  background-color: #fff;
}
.index_auction_promo .btn_style_1_with_line {
  width: 100%;
}
.index_auction_promo .btn_style_1_with_line span::before {
  opacity: .3;
}
.index_auction_promo .i_auction_top h3 {
  color: #38C260;
  font-size: 35px;
  font-weight: 900;
}
.index_auction_promo .i_auction_top h2 {
  color: #000;
  text-transform: none;
  font-size: 60px;
  font-weight: 900;
}
.index_auction_promo.index_auction_soon .i_auction_top h2 {
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 2.9rem;
}
.index_auction_promo .i_auction_top p {
  font-size: 25px;
  max-width: 26rem;
}
.index_auction_promo.index_auction_soon .i_auction_top p {
  color: #fff;
  line-height: 33px;
  font-weight: 500;
  max-width: 30rem;
  margin-bottom: 2.2rem;
}
.index_auction_promo .i_auction_top p b {
  color: #38C260;
}
.i_auction_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px 10px;
  margin: 0 0 50px 0;
}
.i_auction_top h3 {
  font-size: 30px;
  line-height: 1.2em;
  color: #000000;
  margin: 0 0 6px 0;
  text-transform: initial;
}
.i_auction_top h3 span {
  color: #E51C2B;
}
.i_auction_top p {
  font-size: 15px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
}
.i_auction_top .btn_style_outline {
  border-color: #000000;
  color: #000000;
}
.i_auction_top .btn_style_outline.btn_with_arrow::before {
  filter: brightness(0) saturate(100%) invert(29%) sepia(85%) saturate(6479%) hue-rotate(346deg) brightness(91%) contrast(98%);
}
.i_auction_top .btn_style_outline:hover {
  color: white;
  border-color: #E51C2B;
}



.car .auction_box {
  border-radius: 0;
  box-shadow: none;
}

.auction_box {
  display: flex;
  box-shadow: 0px 10px 10px #00000014;
  position: relative;
}

.auction_box.reserved .reserved-stamp {
  display: flex;
}

.auction_box.reserved > *:not(.reserved-stamp) {
  filter: grayscale(1)
}

.auction_box_upper {
  position: relative;
  height: auto;
  min-height: 331px;
  width: 100%;
  max-width: 390px;
}
.auction_box_discount_flag {
  position: absolute;
  left: -29px;
  top: 19px;
  padding: 5px 25px;
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  background: #E51C2B;
  width: 126px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
}
.auction_box_upper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.auction_box_features {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 24px 19px 24px;
  background: rgb(255 255 255 / 75%);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
}
.auction_box_features .feature_box {
  display: flex;
  align-items: center;
  gap: 4px;
}
.auction_box_features .feature_box span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin: 0;
}
.auction_box_features .feature_box span.icon {
  width: 12px;
  height: 12px;
}



.auction_box_lower {
  width: 100%;
  height: auto;
  min-height: 331px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.auction_box_lower_highlight {
  background: #F4F4F4;
  padding: 25px 0 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.auction_box_name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
}

.auction_box_price {
  font-size: 14px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
}


.auction_box_offer_row {
  padding: 21px 0 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px dashed rgb(134 134 134 / 50%);
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 57px 0 38px;
}
.auction_box_price_offer {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25em;
  color: #000000;
  margin: 0;
  max-width: 211px;
}
.auction_box_price_offer span {
  color: #E51C2B;
}

.auction_box_lower > div {
  padding-right: 57px;
  padding-left: 38px;
}

.auction_input_box {
  position: relative;
}
.auction_price {
  border: 1px solid #8D8D8D;
  border-radius: 6px;
  width: 125px;
  height: 35px;
  margin: 0;
  text-align: right;
  padding: 0 54px 0 0;
}
.auction_price,
.auction_input_currency {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: #E51C2B;
}
.auction_input_currency {
  position: absolute;
  top: 53%;
  right: 39px;
  transform: translateY(-50%);
}

.auction_price::-webkit-outer-spin-button,
.auction_price::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.auction_price[type=number] {
  -moz-appearance: textfield;
}


.auction_box_input_row {
  display: flex;
  gap: 7px;
  margin: 5px 0;
}

.auction_input {
  border: 1px solid #989898;
  border-radius: 6px;
  height: 35px;
  width: 100%;
  padding: 8px 16px;

  font-weight: 300;
  font-size: 14px;
  line-height: 1.2em;
  color: #000000;
}

.auction_box_final_row .auction_privacy label,
.auction_box_lower .auction_box_final_row .auction_news label,
.auction_box_lower .auction_box_final_row .auction_news .label {
  font-size: 12px;
  line-height: 20px;
  color: #777777;
  margin: 0;
}
.auction_box_final_row .auction_privacy .checkbox label a {
  text-decoration: underline;
}

.auction_box_final_row .auction_privacy .checkbox label::before,
.auction_box_final_row .auction_news .checkbox label::before {
  width: 16px;
  height: 16px;
  border: 1px solid #989898;
}
.auction_box_final_row .auction_privacy .checkbox label::after,
.auction_box_final_row .auction_news .checkbox label::after {
  width: 16px;
  height: 16px;
}

.auction_box_lower .auction_box_final_row .auction_news {
  margin: 6px 0 0 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.auction_box_final_row div.checkbox {
  margin: 0;
}
.auction_box_final_row div.checkbox label {
  padding-left: 24px;
}

.auction_box_final_row div.checkbox input.error + label {
  color: #e51515;
}

.auction_box_final_row div.checkbox input.error + label:before {
  border-color: #e51515;
}

.auction_box_final_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 8px;
  max-width: initial !important;
  gap: 4px 2px;
}
.auction_privacy {
  display: flex;
  margin-top: 1rem;
}

.auction_box_time_row {
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding: 4px 0;
  border-top: 1px solid rgb(134 134 134 / 50%);
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 57px 0 38px;
}
.auction_box_time_row p {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}
.auction_box_time_row p span {
  font-weight: 900;
  color: #E51C2B;
}
.auction_box_time_row .auction_time {
  font-weight: 700;
  font-size: 27px;
  line-height: 1.2em;
  color: #000000;
}

.index_auction_promo .auction_sponsors,
.index_auction_promo .promo-title-image {
  display: none;
}

.index_auction_promo .auction_sub_title {
  position: absolute;
  bottom: -35px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  pointer-events: none;
}

.page-template-page-auctions .auction_box {
  overflow: hidden;
}

.page-template-page-auctions .auction_wrap .auction_box_lower {
  min-height: auto;
  padding: 0;
}

.index_auction_promo .success-message {
  padding-left: 0;
  padding-right: 0;
  font-size: 2.8rem;
  color: #000;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.index_auction_promo .success-message br {
  display: none;
}

.index_auction_promo .auction_box_lower {
  justify-content: center;
}

@media (max-width: 992px) and (min-width: 768px) {
  .index_auction_promo.index_auction_soon .auction_box {
    margin-left: -17.1rem;
    margin-right: -9.5rem;
    margin-top: -9.1rem;
    margin-bottom: -6.8rem;
  }
}

@media (max-width: 992px) {
  .auction_box {
    flex-direction: column;
  }
  .auction_box_upper {
    max-width: initial;
    min-height: initial;
  }
}
@media (max-width: 768px) {
  .index_auction_promo .auction_sub_title {
    top: -26.7rem;
    display: none;
  }
  .i_auction_top {
    flex-direction: column;
  }
  .index_auction_promo.auction_wrap {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    justify-content: center;
    background-image: url('/wp-content/themes/CarsOutlet/images/promo-bg-mob-2.png');
    max-width: 42rem;
    background-position: top;
    padding-block-start: 52rem;
    padding-block-end: 14rem;
  }
  :lang(ru-RU) .index_auction_promo.auction_wrap {
    background-image: url('/wp-content/themes/CarsOutlet/images/promo-bg-mob-3.png');
  }
  .index_auction_promo .promo-title-image {
    display: block;
    margin-bottom: 28rem;
    margin-top: 6rem;
  }
  .index_auction_promo .auction_sponsors {
    display: block;
    padding: 3rem 0;
  }
  .index_auction_promo .auction_sponsors span {
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block;
    margin-bottom: .5rem;
  }
  .index_auction_promo .i_auction_top h3 {
    font-size: 32px;
  }
  .index_auction_promo .i_auction_top h2 {
    font-size: 32px;
    margin-top: 0rem;
  }
  .index_auction_promo .i_auction_top p {
    font-size: 18px;
    max-width: 28rem;
  }
  .index_auction_promo .i_auction_top p b {
    color: #38C260;
  }

  .index_auction_promo.index_auction_soon  .i_auction_top h2 {
    font-size: 42px;
    margin-top: 0rem;
    text-align: left;
    line-height: 50px;
    margin-bottom: 1.5rem;
  }
  .index_auction_promo.index_auction_soon  .i_auction_top p {
    font-size: 19px;
    text-align: left;
    line-height: 25px;
    max-width: 23rem;
  }

  .index_auction_promo.auction_wrap.index_auction_soon {
    max-width: 35.7rem;
    padding: 3.9rem 3.4rem;
    position: relative;
    background-image: url('/wp-content/uploads/2025/02/akcija-lv-mobile-1.png');
    height: 350px;
    margin-bottom: 40px;
  }
  html[lang="ru-RU"] .index_auction_promo.auction_wrap.index_auction_soon {
    background-image: url('/wp-content/uploads/2025/02/akcija-ru-mobile-1.png');
  }

  .index_auction_promo.index_auction_soon .cont-icon {
    position: absolute;
    right: 2.6rem;
    margin-top: -6rem;
    z-index: 1;
  }

  .index_auction_promo.index_auction_soon .auction_box {
    margin-right: -10rem;
    max-width: initial;
    width: 200%;
    margin-bottom: -10rem;
    margin-top: -10rem;
  }
}



.auction_wrap {
  margin: 38px 0 150px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 23px;
}

.auction_wrap .auction_box {
  flex-direction: column;
}
.auction_wrap .auction_box_upper {
  max-width: initial;
}
.auction_wrap .auction_box_lower {
  min-height: 45.5rem;
  padding: 2.7rem;
}

.auction_box_time_remaining {
  position: absolute;
  top: 27px;
  right: 50px;
  background: #E51C2B;
  border-radius: 25px;
  padding: 6px 22px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2em;
  color: white;
  margin: 0;
}
.auction_box_time_remaining span {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2em;
  color: inherit;
}


@media (min-width: 1200px) {
  .auction_container,
  .page-template-page-auctions .header_wrapper .container {
    max-width: 1440px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 1200px) {
  .auction_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .auction_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 500px) {
  .auction_box_time_remaining {
    font-size: 13px;
    top: 14px;
    right: 16px;
    padding: 5px 11px;
  }
  .auction_box_time_remaining span {
    font-size: 14px;
  }
}


@media (min-width: 1200px) {
  .header_wrapper .container {
    width: 100%;
    max-width: 1340px;
  }
}


.header_upper .menu-navs .he_custom_2 a {
  padding-right: 44px;
  overflow: hidden;
}
.header_upper .menu-navs .he_custom_2 a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  background-image: url('/wp-content/uploads/2023/05/euro_sign.png');
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  border-left: 2px solid white;
  transition: ease-in-out 0.25s;
}
.header_upper .menu-navs .he_custom_2 a:hover::before {
  border-color: transparent;
}

.auction-page .request_banner h1 {
  font-size: 30px;
  line-height: 1.3em;
  margin: 5px 0 0 0;
  max-width: 450px;
}
html[lang="ru-RU"] .auction-page .request_banner h1 {
  max-width: 700px;
}
.auction-page .request_banner h2 {
  font-size: 22px;
  margin: 0;
}

.auction_step_row {
  background: linear-gradient(153deg, #1C1C1C 40%, #E51C2B 100%);
  padding: 62px 0 52px 0;
  position: relative;
}
.auction_step_row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(93deg, #E51C2B 0%, #1C1C1C 70%);
}
.auction_step_row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.auction_step_row .container::before,
.auction_step_row .container::after {
  content: initial;
}

.auction_step {
  display: flex;
  align-items: center;
  gap: 33px;
}
.auction_step p {
  font-size: 18px;
  line-height: 1.3em;
  color: white;
  max-width: 430px;
  margin: 0;
  padding: 7px 0 0 0;
}
.auction_step:nth-child(1) p {
  max-width: 160px;
}
html[lang="ru-RU"] .auction_step:nth-child(1) p {
  max-width: 208px;
}
.auction_step:nth-child(3) p {
  max-width: 150px;
}

.auction_step_arrow img {
  width: 21px;
  height: 21px;
  filter: invert(25%) sepia(80%) saturate(2432%) hue-rotate(338deg) brightness(85%) contrast(113%);
}

.auction_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 28px 0 0 0;
}
.auction_info p {
  font-size: 18px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  .auction_step_row .container {
    flex-direction: column;
    align-items: initial;
    gap: 28px;
  }
  .auction_step_row .auction_step_arrow {
    display: none;
  }
  .auction_step_row .auction_step p {
    max-width: initial;
    text-align: left;
    font-size: 15px;
  }
  .auction_step svg {
    width: 50px;
    height: 50px;
  }
  .auction-page .request_banner h1 {
    font-size: 24px;
  }
}

.auction_step svg {
  flex-shrink: 0;
}

.car .feat-offer {
  background: #1CBC66 linear-gradient(193deg, #1CBC66 0%, #E2E23D 130%);
  color: white;
  padding: 0 22px 0 22px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
.car .feat-offer .offer-title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.2em;
}
html[lang="ru-RU"] .car .feat-offer .offer-title {
  font-size: 12px;
}
.car .feat-offer .offer-time {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  justify-content: initial;
}

.car .feat-offer .time-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2em;
}
.car .feat-offer .time-counter {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}

section.index-cars .car.feat .leasing {
  min-height: 43px;
  padding: 5px 22px 6px 22px;
  background: #1CBC66 linear-gradient(171deg, #1CBC66 0%, #E2E23D 130%);
}
section.index-cars .car.feat .short-txt.car_title_part {
  min-height: 60px;
  padding: 14px 22px 8px 22px;
}

.video_arrow {
  position: absolute;
  top: -81px;
  right: -38px;
  z-index: 9;
  pointer-events: none;
  user-select: none;
}
body.home .header_lower .current-users {
  order: 2;
}

@media (max-width: 1200px) {
  .video_arrow { display: none !important; }
}
@media (max-width: 1000px) {
  section.leasing-04-2023 div.right-side .video-wrap {
    order: 10;
  }
  section.leasing-04-2023 .right-side::after {
    content: initial;
  }
}
@media (max-width: 768px) {
  section.leasing-04-2023 div.right-side .video-wrap {
    margin-top: -50px;
  }
}

.cont-ban-bl .stamp-text {
  bottom: -3rem;
  left: -3.3rem;
  top: auto;
}

.page-template-page-sell-2022 .sell-banner {
  background-color: #E51C2B;
}

.page-template-page-sell-2022 .sell-banner a,
.page-template-page-sell-2022 .sell-banner p {
  color: #fff;
}

html[lang="ru-RU"] .pf-wrap .form .input-news .label,
html[lang="ru-RU"] .pf-wrap .form .input-news .checkbox label {
  font-size: 14px;
}

html[lang="ru-RU"] .ft_lease .btn_style_1 {
  width: 204px;
}



section.index-cars .car.feat .img .discount {
  background: #1CBC66 linear-gradient(193deg, #1CBC66 0%, #E2E23D 120%);
}

section.index-cars .car.feat::before {
  content: 'Papildus -200€';
  position: absolute;
  top: 0;
  right: 28px;
  transform: translateY(-50%);
  border-radius: 7px;
  background: #1CBC66 linear-gradient(193deg, #1CBC66 0%, #E2E23D 120%);
  padding: 5px 15px;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  color: white;
  z-index: 100;
}
html[lang="ru-RU"] section.index-cars .car.feat::before {
  content: 'Дополнительно -200€';
}
section.index-cars .car.feat .car-views-count {
  top: 22px;
}
section.index-cars .car.feat .car_title_part .price-block .current {
  color: #1CBC66;
}

.car-video {
	position: relative;
	padding-bottom: 56.25%;
}

.car-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.index-cars section .bootstrap-select .dropdown-menu {
  max-height: 400px !important;
}


.holiday_worktime {
  padding: 20px 0 0 0;
}
.holiday_worktime p {
  margin: 0 0 2px 0;
  color: black;
}
.holiday_worktime p:nth-child(1) {
  font-weight: 700;
  margin: 0 0 7px 0;
  font-size: 18px;
}
section.contacts-2022 .map-img img {
  height: 100%;
  object-fit: cover;
}


.holiday_notice {
  order: 5;
  margin-left: auto;
}
body.home .holiday_notice {
  margin-left: 5px;
}
.holiday_notice a {
  color: #e51c2b;
  text-decoration: initial;
  font-size: 13px;
  background: white;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
}

body.fancybox-active {
  max-height: 100vh;
}


@media (min-width: 768px) {
  .hide_above_768 { display: none !important; }
}
@media (max-width: 768px) {
  .hide_below_768 { display: none !important; }
}





.fancybox-stage .pf-wrap .header .title,
.fancybox-stage .pf-wrap .header .discount,
.fancybox-stage .pf-wrap .header .subtitle {
  display: none;
}
@media (max-width: 768px) {
  .fancybox-stage .pf-wrap .header {
    background-position: left;
  }
}


#open_pub_ad_popup {
  background: initial;
  padding: 0;
  border: 0;
  margin: 0 0 0 8px;
  font-size: 10px;
  font-weight: 900;
  color: white;
}

.pf-wrap.pform_new {
  max-width: initial;
  border-radius: 5px;
}
.pform_new .pform_row {
  display: flex;
  border-radius: inherit;
}

.pform_new .pform_row .pform_left {
  width: 100%;
  width: 690px;
  height: 610px;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.pform_new .pform_row .pform_right {
  width: 100%;
  max-width: 470px;
  background: white;
}


.pform_new .pform_row .pform_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.pform_new .pform_row .pform_right .form {
  height: 100%;
  padding: 62px 75px 36px 75px;
  background: initial;
}
.pform_new.pf-wrap .form .form-title {
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  color: #000000;
  max-width: 200px;
  margin: 0 auto 22px auto;
}
.pform_new.pf-wrap .form .input {
  background: #EDEDED;
  border-radius: 5px;
  padding: 8px 18px;
  height: 40px;
}
.pform_new.pf-wrap .form .input-half {
  margin-bottom: 12px;
}

.pform_new.pf-wrap .input-news {
  margin: 4px auto 22px auto;
  padding: 0 1.1rem;
  border: initial;
}
.pform_new.pf-wrap .form .input-news .label {
  color: black;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
}
.pform_new.pf-wrap .form .checkbox label {
  color: black;
  max-width: initial;
}
.pform_new.pf-wrap .form .input-news .checkbox label {
  font-size: 12px;
}
.pform_new.pf-wrap .checkbox {
  margin-right: 12px;
}
.pform_new.pf-wrap .checkbox label::before {
  border-color: black;
}
.pform_new.pf-wrap .form-submit button {
  width: 100%;
}
.pform_new.pf-wrap .form-acceptance {
  margin: 0 0 22px 0;
}



.pf_close {
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  color: #9F9F9F;
  text-align: center;
  background: initial;
  border: initial;
  padding: 0;
}



@media (max-width: 1000px) {
  .pform_new .pform_row {
    flex-direction: column;
  }
  .pform_new .pform_row .pform_left {
    width: 350px;
    height: 310px;
  }
  .pform_new .pform_row .pform_right {
    max-width: 350px;
  }
  .pform_new .pform_row .pform_right .form {
    padding: 20px 20px 18px 20px;
  }
  .pform_new.pf-wrap .form .form-title {
    margin: 0 auto 20px auto;
    max-width: 240px;
    font-size: 20px;
  }
  .pform_new.pf-wrap .form .input-half {
    margin-bottom: 5px;
  }
  .pform_new .pform_row .pform_left img {
    border-radius: 5px 5px 0 0;
  }
  .pform_new.pf-wrap .input-news {
    display: flex;
    gap: 5px;
    max-width: initial;
    margin-top: 8px;
  }

  .pform_new .pform_row .pform_left img.desktop_img {
    display: none;
  }
}
@media (min-width: 1000px) {
  .pform_new .pform_row .pform_left img.mobile_img {
    display: none;
  }
  html[lang="ru-RU"] .pform_new.pf-wrap .form .form-title {
    max-width: 252px;
  }
}


.hib_whatsapp {
  font-size: 12px;
  color: #B5B5B5;
  padding: 0;
  margin: 0 0 0 -25px;
  text-decoration: underline;
}
.header_info_map_row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 0 -25px;
}
.header_info_map_row p {
  color: #B5B5B5;
  text-decoration: underline;
}


.mobile_whatsapp_button {
  font-size: 12px;
  color: #B5B5B5;
  margin: 10px auto 26px auto;
  text-decoration: underline;
}

.mobile_info_map_row {
  display: flex;
  align-items: center;
  gap: 26px;
}
.mobile_info_map_row .header_info_box p {
  font-size: 12px;
  color: #B5B5B5;
  text-decoration: underline;
}

.mobile_header_phone.mobile_header_info_box p {
  font-weight: 500;
  font-size: 16px;
  color: white;
  margin: 27px 0 0 0;
}
.mobile_header_address.mobile_header_info_box p {
  font-size: 16px;
}


.pub_tiktok_row {
  margin: 82px 0 92px 0;
}
.pub_tiktok_row .block_upper {
  margin: 0 0 44px 0;
}
.pub_tiktok_row h2 {
  font-weight: 900;
  font-size: 30px;
  color: black;
  margin: 0 0 12px 0;
}

.pub_tiktok_row .tiktok-feed-list {
  display: flex;
  width: 100%;
  height: auto !important;
  overflow: visible;
  transition: initial;
}
.pub_tiktok_row .tiktok-feed-item {
  position: relative !important;
  width: 25%;
  height: auto;
  transition: initial;
  min-width: initial !important;
}
@media (max-width: 1000px) {
  .pub_tiktok_row .tiktok-feed-item {
    width: 33.333%;
  }
}
@media (max-width: 768px) {
  section.pub_tiktok_row .tiktok-feed-item {
    width: 50%;
  }
  section.pub_tiktok_row .slick-prev, section.pub_tiktok_row .slick-next {
    top: calc(100% + 42px);
    width: 26px;
    height: 26px;
    z-index: 100;
  }
  section.pub_tiktok_row .slick-prev {
    right: 56px;
  }
  section.pub_tiktok_row .slick-next {
    right: 10px;
  }

  section.pub_tiktok_row .blupper {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
}
.pub_tiktok_row .tiktok-feed-square .tiktok-feed-item__video-wrap {
  padding: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 6;
  transition: initial;
}

.tiktok_title_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tiktok_title_wrap h2 {
  font-weight: 900;
  font-size: 30px;
  color: #0F0F0F;
  text-transform: initial;
  margin: 0;
}

.pub_tiktok_row .block_left {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pub_tiktok_row .bllower p {
  font-weight: 400;
  font-size: 18px;
  color: black;
  margin: 0;
}

.pub_tiktok_row .slick-prev::before,
.pub_tiktok_row .slick-next::before {
  content: initial;
}
.pub_tiktok_row .slick-prev,
.pub_tiktok_row .slick-next {
  position: absolute;
  top: -98px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-image: url('../images/pub_arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pub_tiktok_row .slick-prev {
  right: 75px;
  left: initial;
  transform: translate(0, -50%) rotate(180deg);
}
.pub_tiktok_row .slick-next {
  right: 15px;
}

.pub_tiktok_row .blupper {
  display: flex;
  gap: 45px;
}

.tiktok_btn {
  background-image: url('../images/tiktok_btn_bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 12px 34px;

  font-weight: 900;
  font-size: 16px;
  color: white;
}
@media (min-width: 1400px) {
  .pub_tiktok_row .block_content {
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
  }
}

.pub_tiktok_row .tiktok-feed-list:not(.slick-initialized) .tiktok-feed-item:not(:nth-child(1), :nth-child(2), :nth-child(3), :nth-child(4)) {
  display: none;
}

@media (max-width: 768px) {
  .tiktok_title_wrap h2 {
    font-size: 22px;
  }
  .pub_tiktok_row .bllower p {
    font-size: 16px;
  }
  .pub_tiktok_row .block_left {
    gap: 9px;
    align-items: baseline;
  }
  #tiktok-feed-feed-0 .tiktok-feed-item {
    padding: 7px !important;
  }
  .tiktok_btn {
    display: block;
    margin: 22px auto 0 auto;
    width: fit-content;
  }
  .tiktok_title_wrap img {
    width: 28px;
    height: auto;
  }
}

.pub_tiktok_row .tiktok-feed-item::before,
.pub_tiktok_row .sb-post-item-wrap::before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 34px;
  right: 26px;
  width: 34px;
  height: 162px;
  background-image: url('../images/tiktok_group.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pub_tiktok_row .tiktok-feed-item::after,
.pub_tiktok_row .sb-post-item-wrap::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 20px;
  width: 90px;
  height: 90px;
  background-image: url('../images/tiktok_hor.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  .pub_tiktok_row .tiktok-feed-item::after,
  .pub_tiktok_row .sb-post-item-wrap::after {
    width: 50px;
    height: 50px;
  }
  .pub_tiktok_row .tiktok-feed-item::before,
  .pub_tiktok_row .sb-post-item-wrap::before {
    width: 17px;
    height: 81px;
    bottom: 20px;
    right: 18px;
  }

  .pub_tiktok_row .block_upper {
    margin: 0 0 18px 0;
  }

  .tiktok-feed__actions {
    margin: 8px 0;
  }

  .pub_tiktok_row .block_content {
    width: calc(100% + 14px);
    position: relative;
    left: -7px;
  }

  .pub_tiktok_row {
    margin: 40px 0;
  }
}



.pub_tiktok_row .sb-feed-header.sb-fs {
  display: none;
}
.pub_tiktok_row .sb-grid-wrapper[data-grid-columns="4"] {
  gap: 30px;
}
.pub_tiktok_row .sb-post-item-wrap {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}
.pub_tiktok_row .sb-post-item-image-wrap {
  width: 100%;
  height: auto !important;
  aspect-ratio: 10 / 16;
}
.pub_tiktok_row .sb-post-item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pub_tiktok_row .sb-post-item-play {
  display: none;
}



html .sb-modal-ctn {
  z-index: 50000;
}