html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
}

.menu {
  margin: 0;
  padding: 0;
}

.menu__list {
  margin: 0;
  padding: 0;
}

.menu__nav {
  margin: 0;
  padding: 0;
}

.success-mail-send{
  display: none;
}
.header-logo-mobile,.trigger,nav#mobile-menu {
  display: none;
}
.item_list::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 4px;
}


.menu {
  width: 100%;
  background-color: #0d0d0d14;
  position: relative;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.menu-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d0d0d14;
  padding: 30px 1rem;
  position: relative;
  z-index: 9999;
  max-width: 1400px;
  margin: auto;
}
main.main {
  margin-top: -105px;
}

.menu__logo {
  flex: 1;
}

.menu__logo img {
  max-height: 50px; 
  width: auto;
}

.menu__group {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin: 0;
}

.menu__nav {
  display: flex;
  gap: 20px; 
width:100%;
}

.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  gap: 0; 
  width: 100%;
}


.menu__list li {
  display: inline;
}

.menu__list a {
  color: #fff; 
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative; 
  padding-bottom: 8px; 
}
.menu__list a::after {
  content: ''; 
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; 
  height: 1px;
  background-color: #78be20; 
  transition: width 0.3s ease-in-out;
}

.menu__list a:hover {
  color: #78be20; 
}
.menu__list a:hover::after {
  width: 100%; 
}

.menu__group:last-child {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  font-size: 16px;
  gap: 10px;
  padding: 0 40px;
}

.menu__group:last-child span {
  display: inline-block;
  color: #78be20; 
}
.hero {
  position: relative;
  background-image: url('/wp-content/themes/cars/images/bg-img.webp'); 
  background-size: cover;
  background-position: center;
  height: 95vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 76%) 17.56%, rgba(13, 13, 13, 0.68) 100%);
  z-index: 1;
  align-content: center;
}


.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1035px;
  margin: 0 auto;
  padding: 20px;
}

.hero__title {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 0px;
}

.hero__subtitle {
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.highlight {
  color: #78be20; 
  font-weight: 700;
}

.hero__description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn--primary {
  background-color: #78be20;
  color: #fff;
}

.btn--primary:hover {
  background-color: #5e9b18;
}

.btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background-color: #fff;
  color: #0d0d0d;
}


.logo-section {
  background-color: #fff; 
  padding: 170px 150px; 
  display: flex;
  justify-content: center; 
}


.logo-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 1400px;
  margin: auto;
  align-content: center;
  align-items: center;
  justify-items: center;
}


.logo {
  max-height: 60px; 
  max-width: 100%; 
  object-fit: contain;
}

