@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto/Roboto-Regular.ttf");
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto/Roboto-Italic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  src: url("./fonts/Roboto/Roboto-Black.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  src: url("./fonts/Roboto/Roboto-BlackItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  src: url("./fonts/Roboto/Roboto-Bold.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  src: url("./fonts/Roboto/Roboto-BoldItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  src: url("./fonts/Roboto/Roboto-Light.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  src: url("./fonts/Roboto/Roboto-LightItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  src: url("./fonts/Roboto/Roboto-Medium.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  src: url("./fonts/Roboto/Roboto-MediumItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  font-weight: 100;
  src: url("./fonts/Roboto/Roboto-Thin.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 100;
  src: url("./fonts/Roboto/Roboto-ThinItalic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  src: url("./fonts/GillSans/Gill Sans.otf");
}
@font-face {
  font-family: "Gill Sans";
  src: url("./fonts/GillSans/Gill Sans Italic.otf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 900;
  src: url("./fonts/GillSans/Gill Sans Heavy.otf");
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 900;
  src: url("./fonts/GillSans/Gill Sans Heavy Italic.otf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 700;
  src: url("./fonts/GillSans/Gill Sans Bold.otf");
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 700;
  src: url("./fonts/GillSans/Gill Sans BoldI talic.otf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 300;
  src: url("./fonts/GillSans/Gill Sans Light.otf");
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 300;
  src: url("./fonts/GillSans/Gill Sans Light Italic.otf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 500;
  src: url("./fonts/GillSans/Gill Sans Medium.otf");
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 500;
  src: url("./fonts/GillSans/Gill Sans Medium Italic.otf");
  font-style: italic;
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 100;
  src: url("./fonts/GillSans/Gill Sans Condensed.otf");
}
@font-face {
  font-family: "Gill Sans";
  font-weight: 100;
  src: url("./fonts/GillSans/Gill Sans Condensed Italic.otf");
  font-style: italic;
}
.wrap {
  width: 1320px;
  max-width: 1320px;
}
@media (max-width: 1400px) {
  .wrap {
    width: 1140px;
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: 910px;
    max-width: 910px;
  }
}
@media (max-width: 992px) {
  .wrap {
    width: 690px;
    max-width: 690px;
  }
}
@media (max-width: 768px) {
  .wrap {
    width: 540px;
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .wrap {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }
}
#offcanvas-open-btn, #offcanvas-close-btn {
  cursor: pointer;
}
#offcanvas-open-btn img, #offcanvas-close-btn img {
  width: 36px;
  height: 36px;
}
#offcanvas-close-btn {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
#offcanvas-open-btn {
  display: none;
}
#offcanvas {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  z-index: 99999;
  top: 0;
}
#offcanvas > * {
  grid-row: 1;
  grid-column: 1;
}
#offcanvas .offcanvas-background {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition-property: all;
  transition-duration: 0.335s;
  transition-delay: delay;
  transition-timing-function: ease;
}
#offcanvas .offcanvas-container {
  width: 100%;
  height: 100%;
  max-width: 380px;
  position: absolute;
  left: 0;
  background: #000;
  overflow-y: auto;
  transition-property: all;
  transition-duration: 0.335s;
  transition-delay: delay;
  transition-timing-function: ease;
}
#offcanvas .offcanvas-container .content {
  display: grid;
  padding: 24px;
  gap: 24px;
}
#offcanvas .offcanvas-container .content .offcanvas-content {
  display: grid;
  grid-row: auto;
  grid-column: auto;
  gap: 24px;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item {
  line-height: 2;
  border-top: 1px solid #232323;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item > * {
  color: white;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item > * img {
  margin-right: 6px;
  margin-top: -5px;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item .mod-menu__heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item .mod-menu__heading::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url("../images/chevron_down.svg");
  background-size: contain;
  transform: rotate(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-delay: delay;
  transition-timing-function: ease;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item .mod-menu__sub {
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item .mod-menu__sub .nav-item {
  padding-left: 12px;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item .mod-menu__sub .nav-item a {
  color: #989898;
  font-size: 0.9rem;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item.open .mod-menu__sub {
  max-height: initial;
  margin-bottom: 10px;
}
#offcanvas .offcanvas-container .content .offcanvas-content .mod-menu .nav-item.open .mod-menu__heading::after {
  transform: rotate(180deg);
}
@media (max-width: 1400px) {
  #offcanvas {
    display: grid;
  }
  #offcanvas.hide {
    visibility: hidden;
  }
  #offcanvas.hide .offcanvas-background {
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
  }
  #offcanvas.hide .offcanvas-container {
    transform: translateX(-380px);
  }
  #offcanvas.show {
    visibility: visible;
  }
  #offcanvas.show .offcanvas-background {
    visibility: visible;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    position: fixed;
  }
  #offcanvas.show .offcanvas-container {
    transform: translateX(0);
  }
  body.offcanvas-open, body.offcanvas-open .page-content {
    overflow: hidden;
  }
}
:root {
  --color-black: #000000;
  --color-dark-gray: #363636;
  --color-gray: #545454;
  --color-white: #ffffff;
  --color-blue-energy: #1554ff;
  --color-primary: var(--color-blue-energy);
  --color-font: #404040;
  --color-font-bold: #161616;
  font-size: 14pt;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Roboto";
  overflow-x: hidden;
  color: var(--color-font);
}
body form.marketingForm * {
  font-family: Roboto, sans-serif !important;
}
a {
  text-decoration: none;
  color: var(--color-blue-energy);
}
a:active, a:visited {
  color: var(--color-blue-energy);
}
a:focus-visible {
  outline: none;
}
b, h1, h2, h3, h4, h5 {
  font-family: "Gill Sans";
  line-height: 1.15;
}
h1, h2, h3 {
  font-weight: 300;
}
h1 {
  font-size: clamp(2.1rem, calc(1.231rem + 2.4828vw), 3rem);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.5rem, calc(0.9207rem + 1.6552vw), 2.1rem);
}
h3 {
  font-size: clamp(1.2rem, calc(0.9103rem + 0.8276vw), 1.5rem);
}
h4 {
  font-size: clamp(1.1rem, calc(0.9069rem + 0.5517vw), 1.3rem);
}
input, select {
  --background-color: #fefefe;
  background-color: var(--background-color);
  padding: 8px 12px;
  border: 1px solid #d4d4d4;
  font-size: 14pt;
}
.hidden {
  display: none !important;
}
.absolute-w-100 {
  position: absolute;
  width: 100%;
}
.wrap {
  margin: auto;
  padding: 0 15px;
}
.visually-hidden {
  display: none;
}
.bg-dark {
  background-color: var(--color-black);
  color: #9e9e9e;
}
.bg-dark a {
  color: var(--color-white);
}
.btn {
  display: inline-block;
  color: var(--color-white) !important;
  padding: 8px 14px;
  background: var(--color-black);
}
.btn.btn-primary {
  background: var(--color-blue-energy);
}
.sp-pagebuilder-row, .sppb-row {
  margin-left: auto;
  margin-right: auto;
}
.sppb-section.inner-shadow-big {
  box-shadow: 0 0 100px -50px rgba(0, 0, 0, 0.4) inset !important;
}
.sppb-addon-text-block > *, .sppb-addon-text-block .sppb-addon-content > * {
  margin-top: 0;
}
.content.wrap .sppb-row-container {
  padding-left: 0;
  padding-right: 0;
}
.mod-menu, .mod-menu__sub {
  margin: 0;
  padding: 0;
  list-style: none;
}
.infomenu .mod-menu, .mainmenu .mod-menu {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.infomenu .mod-menu .nav-item, .mainmenu .mod-menu .nav-item {
  padding: 12px 0;
  position: relative;
}
.infomenu .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.infomenu .nav-item a {
  font-size: 12pt;
  font-weight: 300;
  display: flex;
  flex-direction: row;
  justify-content: auto;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
header.header {
  background-color: var(--color-white);
}
header.sticky-menu {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: transform 0.5s ease;
}
header.sticky-menu.scroll-down {
  transform: translateY(0);
}
.subheader .slideshow {
  height: 600px;
  font-size: clamp(0.8rem, calc(0.6069rem + 0.5517vw), 1rem);
}
.subheader .slideshow h1 {
  font-size: clamp(1.8rem, calc(1.1241rem + 1.931vw), 2.5rem);
}
.subheader .slideshow .item {
  height: 100%;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.subheader .slideshow .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.subheader .slideshow .item .content {
  z-index: 1;
  padding: 24px;
}
.subheader .slideshow .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 50px;
}
.subheader .slideshow .bottom .left, .subheader .slideshow .bottom .right {
  width: 100px;
}
.subheader .slideshow .bottom .scroll svg path {
  transition: all 0.5s ease;
}
.subheader .slideshow .pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}
.subheader .slideshow .pagination .swiper-button-next, .subheader .slideshow .pagination .swiper-button-prev, .subheader .slideshow .pagination .swiper-pagination {
  position: static;
  width: auto;
  height: 24px;
  margin-top: -4px;
  transition: color 0.5s ease;
}
.subheader .slideshow .pagination .swiper-pagination {
  margin-top: 0;
}
.subheader .slideshow .pagination .swiper-button-next, .subheader .slideshow .pagination .swiper-button-prev {
  border: 0;
  width: 24px;
  color: unset;
}
.subheader .slideshow .pagination .swiper-button-next::after, .subheader .slideshow .pagination .swiper-button-prev::after {
  font-size: 10pt !important;
  line-height: 24px;
  font-weight: bold;
}
.subheader .slideshow .scroll a {
  transition: color 0.5s ease;
}
.mainmenu {
  font-weight: 300;
}
.mainmenu .mod-menu {
  color: var(--color-white);
  justify-content: space-between;
}
.mainmenu .mod-menu > .nav-item > a, .mainmenu .mod-menu > .nav-item > span {
  text-transform: uppercase;
  line-height: 2;
}
.mainmenu .mod-menu .nav-item {
  --item-gap: 2px;
}
.mainmenu .mod-menu .nav-item .mod-menu__sub {
  margin: 0;
  padding: var(--item-gap);
  list-style: none;
  padding: var(--item-gap);
  position: absolute;
  top: 100%;
  background: var(--color-black);
  display: none;
  z-index: 9;
}
.mainmenu .mod-menu .nav-item .mod-menu__sub li.nav-item {
  padding: 4px 8px;
  min-width: 200px;
  background-color: var(--color-dark-gray);
  transition: background-color 0.1s ease;
}
.mainmenu .mod-menu .nav-item .mod-menu__sub li.nav-item > * {
  display: block;
}
.mainmenu .mod-menu .nav-item .mod-menu__sub li.nav-item:hover {
  background-color: var(--color-gray);
}
.mainmenu .mod-menu .nav-item:hover .mod-menu__sub {
  display: flex;
  flex-direction: column;
  justify-content: auto;
  align-items: auto;
  gap: var(--item-gap);
  flex-wrap: nowrap;
}
.mainmenu .mod-menu .nav-item:last-child .mod-menu__sub {
  right: 0;
}
.logomenu {
  padding: 12px 0;
}
.logomenu .logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  width: 100%;
  padding: 10px 0;
}
.logomenu .logo .mod-custom p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logomenu .logo .mod-custom p a img {
  width: auto;
  height: auto;
  max-height: 42px;
}
.header-image {
  max-height: 650px;
}
.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: auto;
  gap: 12px;
  flex-wrap: wrap;
}
.cards-list .card {
  width: 100%;
  height: 450px;
  min-width: 300px;
  flex: calc(33.3333% - 24px) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}
