/*

------------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=DM Sans+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=DM Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- whatsapp ---- */

.ani {
  position: relative;
  animation: mymove 5s;
  animation-iteration-count: 1;
}

/* Make all product images rounded */
/* .product-slider img,
.product-card img,
.single-product img {
  border-radius: 20px !important;
} */

/* (Optional) keep same look on mobile too
@media (max-width: 520px) {
  .product-slider img,
  .product-card img,
  .single-product img {
    border-radius: 20px !important;
  }
} */



@keyframes mymove {
  from {right: -200px;}
  to {right: 0px;}
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}



/* zoom */

.zoom {
  padding: 0px;
  transition: transform .5s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* zoom end */ 


/* Extend subscription strip */
.tt-extend-strip { display:flex; justify-content:center; padding-bottom: 25px; padding-top: 25px; margin-top: 20px; }
.tt-extend-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #e6f3fb;
  color: #00a5f1;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(10,50,80,0.06);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
  transition: transform .12s ease, box-shadow .12s ease;
}

.tt-extend-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(10,50,80,0.08);
}

.tt-extend-ico {
  background: #e8f8ff;
  border-radius: 8px;
  padding: 6px;
  font-size: 16px;
  color: #00a5f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-extend-text {
  margin-left: 10px;
  font-size: 15px;
  color: #303030 !important;
  flex-grow: 1; /* ensures arrow sticks to right */
  text-align: left;
}

.tt-extend-arrow {
  color: #00a5f1 !important;
  font-size: 22px !important;
  font-weight: 700;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.tt-extend-arrow::before {
  content: '›';  /* only this arrow will appear */
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.tt-extend-btn:hover .tt-extend-arrow::before {
  transform: translateX(3px);
}


/* mobile adjustments */
@media (max-width: 420px) {
  .tt-extend-btn {
    border-radius: 12px;
    padding: 10px 12px;
    margin-right: 10px;
  }

  .tt-extend-strip { margin-top: 0px; }

}


/* Modal overlay */
.tt-extend-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tt-extend-overlay.show {
  display: flex;
  opacity: 1;
}

.tt-extend-modal {
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.3s ease;
}

.tt-extend-overlay.show .tt-extend-modal {
  transform: translateY(0);
  opacity: 1;
}

/* Header */
.tt-extend-header {
  background: #E6F8FF;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.tt-extend-title {
  font-size: 16px;
  font-weight: 600;
  color: #303030;
}
.tt-extend-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #303030;
  cursor: pointer;
}
.tt-extend-close:hover {
  color: #303030;
}
/* remove left margin only when inside the Extend Subscription modal */
.tt-extend-modal .main-blue-button-hover {
  margin-left: 0 !important;
}

/* Body */
.tt-extend-body {
  padding: 12px;
  font-size: 14px;
  color: #303030;
  line-height: 1.5;
  text-align: left;
}
.tt-extend-body ul {
  margin: 0;
  padding-left: 20px;
}

/* Footer */
#tt-extend-ok {
  text-align: center;
  min-width: 250px ;
}


.tt-extend-footer {
  padding: 0px 15px 15px 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}


/* Cancel button (secondary style, optional) */
.tt-extend-secondary {
  background: #f1f1f1;
  color: #333;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  cursor: pointer;
}
.tt-extend-secondary:hover {
  background: #e0e0e0;
}

/* ---- Fix left indentation in modal bullets ---- */
.tt-extend-body {
  padding: 15px;                 /* keep your original padding */
  box-sizing: border-box;
}

.tt-extend-body ul.tt-extend-list {
  list-style-type: disc;
  margin: 0;                     /* remove default browser margin */
  padding: 0;                    /* remove default browser padding */
  list-style-position: inside;   /* makes bullets align with text start */
}

.tt-extend-body ul.tt-extend-list li {
  margin: 0 0 8px 0;             /* even spacing between bullets */
  line-height: 1.5;
  color: #303030;
}




/* ---------- Accordion (updated styles) ---------- */
.accordionSer {
  max-width: 100%;
  margin: auto;
  margin-top: 20px;
  /* optional layout helpers */
}

/* prefer stable scrollbar gutter (modern browsers) */
html { scrollbar-gutter: stable; }

/* ensure overlay sits above everything and prevents background clicks */
.tt-hc-overlay { box-sizing: border-box; }

/* optional: smooth transition for modal body shift if any */
body.tt-modal-open {
  transition: padding-right .12s ease;
}


/* Overlay + card */
.tt-modal[hidden]{display:none}
.tt-modal{position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center; padding:16px}
.tt-backdrop{position:fixed; inset:0; background:rgba(0,0,0,.55); backdrop-filter:blur(2px)}
.tt-dialog{
  position:relative; width:min(420px,100%); background:#fff; border-radius:20px;
  box-shadow:0 24px 60px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.10);
  padding:16px 16px 18px;
  overflow:visible;            /* no internal scroll */
  max-height:none;             /* no internal scroll */
}