.about-section {
  background-color: #fff; 
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  background-image: url(/wp-content/themes/cars/images/bg_about_us.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.about-image {
  flex: 1 1 50%; 
}

.about-image img {
  width: 100%; 
  object-fit: cover;
}

.about-content {
  flex: 1 1 45%; 
  text-align: left; 
}
.about-content p {
  max-width: 650px;
}
.about-content h2 {
  font-size: 2rem; 
  margin-bottom: 20px; 
  color: #333; 
  font-weight: 800;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.6; 
  color: #313131;
  margin-bottom: 15px; 
}

.about-content strong {
  color: #000; 
}

.about-btn {
  display: inline-block; 
  padding: 22px 50px; 
  background-color: #fff; 
  border: 1px solid #82BA26; 
  color: #313131; 
  border-radius: 5px; 
  font-size: 1rem; 
  font-weight: bold; 
  text-decoration: none; 
  transition: all 0.3s ease; 
}

.about-btn:hover {
  background-color: #5e9b18; 
  color: #fff; 
}

.about-icon {
  margin-bottom: -100px;
  text-align: left; 
}

.about-icon img {
  max-width: 100%; 
  height: auto; 
  display: inline-block; 
}
.about-btn svg {
  margin-left: 20px;
}


.logo-section {
  position: relative;
  overflow: hidden;
}

.circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgb(255 255 255);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.1s ease-out;
  mix-blend-mode: multiply;
  opacity: 0;
  backdrop-filter: blur(10px);
  padding: 20px;
  border: 1px solid #31313112;
}

.circle-text {
  font-size: 15px;
  color: #313131;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.hover-block:hover .circle {
  opacity: 1;
}

.advantages-section {
  min-height: 1100px;
  background-image: url(/wp-content/uploads/2025/01/bg-advantage.jpg);
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: bottom;
  margin-top: 70px;
  margin-bottom: -180px;
}

.main-section-title {
max-width: 1400px;
margin: 0 auto;
text-align: left;
padding: 70px 0px;
}

.advantages-title {
color: #313131;
margin: 0;
font-size: 40px;
line-height: 1.3;
margin-bottom: 20px;
font-weight: 700;
}
.advantage-item svg {
  fill: #a8a8a8;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

.advantage-item {
  background-color: #ffffff4d;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid #fff;
  min-height: 200px;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
  font-size: 24px;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: -10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.advantage-heading {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.advantage-description {
  font-size: 14px;
  color: #313131;
  line-height: 1.6;
}


.app-section {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
max-width: 1400px;
margin: 70px auto;
position: relative;
flex-direction: column;
}
.app-section-content {
  display: flex;
}

.app-content {
flex: 1 1 50%;
max-width: 700px;
margin-right: 40px;
}

.app-title {
color: #333;
margin-bottom: 15px;
font-size: 40px;
line-height: 1.3;
font-weight: 700;
}

.app-title .highlight {
  color: #78be20;
}

.app-subtitle {
font-size: 25px;
color: #313131;
margin-bottom: 20px;
font-weight: 500;
}

.platform-buttons {
display: flex;
gap: 15px;
}

.platform-btn {
background-color: #f2f2f2;;
color: #000000;
border: none;
border-radius: 100px;
padding: 12px 20px;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: background-color 0.3s ease;
font-weight: 500;
}

.app-image {
flex: 1 1 40%;
text-align: center;
}

.app-image img {
max-width: 100%;
}

.app-features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
width: 100%;
}

.feature {
border-radius: 20px;
border: solid 1px #9DC65A;
flex: 2 1 26%;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: #333;
background-color: #f8f9fa;
padding: 20px 15px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.feature:first-child {
flex: 1 1 38%;
}

.feature:hover {
transform: scale(1.02); 
}

.icon-check {
color: #4caf50;
font-size: 18px;
}

.icon-apple,
.icon-pc {
font-size: 18px;
color: #fff;
}


.auctions-section {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 80px;
margin: 50px auto;
padding: 20px;
max-width: 1400px;
}

.auctions-content {
flex: 1;
}

.auctions-content h2 {
font-size: 40px;
color: #333;
margin-bottom: 20px;
font-weight: 800;
}

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

.auctions-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 18px;
color: #313131;
margin-bottom: 15px;
}

.check-icon {
font-size: 18px;
color: #82ba26; 
font-weight: bold;
margin-top: 4px;
}

.auctions-logos {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}

.auctions-logos img {
height: 40px;
object-fit: contain;
}

.auctions-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
align-self: center;
}

.auctions-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.icon-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
margin: 40px 0px;
}

.icon-list img {
width: auto;
height: 35px;  
object-fit: contain;
}
ul.auctions-list.bullet {
padding-left: 30px;
}

.tracking-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.tracking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.tracking-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tracking-title {
  font-size: 40px;
  font-weight: 800;
  color: #313131;
}

.tracking-subtitle {
  font-size: 18px;
  margin: 15px 0;
  color: #313131;
  border: 1px solid #9DC65A;
  padding: 15px 20px;
  border-radius: 20px;
  margin-left: 70px;
}

.tracking-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.tracking-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #313131;
}

.feature-icon {
  color: #4CAF50;
  font-size: 18px;
  line-height: 0px;
}

.tracking-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tarcking-text {
  display: flex;
  flex-direction: row;
  margin-left: 80px;
}
.tracking-image {
  padding-left: 100px;
}
.icon-tracking-list {
  position: relative;
  margin-right: -18px;
}

.icon-tracking-list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 2px;
  height: 90%;
  background-color: #82BA26;
}
.photo-tabs-title {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1400px;
  margin: auto;
}