.cards-list .card .content {
  width: 100%;
  height: 100%;
}
.cards-list .card .photo {
  overflow: hidden;
  width: 100%;
  height: 250px;
}
.cards-list .card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease;
}
.cards-list .card .content {
  display: flex;
  flex-direction: column;
  justify-content: auto;
  align-items: start;
  gap: 0;
  flex-wrap: nowrap;
  z-index: 1;
}
.cards-list .card:hover .photo img {
  transform: scale(1.2);
}
.cards-list .card.flat-card .content {
  display: flex;
  flex-direction: column;
  justify-content: auto;
  align-items: space-between;
  gap: 0;
  flex-wrap: nowrap;
}
.cards-list .card.card-photo-overlay {
  grid-template-rows: 1fr;
}
.cards-list .card.card-photo-overlay .photo, .cards-list .card.card-photo-overlay .content {
  grid-row: 1;
  grid-column: 1;
}
.cards-list .card.card-photo-overlay .photo, .cards-list .card.card-photo-overlay .photo img {
  height: 100%;
}
.cards-list .card.card-photo-overlay .photo {
  background-color: var(--color-black);
  z-index: 0;
}
.cards-list .card.card-photo-overlay .photo img {
  opacity: 0.6;
}
.cards-list .card.card-photo-overlay .content {
  justify-content: center;
  align-items: center;
}
.cards-list .card.card-photo-overlay .content .title, .cards-list .card.card-photo-overlay .content .description {
  color: var(--color-white);
  text-align: center;
  margin: 12px 24px;
}
.cards-list .card.card-photo-overlay .content .description {
  height: 90px;
}
.cards-list .card.card-photo-overlay .content a.more {
  background: var(--color-primary);
}
a.more {
  display: block;
  color: var(--color-white);
  padding: 8px 14px;
  background: var(--color-black);
}
.mod-articlescategory.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mod-articlescategory.news-list .item h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.mod-articlescategory.news-list .item h3 a {
  color: var(--color-black);
}
.mod-articlescategory.news-list .item a.more {
  margin-top: auto;
}
.jobs {
  padding-bottom: 48px;
}
.jobs .jobs-accordion {
  padding: 0;
}
.jobs .jobs-accordion input[type="checkbox"] + .accordion-item {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ccc;
}
.jobs .jobs-accordion input[type="checkbox"] + .accordion-item h3 {
  margin: 0;
  font-weight: bold;
}
.jobs .jobs-accordion input[type="checkbox"] + .accordion-item label {
  padding: 12px 0;
  display: block;
}
.jobs .jobs-accordion input[type="checkbox"] + .accordion-item label .marker {
  display: inline-block;
  transition: all 0.3s ease;
  user-select: none;
}
.jobs .jobs-accordion input[type="checkbox"] + .accordion-item .content {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}
.jobs .jobs-accordion input[type="checkbox"]:checked + .accordion-item .marker {
  transform: rotate(45deg);
}
.jobs .jobs-accordion input[type="checkbox"]:checked + .accordion-item .content {
  padding: 0 0 16px 0;
  max-height: 2000px;
}
.jobs .jobs-accordion .info-url {
  margin: 12px 0;
}
.jobs .jobs-accordion .info-url a {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.view-article .body > .content {
  margin-bottom: 48px;
}
.sppb-article .body > .content, .view-article .body > .content .com-content-article {
  font-size: clamp(1rem, calc(0.8069rem + 0.5517vw), 1.2rem);
  line-height: 1.5;
}
.com-content-article {
  min-height: 50px;
}
.com-content-article h1, .com-content-article h4, .com-content-category-blog h1, .com-content-category-blog h4, .sp-page-builder h1, .sp-page-builder h4 {
  font-weight: 300;
}
.com-content-article h2, .com-content-article h3, .com-content-article h5, .com-content-category-blog h2, .com-content-category-blog h3, .com-content-category-blog h5, .sp-page-builder h2, .sp-page-builder h3, .sp-page-builder h5 {
  font-weight: 400;
}
.com-content-article h1, .com-content-category-blog h1, .sp-page-builder h1 {
  text-align: center;
  text-transform: uppercase;
}
.com-content-category-blog h2 {
  font-size: clamp(1.3rem, calc(0.8172rem + 1.3793vw), 1.8rem);
}
.bg-secondary {
  background: #e4e4e4;
}
.page-vehicles #vehicle-filter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: auto;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.page-vehicles #vehicle-filter .left {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 25px;
  flex-wrap: wrap;
}
.page-vehicles .vehicles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.page-vehicles .vehicles-list a {
  color: var(--color-font);
}
.page-vehicles .vehicles-list .vehicle-item {
  background: var(--color-white);
  height: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  overflow: hidden;
}
.page-vehicles .vehicles-list .vehicle-item .item-header {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
.page-vehicles .vehicles-list .vehicle-item .item-header > * {
  grid-row: 1;
  grid-column: 1;
}
.page-vehicles .vehicles-list .vehicle-item .item-header > .used {
  align-self: end;
  justify-self: start;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 6px 12px;
  border-radius: 50px;
  background: white;
  color: var(--color-blue-energy);
  font-weight: bold;
  font-size: 12pt;
}
.page-vehicles .vehicles-list .vehicle-item .item-image {
  margin: 0;
  width: 100%;
  height: 200px;
}
.page-vehicles .vehicles-list .vehicle-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-vehicles .vehicles-list .vehicle-item .item-content {
  padding: 12px;
}
.page-vehicles .vehicles-list .vehicle-item .item-content .details {
  margin-top: 25px;
}
.page-vehicles .vehicles-list .vehicle-item .brand, .page-vehicles .vehicles-list .vehicle-item .title, .page-vehicles .vehicles-list .vehicle-item .used {
  text-transform: uppercase;
}
.page-vehicles .vehicles-list .vehicle-item .title {
  min-height: 50px;
}
.page-vehicles .vehicles-list .vehicle-item .brand {
  font-weight: bold;
  color: var(--color-font-bold);
  margin-bottom: 6px;
}
.page-vehicles .vehicles-list .vehicle-item .top {
  display: flex;
  flex-direction: row;
  justify-content: auto;
  align-items: auto;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.page-vehicles .vehicles-list .vehicle-item .top .year .value, .page-vehicles .vehicles-list .vehicle-item .top .km .value {
  font-weight: bold;
  color: var(--color-font-bold);
}
.page-vehicles .vehicles-list .vehicle-item .price-value {
  margin: 0;
  font-weight: bold;
}
.page-vehicles .vehicles-list .vehicle-item .used {
  background: #525452;
  color: var(--color-white);
  padding: 6px 8px;
  font-size: 11pt;
}
.swiper-button-prev, .swiper-button-next {
  --swiper-button-size: 36px;
  --swiper-navigation-size: 18px;
  width: var(--swiper-button-size);
  height: var(--swiper-button-size);
  border-radius: var(--swiper-button-size);
  border: 1px solid;
  color: var(--color-blue-energy);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: var(--swiper-navigation-size);
}
.swiper-pagination {
  margin-top: 25px;
}
.swiper-pagination-bullet {
  opacity: 1;
  background: #e8e8e8;
  border: 1px solid #afafaf;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-blue-energy);
  border: 1px solid var(--color-blue-energy);
}
.vehicle-swiper {
  --swiper-button-width: 52px;
  --swiper-width: calc(2 * var(--swiper-button-width));
  padding-bottom: 25px;
  width: calc(100% - var(--swiper-width));
}
.vehicle-swiper a {
  color: var(--color-font);
}
.vehicle-swiper .swiper-slide {
  height: auto;
  width: calc(100% - 70px);
}
.vehicle-swiper .vehicle-item {
  background: var(--color-white);
  height: 100%;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  overflow: hidden;
}
.vehicle-swiper .vehicle-item .card-header {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
.vehicle-swiper .vehicle-item .card-header > * {
  grid-row: 1;
  grid-column: 1;
}
.vehicle-swiper .vehicle-item .card-header > .used {
  align-self: end;
  justify-self: start;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 6px 12px;
  border-radius: 50px;
  background: white;
  color: var(--color-blue-energy);
  font-weight: bold;
  font-size: 12pt;
}
.vehicle-swiper .vehicle-item figure {
  margin: 0;
  aspect-ratio: 1.7777777778;
  background: #f4f4f4;
}
.vehicle-swiper .vehicle-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-swiper .vehicle-item .logo img {
  max-height: 16px;
}
.vehicle-swiper .vehicle-item .item-content {
  padding: 24px;
}
.vehicle-swiper .vehicle-item .title {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-black);
}
.vehicle-swiper .vehicle-item .date {
  font-size: 12pt;
  margin-top: 8px;
}
.vehicle-swiper .vehicle-item .price {
  text-align: right;
  color: var(--color-blue-energy);
  font-weight: bold;
  margin-top: 24px;
}
.overlay-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.overlay-list .location-item {
  flex: 1 1;
  text-align: center;
  background-color: var(--color-black);
  height: 250px;
  min-width: 250px;
  display: grid;
  align-items: center;
}
.overlay-list .location-item > .photo, .overlay-list .location-item > .content {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.overlay-list .location-item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-list .location-item .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  background: #0009;
}
.overlay-list .location-item .content a {
  text-transform: uppercase;
  color: white;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25%;
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.map-grid .title, .map-grid .subtitle {
  text-align: center;
}
.map-grid .subtitle {
  font-weight: 300;
}
.map-grid .locations-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.map-grid .location-item {
  font-size: 21pt;
  margin: 0.5rem 0;
}
.map-grid .location-item a {
  color: var(--color-black);
  text-decoration: underline;
  font-weight: 300;
}
.map-grid .leaflet-popup-content p {
  margin: 0.8em 0;
}
.team-category-filter {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 50px 0;
}
.team-category-filter .category-filter img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.team-category-filter .category-filter.btn-secondary img {
  display: none;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.team-list h1 {
  margin: 0;
}
.team-list .category {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 25px;
  flex-wrap: nowrap;
  margin-bottom: 25px;
}
.team-list .member-list {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 25px;
  flex-wrap: wrap;
  width: 100%;
}
.team-list .member {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 25px;
  flex-wrap: wrap;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  overflow: hidden;
  min-width: 350px;
  max-width: 350px;
}
.team-list .member .photo {
  width: 100%;
  height: 200px;
}
.team-list .member .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-list .member .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  flex-wrap: nowrap;
  padding: 15px;
  padding-top: 0;
  width: 100%;
}
.team-list .member .content .title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-list .member .content span.tel, .team-list .member .content span.email {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 6px;
}
figure.item-image {
  margin: 0;
}
figure.item-image img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
}
.blog h1 {
  text-align: center;
}
.blog .blog-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
}
.blog .blog-items .blog-item {
  padding: 15px;
  border: 1px solid #cfcdcf;
  margin-right: -2px;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.blog .blog-items .blog-item figure {
  background-color: #f4f4f4;
  width: 100%;
  height: 180px;
}
.blog .blog-items .blog-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .blog-items .blog-item h2 {
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 10px;
}
.blog .blog-items .blog-item a {
  color: var(--color-black);
}
.blog .blog-items .blog-item .item-content {
  height: 100%;
  display: grid;
  grid-template-rows: min-content 1fr;
  align-items: start;
  gap: 20px;
}
.blog .blog-items .blog-item p.readmore {
  align-self: end;
  margin: 0;
}
.blog .blog-items .blog-item .btn {
  padding: 8px 16px;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 12px;
  font-size: 12pt;
}
.blog .blog-items .blog-item .btn-secondary {
  background: var(--color-black);
  color: white;
}
.blog .blog-items .blog-item .btn span.icon-chevron-right::before {
  font-family: "FontAwesome";
  content: "";
}
.big-cards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.big-cards-list .big-card {
  padding: 15px;
  border: 1px solid #f4f4f4;
}
.big-cards-list .big-card .photo {
  width: 100%;
  height: 220px;
}
.big-cards-list .big-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.big-cards-list .big-card .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.big-cards-list .big-card .content .title {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
.com-content-category-blog {
  margin-bottom: 50px;
}
.com-content-article .personen {
  padding-top: 30px;
}
.com-content-article .personen .intro {
  padding: 20px 0;
}
.com-content-article .personen .person {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}
.com-content-article .personen .person .image, .com-content-article .personen .person .description {
  display: table-cell;
}
.com-content-article .personen .person .image {
  width: 250px;
  padding-right: 30px;
  vertical-align: top;
}
.com-content-article .personen .person .image img {
  max-width: 350px;
}
.com-content-article .personen .person .description {
  vertical-align: middle;
  text-align: left;
}
.com-content-article .personen hr {
  border: none;
  border-bottom: 1px #ccc solid;
}
.com-content-article .google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}
.com-content-article .google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.com-content-article .fields-container {
  display: none;
}
.com-content-article .published {
  text-align: right;
}
.com-content-article .header-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.com-content-article .header-grid .info > li {
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}
.com-content-article .header-grid .column {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  grid-template-rows: 4fr 1fr;
}
.com-content-article .header-grid .column .swiper {
  width: 100%;
}
.com-content-article .header-grid .swiper * {
  user-select: none;
}
.com-content-article .header-grid .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.com-content-article .header-grid .swiper.mySwiper .swiper-slide {
  opacity: 0.6;
}
.com-content-article .header-grid .swiper.mySwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.com-content-article .header-grid .swiper .swiper-button-prev, .com-content-article .header-grid .swiper .swiper-button-next {
  color: white;
}
.com-content-article .header-grid ul.info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.com-content-article .header-grid ul.info li > span.title {
  font-weight: bold;
}
div.mod-languages ul li {
  margin: 0;
}
div.mod-languages ul li:first-child::before {
  content: "";
}
div.mod-languages ul li::before {
  content: "/";
  font-weight: 300;
  color: #9e9e9e;
  opacity: 0.5;
}
div.mod-languages ul li a {
  color: #9e9e9e;
}
div.mod-languages ul li.lang-active {
  background-color: transparent;
  font-weight: bold;
  color: var(--color-white);
}
div.mod-languages ul li.lang-active a {
  color: var(--color-white);
}
.custom-contact-form {
  border-top: 1px solid #ccc;
}
.custom-contact-form button[type="submit"] {
  display: inline-block;
  color: var(--color-white) !important;
  padding: 12px 24px;
  background: var(--color-blue-energy);
  box-shadow: 0 0;
  outline: none;
  border: 0;
  margin-top: 20px;
}
.custom-contact-form h1 {
  text-align: center;
}
footer {
  padding: 50px 0;
  background-color: var(--color-black);
}
footer h1, footer h2 {
  margin-top: 8px;
}
footer .footer-center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
  flex-wrap: wrap;
}
footer .footer-bottom .center {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
footer .mod-menu {
  width: 320px;
}
footer .mod-menu li.nav-item {
  padding: 12px 0;
  border-bottom: 1px solid #1d1d1d;
}
footer .mod-menu li.nav-item a, footer .mod-menu li.nav-item span {
  color: #9e9e9e;
}
footer .mod-menu li.nav-item a:hover {
  color: var(--color-white);
}
footer .mod-custom img {
  max-height: 88px;
  width: auto;
}
footer .social-buttons {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 24px;
}
@media (max-width: 1400px) {
  header .infomenu, header .mainmenu {
    display: none;
  }
  .logomenu {
    display: flex;
    flex-direction: row;
    justify-content: auto;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 0 12px;
  }
  .logomenu .logo .mod-custom a img {
    max-width: 100%;
  }
  .logomenu #offcanvas-open-btn {
    display: block;
  }
}
@media (max-width: 1200px) {
  .page-vehicles .vehicles-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .map-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog .blog-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .mod-articlescategory.news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-list .member {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .page-vehicles .vehicles-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-center {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog .blog-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .big-cards-list {
    grid-template-columns: 1fr;
  }
  .com-content-article .header-grid {
    grid-template-columns: 1fr;
  }
  .com-content-article .header-grid .column {
    grid-template-rows: 3fr 1fr;
  }
}
@media (max-width: 768px) {
  .page-vehicles .vehicles-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .cards-list .card {
    flex: calc(100% - 24px) 0 0;
    min-width: auto;
  }
  .mod-articlescategory.news-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .com-content-article .personen .person {
    display: block;
    padding-bottom: 30px;
  }
  .com-content-article .personen .person .image, .com-content-article .personen .person .description {
    display: block;
    width: 100%;
  }
  .com-content-article .personen .person .image {
    padding-right: 0;
  }
  .com-content-article .personen .person .image img {
    width: 100%;
    max-width: none;
  }
  .team-list .member {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid #ebebeb;
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
  }
  .team-list .member * {
    word-break: break-all;
  }
  .team-list .member .photo, .team-list .member .content {
    width: 100%;
    max-width: 100%;
  }
  .team-list .member .photo {
    height: 250px;
  }
  .team-list .member .content {
    padding: 15px;
    height: auto;
    min-height: 150px;
  }
  .subheader .slideshow .bottom .left, .subheader .slideshow .bottom .right {
    width: 50px;
  }
}
.body .bottom {
  background-color: #fff;
  padding-bottom: 25px;
}
@media (max-width: 576px) {
  .footer .footer-center {
    grid-template-columns: 1fr;
  }
  .sppb-section.inner-shadow-big {
    right: -6px;
  }
  .sppb-section.inner-shadow-big .wrap {
    max-width: 100%;
    padding: 0;
  }
  .wrap {
    padding: 0;
  }
  .blog .blog-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .mod-menu {
    width: 100%;
  }
  #column-wrap-id-e274b64c-28ca-44c6-af29-76cb5fda9a0e {
    padding-left: 0;
    padding-right: 0;
  }
  .swiper-button-prev, .swiper-button-next {
    --swiper-button-size: 32px;
    --swiper-navigation-size: 18px;
    display: none;
  }
  .vehicle-swiper {
    --swiper-button-width: 0;
  }
  .vehicle-swiper .vehicle-item .logo img {
    max-height: 12px;
  }
  .vehicle-swiper hr {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
body.green .body-container h1 {
  line-height: normal;
  color: #66be00;
  font-style: normal;
}
body.green .body-container .mainmenu-container {
  background: #66be00;
}
body.green .body-container .mainmenu-container .mainmenu ul.nav.menu li.active > a, body.green .body-container .mainmenu-container .mainmenu ul.nav.menu li:hover > a {
  color: #66be00;
}
body.green .body-container .mainmenu-container .mainmenu ul.nav.menu > li ul li a {
  color: #66be00;
}
body.green .body-container .mainmenu-container .mainmenu ul.nav.menu > li ul li a:hover {
  background: #66be00;
  color: white;
}
body.green .body-container .body-container .body .slideshow .headerimg {
  line-height: 0;
}
body.green .body-container .body-container .body .slideshow img {
  width: 100%;
  margin: 0 !important;
}
body.green .body-container .body-container .body .item-page-container {
  display: none;
}
body.green .body-container .green .singletxt {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  min-height: 250px;
  padding: 50px 30px;
}
body.green .body-container .green .singletxt h1, body.green .body-container .green .singletxt h2, body.green .body-container .green .singletxt h3, body.green .body-container .green .singletxt h4, body.green .body-container .green .singletxt p, body.green .body-container .green .singletxt ul {
  flex: 0 0 100%;
}
body.green .body-container .green .counter {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: 480px;
  justify-content: space-evenly;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}
body.green .body-container .green .counter .darkroom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
}
body.green .body-container .green .counter .countup {
  position: relative;
  z-index: 40;
  text-align: center;
  line-height: normal;
}
body.green .body-container .green .counter .countup .title {
  padding-bottom: 15px;
  font-size: 26px;
}
body.green .body-container .green .counter .countup .number {
  width: 170px;
  height: 170px;
  line-height: 170px;
  margin: 0 auto;
  border: 4px white solid;
  border-radius: 50%;
  font-size: 40px;
  font-weight: bold;
}
body.green .body-container .green .cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.green .body-container .green .cols .image {
  box-sizing: border-box;
  flex: 0 0 50%;
}
body.green .body-container .green .cols .img {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
body.green .body-container .green .cols .description {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}
body.green .body-container .green .row:nth-child(2n) .cols .image {
  order: 2;
}
body.green .body-container .green .row:nth-child(2n) .cols .description {
  order: 1;
}
body.green .body-container .footer-container {
  background: #66be00;
}
.calculator {
  box-sizing: border-box;
  padding: 0 20px;
}
.calculator hr {
  height: 1px;
  border: none;
  background: white;
}
.calculator .slider {
  max-width: 500px;
  padding: 30px 0 15px;
  margin: 0 auto;
}
.calculator .slider .input {
  padding-bottom: 40px;
}
.calculator .slider .input label {
  display: block;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.calculator .slider .input input {
  display: block;
  width: 100%;
}
.calculator .slider .input input::-webkit-outer-spin-button, .calculator .slider .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calculator .slider .input input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.calculator .slider .input span {
  display: block;
  padding-top: 10px;
  text-align: center;
}
.calculator .table {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.calculator .table_header {
  display: flex;
  box-sizing: border-box;
  flex: 0 0 100%;
  padding-left: 200px;
}
.calculator .table_header div {
  width: 120px;
  padding: 10px 15px 20px;
  margin: 0 50px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.calculator .labels {
  padding-top: 30px;
  font-weight: bold;
  width: 200px;
}
.calculator .labels .row {
  display: flex;
  max-width: 150px;
  padding-right: 50px;
  height: 55px;
  align-items: center;
}
.calculator .table .gasoline, .calculator .table .lng, .calculator .table .lng_bio {
  padding: 30px;
  margin: 0 20px;
  border-radius: 20px;
  background: white;
}
.calculator .table .gasoline .row, .calculator .table .lng .row, .calculator .table .lng_bio .row {
  display: flex;
  width: 120px;
  height: 55px;
  padding: 0 15px;
  align-items: center;
  justify-content: flex-end;
}
.calculator .table .gasoline input, .calculator .table .lng input, .calculator .table .lng_bio input {
  box-sizing: border-box;
  max-width: 100%;
  padding: 8px 10px;
  border: none;
  border: 1px #bbb solid;
  text-align: right;
  font-size: 16px;
  color: #333;
}
.calculator .table .lng_bio {
  background: #66be00;
  color: white;
  font-weight: bold;
}
.calculator .savings {
  margin: 0 -20px;
  text-align: center;
  background: url("../images/green_back.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}
.calculator .savings h4 {
  line-height: normal;
  font-size: 24px;
  color: white;
}
.calculator .savings .wrap {
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.6);
}
.calculator .savings .circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.calculator .savings .trees, .calculator .savings .acres {
  box-sizing: border-box;
  width: 140px;
  height: 140px;
  padding-top: 30px;
  margin: 0 20px;
  border: 4px white solid;
  border-radius: 50%;
  font-size: 18px;
}
.calculator .savings .trees p, .calculator .savings .acres p {
  margin: 0;
}
.calculator .savings .trees strong, .calculator .savings .acres strong {
  display: block;
  flex: 0 0 100%;
  padding-top: 10px;
  font-size: 28px;
}
.calculator .social_costs {
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}
.calculator .social_costs .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 340px;
  margin: 0 auto;
  padding: 10px 30px;
  text-align: left;
  background: white;
}
.calculator .social_costs .gasoline {
  padding: 20px 30px 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.calculator .social_costs .lng_bio {
  padding-bottom: 20px;
}
.calculator .social_costs .savings {
  padding: 20px 30px;
  border-top: 1px #eee solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  background: #66be00;
  color: white;
}
.calculator .social_costs .savings .label {
  padding-right: 15px;
}
.calculator .data {
  max-width: 500px;
  padding: 40px 20px;
  margin: 0 auto;
}
.calculator .data td {
  padding: 5px 10px;
}
.calculator .data td:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  body.green .body-container .mainmenu-container .mainmenu.open ul.nav.menu {
    background: #66be00;
  }
  .calculator .table_header {
    padding-left: 0;
    justify-content: center;
  }
  .calculator .table_header div {
    width: auto;
    padding: 15px 15px 15px;
    margin: 0 1px 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
  }
  .calculator .table_header div:hover, .calculator .table_header div.active {
    background: #66be00;
    color: white;
  }
  .calculator .labels {
    flex: 0 0 40%;
    box-sizing: border-box;
    padding-right: 15px;
    margin-left: -10px;
  }
  .calculator .labels .row {
    font-size: 14px;
  }
  .calculator .table {
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
  }
  .calculator .table .gasoline, .calculator .table .lng, .calculator .table .lng_bio {
    display: none;
    flex: 0 0 55%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0;
    overflow: hidden;
  }
  .calculator .table .gasoline.active, .calculator .table .lng.active, .calculator .table .lng_bio.active {
    display: block;
  }
}
@media (max-width: 768px) {
  body.green .body-container .green .cols .image, body.green .body-container .green .cols .description {
    flex: 0 0 100%;
  }
  body.green .body-container .green .cols .description {
    min-height: 300px;
  }
  body.green .body-container .green .row:nth-child(2n) .cols .image {
    order: 1;
  }
  body.green .body-container .green .row:nth-child(2n) .cols .description {
    order: 2;
  }
}
@media (max-width: 576px) {
  body.green .body-container .green .cols .img {
    min-height: 300px;
  }
  body.green .body-container .green .counter.double {
    align-content: center;
  }
  body.green .body-container .green .counter.double .countup {
    box-sizing: border-box;
    flex: 0 0 100%;
    padding: 30px 20px;
  }
  .calculator .savings .trees, .calculator .savings .acres {
    width: 125px;
    height: 125px;
    padding-top: 27px;
  }
}
