@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* POPPINS */
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: rgb(96, 206, 162);
  --primary-color-hover: rgb(45, 161, 136);
  --primary-color-opacity: rgba(162, 246, 234, 0.93);
}

.bg-dark {
  background-color: #22252A !important;
}

.bg-light {
  background-color: #F3F3F3 !important;
}

.bg-body-tertiary {
  background-color: rgba(255, 255, 255, 0.933) !important;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: rgb(39, 39, 39);
  font-size: 16px;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}

.btn-primary {
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--primary-color-hover);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: var(--primary-color-hover);
  --bs-btn-active-border-color: transparent;
  box-shadow: 0px 7px 7px -3px rgba(0, 0, 0, 0.69);
  --bs-btn-border-radius: 12px;
  --bs-btn-padding-x: 35px;
  --bs-btn-padding-y: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #000;
  --bs-btn-hover-bg: var(--primary-color-hover);
  --bs-btn-hover-border-color: var(--primary-color-hover);
  --bs-btn-active-bg: var(--primary-color-hover);
  --bs-btn-active-border-color: var(--primary-color-hover);
  box-shadow: 0px 7px 7px -3px rgba(0, 0, 0, 0.69);
  --bs-btn-border-radius: 12px;
  --bs-btn-padding-x: 35px;
  --bs-btn-padding-y: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

header .navbar {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
header .navbar-brand img {
  max-width: 175px;
}
header .navbar-brand span {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
header .navbar-nav {
  gap: 10px;
  padding: 0;
}
header .navbar-nav .nav-item .nav-link {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-item .nav-link.show {
  color: var(--primary-color);
}
header .navbar-nav .nav-item .nav-link.show:before {
  display: block;
}
header .navbar-nav .nav-item .nav-link::before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
}
header .navbar-nav .nav-item .nav-link:hover::before {
  display: block;
}
header .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  margin-left: 6px;
}
header .navbar-nav .dropdown-menu {
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.91);
  box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, 0.5);
  padding: 0;
  overflow: hidden;
}
header .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
}
header .navbar-nav .dropdown-menu .dropdown-item:active {
  background-color: var(--primary-color-opacity);
}
header .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color-opacity);
}
@media (max-width: 991px) {
  header .navbar-toggler {
    border: none;
  }
  header .navbar-toggler:focus {
    box-shadow: none;
  }
  header .offcanvas {
    background-color: rgba(255, 255, 255, 0.933);
  }
  header .offcanvas .offcanvas-header img {
    max-width: 150px;
  }
  header .offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--primary-color-hover);
  }
  header .offcanvas .offcanvas-body .navbar-nav .dropdown-menu {
    border-radius: 0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    box-shadow: none;
  }
}

.models-slider-section {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.models-slider {
  width: 100%;
}
.models-slider .slick-list {
  margin: 0 -10px;
}
.models-slider .slick-track {
  display: flex;
}
.models-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}
.models-slider .slick-slide > div {
  height: 100%;
}
.models-slider .slick-prev,
.models-slider .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.models-slider .slick-prev:hover,
.models-slider .slick-next:hover {
  background: rgba(0, 0, 0, 0.9);
}
.models-slider .slick-prev:before,
.models-slider .slick-next:before {
  font-size: 20px;
  opacity: 1;
}
.models-slider .slick-prev {
  left: 25px;
}
.models-slider .slick-next {
  right: 25px;
}
.models-slider .slick-dots {
  bottom: 20px;
}
.models-slider .slick-dots li button:before {
  font-size: 10px;
  color: #ffffff;
  opacity: 0.6;
}
.models-slider .slick-dots li.slick-active button:before {
  color: #ffffff;
  opacity: 1;
}

.model-slide {
  height: 600px;
}

.model-slide-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 0;
}

.model-slide-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.7s ease;
}

.model-slide:hover .model-slide-image img {
  transform: scale(1.04);
}

.model-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.05) 100%);
}

.model-slide-content {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  width: calc(100% - 120px);
  max-width: 550px;
  color: #ffffff;
}

.model-slide-label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.model-slide-content h2 {
  margin: 0 0 15px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
}

.model-slide-content p {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}