.photo-tabs {
  text-align: center;
  background: url(/wp-content/uploads/2025/01/background-tabs.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: contain;
}

.photo-tabs h2 {
  margin-bottom: 50px;
  font-size: 40px;
  color: #313131;
  font-weight: 700;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .photo-tabs {
    padding: 1.875rem!important;
  }
  .slider-controls {
    display: none!important;
}
  .photo-tabs-gallery {
    flex-direction: column!important;
    max-height: 100%!important;
  }
  .tabs {
    flex-wrap: wrap!important;
    max-width: 100%!important;
  }
  .tab.active {
    display: flex;
    flex-direction: column !important;
    gap: 0.625rem;
}
.tab {
  flex: 0 1 calc(50% - 10px);
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column !important;
  gap: 0.625rem;
}
  .youtube-link {
    flex-direction: column !important;
    width: calc(46% - 10px) !important;
}
.galleries {
  margin-top: 50px!important;
}
.youtube-link svg {
  max-width: 2rem;
  width: 2rem;
  height: 2rem;
  fill: #82ba26;
}
}


.photo-tabs-gallery {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  margin: auto;
  gap: 10px;
  max-height: 90px;
  height: 100%;
}
.tabs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tab {
  padding: 15px 25px;
  border: 1px solid #4CAF50;
  background-color: #f9f9f9;
  color: #313131;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 18px;
  text-align: left;
}

.tab.active {
  color: #fff;
  background: url(/wp-content/uploads/2025/01/active-tabs.svg), #82BA26;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tab.active img {
  filter: brightness(0) invert(1);
}
.tab:hover img {
  filter: brightness(0) invert(1);
}

.tab:hover {
  background-color: #82BA26;
  color: #fff;
}

a.youtube-link {
  text-decoration: none;
}

.galleries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

.gallery {
  display: none;
}

.gallery.active {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  overflow: hidden;
}

.gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.youtube-link svg {
  max-width: 30px;
  width: 30px;
  margin-right: 10px;
  fill: #82ba26;
}

.youtube-link{
  padding: 15px 25px;
  border: 1px solid #4CAF50;
  background-color: #f9f9f9;
  color: #313131;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 18px;
  text-align: left;
}

.thumbnail-swiper {
  overflow: hidden;
  width: 100%;
}

.thumbnail-swiper .swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.thumbnail-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  position: absolute;
  top: 180px;
}
button.prev {
  position: absolute;
  top: 300px;
  left: -50px;
  z-index: 100;
}
button.next {
  position: absolute;
  top: 300px;
  right: -850px;
  z-index: 100;
}
.slider-controls .prev,
.slider-controls .next {
  background-color: #dddddd00;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #31313129;
}

.slider-controls .prev:hover,
.slider-controls .next:hover {
  background-color: #bbbbbb2e;
  border: 1px solid #313131;
}
.swiper-slide.swiper-slide-active {
  max-width: 800px;
}

.swiper-slide img,.swiper-slide.swiper-slide-active img,.swiper-slide.swiper-slide-next img {
  width: 100% !important;
  height: auto !important;
  max-height: 500px;
}
.main-photo-swiper {
  max-width: 800px;
}


.telegram-bots {
  padding: 170px 20px;
}

.telegram-bots-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  gap: 10px;
  max-width: 1400px;
  margin: auto;
  align-items: center;
  display: flex;
  justify-content: left;
}

.telegram-bots-title img {
  width: 40px;
  height: 40px;
}

.telegram-bots-title .highlight {
  color: #78be20;
}

.telegram-bots-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.telegram-bots .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bots-preview {
  display: flex;
  gap: 20px;
}

.bot-phone {
  width: 300px;
  aspect-ratio: 9 / 16;
}

.bot-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bots-descriptions {
  max-width: 500px;
}

.bot-description {
  margin-bottom: 20px;
  width: 401px;
  border-radius: 25px;
  box-shadow: 0px 20px 70px 0px #0000000D;
  padding: 33px 37px;
}

.bot-name {
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  background-color: #82BA26;
  border-radius: 100px;
  padding: 12px 30px;
}

.bot-description p {
  margin: 0;
  font-size: 18px;
  color: #313131;
}
div#\32 {
  margin-left: 80px;
}

/*--------------------- БЛОК КАРТЫ ---------------------*/
.ports-container {
  display: none;
}

/* Общий контейнер */
.ports-map {
  padding: 20px;
  text-align: center;
}

.map-header {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  z-index: 1;
  position: relative;
  background: #fffffff2;
  backdrop-filter: blur(41px);
}

.map-header-title {
  display: flex;
  flex: 1 1 calc(55% - 10px);
  gap: 20px;
  align-items: flex-start;
}

.map-header-top-title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
}
.map-header-content {
  flex: 1 1 calc(55% - 10px);
}

.map-header-title img.world-map-icc {
  width: 50px;
  height: auto;
}

.map-header h2 {
  font-size: 40px;
  color: #313131;
  margin: -40px 0 0 0px;
  align-content: baseline;
  align-self: center;
  text-align: left;
  font-weight: 800;
}

.map-header h2 span {
  color: #8ac543;
}

.map-header p {
  font-size: 18px;
  color: #313131;
  margin: 0px;
  text-align: left;
  font-weight: 400;
}

.map-header p strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* Карта */
.map-container {
  position: relative;
  margin: 20px auto;
  width: 80%;
  max-width: 1200px;
}

.world-map {
  width: 100%;
  display: block;
}

/* Маркеры */
.map-marker {
  position: absolute;
  display: flex;
}
.map-marker {
  pointer-events: none; 
}
.popup-content {
  margin-left: 10px;
}

.map-marker .popup {
  background: white;
  border: 1px solid #ccc;
  padding: 0px 16px 0px 0px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  min-width: max-content;
  align-items: center;
  position: absolute;
  transition: opacity 0.3s ease;
}
.popup-img {
  padding: 0;
  margin: 0;
  width: 140px;
  height: 140px;
  background-image: url(/wp-content/themes/cars/images/bg-img.webp);
  background-size: cover;
  background-position: center;
  border-radius: 25px;
}
.ports-row-list li:hover + .map-marker .popup {
  display: block;
}

