/* === CSS Variables for Color Palette === */
:root {
  --font-heading: "Oswald", sans-serif;
  --font-body: "Roboto", sans-serif;
  /* Existing Color Palette */
  --primary-red: #d62828;
  --navy-blue: #2d2754;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --mid-gray: #ececec;
  --dark-text: #444444;
}
/* === Global Reset & Typography === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow: hidden; */
}
body {
  font-family: "Montserrat", sans-serif; /* or 'Poppins', 'Orbitron' */
  /* font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif; */
  color: var(--dark-text);
  background-color: var(--white);
  background-color: #ececec; /* or #ECECEC */
  /* background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%); */
  line-height: 1.6;
}
.nav-link {
  font-family: "Montserrat", sans-serif; /* or 'Poppins', 'Orbitron' */
  font-weight: 500;
}
/* === Headings === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--navy-blue);
  font-weight: 700;
}

h1 {
  color: var(--primary-red); /* Bold impact for H1 */
}
/* === Paragraphs and Text === */
p {
  margin-bottom: 1rem;
  color: var(--dark-text);
}
a {
  color: var(--primary-red);
  text-decoration: none;
  font-family: "Montserrat", sans-serif; /* or 'Poppins', 'Orbitron' */
  /* font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif; */
}
/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
}
.btn-primary:hover {
  background-color: #b31f1f;
}
.btn-secondary {
  background-color: var(--white);
  color: var(--navy-blue);
  border: 2px solid var(--navy-blue);
}
.btn-secondary:hover {
  background-color: var(--navy-blue);
  color: var(--white);
}
/* === Layout Sections === */
.section {
  padding: 80px 20px;
}
.section-light {
  background-color: var(--light-gray);
}
.section-gray {
  background-color: var(--mid-gray);
}
/* === Hero Banner === */
.hero {
  background-color: var(--light-gray);
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-red);
}
/* === Header === */
.header {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 20px;
}
.header a {
  color: var(--white);
  margin-right: 15px;
  font-weight: 500;
}
.header a:hover {
  color: var(--light-gray);
}
/* === Footer === */
.footer {
  background-color: var(--navy-blue);
  color: #cccccc;
  padding: 40px 20px;
  text-align: center;
}
.footer a {
  color: var(--white);
}

.footer a:hover {
  color: var(--primary-red);
}
/* === Utility Classes === */
.text-primary {
  color: var(--navy-blue);
}
.text-accent {
  color: var(--primary-red);
}
.bg-primary {
  background-color: var(--navy-blue);
  color: var(--white);
}
/*Logo*/
.logo {
  width: 125px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 25px;
}
@media (max-width: 576px) {
  .logo {
    width: 95px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 25px;
  }
  .bg-radius {
    border-radius: 25px;
    border: 1px solid var(--primary-red) !important;
    background-color: var(--navy-blue) !important;
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.4);
  }
}

.logo img {
  max-height: 100%;
  max-width: 100%;
}
/* img.custom-logo {
    width: 75px!important;
} */
.custom-icon > i {
  color: var(--primary-red) !important;
}
.top-bar {
  background-color: #ececec;
  color: var(--dark-text);
  font-size: 14px;
  padding: 6px 0;
}
.text-bg-custom {
  color: #fff !important;
  background-color: #2d2754 !important;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
  margin-left: 2em;
}

.bg-radius {
  border-radius: 45px;
  border: 1px solid var(--primary-red) !important;
  background-color: var(--navy-blue) !important;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  */
  /* box-shadow: 0 4px 12px rgba(214, 40, 40, 0.25); */
  box-shadow: 0 0 10px rgba(214, 40, 40, 0.4); /*glow effect*/
}
.navbar-nav .nav-item .nav-link {
  color: white !important;
}
.navbar-nav .nav-item {
  padding: 0em 2em;
}
/*Navlink hover effect*/

/* Nav Link Style */

/* Nav Link Hover Effect */
.nav-link.custom-hover,
.dropdown-toggle {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-weight: 500;
  padding: 5px 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-link.custom-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-link.custom-hover:hover::after {
  transform: scaleX(1);
}
.nav-link.custom-hover:hover {
  color: var(--primary-red);
}
/*Hero Slider*/

.hero-slider {
  height: 75vh;
}

.hero-slider.hero-swipper.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.1s;
}

.swiper-slide-active .hero-content h2,
.swiper-slide-active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}

/* Vertical dots aligned right */

.swiper-pagination.vertical-dots {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 12px;
  height: 12px;
  margin: 5px 10px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  border-radius: 10px;
  background: #ffffff;
}

.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s ease-out;
}
/* 
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 15rem;
} */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  /* padding: 15rem; */
  padding: 12em 1em 10em 1em;
}
@media (max-width: 576px) {
  .hero-content {
    padding: 6em 1em 5em 1em;
  }
}
.navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(23%) saturate(0%)
    hue-rotate(154deg) brightness(115%) contrast(100%) !important;
}