.model-slide-price {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 26px;
}
.model-slide-price strong {
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .models-slider-section {
    padding: 30px 0;
  }
  .model-slide,
  .model-slide-image {
    height: 500px;
  }
  .model-slide-content {
    left: 40px;
    bottom: 40px;
    width: calc(100% - 80px);
  }
  .model-slide-content h2 {
    font-size: 42px;
  }
  .model-slide-content p {
    font-size: 19px;
    line-height: 27px;
  }
  .models-slider .slick-prev {
    left: 15px;
  }
  .models-slider .slick-next {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .models-slider-section {
    padding: 20px 0;
  }
  .models-slider .slick-list {
    margin: 0;
  }
  .models-slider .slick-slide {
    padding: 0;
  }
  .models-slider .slick-prev,
  .models-slider .slick-next {
    width: 42px;
    height: 42px;
  }
  .models-slider .slick-prev {
    left: 15px;
  }
  .models-slider .slick-next {
    right: 15px;
  }
  .model-slide,
  .model-slide-image {
    height: 500px;
  }
  .model-slide-image {
    border-radius: 0;
  }
  .model-slide-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.05) 100%);
  }
  .model-slide-content {
    left: 25px;
    bottom: 35px;
    width: calc(100% - 50px);
  }
  .model-slide-label {
    font-size: 12px;
    line-height: 18px;
  }
  .model-slide-content h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .model-slide-content p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .model-slide-price {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .model-slide-price strong {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .model-slide,
  .model-slide-image {
    height: 450px;
  }
  .model-slide-content {
    left: 20px;
    bottom: 25px;
    width: calc(100% - 40px);
  }
  .model-slide-content h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .model-slide-content p {
    font-size: 16px;
    line-height: 22px;
  }
  .models-slider .slick-prev,
  .models-slider .slick-next {
    display: none !important;
  }
}
.models-section {
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
}
.models-section h3 {
  color: var(--primary-color-hover);
  margin-bottom: 20px;
}

.model-card {
  width: 100%;
  min-height: 385px;
  padding: 15px 20px 15px;
  border: 1px solid #dddddd;
  border-radius: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.model-card:hover {
  border-color: #c5c5c5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.model-card-image {
  width: 100%;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.model-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.4s ease;
}

.model-card:hover .model-card-image img {
  transform: scale(1.03);
}

.model-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 0;
}

.model-card-title {
  margin: 0;
  color: #000000;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  .model-card {
    min-height: 380px;
    padding: 15px 20px 15px;
  }
  .model-card-image {
    height: 225px;
  }
  .model-card-title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .models-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .model-card {
    min-height: 390px;
    padding: 15px 20px;
  }
  .model-card-image {
    height: 245px;
  }
  .model-card-title {
    font-size: 30px;
    line-height: 38px;
  }
  .model-card-button {
    width: 130px;
    height: 48px;
  }
}
@media (max-width: 575px) {
  .model-card {
    min-height: 380px;
    border-radius: 25px;
    padding: 15px 15px 12px;
  }
  .model-card-image {
    height: 230px;
  }
  .model-card-title {
    font-size: 28px;
    line-height: 35px;
  }
  .model-card-button {
    width: 130px;
    height: 48px;
    font-size: 14px;
  }
}
.parallax-about {
  width: 100%;
  overflow: hidden;
}