g#Hawaii {transform: scale(0.5) translate(3%, 110%); transition: transform 0.3s ease-in-out;}
g#Hawaii.hover-effect {transform: scale(0.6) translate(2%, 90%);}

g#Alaska {transform: scale(0.5, 0.5) translate(5%, 70%); transition: transform 0.3s ease-in-out;}
g#Alaska.hover-effect {transform: scale(0.6) translate(3%, 57%);}

g#California {transform: scale(0.5, 0.5) translate(26%, 100%); transition: transform 0.3s ease-in-out;}
g#California.hover-effect {transform: scale(0.6) translate(21%, 82%);}

g#Texas {transform: scale(0.5, 0.5) translate(39%, 102%); transition: transform 0.3s ease-in-out;}
g#Texas.hover-effect {transform: scale(0.6) translate(32%, 84%);}

g#Savannah {transform: scale(0.5, 0.5) translate(45%, 100%); transition: transform 0.3s ease-in-out;}
g#Savannah.hover-effect {transform: scale(0.6) translate(37%, 82%);}

g#Indianapolis {transform: scale(0.5, 0.5) translate(47%, 92%); transition: transform 0.3s ease-in-out;}
g#Indianapolis.hover-effect {transform: scale(0.6) translate(39%, 76%);}

g#New_Jersey {transform: scale(0.5, 0.5) translate(51%, 90%); transition: transform 0.3s ease-in-out;}
g#New_Jersey.hover-effect {transform: scale(0.6) translate(42%, 73%);}

g#Canada {transform: scale(0.5, 0.5) translate(50%, 82%); transition: transform 0.3s ease-in-out;}
g#Canada.hover-effect {transform: scale(0.6) translate(40%, 67%);}

g#Lagos {transform: scale(0.5, 0.5) translate(94%, 125%); transition: transform 0.3s ease-in-out;}
g#Lagos.hover-effect {transform: scale(0.6) translate(77.5%, 103%);}

g#Dubai {transform: scale(0.5, 0.5) translate(121%, 107%); transition: transform 0.3s ease-in-out;}
g#Dubai.hover-effect {transform: scale(0.6) translate(100%, 88%);}

g#Bremerhafen {transform: scale(0.5, 0.5) translate(95%, 76%); transition: transform 0.3s ease-in-out;}
g#Bremerhafen.hover-effect {transform: scale(0.6) translate(79%, 61%);}

g#Rotterdam {transform: scale(0.5, 0.5) translate(92%, 79%); transition: transform 0.3s ease-in-out;}
g#Rotterdam.hover-effect {transform: scale(0.6) translate(76%, 65%);}

g#Klaipeda {transform: scale(0.5, 0.5) translate(102%, 73%); transition: transform 0.3s ease-in-out;}
g#Klaipeda.hover-effect {transform: scale(0.6) translate(84%, 60%);}

g#Constanca {transform: scale(0.5, 0.5) translate(106%, 88%); transition: transform 0.3s ease-in-out;}
g#Constanca.hover-effect {transform: scale(0.6) translate(88%, 71%);}

g#Chernomorsk {transform: scale(0.5, 0.5) translate(107%, 83%); transition: transform 0.3s ease-in-out;}
g#Chernomorsk.hover-effect {transform: scale(0.6) translate(89%, 68%);}

g#Odesa {transform: scale(0.5, 0.5) translate(110%, 85%); transition: transform 0.3s ease-in-out;}
g#Odesa.hover-effect {transform: scale(0.6) translate(91%, 69%);}

g#Poti {transform: scale(0.5, 0.5) translate(113%, 90%); transition: transform 0.3s ease-in-out;}
g#Poti.hover-effect {transform: scale(0.6) translate(94%, 74%);}







g#Hawaii-curve {fill: none;transform: scale(0.83, 0.75) translate(4%, 68%);}
g#Savannah-curve {fill: none;transform: scale(0.46, 0.5) translate(54%, 97%) rotate(10deg);}
g#Dubai-curve {fill: none; transform: scale(0.67, 0.75) translate(38%, 57%);}
g#Indianapolis-curve {fill: none; transform: scale(0.59, 0.8) translate(42%, 53%) rotate(-8deg);}
g#Texas-curve {fill: none; transform: scale(0.6, 0.5) translate(35%, 100%) rotate(-19deg);}
g#Nj-curve {fill: none; transform: scale(0.4, 0.35) translate(66%, 128%) rotate(-17deg);}







/* Попап */
.popup {
  display: none;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -20%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: left;
  width: 200px;
}

.popup img {
  width: 100%;
  border-radius: 25px;
}

.popup p {
  font-size: 14px;
  color: #333;
}

.ports {
  margin-top: 0px;
  z-index: 1;
}