/* Header chip bar */
.tt-bar{
  background:#E6F8FF; border-radius:20px; height:60px; display:flex; align-items:center; padding:0px;
}
.tt-bar-title{font-size:16px; font-weight:700; color:#303030; margin:0}
.tt-bar-title span{font-weight:500; font-size:12px; color:#6b7280;}
.tt-x{
  margin-left:auto; width:24px; height:24px; border-radius:50%; border:0;
  background:#E2E8F0; color:#0f172a; font-size:16px; line-height:24px; cursor:pointer;
}

.tt-dialog { padding:0; } /* remove padding from main container */
.tt-inner { padding:12px; padding-top: 0px; } /* content padding only */
.tt-bar {
  width:100%;
  background:#E6F5FF;
padding:18px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-radius:16px 16px 0 0; /* only top corners */
}
.tt-x { margin-left:auto; }


/* Body text */
.tt-sub{margin:10px 0px 10px; color:#303030; font-size: 12px; line-height: 1.5;}
.tt-validity{font-size: 14px;}
.tt-label{margin:12px 0 8px; font-weight:700; font-size: 14px;}

/* Price row */
.tt-price{display:flex; align-items:center; gap:7px; margin:0 0px 12px}
.tt-now{font-size:20px; color: #303030; font-weight:800}
.tt-cut{color:#94A3B8; text-decoration:line-through}
.tt-off{color:#00b34b; font-weight:700; font-size: 15px;}

/* Includes list with bullets */
.tt-ul{margin:0; padding-left:1.05rem; font-size: 14px;}
.tt-ul li{list-style:disc; color: #303030; margin:4px 0}

/* Benefits 4-tile row with square placeholders & captions */
.tt-benefits{display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:8px 0 16px; padding:0}
.tt-benefits li{list-style:none; text-align:center; font-size:12px; color:#475569}
.tt-ico{width:56px; height:56px; border-radius:12px; background:#EEF2F6; margin:0 auto 8px}

/* CTA blue pill */
.tt-cta{
  display:block; width:100%; text-align:center; text-decoration:none; cursor:pointer;
  padding:10px 18px; border-radius:80px;
  background:linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  color:#fff; font-weight:500; font-size:16px;
  box-shadow:0 18px 40px rgba(44,123,255,.28); margin-top: 20px;
}

.tt-cta:hover {
  color: #ffffff !important;
    background:linear-gradient(to bottom,#303030 0%, #303030 80%);
    box-shadow:0 18px 40px rgba(44,123,255,.28);

}

/* Close button style like Figma mock */
.tt-x {
  background: none;
  border: none;
  font-size: 28px;
  color: #303030;
  cursor: pointer;
}

.tt-x:hover {
  background: #D9EEFF;          /* slightly darker on hover */
  border-color: #7CB2E5;
}

/* --- Smooth open/close --- */
.tt-backdrop{
  opacity:0;
  transition: opacity .28s ease;
}
.tt-dialog{
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .28s ease;
  will-change: transform, opacity;
}

/* when open */
.tt-modal.is-open .tt-backdrop{ opacity:1; }
.tt-modal.is-open .tt-dialog{
  transform: translateY(0) scale(1);
  opacity:1;
}

/* honor reduced-motion users */
@media (prefers-reduced-motion: reduce){
  .tt-backdrop, .tt-dialog{ transition: none !important; }
}



/* NO PAGE SCROLL while open (body is locked via JS) */

#amc-modal .tt-ul { list-style: disc; margin-left: 0px; }
#amc-modal .tt-ul li { margin: 6px 0; line-height: 1.4; }


/* HEADER - left = title+subtext stacked, right = circular arrow */
.accordion-headerSer {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;      /* vertically center arrow */
  gap: 12px;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

/* Left block inside header: stack title + subtext */
.accordion-headerSer .header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left aligned text */
  gap: 6px;
  flex: 1 1 auto;
}

/* title styling */
.accordion-headerSer .plan-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #0f172a; /* dark */
}

/* one-line subtext - slightly lighter */
.accordion-headerSer .plan-subtext {
  margin: 0;
  font-size: 14px;
  color: #303030;
  line-height: 1.5;
  /* font-weight: 600; */
  padding-bottom: 20px;
}

/* modern circular arrow container */
.accordion-headerSer .arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 0.707);
  box-shadow: 0 2px 8px rgba(10,10,40,0.04);
  transition: transform .25s ease, background .18s ease, box-shadow .18s ease;
}

/* style the SVG inside (chevron color) */
.accordion-headerSer .arrow svg {
  width: 24px;
  height: 24px;
  stroke: #00a5f1; /* blue tint - change to brand color if needed */
}


/* Remove unwanted border/shadow from accordion header button */
.accordion-headerSer {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* rotate arrow when header has .active */
.accordion-headerSer.active .arrow {
  transform: rotate(180deg);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 6px 18px rgba(37,99,235,0.06);
}

/* CONTENT - collapsed by default using max-height (animated) */
.accordion-contentSer {
  max-height: 0;
  overflow: hidden;
  padding: 0px; /* horizontal padding preserved but no vertical */
  transition: max-height 360ms cubic-bezier(.2,.9,.2,1), padding 260ms ease;
  background: transparent;
}

/* when open add the .open class (will also be set by JS) */
.accordion-contentSer.open {
  padding: 0px;
  /* max-height will be set inline by JS for accurate animation */
}

/* small helpers for lists/metadata/buttons inside */
.accordion-contentSer .includes-list { margin:8px 0 12px; padding-left:18px; line-height:1.45; color:#111827; }
.accordion-contentSer .meta { margin:6px 0; color: rgba(0,0,0,0.65); font-size:13px; }

/* Accessibility focus styling */
.accordion-headerSer:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  border-radius: 8px;
}

/* responsive tweak if your cards are in two columns: stack on small */
@media (max-width: 900px) {
  .accordionSer { max-width: 100%; }
}



/* service-tabs.css - minimal, isolated styling */

.service-tabs-wrapper { margin: 28px 10px;
}

/* TAB BUTTONS CONTAINER */
.service-tabs-wrapper .tab {
  display: flex;
  justify-content: center;   /* center align */
  gap: 0;                    /* no gaps, so borders align */
  margin: 20px 0 30px 0;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;          /* makes buttons look like one group */
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.service-tabs-wrapper .tab button {
  flex: 1;                          /* equal width */
  padding: 12px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  border: none;                      /* remove border */
  background: #ffffff;
  color: #303030;
  transition: all 0.25s ease;        /* smooth effect */
}

/* INACTIVE */
.service-tabs-wrapper .tab button:not(.active):hover {
  background: #efefef;
  border-radius: 100px;
  margin: 5px;
  color: #303030;
}

/* ACTIVE */
.service-tabs-wrapper .tab button.active {
  background: #303030;       /* active color */
  color: #fff;
  margin: 5px;
  border-radius: 100px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  transition: ease-in 0.3s ease; /* smooth transition */
}

/* Tab content containers (empty initially) */
.service-tabs-wrapper .tabcontent {
  display:none;
  border-radius: 8px;
  margin-top: -1px;
}

/* If your package grid is three columns, keep responsiveness */
.service-tabs-wrapper .packages {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
@media (max-width:900px){
  .service-tabs-wrapper .packages { grid-template-columns: 1fr; }
}




.badge {
  background-color: red;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .columnElectric {
    flex: 100%;
    max-width: 100%;
  }
}


.parallax {
  /* The image used */
  background-image: url(../images/electric.webp);

  /* Set a specific height */
  min-height: 600px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

@media (max-width: 992px) {
  .parallax {
    background-image: url(../images/electricmob.webp);
background-size: contain;  }
}

.floating{
	position:fixed;
	width:125px;
	height:57px;
	bottom:15px;
	right:15px;
	background: linear-gradient(to bottom, #303030 0%, #303030 80%);
	color:#ffffff;
	border-radius:50px;
	text-align:center;
  font-size:31px;
  box-shadow: 0px 7px 30px #30303062;
  z-index:100;
}


.float-button{
	margin-top:18px;
}



/* Blog */


.blog-entry {
  z-index: 0;
  margin: 10px;
  display: block;
  position: relative; }
  @media screen and (max-width: 768px) {
    .blog-entry {
      margin-bottom: 3em; } }
  .blog-entry .blog-slider {
    display: block;
    z-index: -1;
    position: relative; }
  .blog-entry .blog-img {
    display: block;
    z-index: -1;
    width: 100%;
    overflow: hidden;
    position: relative; }
    .blog-entry .blog-img img {
      position: relative;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }

  .blog-entry:hover .blog-img img, .blog-entry:focus .blog-img img {
    position: relative;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  .blog-entry:hover .blog-detail img, .blog-entry:focus .blog-detail img {
    position: relative;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .blog-entry .desc {
    width: 100%;
    background: #fff;
    margin-top: -3em;
    z-index: 1;
    padding: 0.3em; }
    .blog-entry .desc h2 {
      font-weight: 800;
      font-size: 30px;
    padding-bottom: 15px; }
    .blog-entry .desc h3{
      font-weight: 800;
      font-size: 24px;
    padding-bottom: 15px; }
      .blog-entry .desc h2 a {
        color: #303030; }
        .blog-entry .desc p {
          color: #303030;
        padding-top: 2px;
      padding-bottom: 2px; }
    .blog-entry .desc .meta {
      font-size: 14px;
    padding-bottom: 10px; }
      
      .blog-entry .desc .meta span {
        padding-right: 10px; }

        .blog-entry .desc .meta span a {
          color: #303030;
          font-weight: 700; }


    .blog-img {
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: relative; }
    

      
blockquote {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 30px;
  background: #303030;
  border-radius: 3px;
  border-left: 5px solid #0db8f6 ;
  font-style: italic;
  color: #999999;
  font-size: 20px; }


/* quiz start */
.quiz-header { margin-bottom: 14px; }
.quiz-counter {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  min-width: 90px;
  text-align: left;
}


.quiz-title{
  font-size: 54px;
color: #303030;
font-weight: 800;
padding-bottom: 15px;
}

.quiz-sub{
  font-size: 18px;
  padding-bottom: 40px;
  font-weight: 500;
}



/* progress bar (if you didn't already include them) */
.quiz-progress { height: 8px; background: #eee; border-radius: 8px; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 0%; transition: width 350ms ease; background: linear-gradient(90deg,#2b90ff,#ffff21); }

/* question text */
.quiz-question { font-size: 24px; margin-bottom: 20px; margin-top: 40px; font-weight: 600; color: #222; }

/* option buttons + labels (keeps the A/B labels) */
.quiz-options { display: grid; gap: 12px; counter-reset: option; }
@media (min-width: 600px){ .quiz-options { grid-template-columns: 1fr 1fr; } }

.option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  text-align: left;
}
.option-btn::before {
  counter-increment: option;
  content: counter(option, upper-alpha) ". ";
  font-weight: 700;
  margin-right: 10px;
  color: #2b90ff;
}

/* hover + disabled */
.option-btn:hover:not(:disabled) {
  border-color: #2b90ff;
  box-shadow: 0 6px 18px rgba(43,144,255,0.12);
  transform: translateY(-2px);
}
.option-btn:disabled { cursor: not-allowed; opacity: 0.9; }

/* correct / incorrect states */
.option-btn.correct {
  border-color: #27ae40;
  background: #eafaee;
  color: #06912b;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(39,174,96,0.12);
}
.option-btn.correct::before { color: #27ae60; }

.option-btn.incorrect {
  border-color: #f02f19;
  background: #fdecea;
  color: #c21000;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(231,76,60,0.12);
}
.option-btn.incorrect::before { color: #e74c3c; }

/* result text area */
/* Explanation / Feedback Box */
.quiz-result {
  margin-top: 25px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #ebfaff;
  font-size: 16px;
  line-height: 1.5;
  border-left: 5px solid #2b90ff; /* blue accent bar */
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Retake Quiz Button */
#restart-btn {
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid #2b90ff;
  background: transparent;
  color: #2b90ff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 16px;
  display: inline-block;
}

/* Hover effect */
#restart-btn:hover {
  background: #2b90ff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(43,144,255,0.25);
  transform: translateY(-2px);
}

/* Focus (for accessibility) */
#restart-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,144,255,0.35);
}

/* Disabled (in case you add a disabled state later) */
#restart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* quiz end */



 /* Tutorials video grid */
.tutorials {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.tutorials h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* default: 1 column (mobile first) */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  margin: 12px;
}

/* 2 columns on tablets */
@media (min-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktops */
@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* video card */
.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.thumb-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.video-card:hover .thumb-wrap {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* thumbnail image */
.thumb-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 3.5;
  object-fit: cover;
}

/* play button overlay */
.play-icon {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}

.play-icon svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

.thumb-wrap:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0,0,0,0.75);
}

/* caption */
.caption {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 800;
  text-align: left;
  color: #303030;
  margin-left: 5px;
}


  
      /* Side Bar */
      
.sidebar-heading {
  font-size: 20px;
  display: block;
  margin-bottom: 2em;
  position: relative;
  font-weight: 700;
  color: #333333; }

.side {
  float: left;
  margin-bottom: 2em;
margin-top: 2em;
margin-left: 10px;
margin-right: 10px; }

  .side .form-group {
    margin-bottom: 0;
    position: relative;
    width: 100%; }

  .side button {
    position: absolute;
    top: 0;
    right: -4px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background: #F6490D;
    color: #fff;
    border: none;
    padding: 14px; }

  .side .category {
    margin: 0;
    padding: 0; }
    .side .category li {
      list-style: none;
      font-size: 14px; }
      .side .category li a {
        border-bottom: 1px solid #f0f0f0;
        display: block;
        padding: 5px 0;
        color: #4d4d4d; }
        .side .category li a i {
          padding-right: 10px;
          color: #999999; }


        /* F Blog */
        
.f-blog {
  position: relative;
  padding-left: 90px;
  margin-bottom: 40px; }
  .f-blog .blog-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 70px;
    height: 60px;
    float: left; }
  .f-blog .desc h3 {
    font-size: 16px;
    margin-bottom: 5px; }
    .f-blog .desc h3 a {
      color: #4d4d4d; }
  .f-blog .desc .admin {
    font-size: 13px; }


    
      /* Instagram Blog */

.instagram-entry {
  width: 100%;
  display: block;
  z-index: 0; }

  .instagram-entry .instagram {
    width: 16.66%;
    float: left;
    height: 280px;
    position: relative; }
    .instagram-entry .instagram:after, .instagram-entry .instagram:before {
      position: absolute;
      top: 30px;
      left: 10px;
      right: 0;
      width: 40px;
      height: 1px;
      content: '';
      background: #fff;
      opacity: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .instagram-entry .instagram:before {
      width: 1px;
      height: 40px;
      top: 11px;
      left: 30px; }
    @media screen and (max-width: 768px) {
      .instagram-entry .instagram {
        width: 25%; } }
    @media screen and (max-width: 480px) {
      .instagram-entry .instagram {
        width: 50%; } }
    .instagram-entry .instagram:hover:after, .instagram-entry .instagram:hover:before, .instagram-entry .instagram:focus:after, .instagram-entry .instagram:focus:before {
      opacity: 1; }


/* Style the list */
.price {
  list-style-type: none;
  border-radius: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Add shadows on hover */
.price:hover {
}

/* Pricing header */
.price .header {
  color:#00aeff;
  font-size: 40px;
  font-weight: 600;
  background-color: #303030;
  font-weight: 700;
  line-height: 1.2;

}

.head-column .price li{
  text-align: left;
  margin-left: 10%;
  background-color: #303030
}



/* List items */
.price li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 700;
  text-align: center;
  color: #303030;
  padding-left: 0px;
font-size: 18px;
line-height: 1.8;
}


/* Grey list item */
.price .grey {
  background-color: #00aeff;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  margin-top: 25px;
  margin-left: 65px;
  margin-right: 65px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 10px;
}


.collapsible {
  background-color: #ffffff20;
  border: 1px solid #ffffff61;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-size: 18px;
}

.active, .collapsible:hover {
  border: none;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #ffffff20;
  border: 1px solid #ffffff61;
  border-radius: 10px;
}

/* Membership Plans */

* {
  box-sizing: border-box;
}

/* Create three columns of equal width */
.head-column {
  float: left;
  width: 25%;
}

.head-column .li{
  text-align: left;
}
.columns {
  float: left;
  width: 33.33%;
}

.columnservice7
{
width: 23%;
}


.columnpackage {
  width: 30%;
}

.columnpackage2 {
  width: 32%;
}

/* Style the list */
.price {
  list-style-type: none;
  border-radius: 15px;
  margin: 0;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


/* Pricing header */
.price .header {
  color:#00aeff;
  font-size: 40px;
  font-weight: 600;
  font-weight: 700;
  line-height: 1.2;

}

.head-column .price li{
  text-align: left;
  margin-left: 10%;
  background-color: rgb(0, 0, 0)
}

/* List items */
.price li {
  padding-top: 10px;
  text-align: center;
  color: #303030;
font-size: 15px;
line-height: 1.8;
}


.renthead {
  position: absolute;
  width: 100%;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rentheadimg {
  /* The image used */
  background-image: url(../images/mainbanner.png);
  min-height: 470px; 
  background-size:cover;
}

.renthead h2{
  font-size: 38px;
  min-width: 100px;
  font-weight: 400;
  color: #303030;
  text-align: center;
  padding-top: 10px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.renthead h1{
  padding-top: 80px;
  font-size: 100px;
  min-width: 100px;
  font-weight: 700;
  color: #303030;
  text-align: center;
}

.renthead span{
  font-size: 84px;
  min-width: 100px;
  font-weight: 600;
  color: #a4afb5;
  text-align: center;
}


.secheadimg {
  /* The image used */
  background-image: url(../images/service.png);
  min-height: 500px; 
  background-size: cover;

}


.sechead {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.sechead h2{
  font-size: 70px;
  min-width: 100px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.sechead h1{
  font-size: 90px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.sechead span{
  font-size: 90px;
  min-width: 100px;
  font-weight: 700;
  color: #ffd82a;
  text-align: center;
}

/* Refurbished */


/* The "Sign Up" button */
.button {
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  opacity: 1;
  transition: 0.3s;
}

.grey:hover{
  color: #fff;
  opacity: 0.6;
}


.button:hover{
  color: #fff;

}

/* why buy subscribe */

.return {
background-color: #b4b4b4;
max-width: 1000px;
padding: 7px;
border-radius: 10px;
}
/* Create two equal columns that floats next to each other */
.column1 {
  float: center;
  width: 60%;
}

.columnplan {
  float: center;
  width: 20%;
}


.columnplan2 {
  float: center;
  width: 25%;
}

.columnmember {
  float: center;
  width: 13%;
}

.column2 {
  float: center;
  width: 20%;
}

.columnservice {
  float: center;
  width: 20%;
}

.rowgallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  
}

.sticky-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: green;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.sticky-button.sticky {
  bottom: 0;
  right: 0;
}


/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 220px;
  background-color: #303030;
  color: #ffffff;
  text-align: left;
  border-radius: 10px;
  padding: 8px 8px 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}


/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #e8f4f9 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


/* Create four equal columns that sits next to each other */
.columngallery {
  flex: 25%;
  max-width: 25%;
  padding-left: 3px;
  padding-right: 3px;
}

.columngallery img {
  vertical-align: middle;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .columngallery {
    flex: 50%;
    max-width: 50%;
  }

  .renthead {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .rentheadimg {
    /* The image used */
    background-image: url(../images/mainbanner.png);
    min-height: 480px; 
    background-size: cover;
  
  }
  
  .renthead h2{
    font-size: 24px;
    min-width: 100px;
    font-weight: 400;
    color: #303030;
    text-align: left;
    padding-top: 0px;
    margin: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  }

  .renthead span{
    padding-top: 120px;
    font-size: 50px;
    min-width: 100px;
    font-weight: 600;
    color: #a4afb5;
    text-align: left;
  }


  .renthead h1{
    padding-top: 140px;
    line-height: 4rem;
    font-size: 58px;
    min-width: 100px;
    font-weight: 800;
    color: #303030;
    text-align: left;
    margin: 20px;
    
  }
  

}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columngallery {
    flex: 100%;
  }


}

.columnnew {
  float: center;
  width: 50%;
}


.columnmechanicleft {
float: center;
width: auto;
border-right: 1px solid #a4afb5;
}

.columnmechanicright {
float: center;
width: auto;
}


.columnsass {
  float: left;
  width: 70%;
}

.columnsubscribenew {
  float: left;
  width: 30%;
}


.columnblogdetail {
  float: left;
  width: 75%;
}

.columnblogdetailright {
  float: right;
  width: 15%;
}

.columnprocessleft {
  width: 3%;
  padding-top: 7px;
}

.columnprocessright {
  width: 50%;
  padding-bottom: 20px;
}

.columnprocessright p {
  font-size: 20px;
  font-weight: 800;
  padding: 10px;
  padding-right: 0px;
  color: #303030;
}

.numberCircle {
  display: inline-block;
  line-height: 0px;
  border-radius: 50%;
  border: 2px solid #00a7f5;
  background-color: #00a7f5;
  font-size: 24px;
}

.numberCircle span {
  display: inline-block;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 8px;
  margin-right: 8px;
}

.columnstoryleft {
  float: left;
  width: 20%;
}

.columnstoryleft2 {
  float: left;
  width: 80%;
}

.columncustomer {
float: left;
width: 30%;
}


.columnsubscribe {
  float: right;
  width: 25%;
  }


  .columnsubscribe2 {
    float: left;
    width: 60%;
    }

.columnstoryright {
  float: right;
  width: 20%;
}

.columnstoryright2 {
  float: right;
  width: 80%;
}

.column3 {
  float: center;
  width: 20%;
}

.column4{
  float: center;
  width: 30%;
  margin: 5px;

}

.columnamba {
  float: center;
  width: 40%;
}


.columnfooter {
  float: left;
  width: 20%;
}

.column5{
  float: center;
  width: 25%;

}

.column6{
  float: center;
  width: 20%;

}

.column7{
  float: center;
  width: 15%;

}

.columndetails {
  float: left;
  width: 30%;
}

.columndetailsright {
  float: left;
  width: 70%;
}

/* Clear floats after the columns */

  @media screen and (max-width: 900px) {
    .column1 {
      width: 46%;
    }

    .columnmember {
      float: center;
      width: 50%;
    }

    .column2{
      width: 26%;

    }

    .columnservice {
      float: center;
      width: 100%;
    }

    .columnplan {
      float: center;
      width: 50%;
    }

    .columnplan2 {
      float: center;
      width: 50%;
    }


    .column3{
      width: 28%;

    }

    .column4{
      width: 30%;
      margin: 5px;
    }

    .columnamba {
      float: center;
      width: 80%;
    }

    .columnfooter {
      float: left;
      width: 50%;
    }

    .column5{
      float: center;
      width: 30%;
    
    }

    .columncustomer {
      float: left;
      width: 50%;
      }

      
    .column6{
      float: center;
      width: 50%;
    
    }

    .column7{
      float: center;
      width: 45%;
    
    }

    .columnnew {
      width: 100%;
    }

    .column-new {
      width: 50%;
      padding: 0px;
    }

    .columnmechanicleft {
    float: left;
    width: 50%;
    border-right: 1px solid #a4afb5;
    }
    
    .columnmechanicright {
    float: left;
    width: 50%;
    }

    .columnsass {
      float: left;
      width: 100%;
    }

    .columnsubscribenew {
      float: left;
      width: 100%;
    }

    .columnsubscribe {
  float: right;
  width: 25%;
  }


  .columnsubscribe2 {
    float: left;
    width: 70%;
    }

    .columnblogdetail {
      width: 100%;
    }

    .columnblogdetailright {
      width: 100%;
    }

    .columnprocessleft {
      width: 10%;
      padding-top: 7px;
      padding-left: 0px;
    }

    .columnprocessright {
      width: 90%;
      padding-bottom: 20px;
      padding-left: 0px;
    }

    .columnprocessright p {
      font-size: 18px;
      font-weight: 800;
    }

    .columnstoryleft {
      float: left;
      width: 30%;
    }

    .columndetails {
      float: left;
      width: 37%;
    }

    .columndetailsright {
      float: left;
      width: 62%;
    }

    .columnstoryleft2 {
      float: left;
      width: 70%;
    }
    .columnstoryright {
      float: right;
      width: 30%;
    }

    .columnstoryright2 {
      float: right;
      width: 70%;
    }

  }


/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
  .head-column{
    width: 22%;
  }
  .columns {
    width: 100%;
  }

  .columnpackage {
    width: 100%;
  }

  .columnpackage2 {
    width: 100%;
  }

  .sechead {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }


  .sechead span{
    font-size: 56px;
    min-width: 100px;
    font-weight: 700;
    color: #ffd82a;
    text-align: center;
  }

    .secheadimg {
      background-image: url(../images/service.png);
      min-height: 600px;
  background-size: cover; }
  
  
  .sechead h2{
    padding: 5px;
    font-weight: 700;
    line-height: 1.4;
    font-size: 56px;
    color: #ffffff;
    text-align: center;
  }
  
  .sechead h1{
    padding: 5px;
    font-weight: 700;
    line-height: 1.4;
    font-size: 56px;
    color: #ffffff;
    text-align: center;
  }



  .price {
margin-left: 30px;
margin-right: 30px;
padding: 15px;
  }


  .price .header {
font-size: 24px;
  }


  .button {
font-size: 16px;

  }

  .price .grey {
font-size: 12px;
align-self: center;
margin-left: 30px;
margin-right: 30px;
  }

}


/* Dropdown Button */
.dropbtn {
  background-color: #ffffff;
  color: #303030;
  padding-top: 8px;
  padding-bottom: 12px;
padding-left: 15px;
padding-right: 15px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;

  
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 170px;
  box-shadow: 0px 12px 16px 20px #b8b8b81a;
  z-index: 1;
  border-radius: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #303030;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  display: block;
  font-weight: 600;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #e8f4f9;
  color:  #303030;
  border-radius: 10px;
  transition: 0.2s;

}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;

}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {color: #8b979d;
  transition: 0.3s;

}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

::selection {
  background: linear-gradient(to bottom,#8ecaff 0%, #00aeff 80%);
  color: #fff;
}

::-moz-selection {
  background: linear-gradient(to bottom,#8ecaff 0%, #00aeff 80%);
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}



.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 38px;
  text-transform: none;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
  margin-bottom: -5px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}


.main-yearly-button a {
  display: inline-block;
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  padding: 20px 14px;
  border-radius: 8px;
  letter-spacing: 0.25px;
}


.main-blue-button a {
  display: inline-block;
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}


.main-black-button a {
  display: inline-block;
  background: linear-gradient(to bottom,#303030 0%, #303030 80%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-blue-banner-button {
  text-align: center;
  padding-top: 70px;
}

.main-red-banner-button {
  text-align: center;
  padding-top: 70px;
}

.main-blue-banner-button a {
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  padding: 20px 45px;
  border-radius: 90px;
  letter-spacing: 0.25px;
}

.main-red-banner-button a {
  background: linear-gradient(to bottom,#c71515 0%, #b31717 80%);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  padding: 20px 45px;
  border-radius: 90px;
  letter-spacing: 0.25px;
}

.main-black-outline-button a {
  background-color: transparent;
  border: 1px solid #ffffff;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  padding: 20px 60px;
  border-radius: 90px;
  letter-spacing: 0.25px;
}


.main-blue-banner-button a:hover {
  background: linear-gradient(to bottom,#303030 0%, #303030 80%);
  box-shadow: 0px 7px 40px #c3c2c2;}

  .main-red-banner-button a:hover {
  background: linear-gradient(to bottom,#0ea758 0%, #0b8043 80%);
  box-shadow: 0px 7px 40px #c3c2c2;}

  .main-black-outline-button a:hover {
    background-color: transparent;
    box-shadow: 0px 7px 40px #747475;}

.main-black-button a:hover {
  background: linear-gradient(to bottom,#2d2d2d 0%, #171717 80%);
  box-shadow: 0px 7px 30px #33333342;}

.main-new-button a {
  display: inline-block;
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  min-width: 95%;
}

.main-new-button a:hover {
  background: linear-gradient(to bottom,#303030 0%, #303030 80%);
  box-shadow: 0px 7px 30px #c3c2c2;

}

.main-new-border-button a {
  background: linear-gradient(to bottom, #303030 0%, #303030 95%);
  border: 2px solid #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;

}


.main-new-border-button a:hover {
  display: inline-block;
  background: linear-gradient(to bottom,#4c4c4c 0%, #303030 80%);
  box-shadow: 0px 12px 16px 20px #4c4c4c 0.1;
  border: 2px solid #00aeff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #00aeff;
  text-transform: none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;

}

.main-blue-button-hover, .main-new-border-button-hover, .main-orange-button-hover, .main-big-blue-button-hover {
  margin-left: 15px;
}


.main-blue-button-stock a {
  display: inline-block;
  background: linear-gradient(to bottom,#ffffff 0%, #ffffff 80%);
  font-size: 16px;
  font-weight: 600;
  color: #00a5f1;
  border: 2px solid #00a5f1;
  text-transform: none;
  padding: 10px 15px;
  border-radius: 50px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-blue-button-stock a:hover {
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  color: #ffffff;

}


.main-blue-button-hover a {
  display: inline-block;
  background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  padding: 10px 15px;
  border-radius: 50px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-blue-button-hover a:hover {
  background: linear-gradient(to bottom,#303030 0%, #303030 80%);
  box-shadow: 0px 7px 30px #c3c2c2;

}

.main-big-blue-button-hover a {
  display: inline-block;
  background: linear-gradient(to bottom,#8ecaff 0%, #00aeff 80%);
  box-shadow: 1px 3px 15px rgba(23, 26, 27, 0.4);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  padding: 15px 35px;
  border-radius: 50px;
  letter-spacing: 0.25px;
  transition: all .3s;
}


.disabled-link{
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}



/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #ffffff!important;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(156, 156, 156, 0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #303030!important;
}

.background-header .main-nav .nav li:hover a {
  color:   #00a5f1!important;
}

.background-header .nav li a.active {
  color:   #00a5f1!important;
}

.dropdown-content .active{
    color:   #00a5f1!important;
  }

.header-area {
  background-color: #ffffff;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 90px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 85px;
  background: #ffffff;
}

.header-area .main-nav .logo {
  position: relative;
  line-height: 75px;
  color: #303030;
  width: 140px;
  font-size: 28px;
  font-weight: 700;
  margin-left: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 10px;
  padding-left: 10px;
}

.header-area .main-nav .nav li:last-child a ,
.background-header .main-nav .nav li:last-child a {
  color: rgb(255, 255, 255) !important;
  padding: 0px 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: rgb(255, 255, 255) !important;
}

.header-area .main-nav .nav li:last-child .main-red-button-hover a:hover,
.background-header .main-nav .nav li:last-child .main-red-button-hover a:hover {
  background: linear-gradient(to bottom, #00afdb 0%, #0289aa 80%) !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 16px;
  color: #303030;
  text-transform: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
  color: #303030;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color:   #8b979d!important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color:   #8b979d!important;
  opacity: 1;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #303030;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #303030;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #303030!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color:   #ffd82a!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 55px;
  width: 25px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 30px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #303030;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #303030;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #303030;
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #303030;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: #303030;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #303030;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #303030;
}

/* .header-area.header-sticky {
  min-height: 113px;
} */

/* .header-area .nav {
  margin-top: 30px;
} */

.header-area.header-sticky .nav li a.active {
  color:   #ffd82a;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
  
  .price .grey {
    font-size: 12px;
    align-self: center;
    margin-left: 2px;
    margin-right: 2px;
      }
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:last-child  ,
  .background-header .main-nav .nav li:last-child {
    display: none;
  }
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color:   #259dff !important;
    opacity: 1;
    font-weight: 800;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #303030;
    padding: 0px 0px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }

  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: none ;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 75px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;


  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color:   #ffd82a!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #00aeff;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }

  .main-new-button a {
    display: inline-block;
    background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    padding: 15px 25px;
    border-radius: 40px;
    letter-spacing: 0.25px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1;
  }

}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
    /* margin-top: 20px; */
  }
}


/* accessory modal (global) */
._acc-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.45); z-index: 99999; }
._acc-box { width: 360px; max-width: calc(100% - 32px); background:#fff; border-radius:20px; box-shadow:0 12px 30px rgba(0,0,0,0.25); overflow:hidden; font-family: "DM Sans", sans-serif; }
._acc-header { background:#E6F8FF; padding:12px 14px; display:flex; justify-content:space-between; align-items:center; }
._acc-body { padding:14px; font-size:14px; color:#222; }
._acc-body ul { list-style:none; margin:0; padding:0; max-height:260px; overflow:auto; }
._acc-body li { display:flex; align-items:center; justify-content:space-between; padding:8px 0; gap:8px; }
._acc-footer { padding:12px 14px; display:flex; justify-content:flex-end; gap:8px; background:#fff; }
._acc-skip { background:#f1f1f1; border:none; padding:8px 14px; border-radius:20px; cursor:pointer; }
._acc-proceed { padding:10px 18px; border-radius:26px; background: linear-gradient(180deg,#2bbcff,#00a5f1); color:#fff; border:none; cursor:pointer; }
._acc-close { background:none; border:none; font-size:18px; cursor:pointer; color:#303030; }
._acc-item-left { display:flex; align-items:center; gap:10px; flex:1; justify-content:space-between; }
._acc-price { color:#303030; white-space:nowrap; margin-left:10px; font-weight: 600; font-family: Arial, Helvetica, sans-serif; }

#_acc-sub {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dbebf1; /* subtle divider line */
  color: #303030;
  font-style: italic;
}


/* duration box base */
.duration-option {
  cursor: pointer;
  border-radius: 12px;
  padding: 6px 8px;
  user-select: none;
  transition: 
    transform 180ms cubic-bezier(.2,.9,.3,1),
    box-shadow 180ms cubic-bezier(.2,.9,.3,1),
    background-color 180ms linear,
    border-color 160ms linear;
  will-change: transform, box-shadow, background-color;
  transform: translateZ(0);
  border: 1px solid #E7EEF1;
}

/* hover (desktop) */
/* .duration-option:hover {
  box-shadow: 0 5px 14px rgba(11, 150, 230, 0.196);
} */

/* tap/press (just a soft feedback, not squish) */
.duration-option:active {
  transform: scale(0.985);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 80ms ease, box-shadow 80ms ease;
}

/* selected (active) */
.duration-option.active {
  background-color: #E6F8FF;
  border: 1px solid #B6E9FF;
  transform: scale(1.02) translateY(-1px); /* light pop */
}

/* text smoothness */
.duration-option h6,
.duration-option p {
  transition: color 160ms linear;
}

/* optional: consistent height */
.duration-option { min-height: 72px; }



/* Proceed button press animation */
._acc-footer ._acc-proceed {
  color: #fff;
  background: linear-gradient(180deg, #2bbcff 0%, #00a5f1 90%);
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 10px rgba(0, 165, 241, 0.3);
}

/* Tap / click effect */
._acc-footer ._acc-proceed:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 165, 241, 0.25);
}

/* Optional: subtle glow when hovered or focused (desktop) */
._acc-footer ._acc-proceed:hover,
._acc-footer ._acc-proceed:focus {
  box-shadow: 0 6px 14px rgba(0, 165, 241, 0.35);
  transform: scale(1.02);
}


/* ---------------------------
   Round subtle checkboxes
   --------------------------- */
._acc-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%; /* make it perfectly round */
  border: 1px solid #d5dee6; /* soft blue border */
  background: #f8fcff; /* pale white-blue background */
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* subtle blue glow when hovered */
._acc-checkbox:hover {
  background: #e9f6ff;
  border-color: #d9e7ee;
}

/* selected (checked) state with gradient fill */
._acc-checkbox:checked {
  background: linear-gradient(180deg, #2bbcff 0%, #00a5f1 90%);
  border-color: #00a5f1;
  box-shadow: 0 0 0 3px rgba(0,165,241,0.15);
}

/* the white checkmark */
._acc-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-radius: 1px;
}


/* smaller screens: scale it down slightly */
@media (max-width: 420px) {
  ._acc-checkbox {
    width: 20px;
    height: 20px;
  }
  ._acc-checkbox:checked::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 9px;
  }
}


/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 18px;
    background:#ffd82a;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #00aeff;
    border-radius: 50%;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 170px 0px 130px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: '';
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 367px;
  height: 532px;
}


.main-banner:before {
  content: '';
  background-image: url(../images/banner-right-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 100px;
  width: 700px;
  height: 580px;
}

.main-banner .item {
  margin-right: 35px;
}

.main-banner .item h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #ffd82a;
  margin-bottom: 15px;
}

.main-banner .item h1 {
  font-size: 94px;
  font-weight: 700;
  color: #303030;
  line-height: 96px;
  margin-left: 15px;
  margin-right: 10px;
  margin-top: 15px;
}

.main-banner .item h1 em {
  color: #00aeff;
  font-style: normal;
}

.main-banner .item h1 span {
  color: #ffd82a;
}

.main-banner .item p {
  margin: 20px 0px;
}

.main-banner .item .down-buttons {
  display: inline-flex;
}

.main-banner .item .down-buttons .call-button i {
  margin-left: 20px;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  color: #fff;
  font-size: 20px;
}

.main-banner .item .down-buttons .call-button a {
  color: #ffd82a;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}

.main-banner .owl-dots {
  margin-top: 60px;
  counter-reset: dots;
  margin-left: 15px;
}

.main-banner .owl-dot:before {
  counter-increment:dots;
  content: counter(dots);
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
  color: #303030;
  width: 15px;
  display: inline-block;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all .5s;
}

.main-banner .active:before {
  color:   #ffd82a;
  border-bottom: 3px solid   #ffd82a;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/
.our-services .services-left-dec img {
  opacity: 0.5;
  width: 227px;
  height: 428px;
  left: -80px;
  top: -140px;
  position: absolute;
  z-index: 1;
}

.our-services .services-right-dec img {
  opacity: 0.2;
  width: 305px;
  height: 305px;
  right: 15px;
  bottom: -120px;
  position: absolute;
  z-index: 1;
}

.our-services .container {
  position: relative;
}

.our-services {
  position: relative;
  margin-top: 0px;
  padding-top: 70px;
}

.our-services .section-heading {
  text-align: center;
  margin-bottom: 30px;
  align-items: center;
}

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

.our-services .item {
  text-align: center;
  margin: 10px;
  border-radius: 20px;
  background-color: #ffffff;
}

.our-services .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #303030;
  margin-top: 60px;
  margin-bottom: 30px;
  line-height: 0px;
}

.our-services .item .icon {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 20px;
}


.our-services .item p {
  margin-top: 20px;
  padding-top: 20px;
}

.our-services .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.our-services .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ffd82a;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.our-services .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

/* 
---------------------------------------------
Features
--------------------------------------------- 
*/
#features {
  padding-top: 110px;
}

.features .features-content {
  z-index: 2;
  position: relative;
  background-color: #ffffff;
  border-radius: 50px;
  padding-top: 0px;
  padding-bottom: 50px;
}

.features-item {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 50px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  -moz-transition: background-color .5s;
}

.features-content p {
  padding-top: 15px;
  color: #b9b9b9;
}
.section-heading h2 {
  text-align: center;
  margin-bottom: 0px;
}

.section-heading-strip h2 {
  text-align: center;
  margin-bottom: 0px;
}

.features .member-features {
  z-index: 2;
  position: relative;
  background-color: #303030;
  border-radius: 50px;
  padding-top: 0px;
  padding-bottom: 50px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.features-item {
  text-align: center;
  padding-top: 00px;
  padding-bottom: 0px;
  border-radius: 50px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  -moz-transition: background-color .5s;
}

.member-features p {
  padding-top: 15px;
  color: #b9b9b9;
}
.section-heading h2 {
  text-align: center;
  margin-bottom: 0px;
}


.features-item:hover .line-dec {
  background-color: rgba(255,255,255,0.3);
  width: 40px;
}

.first-feature .second-feature{
padding-top: 0px;
}


.first-feature .icon {
  background-image: url(../images/features-icon-black-01.png);
  background-repeat: no-repeat;
}

.second-feature .icon {
  background-image: url(../images/features-icon-black-02.png);
  background-repeat: no-repeat;
}

.third-feature .icon {
  background-image: url(../images/features-icon-black-03.png);
  background-repeat: no-repeat;
}

.fourth-feature .icon {
  background-image: url(../images/features-icon-black-04.png);
  background-repeat: no-repeat;
}


.fifth-feature .icon {
  background-image: url(../images/features-icon-black-05.png);
  background-repeat: no-repeat;
}

.sixth-feature .icon {
  background-image: url(../images/features-icon-black-06.png);
  background-repeat: no-repeat;
}

.seventh-feature .icon {
  background-image: url(../images/features-icon-black-07.png);
  background-repeat: no-repeat;
}

.eigth-feature .icon {
  background-image: url(../images/features-icon-black-08.png);
  background-repeat: no-repeat;
}

.ninth-feature .icon {
  background-image: url(../images/features-icon-black-09.png);
  background-repeat: no-repeat;
}

.tenth-feature .icon {
  background-image: url(../images/features-icon-black-10.png);
  background-repeat: no-repeat;
}

.eleventh-feature .icon {
  background-image: url(../images/features-icon-black-11.png);
  background-repeat: no-repeat;
}

.twelfth-feature .icon {
  background-image: url(../images/features-icon-black-12.png);
  background-repeat: no-repeat;
}

.thirteenth-feature .icon {
  background-image: url(../images/features-icon-black-13.png);
  background-repeat: no-repeat;
}

.forteenth-feature .icon {
  background-image: url(../images/frame.png);
  background-repeat: no-repeat;
}

.fifteenth-feature .icon {
  background-image: url(../images/motor.png);
  background-repeat: no-repeat;
}

.sixteenth-feature .icon {
  background-image: url(../images/display.png);
  background-repeat: no-repeat;
}

.seventeenth-feature .icon {
  background-image: url(../images/features-icon-black-05.png);
  background-repeat: no-repeat;
}

.eigtheen-feature .icon {
  background-image: url(../images/features-icon-black-16.png);
  background-repeat: no-repeat;
}

.ninteen-feature .icon {
  background-image: url(../images/features-icon-black-17.png);
  background-repeat: no-repeat;
}

.twenty-feature .icon {
  background-image: url(../images/features-icon-black-18.png);
  background-repeat: no-repeat;
}

.twentyone-feature .icon {
  background-image: url(../images/features-icon-black-19.png);
  background-repeat: no-repeat;
}

.twentytwo-feature .icon {
  background-image: url(../images/features-icon-black-20.png);
  background-repeat: no-repeat;
}
.twentythree-feature .icon {
  background-image: url(../images/features-icon-black-21.png);
  background-repeat: no-repeat;
}
.twentyfour-feature .icon {
  background-image: url(../images/features-icon-black-22.png);
  background-repeat: no-repeat;
}
.twentyfive-feature .icon {
  background-image: url(../images/features-icon-black-23.png);
  background-repeat: no-repeat;
}

.twentysix-feature .icon {
  background-image: url(../images/features-icon-black-26.png);
  background-repeat: no-repeat;
}

.twentyeight-feature .icon {
  background-image: url(../images/features-icon-black-28.png);
  background-repeat: no-repeat;
}

.twentynine-feature .icon {
  background-image: url(../images/features-icon-black-29.png);
  background-repeat: no-repeat;
}

.twentyseven-feature .icon {
  background-image: url(../images/features-icon-black-27.png);
  background-repeat: no-repeat;
}

.twentyeight-feature .icon {
  background-image: url(../images/features-icon-black-30.png);
  background-repeat: no-repeat;
}

.twentynine-feature .icon {
  background-image: url(../images/features-icon-black-31.png);
  background-repeat: no-repeat;
}

.thirty-feature .icon {
  background-image: url(../images/features-icon-black-32.png);
  background-repeat: no-repeat;
}

.thirtyone-feature .icon {
  background-image: url(../images/features-icon-black-33.png);
  background-repeat: no-repeat;
}

.service1 .icon {
  background-image: url(../images/service1.png);
  background-repeat: no-repeat;
}

.service2 .icon {
  background-image: url(../images/service2.png);
  background-repeat: no-repeat;
}

.service3 .icon {
  background-image: url(../images/service3.png);
  background-repeat: no-repeat;
}

.ambassador {
  background-image: url(../images/features-icon-black-14.webp);
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
  background-size: contain;
  margin: 10px auto;
  transition: all 0.5s;
} 

.ambassador2 {
  background-image: url(../images/features-icon-black-15.webp);
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
  background-size: contain;
  margin: 10px auto;
  transition: all 0.5s;
}


.ambassador3 {
  background-image: url(../images/features-icon-black-21.png);
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
  background-size: contain;
  margin: 10px auto;
  transition: all 0.5s;
}


.story01 {
  background-image: url(../images/story-01.png);
  background-repeat: no-repeat;
  height: 150px;
  background-size: contain;
  transition: all 0.5s;
}

.story02 {
  background-image: url(../images/story-02.png);
  background-repeat: no-repeat;
  height: 150px;
  background-size: contain;
  transition: all 0.5s;
}

.features-item .icon {
  width: 90px;
  height: 90px;
  background-size: contain;
  margin: 10px auto;
  transition: all 0.5s;
}


.features-item h4 {
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 30px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #303030;
  position: relative;
  transition: all 0.5s;
}

.features-item .line-dec {
  width: 100px;
  height: 2px;
  background-color: rgba(185, 233, 255, 0.3);
  margin: 25px auto;
  transition: all 0.5s;
  margin-bottom: 0px;
  margin-top: 30px;
}

.skills-content {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  background-color: #f5f5f5;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 110px 0px 50px 0px;
}

.skill-item {
  text-align: center;
}

/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.our-portfolio .portfolio-left-dec img {
  width: 562px;
  height: 450px;
  left: 5px;
  top: 160px;
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.our-portfolio {
  padding-top: 70px;
  margin-top: 0px;
  position: relative;
}

.our-portfolio .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.our-portfolio .section-heading h2 {
  text-align: center;
  margin: 0px 60px 0px 60px;
  margin-bottom: -5px;
  position: relative;
  z-index: 1;
}

.our-portfolio {
  margin: 0px 0px;
}

.our-portfolio .item .thumb {
  position: relative;
}

.our-portfolio .item {
background-color: #eaf7f3;
border: 1px solid #caf5e7;
box-shadow: 1px 1px 15px rgba(98, 96, 75, 0.1);
border-radius: 20px;
padding-top: 30px;
padding-bottom: 10px;
padding-left: 25px;
padding-right: 25px;
min-height: 320px;
margin-left: 10px;
margin-right: 10px;
}

.our-portfolio .item .hover-effect .inner-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: right;
}

.our-portfolio .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #6cb8a1;
  margin-bottom: 15px;
}

.our-portfolio .item p {
  font-size: 16px;
  font-weight: 500;
  color: #303030;
  margin-bottom: 15px;
  margin-top: 30px;
}


.our-portfolio .item .hover-effect .inner-content span {
  font-size: 15px;
  color: #fff;
}

.our-portfolio .item .thumb img {
  border-radius: 20px;
  transition: all .1s;
}

.owl-portfolio .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

.owl-portfolio .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
  bottom: 40%;

}

.owl-portfolio .owl-nav .owl-next {
  position: absolute;
  right: -15px;
  bottom: 40%;

}

.owl-portfolio .owl-nav .owl-prev span {
    color: transparent;
}

.owl-portfolio .owl-nav .owl-prev span:hover::after{
background-color: rgb(0, 126, 63, 0.2);}

.owl-portfolio .owl-nav .owl-prev span:after {
  width: 54px;
  height: 54px;
  background-color: rgb(0, 126, 63, 0.1);
  backdrop-filter: blur(3px);
  display: inline-block;
  text-align: center;
  line-height: 52px;
  border-radius: 50%;
  color: #007e3f;
  content: '\f104';
  font-size: 30px;
  font-family: 'FontAwesome';
  transition: all .1s;
}

.owl-portfolio .owl-nav .owl-next span {
    color: transparent;
}

.owl-portfolio .owl-nav .owl-next span:hover::after{
  background-color: rgb(0, 126, 63, 0.2);}


.owl-portfolio .owl-nav .owl-next span:after {
  width: 54px;
  height: 54px;
  background-color: rgb(0, 126, 63, 0.1);
  backdrop-filter: blur(3px);
  display: inline-block;
  text-align: center;
  line-height: 52px;
  border-radius: 50%;
  color: #007e3f;
  content: '\f105';
  font-size: 30px;
  font-family: 'FontAwesome';
  transition: all .1s;
}

.owl-portfolio .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.owl-portfolio .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ffd82a;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.owl-portfolio .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
/* 
---------------------------------------------
Pricing
--------------------------------------------- 
*/
.pricing-tables .tables-left-dec img {
  width: 318px;
  height: 651px;
  left: 0;
  top: 120px;
  position: absolute;
  z-index: 1;
}

.pricing-tables .tables-right-dec img {
  opacity: 0.5;
  width: 229px;
  height: 548px;
  right: 0;
  top: 45px;
  position: absolute;
  z-index: 1
}

.pricing-tables .container{
  margin: 0 auto;
  position: relative;
}

.pricing-tables {
  z-index: 2;
  position: relative;
  padding-top: 10px;
  padding-bottom: 60px;
  margin-top: 0px;
  margin-left: 0px;
}

.pricing-tables .section-heading {
  text-align: center;
  margin-bottom: 25px;
  padding: 10px;
}

.pricing-tables .fitem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pricing-tables .item{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 20px;
  margin: 12px;
  min-width: 150px;
}

.pricing-tables .item span {
  font-size: 22px;
  color: #00aeff;
  font-weight: 600;
  display: block;
  margin-top: -2px;
}

.pricing-tables .first-item {
  background:#303030;
  border: 2px solid #b9b9b9;
  margin-bottom: 20px;
}

.pricing-tables .second-item {
  background:#303030;
  border: 2px solid #b9b9b9;
  margin-bottom: 20px;
}

.pricing-tables .third-item {
  background:#303030;
  border: 2px solid #b9b9b9;
  margin-bottom: 20px;
}

.pricing-tables .fourth-item {
  background:#303030;
  border: 2px solid #b9b9b9;
  margin-bottom: 20px;
}
/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
.contact-dec img {
  position: absolute;
  z-index: 1;
  width: 459px;
  height: 702px;
  right: 0;
  bottom: -400px;
  opacity: 0.5;
}

.contact-left-dec img {
  position: absolute;
  z-index: 1;
  width: 174px;
  height: 319px;
  left: 0;
  top: 120px;
}


.contact-us {
  z-index: 2;
  position: relative;
  padding-top: 0px;
  margin-top: 0px;
}

.contact-us .section-heading h2 {
  justify-content: center;
  margin-bottom: 40px;
}
 
.contact-us #map iframe {
  border-radius: 23px;
  position: relative;
  z-index: 2;
}

.contact-us .info {
  margin-top: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 5;
  display: inline-flex;
}

.contact-us .info span {
  opacity: 1;
  display: inline-flex;
  margin-right: 30px;
}

.contact-us .info span i {
  float: left;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background: #00a5f1;
  background: linear-gradient(105deg,  #53c9ff 0%,  #00a5f1 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin-left: 10px;
  margin-right: 15px;
}

.contact-us .info span a {
  color:   #00afdb;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-transform: none;
}

form#contact {
  position: relative;
  z-index: 2;
  background-image: url(../images/contact-form-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0px 0px 60px rgba(45, 51, 61, 0.2);
  padding: 60px 60px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 2px solid #d4e9fc;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #303030;
  padding: 0px 0px;
  margin-bottom: 35px;
}

form#contact input::placeholder {
  color: #afafaf;
}

form#contact button {
  display: inline-block;
  background: linear-gradient(to bottom,#60cdff 0%, #00a5f1 80%);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform:none;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background: linear-gradient(to bottom, #81d7ff 0%, #19b6ff 80%);
}
/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
.footer-dec {
  width: 100%;
}

footer {
  position: relative;
}

footer .footer-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 30px;
}

footer .about .logo img {
  width: 150px; 
  margin-bottom: 10px;
}

footer .about a {
  color: #afafaf;
  font-weight: 300;
}

footer .about ul {
  margin-top: 30px;
}

footer .about ul li {
  display: inline-block !important;
  margin-right: 15px;
}

footer .about ul li a {
  width: 32px;
  height: 32px;
  background: linear-gradient(to bottom,#8ecaff 0%, #00aeff 80%);
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  font-size: 15px;
}

footer .about ul li a:hover {
  background-color: #ffd82a;
}

footer .footer-item ul li {
  display: block;
  margin-bottom: 12px;
}

footer .footer-item ul li:last-child {
  margin-bottom: 0px;
}

footer .footer-item ul li a {
  font-size: 15px;
  color: #afafaf;
  transition: all .3s;
}

footer .footer-item ul li a:hover {
  color: #ffd82a;
}

footer .footer-item p {
  font-size: 15px;
  color: #afafaf;
  margin-top: -5px;
}

footer .footer-item form {
  background: linear-gradient(to bottom,#8ecaff 0%, #00aeff 80%);
  height: 46px;
  border-radius: 23px;
  position: relative;
  margin-top: 15px;
}

footer .footer-item form input {
  line-height: 46px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0px 20px;
  outline: none;
}

footer .footer-item form input::placeholder {
  color: #fff;
}

footer .footer-item form button {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
}

footer .copyright p {
  text-align: center;
  border-top: 1px solid rgb(226, 236, 243);
  color: #afafaf;
  margin-top: 50px;
  padding: 20px 0px;
  font-weight: 400;
  font-size: 14px;
}

footer .copyright p a {
  color: #ffd82a;
}
 /*---------------------------------------
      ABOUT              
  -----------------------------------------*/
  #about {
    padding-bottom: 0;
  }

  .about-info {
      padding-top: 20px;
    padding-bottom: 50px;
  }

  .about-info h2{
color: #fff;
padding-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
font-family: 'DM Sans', sans-serif;
font-size: 30px;
font-weight: 600;
  }

  .about-info h6{
    color: rgb(168, 168, 168);
    padding-left: 10px;
      }

  .about-info .section-title {
    padding-bottom: 0px;
    padding-top: 10px;
    
  }

  .about-image {
    position: relative;
    padding: 0px;
    max-width: 100%;
    
  }

.about-info p{
  padding-left: 5px;
  padding-bottom: 10px;
}



.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: auto;
  overflow: hidden;
  background-color: #c71515;
  white-space: nowrap;
}


.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 25s linear infinite;
  }
  

.marquee span {
  float: left;
  width: 100%;
  overflow: hidden;
}




/* Note Style */
.note{
  background-color: #14181a;
  text-align: left;
  padding: 10px;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 20px;
  margin-bottom: 43px;
}

/* Brand */
.brand-img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: .5s;
}

.brand-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Carousel Hero */
#template-mo-zay-hero-carousel .carousel-indicators li {
  margin-top: -50px;
  background-color: #59ab6e;
}
#template-mo-zay-hero-carousel .carousel-control-next i,
#template-mo-zay-hero-carousel .carousel-control-prev i {
  color: #59ab6e !important;
  font-size: 2.8em !important;
}

/* Carousel Brand */
.tempaltemo-carousel .h1 {
  font-size: .5em !important;
  color: #000 !important;
}

/* FAQ */

*,
*::before,
*::after{
  margin: 0;
  padding: 0;
}

section{
  padding-top: 150px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.containernew {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accordion-item{
  background-color: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d8dfe6;
}

.accordion-link{
  font-size: 22px;
  color: #303030;
  text-decoration: none;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  font-weight: 500;
}

.accordion-link i{
  color: #303030;
  padding: 5px;
}

.accordion-link .ion-md-remove{
  display: none;
}

.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  color: #303030;
  transition: max-height 700ms;
}

.answer::before{
  content: "";
  position: absolute;
  width: 3px;
  height: 90%;
  background-color:#00a5f1 ;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.answer p{
  color: #303030;
  font-size: 17px;
  padding-right: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  line-height: 1.5;
}

.accordion-item:target .answer{
  max-height: 50rem;
}

.accordion-item:target .accordion-link .ion-md-add{
  display: none;
}

.accordion-item:target .accordion-link .ion-md-remove{
  display: block;
}

/* Featured Page Style */

.featured-page {
	margin-top: 100px;
	margin-bottom: 0px;
}
.featured-page .section-heading {
	margin-top: 0px;
	margin-bottom: 0px;

}
.featured-page #filters {
	margin-top: 20px;
	text-align: right;
}

/* SEARCH Wrapper: input + result count */
#cycle-name-search {
  display: inline-flex !important;
  align-items: center;
  vertical-align: middle;
}

/* Search input pill */
#cycle-search-input {
  box-sizing: border-box !important;
  padding: 8px 15px 8px 38px !important; /* space for icon */
  width: 220px !important;
  min-width: 0 !important;
  border-radius: 20px !important;
  border: 1.5px solid #ddd !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 14px !important;
  outline: none !important;
  transition: width 0.38s ease, box-shadow .2s ease !important;

  /* add SVG search icon */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='6.5' cy='6.5' r='5.5'/><line x1='11' y1='11' x2='14' y2='14'/></svg>") no-repeat 12px center;
  background-size: 16px 16px;
}

/* Expand on focus */
#cycle-search-input:focus {
  width: 260px !important;
  border-color: #00aeff !important;
  box-shadow: 0 6px 18px rgba(0,123,255,0.12) !important;
}

/* Custom clear (×) button */
#cycle-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00aeff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><line x1='4' y1='4' x2='12' y2='12' stroke='white' stroke-width='2' stroke-linecap='round'/><line x1='12' y1='4' x2='4' y2='12' stroke='white' stroke-width='2' stroke-linecap='round'/></svg>") center no-repeat;
  background-size: 10px 10px;
  cursor: pointer;
  margin-right: 0px;
  opacity: 1; /* make sure it's visible */
  transition: background-color 0.2s ease;
}

/* Hover effect for clear button */
#cycle-search-input::-webkit-search-cancel-button:hover {
  background-color: #00aeff; /* darker blue on hover */
}

/* Result count with fixed width (prevents shifting) */
#search-count {
  min-width: 60px;   /* enough space for “100 results” */
  text-align: right;
  color: #6b7280;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  #cycle-search-input { width: 240px !important;
font-size: 16px !important; }
  #cycle-search-input:focus { width: 280px !important; }
  #search-count { min-width: 60px; font-size: 12px; }
}



/* Filter buttons */

.filters button {
	color: #303030;
	border: none;
  border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	background-color: #e8f4f9;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
}


/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}
.price {
  color: #007BFF;
  font-weight: bold;
  margin: 6px 0;
}
.rent-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #28a745;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.rent-btn:hover {
  background: #218838;
}
/* Hide class for animation */
.product-card.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}


#filter button {
	outline: none;
}

#filter .btn-primary.focus,
.btn-primary:focus {
	background-color: #00aeff!important;
  color: #ffffff!important;
	box-shadow: none!important;
}

#filters .active {
	color: #ffffff;
	border: none;
  border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	background-color: #00aeff;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
}

.product-card {
  /* opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none; */
}

.product-card.show {
  /* display: block;
  opacity: 1;
  transform: scale(1); */
}

#filters .filter-btn.active {
  background-color: #00aaff !important; /* override bootstrap */
  color: #fff !important;
  border-color: #00aaff !important;
  font-weight: bold;
}

#filter .btn-new.focus,
.btn-new:focus {
	color: #007e3f!important;
	box-shadow: none!important;
}

#filters .btn {
	color: #303030;
  border: none;
  background-color: #e8f4f9;
  border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
}

#filters .btn-new {
	color: #303030;
  border: none;
  background-color: #e8f4f9;
  border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
}


#filters .btn-primary {
	color: #303030;
	border: none;
  border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	background-color: #e8f4f9;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 10px;
}


.featured .featured-item {
  position: relative;
	margin-bottom: 25px;
	text-decoration: none;
  padding: 10px;
}

.featured .col{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.featured .main-blue-button-hover{
  padding-top: 0px;
  width: auto;
  margin-left: 0px;
}

.featured .main-new-border-button-hover{
  padding-top: 0px;
  width: auto;
  margin-left: 0px;
}

.featured-item .tag{
  position: absolute;
  top: 6%;
  /* right: 6%; */
  left: 6%;
  overflow: hidden;
  background-color: #f7ff8a;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 20px;
  text-align: center;
}

.featured-item .outofstock{
  position: absolute;
  top: 51%;
  right: 5%;
  overflow: hidden;
  background-color: #c71515;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.featured-item .available{
  position: absolute;
  top: 60%;
  right: 5%;
  overflow: hidden;
  background-color: #ffe6e6;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #4d4d4d;
}

.featured .featured-item h4 {
	transition: all 0.5s;
  color: #303030;
  font-weight: 800;
  padding-top: 15px;
  font-size: 18px;
}

.featured .featured-item h6 {
	transition: all 0.5s;
  color: #fff;
  padding-top: 10px;
  font-size: 16px;
  font-family:'DM Sans', sans-serif;
}



/* Isotope Transitions
------------------------------- */
.isotope,
.isotope .item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:         top, left, opacity;
          transition-property:         transform, opacity;
}

.page-navigation ul {
	text-align: center;
	border-top: 1px solid rgb(82, 82, 82);
	padding: 40px  0px 0px 0px;
	margin: 10px 0px 0px 0px;
}
.page-navigation ul li {
	display: inline-block;
  padding: 5px;
}
.page-navigation ul li a {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 38px;
	border: 1px solid #eee;
	border-radius: 5px;
	font-weight: 600;
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.5s;
}
.page-navigation ul li a:hover,
.page-navigation ul li.current-page a {
	background: linear-gradient(to bottom, #00afdb 0%, #0289aa 80%);
	border-color: #00aeff;
	color: #fff;
}



/* Slider */
* {
  box-sizing: border-box;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 22%;
  height: auto; /* Should be removed. Only for demonstration */
}

.columnElectric{
  float: left;
  width: 25%;
  padding: 0px;
  height: auto; /* Should be removed. Only for demonstration */
}
.column-new {
  width: 50%;
  padding: 0px;
}

/* Single Product Style */

@font-face {
  font-family: 'flexslider-icon';
  src: url('../fonts/flexslider-icon.eot');
  src: url('../fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('../fonts/flexslider-icon.woff') format('woff'), url('../fonts/flexslider-icon.ttf') format('truetype'), url('../fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}



.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  background: #303030;
  border: 4px solid #303030;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 26px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }

  .columnservice7 {
    width: 100%;
      }

  .owl-portfolio .owl-nav {
    position: absolute;
    top: 65%;
    width: 100%;
  }

  .owl-portfolio .owl-nav .owl-prev {
    position: absolute;
    left: -5px;
    bottom: 90px;
  
  }
  
  .owl-portfolio .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    bottom: 90px;

  }

  .owl-portfolio .owl-nav .owl-prev span:after {
    width: 54px;
    height: 54px;
    background-color: rgb(0, 126, 63, 0.1);
    backdrop-filter: blur(3px);
    display: inline-block;
    text-align: center;
    line-height: 52px;
    border-radius: 50%;
    color: #007e3f;
    content: '\f104';
    font-size: 30px;
    font-family: 'FontAwesome';
    transition: all .1s;
  }
  
  .owl-portfolio .owl-nav .owl-next span:after {
    width: 54px;
    height: 54px;
    background-color: rgb(0, 126, 63, 0.1);
    backdrop-filter: blur(3px);
    display: inline-block;
    text-align: center;
    line-height: 52px;
    border-radius: 50%;
    color: #007e3f;
    content: '\f105';
    font-size: 30px;
    font-family: 'FontAwesome';
    transition: all .1s;
  }

  .marquee--inner {
    display: block;
    width: 200%;
    position: absolute;
    animation: marquee 10s linear infinite;
    }

  .main-banner .item h1 {
    font-size: 50px;
    font-weight: 700;
    color: #303030;
    line-height: 54px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
  }

}

.single-product .product-slider {
	padding: 0px;
  padding-bottom: 15px;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flexslider {
	border: none!important;
}

#carousel {
	margin-top: 20px;
}

#carousel .slides li {
	width: 150px!important;

}

.single-product .right-content{
margin-left: 20px;
}


.single-product .right-content h4 {
	font-size: 17px;
	font-weight: 700;
  color: #303030;
  padding-top: 35px;
  padding-left: 15px;
}
.single-product .right-content h5 {
	color: #00aeff;
	font-size: 17px;
	font-weight: 700;
	margin-top: 10px;
  padding-left: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* .single-product .right-content h6 {
	color: #00aeff;
	font-size: 14px;
	font-weight: 700;
	margin-top: 0px;
  padding-left: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} */

.single-product .right-content p {
	margin-top: 5px;
  padding-left: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.single-product .right-content .rs{
  font-size: 22px;
  color: #00aeff;
  font-family: 'Courier New', Courier, monospace;
}
.single-product .right-content span {
	font-size: 14px;
	/* color: #c7c7c7; */
	font-weight: 500;
	display: inline-block;
}
.single-product .right-content label {
	font-size: 14px;
	color: #ffffff;
  padding-left: 15px;
}
.single-product .right-content .quantity-text {
	margin-left: 10px;
	width: 44px;
	height: 44px;
	line-height: 42px;
	font-size: 14px;
	font-weight: 700;
	color: #4a4a4a;
	display: inline-block;
	text-align: center;
	outline: none;
	border: 1px solid #eee;
}
.single-product .right-content .button {
	margin-left: 15px;
	cursor: pointer;
	background: linear-gradient(to bottom,#00aeff 0%, #0172ce 80%);
	outline: none;
	border-radius: 5px;
	padding: 10px 15px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: all 0.5s;
	box-shadow: none;
	border: none;
}
.single-product .right-content .down-content span {
	margin-bottom: 0px;
	display: inline-block;
	margin-left: 8px;
	color: #aaa;
}
.single-product .right-content .down-content span a {
	color: #aaa;
	font-weight: 400;
	margin-left: 4px;
	transition: all 0.5s;
}
.single-product .right-content .down-content span a:hover {
	color: #00aeff;
}
.single-product .right-content .down-content span a:hover i {
	background: linear-gradient(to bottom, #00afdb 0%, #0289aa 80%);
}
.single-product .right-content .down-content span a i {
	transition: all 0.5s;
	background-color: #aaa;
	width: 26px;
	height: 26px;
	display: inline-block;
	text-align: center;
	line-height: 26px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	margin-right: 5px;
}
.single-product .right-content .down-content .categories {
	border-top: 1px solid #eee;
	margin-top: 30px;
	padding: 10px 0px;
}
.single-product .right-content .down-content .share {
	border-top: 1px solid #eee;
	padding: 10px 0px;
}
.single-product .right-content .down-content h6 {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
}

body {
	font-family: 'DM Sans', sans-serif;
	transition: all 0.5s;
}
p {
	margin-bottom: 0px;
	font-size: 16px;
	color: #303030;
	line-height: 24px;
}
a {
	text-decoration: none!important;
}

.copyright-text {
	text-transform: uppercase;
}

.main-button a {
	background: linear-gradient(to bottom,#00aeff 0%, #0172ce 80%);
	border-radius: 5px;
	padding: 10px 15px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.4px;
	text-decoration: none;
	transition: all 0.5s;
}
.main-button a:hover {
	opacity: 0.7;
}
.section-heading {
	margin-top: 65px;
	margin-bottom: 30px;
  padding-left: 0px;
}

.section-heading .line-dec {
	width: 30px;
	height: 5px;
	background: linear-gradient(to bottom,#49c5ff 0%, #00a5f1 80%);
}

.section-heading h1 {
	font-size: 80px;
	font-weight: 500;
	color: #303030;
	margin-top: 20px;
  margin-bottom: 6px;
  text-align: center;
  line-height: 1.1;
}


.section-heading span {
	font-size: 60px;
	font-weight: 500;
	color: #b4bbc0;
	margin-top: 20px;
  margin-bottom: 6px;
  text-align: left;
  line-height: 1.1;
}


.section-heading2 span {
font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffd82a;
}

.section-heading-strip h1 {
	font-size: 68px;
	font-weight: 400;
	color: #ffffff;
	margin-top: 0px;
  margin-bottom: 10px;
  text-align: center;
}

.section-heading-strip h2{
  font-size: 22px;
  min-width: 100px;
  font-weight: 400;
  color: #a4afb5;
  text-align: center;
  padding-top: 0px;
}

.section-heading h2{
  font-size: 34px;
  min-width: 100px;
  font-weight: 400;
  color: #303030;
  text-align: center;
  padding-top: 0px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1240px) {
  .main-banner::before {
    width: 340px;
    height: 400px;
    top: 325px;
  }
}

@media (max-width: 1024px) {
  .main-banner::before {
  }
  .main-banner .item {
    margin-right: 0px;
  }
  .main-banner  {
    padding: 125px 0px 130px 0px;
  }
  .about-us .section-heading h2 {
    margin-right: 0px;
  }
  .fact-item {
    text-align: center;
  }
  .fact-item .icon {
    margin: 0 auto;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .our-portfolio .section-heading h2,
  .pricing-tables .section-heading h2 {
    margin: 0px;
  }
  .pricing-tables .item {
    margin-bottom: 20px;
  }

  .contact-us .section-heading h2 {
    margin-right: 0px;
    text-align: center;
  }
 
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact {
    padding: 45px 20px;
  }
  .footer-item {
    margin-bottom: 45px;
  }
  .subscribe-newsletters {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .main-banner .item .down-buttons {
    display: inline-block;
  }

  .main-blue-banner-button {
    text-align: left;
    margin: 15px;
    padding-top: 35px;
  }
  
    .main-red-banner-button {
    text-align: left;
    margin: 15px;
    padding-top: 35px;
  }
  .main-blue-banner-button a {
    background: linear-gradient(to bottom,#2bbcff 0%, #00a5f1 80%);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    padding: 18px 30px;
    border-radius: 90px;
    letter-spacing: 0.25px;
  }
  
    .main-red-banner-button a {
    background: linear-gradient(to bottom,#c71515 0%, #b31717 80%);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    padding: 18px 30px;
    border-radius: 90px;
    letter-spacing: 0.25px;
  }


  .main-black-outline-button a {
    background-color: transparent;
    border: 1px solid #ffffff;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: none;
    padding: 15px 50px;
    border-radius: 90px;
    letter-spacing: 0.25px;
  }

  .section-heading-strip h1 {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .section-heading-strip h2{
    font-size: 18px;
    min-width: 100px;
    font-weight: 400;
    color: #beccd3;
    text-align: center;
    padding-top: 0px;
    line-height: 1.5;
  }

  .main-blue-banner-button a:hover {
    background: linear-gradient(to bottom,#303030 0%, #303030 80%);
    box-shadow: 0px 7px 40px #c3c2c2;}
  

  .main-banner .item .down-buttons .main-blue-button {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .main-banner .item .down-buttons .call-button a {
    margin-left: 0px;
  }
  .subscribe .inner-content:after {
    z-index: -1;
  }
  .subscribe .inner-content {
    padding: 60px 30px 100px 30px;
  }
  .subscribe .inner-content form input {
    width: 49%;
  }
  .subscribe .inner-content form button {
    width: 100%;
    background-color: #ffd82a;
    margin-top: 30px;
  }

  .contact-left-dec {
    display: none;
  }
  .contact-us .info {
    display: inline-block;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .contact-us .info span {
    margin-bottom: 0px;
    padding-left: 10px;
  }

  .section-heading h1 {
    font-size: 54px;
    font-weight: 500;
    color: #303030;
    margin-top: 20px;
    margin-bottom: 6px;
    text-align: center;
  }


  .section-heading span {
    font-size: 40px;
    font-weight: 500;
    color: #b4bbc0;
    margin-top: 30px;
    margin-bottom: 6px;
    text-align: left;
  }

  .section-heading h2{
    font-size: 24px;
    min-width: 100px;
    font-weight: 400;
    color: #303030;
    text-align: center;
    padding-top: 10px;
    line-height: 24px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  }


}

/* Responsive Style */
@media (max-width: 991px) {
	.featured-page #filters {
		text-align: right;
	} 
	.single-product .right-content {
		margin-top: 30px;
    margin-left: 0px;
	}

  /* .single-product .right-content h6{
    padding-left: 15px;
  } */
	.about-page .right-content {
		margin-top: 30px;
	}
	.contact-page .right-content {
		margin-top: 30px;
	}
	.contact-page .right-content .col-md-6,
	.contact-page .right-content .col-md-12 {
		padding: 0px;
	}
	.featured-page {
		margin-top: 60px;
  }


}

@media (max-width: 767px) {
  .dropdown {
    background-color: #f7f7f7;
    color: #303030;
    border-bottom: 1px solid #f7f7f7;
  }

  .dropbtn {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px;
    background: #f7f7f7 !important;
    color: #303030 !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
     }

     .dropdown-content {
      display: none;
       }
      
       .dropdown-content a {
      display: none;
      }

	.featured-page #filters {
		margin-top: 15px;
		text-align: left;
	}

}

/* 1) CTA: always fixed & above everything */
.book-now, .sticky-booking, .main-blue-button {
  position: fixed !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 999999 !important;
  width: calc(100% - 40px) !important;
  max-width: 520px !important;
  display: block !important;
  pointer-events: auto !important;
}

/* =========================================
   Riders Gallery - Horizontal Flex Scroll
   ========================================= */
.riders-gallery-section {
  width: 100%;
}

.riders-gallery-title {
  font-size: 16px;
  font-weight: 700;
  color: #303030 !important;
  margin-bottom: 15px;
  text-align: start;
}

.riders-gallery-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding-bottom: 15px;
  margin: 0 -15px !important;
  padding-left: 15px;
  padding-right: 15px;
  scrollbar-gutter: stable; /* Optional: prevents layout shift */
}

/* Hide scrollbar ONLY on mobile for clean look */
@media (max-width: 767px) {
  .riders-gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .riders-gallery-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* Optional: Custom scrollbar style for desktop to look premium */
@media (min-width: 768px) {
  .riders-gallery-grid::-webkit-scrollbar {
    height: 6px;
  }
  .riders-gallery-grid::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
  }
  .riders-gallery-grid::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
  }
  .riders-gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #bdbdbd;
  }
}

.rider-image-card {
  flex: 0 0 142px !important; /* Align with width */
  width: 142px !important;
  height: 137px !important;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e7eef1;
  background: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rider-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 767px) {
  .rider-image-card {
    flex: 0 0 148px !important;
    width: 148px !important;
    height: 148px !important;
    border-radius: 12px;
  }
}

/* ============================================================
   Cycle Service Packages - New Design 2024
   ============================================================ */

.service-pkg-page {
    min-height: 100vh;
}

.pkg-container {
    padding: 100px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.pkg-title {
    color: #303030;
    font-size: 28px;
    /* font-weight: 800; */
    text-align: center;
    margin-bottom: 25px;
    /* padding-top: 20px; */
}

/* Toggle Pill */
.pkg-toggle-wrapper {
    display: flex;
    background: #E7EDF0;

    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
    border: 2px solid #fff;
}

.pkg-toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 16px;
    border-radius: 50px;
    color: #303030;
    transition: all 0.3s ease;
}

.pkg-toggle-btn.active {
    background: #303030;
    color: #fff;
}

/* Service Cards */
.pkg-card {
    border-radius: 24px;
    margin-bottom: 20px;
    padding: 18px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pkg-card.standard { background: linear-gradient(177.98deg, #FEFFBF 1.7%, #FFFFFF 98.3%); border-color: #F2F59E; }
.pkg-card.premium { background: linear-gradient(180deg, #CAEBFF 0%, #FFFFFF 100%); border-color: #BFE8FF; }
.pkg-card.pro { background: linear-gradient(180deg, #DED2FD 0%, #FFFFFF 100%); border-color: #D4C4F4; }
.pkg-card.kids { background: linear-gradient(180deg, #D4FFDE 0%, #FFFFFF 100%); border-color: #B2FFC3; }

.pkg-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.pkg-card-title {
    font-weight: 800;
    font-size: 20px;
    color: #303030;
    margin: 0;
}

@media (max-width: 767px) {
    .pkg-card-title {
        font-size: 16px;
    }
}

.pkg-card-price {
    font-weight: 800;
    font-size: 20px;
    color: #303030;
}

.pkg-card-chevron {
    color: #00A5F1;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.pkg-card.open .pkg-card-chevron {
    transform: rotate(180deg);
}

.pkg-card-tagline {
    font-style: italic;
    font-size: 14px;
    color: #4A4A4A;
    margin-top: 8px;
    line-height: 1.4;
}

.pkg-card-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.pkg-card.open .pkg-card-expanded {
    max-height: 2000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
    margin-top: 20px;
}

.pkg-section-label {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
    color: #303030;
}

.pkg-includes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pkg-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #303030;
}

.pkg-tick-icon {
    background: #303030;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 400;
}

.pkg-meta-row {
    font-size: 15px;
    margin-bottom: 8px;
    color: #303030;
}

.pkg-meta-row b {
    font-weight: 800;
}

.pkg-btn-now {
    display: block;
    width: 100%;
    background: #F6D922;
    color: #303030;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(246, 217, 34, 0.3);
}

.pkg-card.premium .pkg-btn-now {
    background: #42B2F8;
    color: #fff;
    box-shadow: 0 4px 15px rgba(66, 178, 248, 0.3);
}

.pkg-card.pro .pkg-btn-now {
    background: #8B5EE5;
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 94, 229, 0.3);
}

.pkg-btn-amc {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #F6D922;
    color: #F6D922;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin-top: 12px;
}

.pkg-card.premium .pkg-btn-amc { border-color: #42B2F8; color: #42B2F8; }

.pkg-amc-footer {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

/* AMC Popup Modal (Bottom Sheet) */
.amc-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: flex-end;
}

.amc-sheet-overlay.active {
    display: flex;
}

.amc-sheet {
    background: #fff;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.amc-sheet-overlay.active .amc-sheet {
    transform: translateY(0);
}

.amc-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.amc-sheet-title {
    font-weight: 400;
    font-size: 16px;
    color: #303030;
}

.amc-sheet-close {
    cursor: pointer;
    color: #999;
}

.amc-pricing-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.amc-price-now { font-size: 24px; font-weight: 800; color: #303030; }
.amc-price-cut { font-size: 18px; text-decoration: line-through; color: #999; }
.amc-price-off { font-size: 18px; font-weight: 800; color: #00B34B; }

.amc-validity {
    font-size: 15px;
    margin: 15px 0;
    color: #303030;
}

.amc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.amc-benefit-card {
    text-align: center;
}

.amc-benefit-icon {
    width: 100%;
    aspect-ratio: 1;
    background: #EEF2F6;
    border-radius: 12px;
    margin-bottom: 8px;
}

.amc-benefit-label {
    font-size: 11px;
    line-height: 1.2;
    color: #4A4A4A;
}

.amc-cta-fixed {
    margin-top: 30px;
    padding: 16px;
    background: #42B2F8;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    /* font-weight: 800; */
    font-size: 18px;
    cursor: pointer;
}