.parallax-image {
  position: relative;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.parallax-image-top {
  background-image: url("../img/speed.webp");
  background-position: center center;
}

.parallax-image-bottom {
  background-image: url("../img/speed2.webp");
  background-position: center center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.parallax-text-section {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: #22262b;
  z-index: 2;
}

.parallax-text {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  .parallax-image {
    height: 430px;
    background-attachment: fixed;
  }
  .parallax-text-section {
    padding: 45px 0;
  }
  .parallax-text {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .parallax-image {
    height: 350px;
    /*
     * Pe telefoane background-attachment: fixed
     * nu este suportat uniform de toate browserele.
     */
    background-attachment: scroll;
  }
  .parallax-text-section {
    padding: 35px 15px;
  }
  .parallax-text {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 575px) {
  .parallax-image {
    height: 300px;
  }
  .parallax-text-section {
    padding: 30px 10px;
  }
  .parallax-text {
    font-size: 14px;
    line-height: 22px;
  }
}
.text-img .wrapper-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
  padding: 50px;
}
.text-img .wrapper-text h3 {
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .text-img .wrapper-text {
    padding: 20px;
  }
}

.hero-banner {
  width: 100%;
  min-height: 550px;
  background-image: url("../img/herobanner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero-banner__content {
  color: #fff;
}
@media (max-width: 991.98px) {
  .hero-banner {
    min-height: 500px;
  }
}
@media (max-width: 767.98px) {
  .hero-banner {
    min-height: 450px;
    background-position: center center;
  }
}
@media (max-width: 575.98px) {
  .hero-banner {
    min-height: 420px;
  }
}

.disclamer {
  padding: 30px 0;
}
.disclamer .wrapper-disclamer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.disclamer .wrapper-disclamer p {
  font-size: 11px;
  font-weight: 300;
  line-height: 17px;
  color: #111;
  text-align: center;
  margin: 0;
}

footer {
  padding: 30px 0;
}
footer .footer-logo {
  margin-bottom: 10px;
}
footer .footer-logo .logo img {
  margin-bottom: 10px;
  max-width: 220px;
}
footer .footer-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--primary-color-hover);
}
footer .footer-top .info-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgb(108, 108, 108);
  font-size: 14px;
  margin-bottom: 16px;
}
footer .footer-top .info-company a {
  padding: 0;
  font-size: 14px;
  color: rgb(39, 39, 39);
}
footer .footer-top .info-company a:hover {
  color: var(--primary-color-hover);
}
footer .footer-top .title {
  text-transform: uppercase;
}
footer .footer-top ul {
  padding-left: 0;
  list-style: none;
}
footer .footer-top ul a {
  text-decoration: none;
  color: rgb(39, 39, 39);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
footer .footer-top ul a:hover {
  color: var(--primary-color-hover);
}
footer .footer-bottom {
  padding-top: 30px;
}
footer .footer-bottom .footer-legal {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  footer .footer-top {
    text-align: center;
  }
  footer .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

.about-page {
  background: #ffffff;
  color: #111111;
  overflow: hidden;
}

/* ==========================================
   HERO
========================================== */
.about-hero {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 30px 0 0;
}

.about-hero .container-fluid {
  padding: 0;
}

.about-hero-title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px 25px;
  text-align: center;
}

.about-hero-title h2 {
  margin: 0;
  color: #111111;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-hero-image {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}

.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
}

/* ========================================== LARGE DESKTOP ========================================== */
@media (max-width: 1399.98px) {
  .about-hero {
    padding-top: 25px;
  }
  .about-hero-title {
    padding-bottom: 20px;
  }
  .about-hero-title h2 {
    font-size: 34px;
  }
}
/* ========================================== TABLET ========================================== */
@media (max-width: 991.98px) {
  .about-hero {
    padding-top: 20px;
  }
  .about-hero-title {
    padding: 0 20px 18px;
  }
  .about-hero-title h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  .about-hero-image img {
    width: 100%;
    height: auto;
  }
}
/* ========================================== MOBILE ========================================== */
@media (max-width: 767.98px) {
  .about-hero {
    padding-top: 15px;
  }
  .about-hero-title {
    padding: 0 15px 15px;
  }
  .about-hero-title h2 {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
}
/* ========================================== SMALL MOBILE ========================================== */
@media (max-width: 575.98px) {
  .about-hero {
    padding-top: 10px;
  }
  .about-hero-title {
    padding: 0 12px 12px;
  }
  .about-hero-title h2 {
    font-size: 21px;
    line-height: 1.2;
  }
}
/* ==========================================
   INTRO
========================================== */
.about-intro {
  padding: 110px 0;
  background: #ffffff;
}

.about-intro-title {
  position: sticky;
  top: 100px;
}

.about-intro-title span,
.equipment-heading span {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #999999;
}

.about-intro-title h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.about-intro-text {
  max-width: 850px;
}

.about-intro-text p {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   WIDE IMAGE
========================================== */
.about-wide-image {
  overflow: hidden;
}

.about-wide-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   OFFER
========================================== */
.about-offer {
  padding: 110px 0 90px;
}

.offer-price-card {
  height: 100%;
  padding: 55px;
  background: var(--primary-color-opacity);
  border: 1px solid var(--primary-color-hover);
}

.offer-label {
  display: block;
  margin-bottom: 35px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}

.offer-price-card h2,
.offer-price-card h3 {
  margin: 0 0 25px;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 400;
  color: rgb(39, 39, 39);
}

.offer-price-card h2 strong,
.offer-price-card h3 strong {
  display: block;
  margin-top: 5px;
  font-size: 38px;
  font-weight: 700;
}

.offer-rabla {
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid #444444;
}

.offer-rabla span {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.offer-rabla strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.offer-rabla small {
  display: block;
  margin-top: 12px;
}

.equipment-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  border: 1px solid var(--primary-color-hover);
}

.equipment-column {
  padding: 50px;
}

.equipment-column + .equipment-column {
  border-left: 1px solid var(--primary-color-hover);
}

.equipment-heading {
  margin-bottom: 35px;
}

.equipment-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.equipment-column p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.offer-cta {
  padding-top: 60px;
  text-align: center;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 15px 35px;
  border: 1px solid #ffffff;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: transparent;
  color: #ffffff;
}

.about-notes {
  padding: 60px 0;
  background: #f4f4f4;
}

.notes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.notes-inner p {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.7;
  color: #777777;
}

.notes-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about-hero {
    padding: 70px 0;
  }
  .about-hero-content {
    padding-right: 0;
    margin-bottom: 45px;
  }
  .about-hero h1 {
    font-size: 48px;
  }
  .about-intro {
    padding: 80px 0;
  }
  .about-intro-title {
    position: static;
  }
  .about-intro-title h2 {
    font-size: 32px;
  }
  .about-intro-text p {
    font-size: 17px;
  }
  .about-offer {
    padding: 80px 0;
  }
  .offer-price-card {
    padding: 40px;
  }
  .equipment-column {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .about-hero {
    padding: 50px 0;
  }
  .about-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 3px;
  }
  .about-hero h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .about-hero-line {
    width: 50px;
    height: 4px;
    margin-top: 25px;
  }
  .about-intro {
    padding: 60px 0;
  }
  .about-intro-title {
    margin-bottom: 30px;
  }
  .about-intro-title h2 {
    font-size: 28px;
  }
  .about-intro-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
  }
  .about-wide-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-offer {
    padding: 60px 0;
  }
  .offer-price-card {
    padding: 30px 25px;
  }
  .offer-price-card h2,
  .offer-price-card h3 {
    font-size: 20px;
  }
  .offer-price-card h2 strong,
  .offer-price-card h3 strong {
    font-size: 30px;
  }
  .offer-rabla {
    margin-top: 35px;
    padding-top: 25px;
  }
  .offer-rabla strong {
    font-size: 34px;
  }
  .equipment-card {
    display: block;
  }
  .equipment-column {
    padding: 30px 25px;
  }
  .equipment-column + .equipment-column {
    border-top: 1px solid #333333;
    border-left: 0;
  }
  .equipment-heading {
    margin-bottom: 25px;
  }
  .equipment-heading h2 {
    font-size: 20px;
  }
  .equipment-column p {
    font-size: 14px;
    line-height: 1.8;
  }
  .offer-cta {
    padding-top: 40px;
  }
  .about-btn {
    width: 100%;
    min-height: 55px;
  }
  .about-notes {
    padding: 45px 0;
  }
  .notes-inner p {
    font-size: 11px;
    line-height: 1.65;
  }
}
@media (max-width: 575.98px) {
  .about-hero h1 {
    font-size: 31px;
  }
  .about-intro-title h2 {
    font-size: 25px;
  }
  .offer-price-card {
    padding: 25px 20px;
  }
  .equipment-column {
    padding: 25px 20px;
  }
  .offer-price-card h2 strong,
  .offer-price-card h3 strong {
    font-size: 27px;
  }
  .offer-rabla strong {
    font-size: 30px;
  }
}
.cityzen-home {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  background-color: #f2f2f2;
  padding-bottom: 30px;
}
.cityzen-home__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 510px;
  background: linear-gradient(180deg, #244a63 0%, #52778b 55%, #a8b5bb 100%);
}
.cityzen-home__background::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -100px;
  width: 110%;
  height: 180px;
  background-color: #f2f2f2;
  transform: rotate(2deg);
  transform-origin: center;
}
.cityzen-home__logo {
  position: relative;
  z-index: 3;
  width: 460px;
  max-width: 65%;
  margin: 0 auto;
  padding-top: 55px;
}
.cityzen-home__logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cityzen-home__cars {
  position: relative;
  z-index: 4;
  width: 900px;
  max-width: 100%;
  margin: 40px auto 0;
}
.cityzen-home__cars img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cityzen-home__content {
  position: relative;
  z-index: 5;
  margin-top: 0;
}
.cityzen-home__title {
  margin: 0 auto 30px;
  padding: 0 15px;
  color: #272727;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.cityzen-home__buttons {
  gap: 20px 0;
  padding: 15px 0;
}

@media (max-width: 991.98px) {
  .cityzen-home {
    min-height: 700px;
  }
  .cityzen-home__background {
    height: 430px;
  }
  .cityzen-home__background::after {
    bottom: -85px;
    height: 150px;
  }
  .cityzen-home__logo {
    width: 380px;
    max-width: 70%;
    padding-top: 45px;
  }
  .cityzen-home__cars {
    width: 750px;
    margin-top: 30px;
  }
  .cityzen-home__title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .cityzen-home {
    min-height: auto;
    padding-bottom: 40px;
  }
  .cityzen-home__background {
    height: 310px;
  }
  .cityzen-home__background::after {
    bottom: -55px;
    height: 100px;
    transform: rotate(2.5deg);
  }
  .cityzen-home__logo {
    width: 290px;
    max-width: 75%;
    padding-top: 30px;
  }
  .cityzen-home__cars {
    width: 100%;
    margin-top: 20px;
    padding: 0 5px;
  }
  .cityzen-home__content {
    margin-top: 10px;
  }
  .cityzen-home__title {
    padding: 0 20px;
    margin-bottom: 25px;
    font-size: 27px;
    line-height: 1.25;
  }
  .cityzen-home__buttons {
    padding: 0 20px;
  }
}
@media (max-width: 575.98px) {
  .cityzen-home__background {
    height: 245px;
  }
  .cityzen-home__background::after {
    bottom: -45px;
    height: 80px;
  }
  .cityzen-home__logo {
    width: 230px;
    padding-top: 25px;
  }
  .cityzen-home__cars {
    margin-top: 10px;
    padding: 0;
  }
  .cityzen-home__content {
    margin-top: 5px;
  }
  .cityzen-home__title {
    padding: 0 15px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .cityzen-home__buttons {
    padding: 0 15px;
  }
}
.video-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.video-full__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-full iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 1200px) {
  .video-full__wrapper {
    max-height: 800px;
  }
}
@media (max-width: 991.98px) {
  .video-full__wrapper {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 575.98px) {
  .video-full__wrapper {
    aspect-ratio: 16/9;
  }
}
.slider-model-page-color {
  background-color: var(--primary-color-opacity);
  padding: 30px 0;
}

.models-slider-section.model-page {
  max-width: 900px;
  margin: 0 auto;
}
.models-slider-section.model-page .model-slide {
  height: auto;
}
.models-slider-section.model-page .model-slide-image {
  height: auto;
}

.cityzen-section {
  padding: 60px 0 70px;
  background-color: #f4f4f2;
  text-align: center;
}

.cityzen-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2b2b2b;
  margin-bottom: 22px;
}

.cityzen-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #2b2b2b;
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.cityzen-carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 55px;
}