.ports-row {
  max-width: 1400px;
  margin: auto;
  z-index: 1;
  position: relative;
  background: #fffffff2;
  backdrop-filter: blur(2px);
}
.ports-row-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.ports-row h3 {
  font-size: 18px;
  color: #313131;
  text-align: left;
  font-weight: 600;
}

.ports-row ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #F3F3F3;
}

.ports-row ul li {
  font-size: 18px;
  color: #313131;
  font-weight: 400;
  padding: 10px 25px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 1px solid #82BA26;
  border-radius: 5px;
}


.ports-row ul li:hover {
  background-color: #5e9b18;
  color: #fff;
}





/*--------------------- БЛОК ПОСЛЕ КАРТЫ ---------------------*/
/* Основные стили секции */
.crm-feature-section {
  padding: 60px 60px 20px 60px;
  margin-top: -40px;
  position: relative;
  background: #fffffff2;
  backdrop-filter: blur(2px);
}

.container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}

/* Стили для текста */
.crm-text {
  flex: 1;
}

.crm-text h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.features {
  display: flex;
  align-items: center;
  gap: 10px;
}


.cta-button {
  display: inline-block;
  padding: 22px 50px;
  font-size: 16px;
  font-weight: 600;
  color: #313131;
  background-color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  border:1px solid #82BA26;
}

.cta-button:hover {
  background-color: #5e9b18;
  color: #fff;
}


.crm-image {
  flex: 1;
  text-align: center;
}

.crm-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.crm-feature-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 50px;
}





/* Общие стили секции */
.calculator-form-section {
  padding: 60px 20px;
  text-align: center;
}

.calculator-form-section h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #313131;
  text-align: left;
  margin: auto;
  flex: auto;
}

.calculator-form-section h2 span {
  color: #78be20;
}


.calculator-form {
  background-color: #F2F3F6;
  border-radius: 50px;
  padding: 60px 40px;
  width: 94%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
}

.input-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 2px solid #72b132; 
  border-radius: 10px;
  padding: 5px 10px;
  background-color: #fff;
}

.with-unit {
  border: none;
  outline: none;
  padding-right: 20px; 
  font-size: 16px;
  flex-grow: 1;
}

.unit {
  position: absolute;
  right: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #2c2c2c;
  pointer-events: none;
}

.input-with-units {
  flex: 1 1 calc(22% - 0px);
  position: relative;
  margin-right: 0px;
  display: flex;
  flex-direction: row;
  align-items: center
}

.input-with-units input {
  border: 1px solid #BCBCBE;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
}

.input-with-units input.with-unit::placeholder {
  text-align: left;
  font-size: 14px; 
  color: #888;
  font-weight: 400;
}

/* Прочие стили */
.calculate-button {
  background-color: #78be20;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex: 1 1 calc(20% - 10px);
  position: relative;
}

.calculate-button:hover {
  background-color: #5e9b18;
}


.calculator-form-title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-self: flex-start;
  align-items: flex-start;
  line-height: 50px;
  gap: 20px;
  flex: 1;
}
.calculator-form-subtitle {
  flex: 1;
  text-align: left;
}
.calculator-form-title img {
  margin-top: 6px;
  flex: 0;
}




.form__nav {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: left;
}

.form__nav-item {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.form__nav-item.active {
  border-color: #78be20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: #d7d7d76b;
}

.form__nav-item img {
  width: 76px;
  height: auto;
}

.form__nav-item-text {
  font-size: 18px;
  color: #313131;
}

.form__nav-item-input {
  display: none;
}

select#location {
  flex: 1 1 calc(23% - 10px);
  position: relative;
  border: 1px solid #BCBCBE;
  border-radius: 10px;
  padding: 10px;
  margin-left: 0px;
  font-size: 16px;
}
select#port {
  flex: 1 1 calc(23% - 10px);
  position: relative;
  border: 1px solid #BCBCBE;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
}

input#description {
  flex: 1 1 calc(22% - 10px);
  position: relative;
  border: 1px solid #BCBCBE;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
}

.fuel-type {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: left;
}

.fuel-type .form__nav-item {
  border: 1px solid #BCBCBE;
  border-radius: 8px;
  padding: 7px 15px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #fff;
}

.fuel-type .form__nav-item.active {
  border-color: #4caf50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #d7d7d76b;
}   

.fuel-type .form__nav-item img {
  width: 35px;
  height: auto;
}

.fuel-type .form__nav-item-text {
  font-size: 16px;
  color: #2c2c2c;
}

.fuel-type .form__nav-item-input {
  display: none;
}

.input-with-units.bottoms {
  flex: 1 1 calc(38% - 10px);
  position: relative;
}
select#form_year {
  border: 1px solid #BCBCBE;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
  flex: 1 1 calc(38% - 10px);
  position: relative;
  margin-left: 10px;
} 


