@font-face {
  font-family: "OpenSans";
  src: url("../assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../assets/fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../assets/fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../assets/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: "OpenSans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  padding: 9px 30px;
  border-radius: 5px;
  letter-spacing: 1px;
  text-decoration: none;
  --bs-btn-hover-color: #fff;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
  text-transform: uppercase;
}

.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light:focus-visible {
  background: linear-gradient(90deg, rgb(255, 100, 49) 0%, rgb(255, 199, 91) 100%) !important;
  border: none;
  color: white;
  box-shadow: none;
  padding: 11px 32px;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #333d4f;
  color: #333d4f;
  text-transform: uppercase;
  transition: none;
}

.btn-outline-dark:hover,
.btn-outline-dark:active,
.btn-outline-dark:focus-visible {
  background: linear-gradient(90deg, rgb(255, 100, 49) 0%, rgb(255, 199, 91) 100%) !important;
  border: none;
  color: white;
  box-shadow: none;
  padding: 11px 32px;
}

.gradient-underline:after {
  content: "";
  display: block;
  width: 57px;
  height: 3px;
  margin-top: 10px;
  background-image: linear-gradient(to right, #ff6432 0%, #ffc85c 100%);
}

.btn-gradient {
  background: linear-gradient(90deg, rgb(255, 100, 49) 0%, rgb(255, 199, 91) 100%) !important;
  border: none;
  color: white;
  box-shadow: none;
  padding: 11px 32px;
  text-transform: uppercase;
}

.navbar {
  padding: 10px 0;
  transition: background-color 0.3s ease;
}
.navbar.bg-transparent {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.logo-dealer {
  margin-right: 0;
}
.logo-dealer img {
  max-width: 170px;
}

.logo-brand img {
  max-width: 160px;
}

.navbar-nav {
  justify-content: center;
}

.nav-item {
  position: relative;
  margin: 0 10px;
}
.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, #ff6432 0%, #ffc85c 100%);
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.nav-item:hover:before {
  width: 50%;
}
.nav-item .nav-link {
  color: #fff;
  font-weight: 600;
}
.nav-item .nav-link.dropdown-toggle.show {
  color: #fff;
}
.nav-item .nav-link.dropdown-toggle:after {
  margin-left: 9px;
  vertical-align: 3px;
}
.nav-item .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.6);
  left: 0;
  transform: translate(-27%, 12px);
}
.nav-item .dropdown-menu .dropdown-item {
  color: #fff;
  position: relative;
}
.nav-item .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, #ff6432 0%, #ffc85c 100%);
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.nav-item .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
.nav-item .dropdown-menu .dropdown-item:hover:before {
  width: 50%;
}

.scrolled.navbar.bg-transparent {
  background-color: #333d4f !important;
}
.scrolled .nav-item .dropdown-menu {
  background-color: #333d4f !important;
}

.navbar-toggler {
  --bs-border-width: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 1200px) {
  .nav-item {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .offcanvas-header {
    background-color: #bcc8d7;
  }
  .offcanvas-body {
    background-color: #333d4f;
    padding: 16px 0;
  }
  .offcanvas-body .logo-dealer {
    display: none;
  }
  .offcanvas-body .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .offcanvas-body .navbar-nav .nav-item:before {
    display: none;
  }
  .offcanvas-body .navbar-nav .nav-item .dropdown-menu {
    --bs-dropdown-border-width: 0;
    --bs-dropdown-bg: #1f2530;
    text-align: center;
    transform: translate(0, 0px);
  }
  .offcanvas-body .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    --bs-dropdown-item-padding-y: 7px;
  }
  .offcanvas-body .navbar-nav .nav-item .dropdown-menu .dropdown-item:before {
    display: none;
  }
  .offcanvas-body .navbar-nav .nav-link {
    --bs-nav-link-padding-y: 14px;
  }
}
@media (max-width: 576px) {
  .logo-brand img {
    max-width: 100px;
  }
  .logo-dealer img {
    max-width: 100px !important;
  }
}
/* Hero section */
.hero-section .carousel-item {
  height: 100%;
}

.hero-section .carousel-item .carousel-caption {
  margin: 0 auto;
  text-align: start;
}

.hero-section .carousel-item .carousel-caption h2 {
  font-weight: 700;
  max-width: 400px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4784313725);
}

.hero-section .carousel-item.active {
  display: grid;
}

.hero-section .carousel-control-next,
.hero-section .carousel-control-prev {
  opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
}