.cityzen-carousel .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.wrapper-card img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
}

.cityzen-carousel .slick-list,
.cityzen-carousel .slick-track,
.cityzen-carousel .slick-slide > div {
  height: 100%;
}

.cityzen-carousel-wrap .slick-prev,
.cityzen-carousel-wrap .slick-next {
  width: 42px;
  height: 42px;
  background-color: rgba(160, 160, 160, 0.85);
  border-radius: 50%;
  z-index: 10;
}

.cityzen-carousel-wrap .slick-prev {
  left: -21px;
  font-size: 0;
  border: none;
  position: absolute;
  top: 36%;
  left: -65px;
}

.cityzen-carousel-wrap .slick-next {
  right: -21px;
  font-size: 0;
  border: none;
  position: absolute;
  top: 36%;
  right: -65px;
}

.cityzen-carousel-wrap .slick-prev:hover,
.cityzen-carousel-wrap .slick-next:hover {
  background-color: rgba(120, 120, 120, 0.95);
}

.cityzen-carousel-wrap .slick-prev:before,
.cityzen-carousel-wrap .slick-next:before {
  font-family: Arial, sans-serif;
  font-size: 22px;
  opacity: 1;
  color: #fff;
  line-height: 1;
}

.cityzen-carousel-wrap .slick-prev:before {
  content: "‹";
}