/* Основные стили */
.promo-section {
  color: #fff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-container {
  max-width: 1400px;
  display: flex;
  background: #313131;
  width: 100%;
  border-radius: 50px;
  min-height: 500px;
}
.promo-container-overlay {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #313131;
  border-radius: 50px;
  position: relative;
  background-image: url(/wp-content/uploads/2025/01/bg-img-overlay.svg);
  background-size: cover;
  background-position: center;
}

.promo-content {
  max-width: 600px;
  padding: 70px;
}

.promo-title {
  font-size: 36px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.promo-title .highlight {
  color: #78be20;
}

.promo-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.promo-button {
  display: flex;
  background-color: #78be20;
  color: #fff;
  text-decoration: none;
  padding: 1.375rem 1.877rem;
  font-size: 16px;
  border-radius: 0.625rem;
  transition: background-color 0.3s ease;
  text-align: center;
  line-height: 1rem;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: 14.18rem;
}
.promo-button svg {
  rotate: 45deg;
}

.promo-button:hover {
  background-color: #5a911b;
}

.promo-button span {
  font-size: 20px;
  margin-left: 10px;
}

.promo-image img {
  max-width: 100%;
  height: auto;
}

.promo-image {
  align-self: flex-start;
}



/**/

.faq-section {
  padding: 20px;
  background-color: #fff;
}

.faq-title {
  font-size: 40px;
  color: #313131;
  margin-bottom: 20px;
  align-items: center;
  text-align: left;
  line-height: 0px;
  display: flex
;
  gap: 20px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
}

.faq-item {
  display: flex;
  flex: 1 1 calc(50% - 20px);
  flex-direction: column;
  transition: background-color 0.3s ease;
      border-radius: 13px;
}

.faq-question {
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #313131;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 13px;
}

.faq-toggle {
  font-size: 18px;
  color: #4CAF50;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 18px;
  color: #313131;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active {
  border-radius: 13px;
  background-color: #f1f1f1;
  border: 1px solid #F2F3F6;
}

.faq-item.active .faq-answer {
  padding: 10px 15px 30px 15px;
}

/* Начальные стили */
span.faq-toggle svg circle {
  stroke: #313131;
  transition: stroke 0.3s ease;
}

.faq-toggle svg {
  fill: #F2F3F6;
  transition: fill 0.3s ease;
}

.faq-item svg path {
  fill: #313131; 
  transform: rotate(0deg); 
  transform-origin: 50% 50%;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.faq-item svg circle {
  stroke: #313131; 
  transition: stroke 0.3s ease;
}


.faq-item.active .faq-toggle svg path {
  transform: rotate(45deg); 
  fill: #fff;
}

.faq-item.active svg {
  fill: #9DC65A;
}

.faq-item.active svg path {
  fill: #fff; 
}

.faq-item.active svg circle {
  stroke: #9DC65A; 
}

.faq-section-title {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}







/* Footer Styles */
.footer {
  background-color: #f4f6f9;
  padding: 40px 20px;
  color: #313131;
  margin-top: 150px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-contact {
  text-align: left;
  margin-bottom: 50px;
}

.footer-title {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.footer-title h3 {
  font-size: 40px;
  font-weight: 800;
}

.footer-contact p {
  font-size: 16px;
  margin: 10px 0 0;
}

.footer-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}

.footer-detail h4 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-detail p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-link {
  font-size: 14px;
  color: #75c023;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #5a911b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logos img {
  max-height: 30px;
  margin: 0 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-button {
  background-color: #78be20;
  color: white;
  padding: 22px 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  border: 1px solid #82BA26;
  transition: background-color 0.3s ease;
}

.footer-button:hover {
  background-color: #5a911b;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link img {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.social-link:hover img {
  opacity: 0.8;
}

.footer-credits {
  text-align: center;
  font-size: 14px;
  color: #313131;
  margin-top: 20px;
}

a.social-link svg {
  fill: #313131;
} 
.social-link:hover svg {
  fill: #82BA26;
}





.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: none; /* По умолчанию скрыто */
}
.input-error {
  border: 1px solid red; /* Красная рамка при ошибке */
}




/* Popup Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040404CC;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal__content {
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.modal__content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #313131;
}

.modal__close {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.modal__close:hover {
  color: red;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal input {
  padding: 20px 25px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: auto;
}

.btn--submit {
  background-color: #4CAF50;
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.btn--submit:hover {
  background-color: #45a049;
}

        /* Fixed button styling */
        .floating-button {
          position: fixed;
          bottom: 50px;
          left: 20px;
          width: 100px;
          height: 100px;
          border: none;
          background: none;
          cursor: pointer;
          z-index: 1000;
          animation: pulse 2s infinite;
          margin-top: 70px;
      }

      .floating-button svg {
          width: 100%;
          height: 100%;
      }

      /* Animation for the button */
      @keyframes pulse {
          0% {
              transform: scale(1);
              opacity: 1;
          }
          50% {
              transform: scale(1.1);
              opacity: 0.8;
          }
          100% {
              transform: scale(1);
              opacity: 1;
          }
      }



.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none; 
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 120px;
  background-color: #82BA26; 
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}


.scroll-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 10px;
}

.scroll-to-top:hover {
  background-color: #7CB342; 
}

.scroll-to-top span {
  writing-mode: vertical-rl; 
  transform: rotate(0deg); 
}




@media (max-width: 768px) {
  .tracking-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tracking-description {
    padding: 0;
  }

  .tracking-header {
    justify-content: center;
  }

  .tracking-image img {
    margin-top: 20px;
  }

  .crm-feature-content {
    flex-direction: column;
    text-align: center;
  }

  .crm-text {
    margin-bottom: 20px;
  }
  .promo-container {
    flex-direction: column;
    text-align: center;
  }

  .promo-content {
    max-width: 100%;
  }

  .promo-image img {
    margin-top: 20px;
  }

  .footer-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}




/*       */ 

.select-selected {
  padding: 22px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #292929;
}

.select-selected svg {
  width: 0.7rem;
  height: auto;
  fill: #313131; 
  transition: transform 0.2s ease; 
}

.select-selected.active svg {
  transform: rotate(180deg); 
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  display: none; 
}


.select-items .select-option {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 14px;
  color: #292929;
  text-align: left;
}

.select-items .select-option:hover {
  background-color: #f0f0f0;
}

.select-items.show {
  display: block;
}

.select-items .select-option:last-child {
  border-bottom: none;
}

.form-group {
  flex: 1 1 calc(23% - 10px);
  position: relative;
  border-radius: 10px;
  font-size: 1rem;
}




/* слайдер блок*/
.telegram-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  gap: 10px;
  max-width: 1400px;
  align-items: center;
  display: flex;
  justify-content: left;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  align-items: flex-end;
}

