:root {
  --cnvs-themecolor: #22316d;
  --border-color: #dfe4ec;
  --lightgray: #fafcfd;
  --bg-color: #f4f5fa;

  --cnvs-font-size-h1: 2.75rem;
  --cnvs-font-size-h2: 2rem;
  --cnvs-font-size-h3: 1.75rem;
  --cnvs-font-size-h4: 1.5rem;
  --cnvs-font-size-h5: 1rem;
  --cnvs-font-size-h6: 0.875rem;
  --cnvs-section-padding: 6rem;
  --bs-body-font-size: 1.125rem;

  --cnvs-primary-font: "Outfit", sans-serif;
  --cnvs-body-font: "Outfit", sans-serif;
  --cnvs-secondary-font: "DM Sans", sans-serif;
  --cnvs-other-font: "DM Sans", sans-serif;
}

#header {
  --cnvs-primary-menu-font-size: 1rem;
  --cnvs-primary-menu-tt: none;
  --cnvs-primary-menu-ls: 0;
  --cnvs-primary-menu-padding-x: 20px;
  --cnvs-primary-menu-font-weight: 400;
  --cnvs-primary-menu-font: var(--cnvs-body-font);
}

#content {
  background-color: var(--bg-color);
}

.container-slider {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(250, 250, 253, 1) 50%,
    rgba(244, 245, 250, 1) 100%
  );
}

p,
ul li,
.feature-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: #484848;
}

.bg-transparent {
  background-color: transparent;
}

.slider-vh {
  height: calc(100vh - var(--cnvs-header-height) - 12px) !important;
}

.circle-icon {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--cnvs-themecolor);
}

.circle-blue {
  background-color: var(--cnvs-themecolor);
  color: #fff;
}