span.bg-red {
  width: 50px;
  height: 50px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d62828;
  color: white;
  position: absolute;
  top: -28px;
  right: 159px !important;
  transform: scale(1.5);
}

.custom-card:hover span.bg-red {
  right: -3px;
  transition: 0.5s all ease-in;
  background-color: var(--navy-blue);
  color: var(--white);
}

.card-wrapper {
  position: relative;
  overflow: visible;
}

.custom-card {
  position: relative;
  border: 1px solid #2d2754;
  background-color: #ffffff;
  transition: color 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.custom-card::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d62828;
  /* shutter color */
  z-index: -1;
  transition: bottom 0.4s ease-in-out;
}

.custom-card:hover::before {
  bottom: 0;
}

.custom-card:hover h5,
.custom-card:hover p,
.custom-card:hover i {
  color: #ffffff !important;
}

.bg-red {
  width: 50px;
  height: 50px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d62828;
  color: white;
  position: absolute;
  top: -28px;
  right: 127px;
  transform: scale(1.5);
  z-index: 10;
  transition: 0.5s all ease-in;
}

.card-wrapper:hover .bg-red {
  right: -3px;
  background-color: var(--navy-blue);
  color: var(--white);
}

@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    width: 80% !important;
  }
}
.about-us-new {
  border: 1px solid #2d2754 !important;
}
ul.custom-list-new {
  list-style-type: none !important;
  padding-left: 0;
}
.about-us-img > img {
  border-radius: 12px;
  border: 1px solid #2d2754 !important;
}

footer {
  background: var(--navy-blue) !important;
  padding: 3em;
}
.flex i {
  color: var(--primary-red);
  font-size: 18px;
}
ul.custom-list {
  padding-left: 0 !important;
}
ul.custom-list li {
  list-style-type: none;
  padding-bottom: 8px;
}
.custom-link {
  color: white;
}
.footer-logo,
.get-in-touch,
.quick-links,
.sales {
  padding: 1em 1em 0 1em;
}
@media (max-width: 768px) {
  .footer-logo,
  .get-in-touch,
  .quick-links,
  .sales {
    padding: 0;
  }
}
.sales p,
.sales.red {
  margin-bottom: 8px !important;
  color: var(--primary-red);
  font-weight: 500;
}
.sub-footer {
  background-color: #3a3366;
}
/*Logos Slide Show*/
/* .base-template__wrapper {
  max-width: 100dvw;
  padding-bottom: 50px;
} */
/** * Slider Instance */
/* .swiper {
  width: 100%;
} */
/* .swiper-wrapper {
  transition-timing-function: linear !important;
} */
/* #horizontal-ticker-rtl.swiper-wrapper.swiper-slide {
  height: auto !important;
}
.horizontal-ticker {
  margin: 0 -20px;
  display: flex;
  flex-direction: column;
  row-gap: 2.85vw;
}
@media screen and (max-width: 767.9px) {
  .horizontal-ticker {
    row-gap: 15px;
  }
} */
/** * Slider Slides */
/* .horizontal-ticker__slide {
  position: relative;
  width: 15.625vw;
  aspect-ratio: 1.4634146341;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(50px);
}
@media screen and (max-width: 767.9px) {
  .horizontal-ticker__slide {
    width: 150px;
  }
}
.horizontal-ticker__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-out;
}
.horizontal-ticker__slide img:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .horizontal-ticker__slide:hover img:last-child {
    opacity: 1;
  }
} */
/*Products Slider*/

#highlighted-logo-slider {
  background-color: #f7f7f7 !important;
  padding: 60px 0;
  text-align: center;
}
.custom-card-bg {
  background-color: #f7f7f7 !important;
}

#highlighted-logo-slider .slider-header h2 {
  color: #d62828;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.highlighted-swiper {
  width: 90%;
  margin: auto;
  position: relative;
}

.highlighted-swiper .swiper-slide {
  width: 160px;
  height: 160px;
  background: #ececec;
  border-radius: 16px;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
  transform: scale(0.7);
}

.highlighted-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.highlighted-swiper .swiper-slide-active {
  transform: scale(1.2);
  opacity: 1;
  box-shadow: 0 0 15px rgba(214, 40, 40, 0.4);
  z-index: 3;
}

.highlighted-swiper .swiper-slide-prev,
.highlighted-swiper .swiper-slide-next {
  transform: scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.logo-swiper-prev,
.logo-swiper-next {
  color: #2d2754;
  width: 40px;
  height: 40px;
  border: 2px solid #2d2754;
  border-radius: 50%;
  background-color: white;
}

.custom-logo-swiper-pagination {
  margin-top: 20px;
}

.custom-logo-swiper-pagination .swiper-pagination-bullet {
  background: #2d2754;
  opacity: 0.6;
}
.custom-logo-swiper-pagination .swiper-pagination-bullet-active {
  background: #d62828;
  opacity: 1;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
}
.logo-swiper-prev:hover,
.logo-swiper-next:hover {
  color: white;
  width: 40px;
  height: 40px;
  border: 2px solid #2d2754;
  border-radius: 50%;
  background-color: #d62828;
  transition: 0.5s all;
}
iframe.w-100.h-100 {
  border-radius: 12px;
  width: 300px !important;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .highlighted-swiper .swiper-slide {
    width: 120px;
    height: 120px;
  }
  .highlighted-swiper .swiper-slide-active {
    transform: scale(1.1);
  }
}
/*Products Slider*/
/*Single Products page accordions*/
.custom-accordion {
  padding: 5em;
}
@media (max-width: 576px) {
  .custom-accordion {
    padding: 0em !important;
  }
}

/* .custom-accordion .custom-accordion-button.accordion-button {
      border-radius: 12px !important;
    } */
.custom-accordion .custom-accordion-button.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #d62828;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
  color: white !important;
}
.custom-accordion .custom-accordion-button.accordion-button:not(.collapsed) h5 {
  color: white !important;
}
.custom-accordion .custom-accordion-button.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M416 256c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32H384c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E") !important;
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7483%)
    hue-rotate(354deg) brightness(98%) contrast(100%);
}
.accordion-header-new {
  border-radius: 12px !important;
}
.common-bg {
  background-image: url("img/bg-image-single.png");
  background-size: cover;
  padding: 7em;
}
@media (max-width: 576px) {
  .common-bg {
    padding: 4em !important;
  }
}
ul.inner-list {
  list-style-type: square;
  color: #d62828;
  font-size: 14px;
}
/*Whatsapp float*/
.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.whatsapp_float:hover {
  background-color: #1ebea5;
  color: #fff;
}
/*ScrollTopBtn*/
#scrollTopBtn {
  position: fixed;
  bottom: 90px; /* Above WhatsApp button */
  right: 20px;
  z-index: 9999;
  background-color: #d62828; /* Red Primary */
  color: #ffffff;
  border: none;
  outline: none;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #b81f1f; /* Darker red */
  color: #fff;
}
/*Common CTA*/

.btn-slide-primary {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #d62828; /* Red background by default */
  color: #ffffff; /* White text */
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-slide-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Slide-in white background */
  z-index: -1;
  transition: left 0.4s ease-in-out;
}
.btn-slide-primary:hover::before {
  left: 0;
}
.btn-slide-primary:hover {
  color: #d62828; /* Text turns red on hover */
}
/*About us*/
.about-us-section .vision-box {
  border-left: 4px solid #d62828;
}
/*temp css*/
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card {
  padding: 15px;
  border: 1px solid #eee;
  text-align: center;
}
.product-card img {
  max-width: 100%;
  height: auto;
}
/*Owl Carousel*/

.logo-slider .item img {
  max-height: 100px;
  margin: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-slider .item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Logo Slider*/
.logo-slider .item img.logo-svg-filter {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(338deg) brightness(93%) contrast(107%);
}

.logo-slider .item img.logo-svg-filter-red {
  filter: brightness(0) saturate(100%) invert(25%) sepia(81%) saturate(1410%)
    hue-rotate(333deg) brightness(104%) contrast(113%);
}
/*Home page carousel styles*/
/* Sets a fixed height for all slides */
.home-page-carousel .carousel-item {
  height: 75vh;
  /* Adjust to your preference: 100vh, 80vh, 500px etc. */
  min-height: 400px;
  /* Ensures it looks good on short screens */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  .home-page-carousel .carousel-item {
    height: 65vh;
    /* Adjust to your preference: 100vh, 80vh, 500px etc. */
    min-height: 350px;
    /* Ensures it looks good on short screens */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

/* Optional: Make overlay stretch full height */
.home-page-carousel .slide-overlay {
  height: 100%;
  width: 100%;
}

/* Optional: Fine-tune inner text box */
.carousel-text {
  max-width: 700px;
}
.carousel-item {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-indicators .active {
  background-color: #d62828 !important;
}

.carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* semi-transparent black overlay */
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  position: relative;
}

.carousel-caption h5,
.carousel-caption p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.carousel-inner {
  transition: transform 0.8s ease-in-out;
}

.bg-slide {
  position: relative;
  height: 100vh;
  /* Or use 600px if you want fixed height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* semi-transparent overlay */
  z-index: 2;
  padding: 2rem;
}

.carousel-text {
  color: #fff;
  z-index: 3;
  max-width: 800px;
}

.carousel-text h5 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.carousel-text p {
  font-size: 1.2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
/*Support styles*/
.hero {
  padding: 140px 0;
  color: #fff;
  text-align: center;
  background: white !important;
}

.section-heading {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #d62828;
}

.faq-icon {
  color: #d62828;
  margin-right: 10px;
}

.support-option {
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  color: #2d2754;
}

.support-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.support-option i {
  font-size: 2.5rem;
  color: #d62828;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  color: #2d2754;
}

.map-container {
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
}

.btn-primary {
  background-color: #d62828;
  border: none;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .support.custom-accordion {
    padding: 2em !important;
  }
}