.card-img-1, .card-img-2, .card-img-3 {
  max-width: 316px;
  height: auto;
  align-items: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
img.card-image.img-1, img.card-image.img-3 {
  max-width: 276px;
  margin-bottom: 10px;
  max-height: none;
}
img.card-image.img-2 {
  margin-bottom: 10px;
}
img.card-image.img-2 {
  width: 100%;
  max-width: 316px;
  border-radius: 10px;
}
.card-content {
  padding: 1rem 1.875rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}
.card {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper .swiper-wrapper {
  gap: 1.875rem;
  align-items: flex-end;
}
p.card-text {
  font-size: 0.875rem;
}
.card-title {
  font-size: 1rem;
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  background-color: #82BA26;
  border-radius: 100px;
  padding: 11px;
  min-width: 170px;
  text-align: center;
}
img.card-image.img-2 {
  max-height: fit-content;
}


.calculator-form-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/*Calculator form*/

.div-wrapper {
  width: 1400px;
  height: 600px;
  background-color: #f2f3f6;
  border-radius: 50px;
  border: 1px solid;
  border-color: #ffffff;
  backdrop-filter: blur(30px) brightness(100%);
  -webkit-backdrop-filter: blur(30px) brightness(100%);
}

.div-wrapper .overlap {
  position: relative;
  width: 1401px;
  height: 553px;
  top: 95px;
  left: 11px;
}

.div-wrapper .overlap-group {
  position: absolute;
  width: 1401px;
  height: 553px;
  top: 0;
  left: 0;
}

.div-wrapper .frame {
  position: absolute;
  width: 707px;
  height: 465px;
  top: 88px;
  left: 395px;
}

.div-wrapper .element-tesla-model {
  position: absolute;
  width: 530px;
  height: 238px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.div-wrapper .element {
  position: absolute;
  width: 586px;
  height: 326px;
  top: 83px;
  left: 201px;
  object-fit: cover;
  z-index: 1;
}

.div-wrapper .overlap-group-wrapper {
  position: absolute;
  width: 263px;
  height: 150px;
  top: 48px;
  left: 825px;
}

.div-wrapper .div {
  position: relative;
  width: 259px;
  height: 150px;
  background-size: 100% 100%;
}

.div-wrapper .container-ship {
  position: absolute;
  width: 259px;
  height: 150px;
  top: 0;
  left: 0;
  background-color: #303030;
  border-radius: 26.82px;
  border: 0.89px solid;
  border-color: #ffffff;
}

.div-wrapper .text-wrapper {
  position: absolute;
  width: 112px;
  height: 45px;
  top: 25px;
  left: 17px;
  font-family: "Manrope-ExtraBold", Helvetica;
  font-weight: 800;
  color: #82BA26;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 28.1px;
}

.div-wrapper .total-loss {
  position: absolute;
  width: 14.5625rem;
  height: 40px;
  top: 4.375rem;
  left: 1rem;
  font-family: "Manrope-ExtraBold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6875rem;
  text-align: left;
}

.div-wrapper .span {
  color: #82ba26;
}

.div-wrapper .text-wrapper-2 {
  color: #ffffff;
}
a {
  text-decoration: none;
  color: #313131;
}
.div-wrapper .arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 15px;
  left: 230px;
  z-index: 1;
}

.div-wrapper .overlap-wrapper {
  position: absolute;
  width: 536px;
  height: 150px;
  top: 212px;
  left: 825px;
}

.div-wrapper .overlap-2 {
  position: relative;
  width: 532px;
  height: 150px;
  top: -1px;
  left: -1px;
  background-color: #82BA26;
  border-radius: 26.82px;
  border: 0.89px solid;
  border-color: #ffffff;
  background-image: url(/wp-content/themes/cars/images/car_4.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right;
}

.div-wrapper .text-wrapper-3 {
  position: absolute;
  width: 129px;
  height: 45px;
  top: 27px;
  left: 16px;
  font-family: "Manrope-ExtraBold", Helvetica;
  font-weight: 800;
  color: #ffffff;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 28.1px;
}

.div-wrapper .auction {
  position: absolute;
  width: 23.9375rem;
  height: 2.125rem;
  top: 4rem;
  left: 1rem;
  font-family: "Manrope-ExtraBold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6875rem;
  text-align: left;
}

.div-wrapper .img {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 14px;
  left: 501px;
}

.next svg,.prev svg {
  margin-bottom: -2px;
}

.div-wrapper .element-2 {
  position: absolute;
  width: 263px;
  height: 150px;
  top: 48px;
  left: 1098px;
}

.div-wrapper .overlap-3 {
  position: relative;
  width: 259px;
  height: 150px;
  background-size: 100% 100%;
}

.div-wrapper .warehouse {
  position: absolute;
  width: 14.5625rem;
  height: 40px;
  top: 4.375rem;
  left: 1rem;
  font-family: "Manrope-ExtraBold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6875rem;
  text-align: left;
}

@media (min-width:1200px) and (max-width:1250px){
  .div-wrapper {
    max-width: 1400px;
    width: 100%;
    position: relative;
    height: 423px;
    top: 0;
    left: 0;
}

.div-wrapper .overlap-group {
  max-width: 1400px;
  width: 100%;
  max-height: 423px;
  position: relative;
  top: -70px;
}

.div-wrapper .overlap {
  position: relative;
  max-width: 1400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element-tesla-model {
  position: absolute;
  max-width: 400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element {
  position: absolute;
  max-width: 366px;
  height: auto;
  top: 63px;
  left: 140px;
  width: 100%;
}
.div-wrapper .frame {
  position: absolute;
  max-width: 600px;
  height: auto;
  top: 98px;
  left: 115px;
  width: 100%;
}
.overlap-content {
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: -220px;
}

}



@media (min-width:1251px) and (max-width:1300px){
  .div-wrapper {
    max-width: 1400px;
    width: 100%;
    height: 450px;
}

.div-wrapper .overlap-group {
  max-width: 1400px;
  width: 100%;
  position: absolute;
  height: 383px;
  top: -60px;
  left: 0;
}


.div-wrapper .overlap {
  position: relative;
  max-width: 1400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element-tesla-model {
  position: absolute;
  max-width: 400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element {
  position: absolute;
  max-width: 366px;
  height: auto;
  top: 63px;
  left: 140px;
  width: 100%;
}
.div-wrapper .frame {
  position: absolute;
  max-width: 600px;
  height: auto;
  top: 98px;
  left: 115px;
  width: 100%;
}
.overlap-content {
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: -180px;
}

}



@media (min-width:1300px) and (max-width:1400px){
  .div-wrapper {
    max-width: 1400px;
    width: 100%;
    height: 450px;
}

.div-wrapper .overlap-group {
  max-width: 1400px;
  width: 100%;
  position: absolute;
  height: 383px;
  top: -60px;
  left: 0;
}


.div-wrapper .overlap {
  position: relative;
  max-width: 1400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element-tesla-model {
  position: absolute;
  max-width: 400px;
  height: auto;
  width: 100%;
}

.div-wrapper .element {
  position: absolute;
  max-width: 366px;
  height: auto;
  top: 63px;
  left: 140px;
  width: 100%;
}
.div-wrapper .frame {
  position: absolute;
  max-width: 600px;
  height: auto;
  top: 98px;
  left: 115px;
  width: 100%;
}
.overlap-content {
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: -180px;
}

}



@media (min-width:1400px){
  div#hero-video-container {
    width: 100%;
    height: 100%;
}
video.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

}