.transparent-button {
  width: fit-content;
  backdrop-filter: blur(0.3rem);
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.white-button {
  background-color: #fff;
  border: 1px solid var(--border-color);
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.white-button:hover:not(.call-div) {
  background-color: var(--cnvs-themecolor);
  border: 1px solid var(--border-color);
  color: #fff;
}

.white-button:hover.call-div {
  background-color: inherit;
  color: inherit;
}

.white-button .circle-icon:not(.whatsapp-btn, .phone-btn) {
  background-color: var(--cnvs-themecolor);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.white-button:hover .circle-icon:not(.whatsapp-btn, .phone-btn) {
  background-color: #fff;
  color: var(--cnvs-themecolor);
}

.whatsapp-btn {
  background-color: #1daa61;
  color: #fff;
  transition: 0.2s ease;
}

.phone-btn {
  background-color: #22316d;
  color: #fff;
  transition: 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: rgb(21, 123, 70);
}

.phone-btn:hover {
  background-color: rgb(22, 33, 73);
}

.slider-home .slider-caption {
  padding-bottom: 100px;
}

.slider-home .slider-caption {
  justify-content: end;
}

.category-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 13px;
}

.category-card h3,
.info-sidebar h3 {
  font-size: 20px;
}

.category-card-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 13px;
}

.category-card-image img {
  transition: all 0.2s ease-in-out;
}

.category-card-link:hover .category-card-image img {
  transform: scale(1.05);
}

.category-card-circle {
  height: 45px;
  width: 45px;
  min-width: 45px;
  color: #000000;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.category-card-circle-small {
  height: 35px;
  width: 35px;
  min-width: 35px;
}

.category-card-link:not(.category-card-link-sidebar):hover
  .category-card-circle,
.link-service.active .category-card-circle,
.link-service:hover .category-card-circle {
  background-color: var(--cnvs-themecolor);
  color: #fff;
}

.underliner {
  background-image: linear-gradient(
    to bottom,
    transparent calc(100% - var(--cnvs-underliner-size)),
    rgb(34 49 109 / 10%) calc(100% - var(--cnvs-underliner-size))
  );
}

.underliner-white {
  background-image: linear-gradient(
    to bottom,
    transparent calc(100% - var(--cnvs-underliner-size)),
    rgb(255 255 255 / 10%) calc(100% - var(--cnvs-underliner-size))
  );
}

.blog-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-card-image {
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 13px;
}

.blog-content {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  max-width: 400px;
  padding: 20px 10px 10px 18px;
  background-color: #fff;
  border-radius: 30px 0 12px 0;
  transition: all 0.3s ease-in-out;
}

.blog-content::after {
  border-radius: 0 0 30px 0;
  border-right: 0;
  left: 95%;
  top: -40px;
}

.blog-card-small {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.blog-card:hover,
.blog-card-small:hover {
  transform: translateY(-5px);
}

.blog-card-small h3,
.blog-card h3 {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 1rem;
}

.blog-card-small h3 a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-primary.rounded-circle {
  width: 60px !important;
  height: 60px !important;
  background-color: var(--cnvs-themecolor);
  border-color: var(--cnvs-themecolor);
  position: absolute;
  right: -1px;
  bottom: -1px;
  transition: all 0.3s ease-in-out;
}

.btn-primary.rounded-circle:hover {
  background-color: var(--blackish-color);
}

.blog-card-small .btn-primary.rounded-circle {
  width: 40px !important;
  height: 40px !important;
  position: relative;
  right: 0;
  bottom: 0;
}

.blog-card-small .btn-primary.rounded-circle:hover {
  color: var(--cnvs-themecolor);
}

.blog-content .small,
.blog-card-small .small {
  font-size: 14px;
}

.blog-content p.text-secondary,
.blog-card-small p.text-secondary {
  font-size: 16px;
}

.blog-content2 {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  padding: 15px 0 0 15px;
  border-radius: 30px 0 0;
  background-color: var(--bg-color);
}

.blog-content2:before,
.blog-content2:after {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  height: 30px;
  width: 30px;
  border-radius: 0 0 20px 0;
  background-color: transparent;
  box-shadow: 0 10px 0 0 var(--bg-color);
}

.widget_nav_menu li a,
.widget_links li a,
.widget_meta li a,
.widget_archive li a,
.widget_recent_comments li a,
.widget_recent_entries li a,
.widget_categories li a,
.widget_pages li a,
.widget_rss li a,
.widget a {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  transition: 0.2s ease-in-out;
}

.widget_nav_menu li a:hover,
.widget_links li a:hover,
.widget_meta li a:hover,
.widget_archive li a:hover,
.widget_recent_comments li a:hover,
.widget_recent_entries li a:hover,
.widget_categories li a:hover,
.widget_pages li a:hover,
.widget_rss li a:hover,
.widget a:hover {
  color: rgba(0, 0, 0, 1);
}
.blog-content2:after {
  top: inherit;
  bottom: 0;
  left: -29px;
  right: inherit;
}

.sidebar-widgets-wrap .widget {
  padding: 20px 0;
  margin: 0;
}

.form-check-label {
  font-weight: 300;
  font-size: 16px;
}

.widget-filter-links h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
}

.product .grid-inner {
  background: #fff;
  padding: 6px;
  border-radius: 13px;
  border: 1px solid var(--border-color);
}

.vehicle-specs {
  background: #f3f6f9;
  padding: 10px;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #212529;
}

.remove-button {
  background-color: #dfe3e7;
  color: #2a1d11;
  font-size: 15px;
  letter-spacing: 0;
}

.form-check-label {
  margin-bottom: 0;
}

.filter-btn {
  background-color: #dfe3e7;
  color: #2a1d11;
}

.info-sidebar hr {
  margin: 10px 0;
}

.link-service {
  font-size: 16px;
  cursor: pointer;
}

.link-service span {
  color: #2a1d11;
}

.link-service.active span {
  color: var(--cnvs-themecolor);
}

.link-service:hover span {
  opacity: 1;
}
h4.subtitle {
  font-size: 1.5rem;
}

.tab-specification p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-text span,
.manager-role {
  font-size: 1rem;
}

.gallery-top {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  overflow: hidden;
}

.gallery-top .swiper-slide img {
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  box-sizing: border-box;
  padding: 10px 0;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007bff;
}

.manager-name {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}

.manager-role {
  font-weight: 300;
  color: #484848;
}

.description-tab h3 {
  margin-bottom: 10px;
}

.description-tab p,
.description-tab ul li {
  font-size: 1rem;
  font-weight: 300;
  color: #484848;
}

.description-tab ul:last-child {
  margin-bottom: 0;
}

.description-tab ul li {
  list-style: none;
}

.description-tab h1,
.description-tab h2,
.description-tab h3,
.description-tab h4,
.description-tab h5,
.description-tab h6 {
  font-size: 1rem;
  font-weight: 400 !important;
  margin-bottom: 0.5rem !important;
}

.product .product-image img {
  object-fit: cover;
  height: 225px;
}

.circle-icon i.fa-volume-control-phone {
  transform: translateY(2px);
}

.entry-content ul {
  padding-left: 19px;
}

ul.no-bullets {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p.features-daf {
  font-size: 1rem;
  color: rgb(255, 255, 255, 0.8);
}

.hf-darkblue {
  background: linear-gradient(
    0deg,
    rgba(37, 40, 57, 1) 0%,
    rgba(37, 40, 57, 1) 85%,
    rgba(227, 228, 234, 1) 85%,
    rgba(244, 245, 250, 1) 100%
  );
}

#acceptCookies {
  width: 100%;
}

#rejectCookies {
  display: none;
}

.fc-destaque {
  position: absolute;
  right: 10px;
  top: 10px;
  max-height: 90px;
  z-index: 100;
  width: auto !important;
}

@media (max-width: 991.98px) {
  .sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 1055;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    padding: 1rem;
  }

  .sidebar .card {
    border: 0;
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .card-sidebar {
    padding: 0;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .canvas-alt-tabs2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: scroll;
  }

  .canvas-alt-tabs2 .nav-link {
    white-space: nowrap;
  }

  .canvas-alt-tabs2 .nav-link {
    text-wrap: nowrap;
  }
}
@media (min-width: 991px) {
  .vehicle-specs {
    min-height: 72px;
  }
}

@media (min-width: 769px) {
  .blog-content::before,
  .blog-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 40px;
    width: 20px;
    background-color: transparent;
    box-shadow: 0 20px 0 0 #fff;
  }

  .blog-content::before {
    border-radius: 0 0 30px 0;
    right: 100%;
  }
  .video-container {
    position: relative;
    width: 100%;
    max-height: 650px;
    overflow: hidden;
    height: 600px;
  }
}

@media (max-width: 1200px) {
  .blog-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slider-caption h2,
  .slider-caption .h2 {
    font-size: 2.5rem;
  }

  #header-wrap #logo img {
    height: 70px;
  }

  .footer-widgets-wrap {
    padding: 2.5rem 0 !important;
  }
  .slider-vh {
    height: calc(70vh - var(--cnvs-header-height)) !important;
  }

  .blog-card {
    background-color: #fff;
    border-radius: 13px;
  }

  .slider-home .slider-caption {
    padding-bottom: 30px;
  }
  .blog-content,
  .blog-card-small {
    padding: 20px;
  }

  .blog-card-small h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .blog-content {
    position: relative;
  }
  .blog-card-image {
    height: 250px;
    min-height: inherit;
    border-radius: 13px;
  }
  .category-card h3,
  .info-sidebar h3 {
    font-size: 18px;
  }
  .swiper.vh-50 {
    max-height: 300px;
  }

  .swiper .slider-caption h2,
  .swiper .slider-caption .h2 {
    font-size: 2.5rem;
  }
  ol {
    padding-left: 19px;
  }
  .product .product-image img {
    height: 255px;
  }
  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .video-container {
    position: relative;
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    height: 350px;
  }
  .gallery-thumbs .swiper-slide img {
    height: auto;
  }
}