.hero-section .carousel-control-prev-icon {
  background-image: url(https://static.badsi.ro/content/27/top-arrow-white.png);
  transform: rotate(-90deg);
}

.hero-section .carousel-control-next-icon {
  background-image: url(https://static.badsi.ro/content/27/top-arrow-white.png);
  transform: rotate(90deg);
}

.hero-section .carousel-indicators [data-bs-target] {
  background-color: #333d4f;
}

.hero-section .carousel-indicators .active {
  background-image: linear-gradient(to right, #ff6432 0%, #ffc85c 100%);
}

@media (max-width: 576px) {
  .hero-section .carousel-item {
    background-image: none !important;
    background-color: #000;
  }
  .hero-section .carusel-img-mobile {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
  .hero-section .carousel-item .carousel-caption {
    margin: 0;
    bottom: 20%;
    left: unset;
    right: unset;
    padding: 10px 15%;
  }
  .hero-section .carousel-inner {
    height: 70vh;
    background: #000;
  }
}
@media (min-width: 576px) {
  .hero-section .carousel-item .carousel-caption h2 {
    font-weight: 700;
  }
  .hero-section .btn {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4784313725);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4784313725);
  }
}
@media (min-width: 992px) {
  .hero-section .carousel-item .carousel-caption {
    bottom: 30%;
  }
  .hero-section .carousel-item .carousel-caption h2 {
    font-weight: 700;
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .hero-section .carousel-item .carousel-caption {
    max-width: 1170px;
  }
}
/* Title section */
.title-section .title {
  font-weight: 600;
}

.title-section .title:after {
  content: "";
  display: block;
  width: 57px;
  height: 3px;
  margin: 10px auto 37px auto;
  background-image: linear-gradient(to right, #ff6432 0%, #ffc85c 100%);
}

/* Custom cards section */
.services-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  min-height: 289px;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  color: white;
  transition: all, 0.3s;
}

.services-block:hover {
  border-radius: 10px;
  transform: scale(1.1);
  box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.8);
  z-index: 5;
  text-decoration: none;
  color: white;
}

.services-block:hover .icon {
  display: none;
}

.services-block:hover .title {
  font-size: 18px;
  z-index: 5;
}

.services-block:hover .promo-block-desc {
  display: block;
}

.services-block:hover .btn-gradient {
  display: block;
}

.services-block:hover .hover-layout {
  opacity: 1;
}

.services-block .icon {
  margin-bottom: 13px;
}

.services-block .title {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  margin: 0 40px;
  transition: all, 0.3s;
}

.services-block .promo-block-desc {
  margin: 11px 40px 0 40px;
  display: none;
  position: relative;
  z-index: 10;
  text-align: center;
}

.services-block .btn-gradient {
  display: none;
  position: relative;
  z-index: 10;
}

.services-block .hover-layout {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 10px;
  transition: all, 0.3s;
}

/* Horizontal video cards */
.horizontal-video-cards-section .text-container {
  margin: 30px 0;
}

@media (min-width: 768px) {
  .horizontal-video-cards-section .text-container {
    margin: 30px 0;
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .horizontal-video-cards-section .text-container {
    padding: 70px 15px 30px 30px;
    max-width: 500px;
  }
}
/* Horizontal cards */
.horizontal-cards-section .img-left-card,
.horizontal-cards-section .img-right-card {
  padding: 30px 0;
}

@media (max-width: 1200px) {
  .horizontal-cards-section .img-left-card,
  .horizontal-cards-section .img-right-card {
    background-image: none !important;
  }
}
@media (min-width: 992px) {
  .horizontal-cards-section .img-left-card,
  .horizontal-cards-section .img-right-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .horizontal-cards-section .img-left-card,
  .horizontal-cards-section .img-right-card {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
  }
  .horizontal-cards-section img {
    display: none;
    margin-bottom: 0;
  }
}
/* Vertical cards section */
.vertical-cards-section .vertical-card {
  height: 100%;
}

@media (min-width: 992px) {
  .vertical-cards-section .vertical-card {
    border-right: 1px solid #cbd4e0;
    padding: 0 15px;
  }
}
/* Breadcrumb section */
.breadcrumb-section {
  padding: 10px 0 10px 0;
}

@media (min-width: 992px) {
  .breadcrumb-section {
    padding: 38px 0 24px 0;
  }
}
.breadcrumb-item + .breadcrumb-item::before {
  content: url(https://static.badsi.ro/content/33/breadcrumb-arrow.png);
}

.breadcrumb-section a {
  color: #333d4f;
  margin-right: 1px;
  margin-left: 2px;
  font-weight: 700;
  text-decoration: none;
}

/* Title section */
.title-section-simple .title {
  font-weight: 700;
}

/* Models section */
.models-section .text {
  text-align: center;
}

.models-section .gradient-underline:after {
  margin: 10px auto 0 auto;
}

footer {
  background-color: #333d4f;
  padding: 50px 0 65px 0;
}
footer .footer-top .column-title {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-top ul li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  line-height: 28px;
  transition: all 0.3s ease-in-out;
}
footer .footer-top ul li a:hover {
  color: #ff6432;
}
footer .footer-top .info-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  font-size: 12px;
}
footer .footer-top .info-company a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-top .info-company a:hover {
  color: #ff6432;
}
footer .footer-top .footer-social {
  color: #ff6432;
  font-size: 16px;
}
footer .footer-bottom {
  border-top: 1px solid #ff6432;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0 0px 0;
}/*# sourceMappingURL=style.css.map */