@charset "UTF-8";
:root {
  --blue-main: #3e92c6;
  --blue-transparent: rgba(62, 146, 198, 0.75);
  --gray-main: rgb(19, 20, 26);
  --light-gray: #dbdbdb;
  --white-gray: #f2f1f1;
  --white-color: #ececec;
  --mobile-width: 600px;
  --standard-width: 1320px;
}

html {
  font-family: "Montserrat", sans-serif;
}
html .highlight {
  color: var(--blue-main);
  font-weight: bold;
}
html hr {
  border-bottom: 0.1px solid var(--light-gray);
  border-top: none;
}
html a {
  text-decoration: none;
  color: var(--blue-main);
}
html .auto-measure-gallery-image {
  display: none;
}
html body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body .search-area {
  width: 50%;
  max-width: 540px;
}
html body .search-area form {
  width: 100%;
}
html body .search-area form .form-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
html body .search-area form .form-inner input {
  background: var(--white-color);
  border: 1px solid var(--light-gray);
  border-radius: 5px 0px 0px 5px;
  width: 100%;
  height: 30px;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-main);
}
html body .search-area form .form-inner input:focus {
  background-color: var(--white-color);
  border-color: var(--blue-main);
}
html body .search-area form .form-inner button {
  width: 68px;
  height: 52px;
  border-radius: 0px 5px 5px 0px;
  background-color: var(--blue-transparent);
  border: none;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
html body .search-area form .form-inner button i {
  color: var(--white-color);
  font-size: large;
}
html body .search-area form .form-inner button::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 0px 5px 5px 0px;
  background-color: var(--blue-main);
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
html body .search-area form .form-inner button:hover {
  color: var(--white-color);
}
html body .search-area form .form-inner button:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
html body .map iframe {
  width: 100%;
  border: none !important;
}
html body .single-contact {
  display: flex;
  position: relative;
  padding: 0 20px 0;
  margin-bottom: 10px;
  align-items: center;
}
html body .single-contact .icon {
  min-width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
html body .single-contact .content {
  color: var(--gray-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 0 15px;
}
html body .single-contact .content .big-content-text {
  display: block;
  padding: 10px 0;
  font-size: 16px;
}
html body .single-contact .content .big-content-text a {
  color: var(--gray-main);
}
html body .single-contact .single-contact-title {
  position: absolute;
  top: -15px;
  background: #fff;
  left: 40px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #7a7a7a;
}
html body .text-content {
  width: 100%;
  max-width: var(--standard-width);
  padding: 0 20px;
}
html body .text-content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
html body .main-page {
  width: 100%;
  max-width: var(--standard-width);
  padding: 0 20px;
}
html body .main-page .main-page-title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
html body .main-page .faq {
  margin: 50px 0;
}
html body .main-page .faq .faq-body {
  margin-top: 40px;
}
html body .main-page .faq .faq-body ul.faq-items {
  list-style: square;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item {
  margin: 10px 0;
  cursor: pointer;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item:hover .faq-item-title {
  color: var(--blue-main);
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item .faq-item-title {
  font-weight: 600;
  font-size: large;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item .faq-item-body {
  display: none;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item .faq-item-body ul {
  padding-left: 20px;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item .faq-item-body > ul > li {
  list-style: decimal;
}
html body .main-page .faq .faq-body ul.faq-items li.faq-item.active .faq-item-body {
  display: block;
}
html body .main-page .row-1 {
  display: flex;
  margin-top: 20px;
}
html body .main-page .row-1 > div {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
html body .main-page .row-1 .row-1-1 .banner-content p {
  font-size: 18px;
  line-height: 1.5;
}
html body .main-page .row-1 .row-1-2 img {
  width: 100%;
}
html body .main-page .why-choose-area {
  margin: 50px 20px;
}
html body .main-page .why-choose-area p {
  margin: 0;
}
html body .main-page .why-choose-area .advantages {
  display: flex;
  margin-bottom: 30px;
}
html body .main-page .why-choose-area .advantages .choose-card {
  width: 33.3%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
html body .main-page .why-choose-area .advantages .choose-card .choose-top {
  display: flex;
}
html body .main-page .why-choose-area .advantages .choose-card .choose-top .choose-icon {
  margin-right: 20px;
}
html body .main-page .why-choose-area .advantages .choose-card .choose-top .choose-title {
  font-size: 23px;
  align-content: center;
  font-weight: 500;
}
html body .main-page .why-choose-area .our-activities {
  display: flex;
}
html body .main-page .why-choose-area .our-activities .single-activity {
  width: 25%;
  padding: 20px;
  display: flex;
  box-sizing: border-box;
}
html body .main-page .why-choose-area .our-activities .single-activity .icon {
  margin-right: 20px;
}
html body .main-page .why-choose-area .our-activities .single-activity .content {
  display: flex;
  flex-direction: column;
}
html body .main-page .why-choose-area .our-activities .single-activity .content .number {
  font-size: 20px;
  font-weight: 600;
}
html body .main-page .why-choose-area .choose-icon img {
  width: 60px;
}
html body .main-page .why-choose-area .icon img {
  width: 50px;
}
html body .lot-title {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  width: 100%;
  padding: 0 20px;
  max-width: var(--standard-width);
  box-sizing: border-box;
}
html body .lot-title h1.lot-name {
  font-size: 30px;
  font-weight: 600;
  margin: 0 20px 0 0;
}
html body .lot-title .name-price {
  color: var(--blue-main);
}
html body .title {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--standard-width);
  padding-left: 40px;
  box-sizing: border-box;
}
html body .title h2 {
  color: var(--blue-main);
}
html body .full-width-block-center {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: var(--standard-width);
}
html body .full-width-block-center.show-all-button {
  margin: 10px 0 20px;
}
html body .link-button {
  background: var(--blue-transparent);
  color: var(--white-color);
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
}
html body .link-button:hover {
  background: var(--blue-main);
}
html body .paging {
  display: flex;
  margin-top: 20px;
}
html body .paging .page-button {
  border: 1px solid var(--blue-transparent);
  color: var(--blue-transparent);
}
html body .paging .page-button:hover {
  border: 1px solid var(--blue-main);
  color: var(--blue-main);
}
html body .paging .page-number {
  color: var(--white-gray);
  background: var(--blue-transparent);
}
html body .paging .page-number, html body .paging .page-button {
  padding: 5px 13px;
  border-radius: 25px;
  font-size: 25px;
  margin: 0 10px;
  min-width: 15px;
  text-align: center;
}
html body .time-counter {
  position: absolute;
  background: var(--blue-transparent);
  color: var(--white-color);
  right: 10px;
  border-radius: 0 7px 0 7px;
  padding: 10px 20px;
  z-index: 1;
}
html body .time-counter .time-counter-counts {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
html body .time-counter .time-counter-counts > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3px;
}
html body .time-counter .time-counter-counts .timer-item .count, html body .time-counter .time-counter-counts .timer-sep {
  font-size: 25px;
  font-weight: 600;
}
html body .time-counter .time-counter-counts .timer-item .label {
  font-size: 12px;
}
html body .time-counter .timer-desc {
  font-size: 14px;
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin-top: 5px;
}
html body .top-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  width: 100%;
  max-width: var(--standard-width);
  box-sizing: border-box;
}
html body .top-bar .company-logo {
  display: flex;
}
html body .top-bar .company-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
html body .top-bar .mobile-menu-btn {
  width: 50px;
  height: 50px;
  display: flex;
  margin-left: 50px;
  flex-direction: column;
  align-items: end;
  visibility: visible;
  justify-content: center;
  position: relative;
}
html body .top-bar .mobile-menu-btn span {
  height: 2px;
  width: 25px;
  background-color: var(--gray-main);
  display: flex;
  transition: transform 0.5s ease-in;
  position: absolute;
  top: 25px;
  right: 8px;
}
html body .top-bar .mobile-menu-btn span:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: var(--gray-main);
  content: "";
  top: -10px;
  right: 0;
}
html body .top-bar .mobile-menu-btn span:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 2px;
  right: 0;
  background-color: var(--gray-main);
  content: "";
  top: 10px;
}
html body .top-bar .mobile-menu-btn.active span {
  background-color: transparent;
}
html body .top-bar .mobile-menu-btn.active span:before {
  transform: rotateZ(45deg) translate(8px, 6px);
  width: 35px;
}
html body .top-bar .mobile-menu-btn.active span:after {
  transform: rotateZ(-45deg) translate(8px, -6px);
  width: 35px;
}
html body .top-bar .company-logo .custom-logo-link .custom-logo {
  height: 50px;
}
html body .menu-wrapper {
  display: flex;
  justify-content: flex-start;
  max-width: var(--standard-width);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
html body .menu-wrapper .menu-block {
  position: absolute;
  height: 100%;
  right: 20px;
  display: flex;
  justify-content: center;
  vertical-align: top;
  padding: 5px 0;
  box-sizing: border-box;
}
html body .menu-wrapper .menu-block .hotline-area {
  display: flex;
}
html body .menu-wrapper .menu-block .hotline-area .content {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body .menu-wrapper .menu-block .hotline-area .content span {
  font-size: 11px;
  font-weight: 600;
}
html body .menu-wrapper .menu-block .hotline-area .content a {
  display: block;
  font-weight: 600;
}
html body .menu-wrapper .menu-block .hotline-area .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
}
html body .menu-wrapper .menu-block .hotline-area .icon img {
  width: 30px;
  display: block;
}
html body .menu-wrapper ul.menu {
  display: flex;
  list-style-type: none;
  justify-content: flex-start;
}
html body .menu-wrapper ul.menu li {
  margin: 5px 40px 5px 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
html body .menu-wrapper ul.menu li.active a {
  color: var(--blue-main);
}
html body .menu-wrapper ul.menu li a {
  color: var(--gray-main);
  transition-duration: 0.35s;
}
html body .menu-wrapper ul.menu li a:hover {
  color: var(--blue-main);
}
html body .breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  max-width: var(--standard-width);
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}
html body .main-content-2col {
  display: flex;
  max-width: 1320px;
  width: 100%;
}
html body .main-content-2col > .column {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}
html body .main-content-2col > .column .buttons {
  display: flex;
}
html body .main-content-2col > .column .buttons .button {
  margin-right: 10px;
}
html body .main-content-2col > .column .buttons .button a.send-request:hover {
  background-color: var(--blue-main);
}
html body .main-content-2col > .column .buttons .button a.send-request i {
  margin-right: 10px;
  font-size: 30px;
}
html body .main-content-2col > .column .buttons .button .time-counter {
  position: relative;
  border-radius: 7px;
}
html body .main-content-2col > .column .buttons .button .send-request {
  min-height: 80px;
  border-radius: 7px;
  background: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  height: 100%;
  color: var(--white-color);
  font-weight: bolder;
  cursor: pointer;
}
html body .main-content-2col .specification {
  color: var(--gray-main);
}
html body .main-content-2col .specification ul {
  list-style: none;
  padding: 0;
}
html body .main-content-2col .specification ul li {
  margin-bottom: 15px;
}
html body .main-content-2col .specification ul li span {
  font-weight: bolder;
}
html body .main-content-2col .description {
  padding: 5px 5px 10px;
}
html body .main-content-2col .description pre {
  font-family: "Montserrat";
  padding: 0;
  margin: 0;
  line-height: 1.6;
}
html body .lot-page {
  max-width: var(--standard-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body .lot-page .similar-cars {
  display: flex;
  max-width: 1320px;
  width: 100%;
  flex-direction: column;
}
html body .lot-page .similar-cars .similar-cars-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car {
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car .similar-car-price {
  font-weight: 600;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car > a {
  display: flex;
  flex-direction: column;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car > a > * {
  margin-bottom: 5px;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car > a .similar-car-image {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
html body .lot-page .similar-cars .similar-cars-list .similar-car h3 {
  margin: 5px 0;
}
html body .lot-page .calculation-mode-selector {
  /* Full-width options (stacked buttons) */
}
html body .lot-page .calculation-mode-selector .radio-group {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
html body .lot-page .calculation-mode-selector .radio-group--segmented {
  gap: 0;
}
html body .lot-page .calculation-mode-selector .radio-group--segmented .radio-btn label {
  border-radius: 0;
  margin-left: -1px;
}
html body .lot-page .calculation-mode-selector .radio-group--segmented .radio-btn label:first-of-type {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
html body .lot-page .calculation-mode-selector .radio-group--segmented .radio-btn label:last-of-type {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
html body .lot-page .calculation-mode-selector .radio-btn {
  position: relative;
  margin-right: 20px;
  --btn-py: 10px;
  --btn-px: 14px;
  --btn-fs: 14px;
  --btn-radius: 7px;
}
html body .lot-page .calculation-mode-selector .radio-btn input[type=radio] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
html body .lot-page .calculation-mode-selector .radio-btn input[type=radio]:focus-visible + label {
  box-shadow: 0 0 0 2px rgba(var(--blue-main), 0.35);
}
html body .lot-page .calculation-mode-selector .radio-btn input[type=radio]:checked + label {
  background: var(--blue-transparent);
  color: var(--white-color);
  border-color: var(--blue-main);
}
html body .lot-page .calculation-mode-selector .radio-btn input[type=radio]:disabled + label {
  opacity: 0.55;
  cursor: not-allowed;
}
html body .lot-page .calculation-mode-selector .radio-btn label {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
  padding: var(--btn-py) var(--btn-px);
  font-size: var(--btn-fs);
  line-height: 1;
  color: var(--gray-main);
  background: var(--white-gray);
  border: 1px solid var(--light-gray);
  border-radius: var(--btn-radius);
  user-select: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
html body .lot-page .calculation-mode-selector .radio-btn label:hover {
  background: var(--white-gray);
}
html body .lot-page .calculation-mode-selector .radio-btn label .icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
}
html body .lot-page .calculation-mode-selector .radio-btn label .muted {
  color: var(--gray-main);
  font-weight: 500;
}
html body .lot-page .calculation-mode-selector .radio-group--block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
html body .lot-page .calculation-mode-selector .radio-group--block .radio-btn label {
  justify-content: center;
  width: 100%;
}
html body .lot-page .calculation-block .recovery-field, html body .lot-page .calculation-block .scrap-field {
  display: none;
}
html body .lot-page .calculation-block.recovery-mode .recovery-field {
  display: revert;
}
html body .lot-page .calculation-block.scrap-mode .scrap-field {
  display: revert;
}
html body .lot-page .lot-calculator .slider {
  margin: 20px 0 20px;
}
html body .lot-page .lot-calculator .slider .price-slider {
  margin: 10px 0;
}
html body .lot-page .lot-calculator .slider .tick-labels {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 20px;
}
html body .lot-page .lot-calculator .slider .win-probability-show {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
html body .lot-page .lot-calculator .slider .win-probability-show .win-probability-text {
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
}
html body .lot-page .lot-calculator .slider .auction-rate-show {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
}
html body .lot-page .price {
  margin: 10px 30px;
}
html body .lot-page .price .price-value {
  font-weight: 600;
}
html body .lot-page .image-gallery .main-image {
  display: block;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  overflow: hidden;
  border: 5px solid #fff;
  max-height: 40vw;
}
html body .lot-page .image-gallery .thumbnails {
  display: flex;
  flex-wrap: wrap;
}
html body .lot-page .image-gallery .thumbnails .image-item {
  height: 100px;
  display: block;
  width: 14.2857142857%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  overflow: hidden;
  border: 5px solid #fff;
}
html body .lot-page table.calculation {
  border-spacing: 0;
  width: 100%;
  margin-top: 20px;
}
html body .lot-page table.calculation tr:nth-child(odd) {
  background: var(--white-gray);
}
html body .lot-page table.calculation tr.highlighted {
  background: var(--blue-transparent);
  color: var(--white-color);
  font-weight: bold;
}
html body .lot-page table.calculation tr td {
  padding: 13px 10px;
}
html body .lot-page table.calculation tr td.value {
  text-align: right;
}
html body ul.terms {
  padding: 0;
}
html body ul.terms li {
  display: block;
  padding: 0 0 10px;
  font-size: small;
  list-style: none;
}
html body .items-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: var(--standard-width);
  justify-content: left;
}
html body .items-gallery .items-gallery-title {
  font-size: 30px;
  font-weight: 600;
  display: block;
  margin: 0 30px;
}
html body .items-gallery .items-gallery-subtitle {
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin: 0 30px;
}
html body .items-gallery .lot {
  display: inline-flex;
  flex-direction: column;
  width: 32%;
  height: 560px;
  margin: 0.5%;
  position: relative;
  border-radius: 10px;
  transition-duration: 0.35s;
  cursor: pointer;
  box-sizing: border-box;
}
html body .items-gallery .lot .lot-image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 480px;
  padding: 10px;
  box-sizing: border-box;
}
html body .items-gallery .lot .lot-image .full-image {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 7px;
  position: relative;
}
html body .items-gallery .lot .lot-image .full-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50.27%);
  transition: 0.65s;
  opacity: 0;
}
html body .items-gallery .lot .lot-info {
  padding: 10px 20px;
  color: var(--gray-main);
}
html body .items-gallery .lot .lot-info .lot-info-name {
  font-weight: 600;
  font-size: 24px;
  transition-duration: 0.35s;
  padding-bottom: 20px;
}
html body .items-gallery .lot .lot-info .price .price-value {
  font-weight: 600;
}
html body .items-gallery .lot .lot-info .features {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
}
html body .items-gallery .lot .lot-info .features li {
  float: left;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}
html body .items-gallery .lot .lot-info .features li img {
  width: 25px;
  margin-right: 5px;
}
html body .items-gallery .lot:hover {
  border-color: var(--blue-main);
}
html body .items-gallery .lot:hover .lot-image .full-image:after {
  opacity: 1;
}
html body .items-gallery .lot:hover .lot-info .lot-info-name {
  color: var(--blue-main);
}
html body footer {
  left: 0;
  width: 100%;
  max-width: var(--standard-width);
  margin-top: 50px;
  display: flex;
  padding: 0 50px;
  justify-content: flex-end;
  box-sizing: border-box;
}
html body footer .footer-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
html body footer .footer-container .footer-block {
  display: inline-flex;
  margin: 30px 10px;
}
html body footer .footer-container .footer-block .icon {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
html body footer .footer-container .footer-block .icon i {
  font-size: 35px;
}
html body footer .footer-container .footer-block .content {
  display: inline-flex;
  flex-direction: column;
}
html body footer .footer-container .footer-block .content span {
  font-size: 12px;
  font-weight: 600;
}
html body footer .footer-container .footer-block .content a {
  font-weight: 600;
}
html .offer-block {
  margin-top: 20px;
}
html .offer-block .step-desc-bold {
  font-weight: 600;
}
html .offer-block .offer-block-content .offer-block-content-header {
  padding: 5px 0;
  background-color: #244f9e;
  color: var(--white-color);
  margin: 0 -10px;
}
html .offer-block .offer-block-content .offer-block-content-header h2 {
  margin: 15px 20px;
}
html .offer-block .offer-block-content .offer-block-content-header .benefits-list .benefits-list-image {
  display: none;
}
html .offer-block .offer-block-content .offer-block-content-header .benefits-list ul {
  list-style-type: none;
  padding: 0;
  margin: 15px 20px;
}
html .offer-block .offer-block-content .offer-block-content-header .benefits-list ul li {
  margin-bottom: 10px;
}
html .offer-block .offer-block-content .offer-block-content-header .benefits-list ul li:before {
  content: "✅";
  padding-right: 5px;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works {
  width: 95%;
  margin: 0 auto;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step {
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step .step-icon {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step .step-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step .step-content .step-title {
  font-size: 18px;
  font-weight: 600;
}
html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step .step-content .step-desc {
  font-size: 14px;
  font-weight: 400;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider h3 {
  display: none;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container {
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
  touch-action: pan-y;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track {
  display: flex;
  transition: transform 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-sizing: border-box;
  padding: 0 1px;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-content {
  width: 50%;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-content .slider-stars {
  font-size: 12px;
  color: #ffd700;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-image {
  width: 50%;
  cursor: pointer;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-image video {
  width: 100%;
  border-radius: 6px;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons .offer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  height: 40px;
  cursor: pointer;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons .offer-button i {
  font-size: 30px;
  margin-right: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons .offer-button.wa-button {
  background-color: #25d366;
  color: var(--white-color);
}
html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons .offer-button.tg-button {
  background-color: var(--blue-main);
  color: var(--white-color);
  margin-right: 10px;
  font-size: 12px;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 20px auto 0;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-map .offer-map-logo {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-map .offer-map-content {
  font-size: 12px;
  margin-bottom: 10px;
}
html .offer-block .offer-block-content .offer-block-content-body .offer-map .offer-map-widget {
  width: 100%;
}
html .contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}
html .contact-popup .contact-popup-content-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}
html .contact-popup .contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
html .contact-popup .contact-popup-content {
  width: 90%;
  background-color: #ffffff;
  z-index: 1001;
  box-sizing: border-box;
  position: relative;
  margin: 10vh auto 0;
  padding: 10px 30px;
  max-width: 370px;
}
html .contact-popup .contact-popup-content .contact-popup-content-header h3 {
  font-size: 20px;
  font-weight: 600;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .form-group-checkbox {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  font-size: 12px;
  margin-bottom: 20px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .form-group-checkbox .checkbox-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .form-group-checkbox .checkbox-wrapper input {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .smart-captcha {
  margin-bottom: 20px;
  margin-left: -5px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .submit-button {
  background-color: var(--blue-transparent);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}
html .contact-popup .contact-popup-content .contact-popup-content-body form .submit-button:hover {
  background-color: var(--blue-main);
  color: var(--white-color);
}
html .office {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 50px auto 10px;
  max-width: var(--standard-width);
}
html .office .office-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  width: 100%;
  padding: 0px 50px;
  box-sizing: border-box;
}
html .office .office-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  align-items: stretch;
}
html .office .office-content > div {
  width: 45%;
  border-radius: 10px;
  overflow: hidden;
}
html .office .office-content .office-content-map {
  margin-left: 30px;
}
html .office .office-content .office-content-map > div {
  width: 100%;
  height: 100%;
  display: block;
}
html .office .office-content .office-content-map > div iframe {
  width: 100%;
  height: 100%;
  border: none;
}
html .office .office-content .office-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 601px) {
  .only-mobile {
    display: none !important;
  }
  html .offer-block {
    margin: 20px auto 50px;
    box-sizing: border-box;
    width: 100%;
  }
  html .offer-block .offer-block-content .offer-block-content-header {
    position: relative;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits {
    max-width: var(--standard-width);
    margin: 0 auto;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    width: 50%;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 0 20px;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list .benefits-list-image {
    width: 40%;
    position: relative;
    height: 100%;
    display: block;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list .benefits-list-image img {
    width: 650px;
    display: block;
    position: absolute;
    top: -180px;
    right: -180px;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list ul {
    width: 35%;
    font-size: 20px;
  }
  html .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list ul li {
    margin-bottom: 25px;
  }
  html .offer-block .offer-block-content .offer-block-content-body {
    display: flex;
    flex-direction: column;
    max-width: var(--standard-width);
    margin: 30px auto 0;
  }
  html .offer-block .offer-block-content .offer-block-content-body .how-it-works {
    order: 3;
    margin-bottom: 60px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .how-it-works h3 {
    font-size: 30px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps {
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
  }
  html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step {
    width: 30%;
  }
  html .offer-block .offer-block-content .offer-block-content-body .how-it-works .steps .step .step-content .step-desc {
    width: 70%;
    font-size: 16px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider {
    order: 4;
    width: 95%;
    margin: 0 auto;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider h3 {
    font-size: 30px;
    display: block;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container {
    max-width: 880px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide {
    height: 400px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-image {
    width: initial;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-image video {
    height: 400px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-content {
    font-size: 16px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .contacts-offer {
    order: 1;
    margin-top: 20px;
    align-items: start;
    width: 92%;
  }
  html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-title {
    font-size: 16px;
    font-weight: initial;
    margin-bottom: 20px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .contacts-offer .contacts-offer-buttons .offer-button {
    font-size: 16px !important;
    width: 310px;
    height: 50px;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-map {
    order: 2;
    width: 92%;
  }
  html .offer-block .offer-block-content .offer-block-content-body .offer-map .offer-map-content {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1350px) {
  html body .items-gallery .lot {
    width: 49%;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1150px) {
  html body .offer-block .offer-block-content .offer-block-content-header .offer-block-benefits .benefits-list .benefits-list-image img {
    width: 530px;
    top: -120px;
    right: -120px;
  }
  html body .items-gallery .lot {
    width: 49%;
  }
}
@media only screen and (max-width: 600px) {
  html .only-desktop {
    display: none !important;
  }
  html body .main-page .row-1 {
    display: flex;
    margin-top: 20px;
    flex-direction: column-reverse;
  }
  html body .main-page .row-1 > div {
    width: 100%;
  }
  html body .main-page .row-1 .row-1-1 .banner-content h1 {
    font-size: x-large;
  }
  html body .main-page .why-choose-area .advantages {
    flex-direction: column;
  }
  html body .main-page .why-choose-area .advantages .choose-card {
    width: 100%;
  }
  html body .main-page .why-choose-area .our-activities {
    flex-wrap: wrap;
  }
  html body .main-page .why-choose-area .our-activities .single-activity {
    width: 50%;
    flex-direction: column;
  }
  html body .map iframe {
    height: 100vw;
  }
  html body .top-bar {
    padding: 5px 5px 0;
    justify-content: space-between;
  }
  html body .lot-title {
    margin-bottom: 20px;
    flex-direction: column;
  }
  html body .menu-wrapper {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s linear;
    border-bottom: none;
    border-top: none;
  }
  html body .menu-wrapper.active {
    border-bottom: 1px solid var(--light-gray);
  }
  html body .menu-wrapper ul.menu {
    flex-direction: column;
    padding: 0 5px;
    border-bottom: none;
    margin: 0;
  }
  html body .menu-wrapper ul.menu li {
    margin: 0;
  }
  html body .menu-wrapper ul.menu li a {
    padding: 20px 0;
    display: block;
    width: 100%;
  }
  html body .menu-wrapper .menu-block {
    position: relative;
    right: initial;
    justify-content: left;
    padding-bottom: 20px;
  }
  html body .main-content-2col {
    flex-direction: column;
  }
  html body .main-content-2col .column {
    width: initial;
    padding: 0;
  }
  html body .main-content-2col .column .single-contact {
    padding: 20px 30px 10px;
    margin-bottom: 20px;
  }
  html body .lot-page .lot-calculator .slider {
    position: relative;
    bottom: 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    padding: 10px 10px;
    background: #fff;
    margin: 0;
    touch-action: pan-y;
  }
  html body .lot-page .lot-calculator .slider.slider-fixed {
    position: fixed;
    padding: 10px 18px;
  }
  html body .lot-page .main-content-2col .column .buttons .button .time-counter {
    display: flex;
    flex-direction: column-reverse;
    background: none;
    color: var(--gray-main);
    padding: 5px 15px 20px;
  }
  html body .lot-page .main-content-2col .column .buttons .button .time-counter .timer-desc {
    font-size: initial;
  }
  html body .lot-page .main-content-2col .column .buttons .button .time-counter .time-counter-counts {
    justify-content: flex-start;
  }
  html body .lot-page .main-content-2col .column .buttons .button .time-counter .time-counter-counts .timer-item .label {
    display: none;
  }
  html body .lot-page .main-content-2col .column .specification {
    padding: 20px 5px 0px;
  }
  html body .lot-page .main-content-2col .column .specification ul {
    margin: 0;
  }
  html body .lot-page .image-gallery .main-image {
    max-height: 60vw;
  }
  html body .lot-page .image-gallery .thumbnails {
    justify-content: flex-start;
  }
  html body .lot-page .image-gallery .thumbnails .image-item {
    width: 20%;
  }
  html body .offer-block {
    margin-bottom: 20px;
  }
  html body .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider {
    margin: 30px 0;
  }
  html body .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide {
    flex-direction: column-reverse;
  }
  html body .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-content {
    width: 90%;
  }
  html body .offer-block .offer-block-content .offer-block-content-body .offer-block-content-slider .slider-container .slider-track .slide .slide-image {
    width: 80%;
  }
  html body .items-gallery .items-gallery-title {
    font-size: 22px;
    margin: 0 10px;
  }
  html body .items-gallery .items-gallery-subtitle {
    font-size: 14px;
    margin: 0 10px;
  }
  html body .items-gallery .lot {
    height: 45vh;
    width: 100%;
  }
  html body .items-gallery .lot .lot-info {
    padding: 0 10px;
  }
  html body .items-gallery .lot .lot-info .lot-info-name {
    padding-bottom: initial;
  }
  html body .items-gallery .lot .lot-image {
    max-height: initial;
  }
  html body .items-gallery .lot .lot-image .time-counter .timer-desc {
    font-size: 12px;
  }
  html body .items-gallery .lot .lot-image .time-counter .time-counter-counts .timer-sep {
    font-size: 20px;
  }
  html body .items-gallery .lot .lot-image .time-counter .time-counter-counts .timer-item .label {
    font-size: 10px;
  }
  html body .items-gallery .lot .lot-image .time-counter .time-counter-counts .timer-item .count {
    font-size: 20px;
  }
  html body footer {
    margin: 15px;
    padding: 0 10px;
    justify-content: center;
  }
  html body footer .footer-container {
    border: none;
    flex-direction: column;
    align-items: center;
  }
  html body footer .footer-container .footer-block {
    margin: 10px;
  }
  html .office {
    margin-top: 20px;
  }
  html .office .office-title {
    padding: 0;
  }
  html .office .office-content {
    flex-direction: column-reverse;
  }
  html .office .office-content > div {
    width: 100%;
  }
  html .office .office-content .office-content-map {
    margin-left: 0;
    height: 300px;
  }
}
.offer-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
}
.offer-icon.memo {
  background-image: url("/assets/icon/memo-circle-check.svg");
}
.offer-icon.car-journey {
  background-image: url("/assets/icon/car-journey.svg");
}
.offer-icon.car-building {
  background-image: url("/assets/icon/car-building.svg");
}
.offer-icon.briefcase {
  background-image: url("/assets/icon/briefcase.svg");
}
.offer-icon.detail {
  background-image: url("/assets/icon/attention-detail.svg");
}
.offer-icon.paperwork {
  background-image: url("/assets/icon/file-recycle.svg");
}

/*# sourceMappingURL=main.css.map */