.cityzen-carousel-wrap .slick-next:before {
  content: "›";
}

.cityzen-carousel-wrap .slick-dots {
  bottom: -38px;
}

.cityzen-carousel-wrap .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.cityzen-carousel-wrap .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.cityzen-carousel-wrap .slick-dots li button:before {
  font-size: 11px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  opacity: 1;
  color: #7fd7c4;
}

.cityzen-carousel-wrap .slick-dots li.slick-active button:before {
  color: #1b6f61;
}

.cityzen-confort-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-top: 10px;
  margin-bottom: 22px;
}

.cityzen-confort-text {
  font-size: 1.05rem;
  color: #3a3a3a;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .cityzen-title {
    font-size: 1.5rem;
  }
  .cityzen-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .cityzen-confort-title {
    font-size: 1.4rem;
  }
  .cityzen-confort-text {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  .cityzen-carousel-wrap {
    max-width: 100%;
    padding: 0 30px;
  }
  .cityzen-carousel-wrap .slick-prev {
    left: -6px;
  }
  .cityzen-carousel-wrap .slick-next {
    right: -6px;
  }
  .cityzen-carousel-wrap .slick-prev,
  .cityzen-carousel-wrap .slick-next {
    width: 34px;
    height: 34px;
  }
}
.image-grid .wrapper-images {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-slider {
  padding: 30px 0;
}
.gallery-slider .slick-slide {
  padding: 0 10px;
}
.gallery-slider .slick-slide img {
  border-radius: 10px;
  border: 2px solid var(--primary-color-hover);
}

.faq-section {
  width: 100%;
  padding: 20px 0 36px;
  background: #fff;
}
.faq-section .container {
  max-width: 850px;
}
.faq-section .faq-title {
  margin: 0 0 32px;
  text-align: center;
  color: #111;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}
.faq-section .faq-accordion {
  width: 100%;
}
.faq-section .faq-accordion .accordion-item {
  border: 1px solid #d0d4d8;
  border-radius: 0;
  background: #e9e9e9;
}
.faq-section .faq-accordion .accordion-item:not(:first-child) {
  border-top: 0;
}
.faq-section .faq-accordion .accordion-header {
  margin: 0;
}
.faq-section .faq-accordion .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 9px 15px 9px 10px;
  border: 0;
  border-radius: 0 !important;
  background: #e9e9e9;
  color: #111;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  box-shadow: none !important;
}
.faq-section .faq-accordion .accordion-button::after {
  display: none;
}
.faq-section .faq-accordion .accordion-button:focus {
  border: 0;
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: #e9e9e9;
  color: #111;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .faq-icon::after {
  opacity: 0;
}
.faq-section .faq-accordion .faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.faq-section .faq-accordion .faq-icon::before, .faq-section .faq-accordion .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #222;
  transform: translate(-50%, -50%);
}
.faq-section .faq-accordion .faq-icon::before {
  width: 13px;
  height: 3px;
}
.faq-section .faq-accordion .faq-icon::after {
  width: 3px;
  height: 13px;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.faq-section .faq-accordion .accordion-body {
  padding: 15px 20px 18px 34px;
  background: #fff;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 20px 15px 35px;
  }
  .faq-section .container {
    max-width: 850px;
    padding-left: 0;
    padding-right: 0;
  }
  .faq-section .faq-title {
    margin-bottom: 25px;
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .faq-section {
    padding: 20px 12px 30px;
  }
  .faq-section .faq-title {
    margin-bottom: 22px;
    font-size: 30px;
  }
  .faq-section .faq-accordion .accordion-button {
    min-height: 48px;
    padding: 10px 10px 10px 8px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }
  .faq-section .faq-accordion .faq-icon {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-right: 5px;
  }
  .faq-section .faq-accordion .faq-icon::before {
    width: 12px;
    height: 3px;
  }
  .faq-section .faq-accordion .faq-icon::after {
    width: 3px;
    height: 12px;
  }
  .faq-section .faq-accordion .accordion-body {
    padding: 14px 15px 16px 30px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .faq-section .faq-title {
    font-size: 26px;
  }
  .faq-section .faq-accordion .accordion-button {
    min-height: 50px;
    padding: 9px 8px;
    font-size: 13px;
  }
  .faq-section .faq-accordion .accordion-body {
    padding-left: 29px;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */