body {
  padding: 0;
  margin: 0;
  color: #4f586d;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0rem;
}

/* header */
.header-wrapper {
    padding: 0 40px;
}
.header-inner {
  margin: 16px 0 0;
  border: 1px solid #cdd5df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(41, 41, 48, 0.1);
  padding: 15px 32px;
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  position: sticky !important;
  top: 0;
  z-index: 10;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-wrapper-mobile {
  display: none;
}

.nav-wrapper-desktop ul.user-nav-list {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: end;
}

.nav-wrapper-desktop ul.user-nav-list li.item a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 2rem;
    margin-bottom: 1rem;
    text-decoration: none;
}
.logo a img {
  width: 100%;
  max-width: 170px;
  object-fit: contain;
}

a,
span,
button,
label,
input,
p,
li,
ul {
  font-family: "Inter", sans-serif;
}

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

header#header {
  position: sticky !important;
  top: 0;
  z-index: 10;
}

/* homegae */
/* main-content */
#main-content {
  display: flex;
}

.category-banner__content {
  padding: 25px 100px 0px;
  background: #ffffff;
}

.category__scrolling-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.category__scrolling-banner {
  margin-top: 50px;
}

.category__scrolling-banner h2 {
  font-size: 35px;
  color: #292930;
  margin: 0px 0;
}

.wrapper-page-category {
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.category-banner__content-text h1 {
  font-size: 85px;
  line-height: 1.1;
  color: #292930;
  margin: 0px 0;
}

.category-banner__content-text {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.index-content p {
  font-size: 18px;
  color: #4f586d;
  text-align: justify;
  line-height: 30px;
}

.category-banner__content-ctas {
  display: flex;
  justify-content: end;
  text-align: end;
  gap: 10px;
  width: fit-content;
  margin: 0 0 0 auto;
  align-items: center;
}

a.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 25px;
    border-radius: 8px;
    background: linear-gradient(90deg, #292930 0%, #016194 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    justify-content: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
    box-shadow: 0 16px 32px rgba(1, 97, 148, 0.18);
}

a.btn-secondary__white {
    color: #222324;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #d7e1ec;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.95) 100%);
    border-radius: 8px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

img.logo-shopify {
  width: 50px;
}

/* marque */
.rimage-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee.enable-animation {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: slide 8s linear infinite;
  /* Adjust the speed here */
}

.rimage-wrapper {
  flex: 0 0 400px;
  /* Width of each image */
  text-align: center;
  padding: 15px 15px 0px 15px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Scroll by half the total content width */
  }
}

/* Basic sidebar styling */
.sticky-sidebar {
  position: sticky;
  top: 0;
}

.placeholder__sidebar.wrapper-sidebar.mobile-drawer-left-nav {
    margin: 16px 0px 0px 28px;
    border: 1px solid #cdd5df;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 36px rgba(41, 41, 48, 0.1);
}

.sidebar {
  padding: 32px;
  height: 80vh;
  overflow-y: auto;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  visibility: visible;
  width: 350px;
  mix-blend-mode: multiply;
  position: relative;
  top: 0px;
  left: 0px;
  opacity: 1;
  scrollbar-width: none;
}

.sidebar__header {
  margin: 35px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  width: fit-content;
}

.box__icon-chevron-left {
  border-radius: 4px;
  background-color: #ebebef;
  padding: 12px;
  margin-right: 8px;
  display: flex;
  flex-direction: column;
}

img.icon.icon-chevron-left {
  width: 18px;
  height: 18px;
}

span.small-text {
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 19.36px;
  letter-spacing: 0.04em;
}

button.course-accordion {
  background-color: transparent;
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  border: none;
  transition: 0.4s;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  text-align: start;
  color: #222324;
  text-transform: capitalize;
}

button.course-accordion span p {
  margin: 4px !important;
}

.header-search {
  display: flex;
  width: 100%;
}

form#searchForm {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 13px 15px;
    border-radius: 8px;
    margin: 0 auto;
    border: 1px solid #AEB0A4;
    background: #ffffff;
    position: relative;
}

.search.search-full {
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: 113%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  border-radius: 10px;
  overflow-y: auto;
  display: none;
}

.search-suggestions.active {
  display: block;
}

.search-suggestions div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-family: "inter";
}

.search-suggestions div:hover {
  background: #f0f0f0;
}

.header-search input#query {
  border: 0;
  width: 100%;
  background-color: #ffffff;
  padding-left: 15px;
}

.header-search input:focus-visible {
  border: 0;
  width: 100%;
  box-shadow: none;
  outline: 0px;
}

button.search-button {
  border: 0px;
  background: transparent;
}

button.search-button i {
  font-size: 20px;
  cursor: pointer;
  color: #68737C;
}

ul.header-search-results {
  margin: 0;
}

.header-search input#query::placeholder {
  font-size: 16px;
  color: #757575;
}

a.view-de {
  color: #ffffff;
  background-color: #222324;
  padding: 15px 32px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

a.aura-sup {
  color: #222324;
  padding: 15px 32px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #222324;
}

/*button not active*/
button.course-accordion:after {
  content: "\f063";
  color: #222324;
  font-size: 20px;
  font-family: FontAwesome;
}

button.course-accordion.active::after {
  transform: rotate(180deg);
}

button.course-accordion.active {
  color: #016194;
  font-weight: 600;
}

button.course-accordion.active::after {
  color: #016194;
}

div.course-panel {
  padding: 15px 25px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #222324;
  display: none;
}

.accordion__body-inner {
  display: flow-root;
  padding-bottom: 10px;
}

.accordion__body-inner a {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #6e6e6e;
  cursor: pointer;
  text-decoration: none;
  text-transform: capitalize;
}

a.sidebar__current-theme {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #222324;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: fit-content;
}

.side-bar-content {
  border-bottom: 1px solid #AEB0A4;
}

.accordion {
  border-bottom: 1px solid #AEB0A4;
}


.accordion__body-inner a.active {
  color: #016194;
  font-weight: 600;
}

/* about-section-page */
div#about {
  padding: 15px 100px 40px;

}

.about-page {
  margin: 30px 0px;
}

.about-main h2 {
    color: #292930;
    font-size: 45px;
    text-transform: capitalize;
}

h2.heading-section {
  margin-bottom: 10px;
}

.about-main h3 {
  color: #292930;
  font-size: 28px;
  text-transform: capitalize;
  margin: 19px 0;
}

.about-main h4 {
  color: #292930;
  font-size: 20px;
  margin: 16px 0px;
  text-transform: capitalize;
}

.about-main h5 {
  color: #292930;
  font-size: 18px;
  margin: 20px 0px 16px;
  text-transform: capitalize;
}

.about-main p {
  color: #4f586d;
  font-size: 16px;
  text-align: justify;
  line-height: 28px;
}

.about-main p a {
  color: #4f586d;
  font-weight: bold;
  text-decoration: none;
}

.about-main li a {
  text-decoration: none;
  font-weight: bold;
  color: #4f586d;
}

li.info-block__content a {
  color: #4f586d;
  font-weight: bold;
  text-decoration: none;
}

.about-main li {
  color: #4f586d;
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
}

p.sub-heading-section {
  margin: 0 0 60px;
}

ul.sub-heading-section {
  margin: 0 0 60px;
}

.about-main img.wide-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 1000px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-block.info-block--type-tip {
  background: #eef6f7;
  border-left: 3px solid #74C4D0;
  padding: 24px;
  margin: 32px 0px;
  width: fit-content;
}

.info-block__title p.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
}

.info-block__title p i {
  color: rgb(149, 192, 69);
  font-size: 25px;
}

li.info-block__content {
  line-height: 30px;
} 

.close-sidebar-btn {
  display: none;
}

.toggle-sidebar-btn {
  display: none;
}

button.menu-burger {
  display: none;
}

li.marker-no {
  list-style: none;
}

.acc-button {
  display: none;
}



/* FAqsection */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* FAQ Item Styling */
.accordion-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.accordion__item {
  border: 1px solid #AEB0A4;
  border-radius: 5px;
  overflow: hidden;
}

.accordion__header {
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.accordion__header h6 {
  margin: 0;
  font-size: 18px;
  line-height: normal;
}

.accordion__header::after {
  content: '';
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
  width: 20px;
  height: 20px;
  transition: .4s;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}

.accordion__item .accordion__content p a {
  color: #000000;
}

.accordion__header.active {
  border-bottom: 1px solid #AEB0A4;
}

.accordion__header.active::after {
  transform: rotateX(180deg);
}

.accordion__item .accordion__content {
  padding: 0 25px;
  max-height: 0;
  transition: .5s;
  overflow: hidden;
  overflow-y: auto;
}

.mobile-drawer-main-nav {
    position: fixed;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;

}

/* media-screeen */

@media (max-width: 1300px) {
  .category-banner__content {
    padding: 25px 40px 0px;
  }

  div#about {
    padding: 15px 40px 40px;
  }

  .header-inner {
    padding: 10px 40px 10px 32px;
  }

  .category-banner__content-text h1 {
    font-size: 4.5rem;
  }

  img.logo-shopify {
    width: 45px;
  }

  .category-banner__content-text p {
    font-size: 16px;
    line-height: normal;
  }

  .rimage-wrapper {
    flex: 0 0 300px;
    padding: 10px 10px 0px 10px;
  }

  .sidebar {
    width: 320px;
  }
}
.header-wrapper {
    padding: 0 30px;
}


/* header */
@media (max-width: 1100px) {
  form#searchForm {
    width: 18rem;
  }

  .nav-wrapper-desktop ul.user-nav-list li.item a {
    font-size: 16px;
  }
}

/* Hide sidebar on larger screens */
@media (max-width: 1050px) {
  .placeholder__sidebar {
    left: 0;
  }

  .sticky-sidebar {
    position: fixed !important;
    width: 100%;
    height: 100%;
    z-index: 10;
    left: -100%;
    overflow-x: hidden;
    transition: left 0.5s ease;
    top: 0px;
  }

  /* Sidebar open state */
  .sticky-sidebar.open {
    left: 0;
            background: #ffffff;
  }
  .placeholder__sidebar.wrapper-sidebar.mobile-drawer-left-nav {
    margin: 16px 0px 0px ;
    border: none;
    backdrop-filter: none;
}

  /* Close button styles */
  .close-sidebar-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block !important;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
  }

  /* Toggle Button styles */
  .toggle-sidebar-btn {
    display: block !important;
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 10px;
  }

  div#main-content {
    border-top: 1px solid #dbdcdd;
  }

  .sidebar {
    width: initial;
  }

  .toggle-sidebar-btn i.fa-solid.fa-bars {
    color: #000000;
    font-size: 25px;
  }

  .sidebar {
    padding: 50px 20px;
  }
}

@media(max-width:1000px){
   .header-inner {
    grid-template-columns: 1fr 4fr auto;
    padding: 15px 20px;
    gap: 30px;
}
button.menu-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #016194;
    color: #ffffff;
    background: linear-gradient(90deg, #292930 0%, #016194 100%);
    border-radius: 8px;
    width: 40px;
    height: 40px;
}
.nav-wrapper-desktop nav#user-nav {
    display: none;
}
.mobile-drawer-main-nav {
    position: fixed;
    top: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    z-index: 9999;
    padding: 30px 20px;
    overflow-y: auto;
    background: linear-gradient(    130deg,    #222228 0%,    #292930 64%,    #1f1f25 100%  );
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.25);
}
.mobile-drawer-main-nav.addC {
    right: 0;
    visibility: visible;
    opacity: 1;
}
button.close-sidebar-btn1 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.mobile-drawer-main-nav .user-nav-list1 {
    list-style: none;
    margin: 60px 0 0;
    padding: 0;
}
.mobile-drawer-main-nav .user-nav-list1 li {
    margin-bottom: 20px;
}
.mobile-drawer-main-nav .user-nav-list1 a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}
form#searchForm {
    width: 100%;
}
.nav-wrapper-desktop svg path {
    stroke: #ffffff;
}
}

@media (max-width: 749px) {
  form#searchForm {
    width: 100%;
  }

  .category-banner__content-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .category-banner__content {
    padding: 25px 20px 0px;
  }

  .header-inner {
    padding: 10px 20px 10px 20px;
  }

  .category-banner__content-text h1 {
    font-size: 4rem;
  }

  div#about {
    padding: 15px 20px 40px;
  }

  .category-banner__content-ctas {
    justify-content: space-between;
    align-items: center;
    margin: 0;
    flex-direction: row;
  }

  .toggle-sidebar-btn {
    margin: 6px 10px;
  }

  .index-content p {
    font-size: 16px;
    text-align: justify;
  }

  .category__scrolling-banner {
    margin-top: 20px;
  }

  h2.heading-section {
    margin-bottom: 20px;
  }

  .about-main h2 {
    font-size: 35px;
  }

  p.sub-heading-section {
    margin: 0 0 30px;
  }

  ul.sub-heading-section {
    margin: 0 0 30px;
  }

  .rimage-wrapper {
    flex: 0 0 250px;
  }

  button.menu-burger {
    display: flex !important;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  nav#user-nav {
    display: none;
  }

  .nav-wrapper-desktop {
    display: flex;
    text-align: end;
    justify-content: end;
  }


  li.item a {
    color: white;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-decoration: none;
  }

  li.item {
    line-height: 2rem;
    margin-bottom: 1rem;
  }

  button.close-sidebar-btn1 i.fa-solid.fa-xmark {
    color: #ffffff;
    font-size: 25px;
  }

  button.close-sidebar-btn1 {
    padding: 33px 20px 16px 20px;
    padding-bottom: 1rem;
    background: transparent;
    position: absolute;
    right: 0;
    border: 0px !important;
  }

  ul.user-nav-list1 {
    padding-top: 3rem;
    list-style: none;
  }


  div#about ul {
    padding-left: 15px;
  }

  .about-main h3 {
    color: #222324;
    font-size: 25px;
    text-transform: capitalize;
  }
}

@media (max-width:700px) {
  .accordion__header {
    padding: 13px 14px;
  }

  .accordion__header h6 {
    font-size: 16px;
  }

  .accordion__header::after {
    right: 6px;
  }

  .accordion__item .accordion__content {
    padding: 0 14px;
  }
    .scroller-item {
    min-width: 120px;
    max-width: 400px;
  }

  .scroller {
    gap: 10px;
  }

  .bottom_button a {
    padding: 10px 10px;
    font-size: 13px;
  }
}

@media(max-width:600px) {
  .category-banner__content-text {
    flex-direction: column;
    gap: 20px;
  }

  .category-banner__content-ctas {
    margin: 0 0 16px;
  }

  .category-banner__content-ctas {
    gap: 8px;
  }

  a.aura-sup {
    padding: 13px 24px;
  }

a.btn-secondary__white ,   a.btn-primary {
    padding: 10px 11px;
    font-size: 15px;
}

  .about-main p {
    font-size: 15px;
  }

  .about-main li {
    font-size: 15px;
  }
  .header-wrapper {
    padding: 0 10px;
}
 .header-inner {
    padding: 8px 10px;
    gap: 10px;
    grid-template-areas: 'logo hamburger '
        'search search';
    grid-template-columns: 1fr 1fr;
}
  .logo {
    grid-area: logo;
}
.header-search {
    grid-area: search;
}
}


/* scrolling images */

.scroller-wrap {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 30px 0 20px;
}
.scroller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

 .scroller {
  display: flex;
  gap: 45px;
  width: max-content;  
  animation: scroll 20s linear infinite;
  will-change: transform; 
} 


.scroller:hover {
  animation-play-state: paused;
}

.scroller-item {
  min-width: 400px;
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: grab;
  transition: all .3s;
}
.scroller-item:hover img {
    filter: brightness(0.7);
}

.scroller-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroller-item .text {
  position: absolute;
  color: #222324;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.6);
  background: #ffffff;
  top: 13px;
  right: 2px;
  border-radius: 10px;
  padding: 6px 20px;
  font-family: "Inter", sans-serif;
}

.bottom_button a {
  color: #ffffff;
  background-color: #222324;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.bottom_button {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}
.scroller-item:hover .bottom_button  {
    opacity: 1;
    visibility: visible;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media(max-width:700px){
.scroller-item {
    min-width: 300px;
    max-width: 400px;
}
.scroller {
    gap: 30px;
}
.bottom_button a {
    padding: 10px 10px;
    font-size: 13px;
}
}
img.Grace_image_main {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.note_installation p {
    border: 1px solid;
    padding: 1rem;
    background: #8080800f;
}
