*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Kollektif Regular */
@font-face {
    font-family: 'Kollektif';
    src: url('../fonts/kollektif/Kollektif.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Kollektif';
    src: url('../fonts/kollektif/Kollektif-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Kollektif', sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: #1F2937;
}
button{
    font-family: 'Kollektif', sans-serif;
}
input, select {
    width: 100%;
    padding: 8px 16px;
    border-radius: 14px;
    border: 1px solid #1F29371A;
    font-size: 16px;
    outline: none;
    font-family: 'Kollektif', sans-serif;
    height: 50px;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    color: rgb(15 23 42 / 50%);
}
input:focus, select:focus {
    border-color: #F6B80D;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}
.checkbox span {
    color: #1F2937;
    font-size: 14px;
}
input::placeholder, select::placeholder {
  color: #1F2937;
  opacity: 0.5;
}
a{
    color: #1F2937;
}
h1, h2, h3, h4{
    font-weight: 400;
}
h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 400;
    margin: 20px 0 15px;
}
.margin-0{
    margin: 0 !important;
}
.bg-gray{
    background-color: #F5F5F5;
    padding: 70px 0;
}
.text-white{
    color: #fff;
}
.color-yellow{
    color: #F6B80D;
}
.color-light{
    color: #1F2937B2;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.d_flex{
    display: flex;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
}
.flex-1{
    flex: 1;
}
.g-1{
    gap: 10px;
}
.g-15{
    gap: 15px;
}
.g-2{
    gap: 20px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.b-radius{
    border-radius: 16px;
}
.o-80{
    opacity: 0.8;
}
.o-60{
    opacity: 0.6;
}
.section-margin{
    margin: 130px auto 0;
}
.s-section{
    margin: 200px auto 0;
}
nav {
    max-width: 740px;
    padding: 0 3px 0 30px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 50px;
}
.menubar li a {
    color: #1F2937;
    font-size: 20px;
    padding: 23px 23px;
    display: flex;
    width: 100%;
    position: relative;
}
.menubar li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background-color: #F6B80D;
    opacity: 0;
}
.dropdown {
    position: relative;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(14px);
    transition: opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}
.submenu li a {
    position: relative;
    overflow: hidden;
    padding: 15px 23px;
}
.logo-sec {
    padding-right: 45px;
    border-right: 1px solid #1F29371A;
}
.mobile-logo, .steps_num {
    display: none;
}
.hero-section {
    background: url("../images/hero-section-bg.png") center / cover no-repeat;
    margin-top: -114px;
    padding-top: 180px;
    /*position: relative;*/
    /* overflow: hidden; */
    /*z-index: -1;*/
}
/*.hero-section::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    height: 140px;*/
/*    background: linear-gradient(*/
/*        to bottom,*/
/*        rgba(255, 255, 255, 0),*/
/*        #ffffff*/
/*    );*/
/*    z-index: -1;*/
/*}*/
.subheading {
    text-align: center;
    border: 1px solid #1F29371A;
    background-color: #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 50px;
}
h1 {
    font-size: 72px;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
    max-width: 687px;
}
.hero-section h1 {
    margin: 40px auto 30px;
}
.hero-btn {
    margin-top: 40px;
    /* justify-content: center; */
}
.global-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid #1F2937;
    border-radius: 50px;
    padding: 17px 25px;
    font-size: 17px;
    font-family: 'Kollektif', sans-serif;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
    transition: color 0.4s ease;
}
.outline-btn::before, .btn-white::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #1F2937;
    border-radius: 50%;
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%) scale(0.05);
    opacity: 0.7;
    transform-origin: center;
    transition:
        transform 1.4s cubic-bezier(0.12, 0.9, 0.25, 1),
        opacity 0.6s ease;
    will-change: transform;
    z-index: -1;
}
.outline-btn:hover::before, .btn-white:hover::before {
    transform: translateX(-50%) scale(2.2);
    opacity: 1;
}
.outline-btn:hover, .btn-white:hover {
    color: #fff;
}
.solid-btn {
    background-color: #1F2937;
    color: #fff;
    transition:box-shadow 0.4s ease, transform 0.3s ease;
}
.solid-btn:hover {
    transform: scale(1.03);
    box-shadow:
        0px 6px 16px rgba(11, 18, 32, 0.14),
        0px 10px 22px rgba(11, 18, 32, 0.12);
}
.main-hero-img {
    margin-top: 60px;
    position: relative;
}
.main-hero-img img {
    border-radius: 30px;
}
.pos-abs {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.pos-abs .abs-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    z-index: 1;
}
.animation-spin {
    animation: spin 15s linear infinite;
    transform-origin: center center;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.short-content{
    max-width: 578px;
    margin: 0 auto;
}
.process-container {
    max-width: 1200px;
    margin: 70px auto 0;
}
.process-item {
    width: 270px;
    max-width: 100%
}
.icon-wrap {
    margin: 0 auto 20px;
}
.process-item h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}
.process-line {
    flex: 1;
    margin: 0 20px;
}
.process-line img {
    margin-top: -130px;
}
.mob-img, .tab-show{
    display: none;
}
.bg-gray .subheading, .fox-battery-hero .subheading {
    margin: 0;
}
.gray-bg-heading-div {
    margin-top: 30px;
}
.gray-heading {
    margin: 0;
    max-width: 684px;
}
.gray-content {
    max-width: 420px;
    margin-top: 8px;
}
.solutions-wrap {
    max-width: 1240px;
    margin: 50px auto 0;
    display: flex;
}
.solution-card {
  flex: 1;
  padding: 30px;
}
.solution-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.3;
    max-width: 250px;
}
.solution-card p {
    margin-bottom: 20px;
    max-width: 300px;
}
.solution-card a {
    font-size: 17px;
    font-weight: 500;
    transition: transform 0.3s ease;
    transform-origin: left center;
    width: fit-content;
}
.solution-card a img {
  transition: transform 0.3s ease;
}
.solution-card a:hover img {
  transform: translateX(5px);
}
.solution-card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.solution-card a:hover {
    transform: scale(1.05);
}
.solution-card a:hover::after {
    opacity: 1;
}
.divider {
  width: 1px;
  background: #DDDDDD;
}
.get-started-wrap {
  gap: 50px;
  padding: 100px 0 0;
}
.form-content {
  flex: 1;
}
.form-content h2 {
    font-size: 28px;
    margin: 0 0 20px;
}
.form-content p {
    max-width: 465px;
}
.form-content form {
    margin-top: 40px;
}
.form-group {
  margin-bottom: 15px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  margin: 20px 0 25px;
}
.checkbox input {
  margin-top: 3px;
}
.checkbox a {
  color: #1F2937;
}
.image-content {
  flex: 1;
}
.image-content img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
button[type="submit"] {
    line-height: 1.3;
    cursor: pointer;
}
.bg-img {
    background: url('../images/consult-bg.png') center / cover no-repeat;
    height: 780px;
    justify-content: center;
}
.elevate-energy {
    flex-direction: column;
}
.elevate-energy h2 {
    max-width: 458px;
    margin: 0 auto;
    font-size: 58px;
    line-height: 1.2;
}
.elevate-energy p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 690px;
    margin: 25px auto 45px;
}
.btn-white {
    background-color: #fff;
}
.mobile-bg {
    background: url('../images/mobile-banner.jpg') center / cover no-repeat;
    justify-content: center;
    padding: 35px 20px 50px;
    text-align: center;
}
.accordion-wrapper {
    margin-top: 90px;
    gap: 35px;
}
.accordion {
    flex: 1;
}
.accordion-item {
    border: 1px solid #1F293733;
    border-radius: 18px;
    margin-bottom: 25px;
}
.accordion-header {
    width: 100%;
    padding: 30px;
    font-size: 20px;
    line-height: 1.3;
    border: none;
    cursor: pointer;
    background-color: transparent;
    text-align: left;
}
.accordion-header .acco-icon {
    transition: transform 0.3s ease;
}
.acco-icon img {
    width: 12px;
}
.accordion-header.active .acco-icon {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 0 30px 30px;
    font-size: 17px;
}
footer{
    background-color: #1F2937;
    padding: 100px 0 50px;
}
footer h2 {
    font-size: 36px;
}
footer h2 {
    font-size: 36px;
}
.social-icons {
    margin-top: 35px;
}
.social-icons a {
    border: 1px solid #FFFFFF26;
    border-radius: 50px;
    padding: 12px 20px;
    gap: 8px;
    transition: 
        background-color 0.5s ease,
        color 0.5s ease,
        border-color 0.5s ease;
}
.social-icons a .hover-icon, .social-icons a:hover .simple-icon {
    display: none;
}
.social-icons a .simple-icon {
    display: block;
    transition: opacity 0.3s ease;
}
.social-icons a:hover {
    background-color: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}
.social-icons a:hover .hover-icon {
    display: block;
}
.right-arrow {
    margin-top: 15px;
}
.divider-footer {
    border-top: 1px solid #FFFFFF26;
    margin: 60px 0;
}
.bottom-footer p {
    max-width: 288px;
    margin-top: 30px;
}
.bottom-footer h4 {
    font-size: 20px;
}
.quick-links {
    gap: 70px;
}
.quick-links ul {
    margin-top: 20px;
}
.quick-links ul a {
    font-size: 18px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    transform-origin: left center;
    width: fit-content;
    display: inline-block;
}
.quick-links ul a:hover {
    transform: scale(1.07);
}
.newsletter-wrapper h3 {
    margin-bottom: 16px;
    font-size: 22px;
}
.newsletter-message {
    font-size: 14px;
    line-height: 1.4;
    position: absolute;
    margin: 6px 0 0 15px;
    bottom: -30px;
}
.newsletter-message.error {
    color: #dc2626;
}
.newsletter-message.success {
    color: #16a34a;
}
.newsletter-form {
    border-radius: 50px;
    border: 1px solid #E8E8E866;
    position: relative;
}
.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    color: #fff;
    outline: none;
}
.newsletter-form input::placeholder {
    color: #94a3b8;
}
.newsletter-form button {
    background: #fff;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 17px;
    cursor: pointer;
    border: 1px solid #1F2937;
    transition: all 0.3s ease;
    margin-right: 4px;
}
.copyright{
    margin-top: 60px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.box {
    padding: 28px;
    border-radius: 18px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.box h3, .overlay h3 {
    font-size: 32px;
    line-height: 1.1;
}
.box span, .overlay span {
    font-size: 28px;
}
.yellow {
    background: #fff4e8;
}
.green {
    background: #e9f9ef;
}
.image-box {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.image-box.tall {
    height: 100%;
    min-height: 480px;
}
.image-box img {
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    justify-content: space-between;
}
.box p, .overlay p {
    font-size: 18px;
}
/* popup css */
.popup-form {
    max-width: 100%;
    padding: 30px 0px 50px 50px;
    width: 630px;
}
.popup-form p {
    max-width: 465px;
}
.popup-form form {
    margin-top: 40px;
}
.popup-wrapper {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 1200px;
    width: calc(100% - 40px);
    border-radius: 24px;
    transition: top 0.5s ease;
    z-index: 9999;
    overflow: hidden;
}
.close-popup {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
}
.close-popup img {
    width: 15px;
    height: 15px;
}
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-wrapper.active {
    top: 50%;
}
.popup-img {
    position: absolute;
    right: -160px;
    bottom: -20px;
    z-index: -1;
}
.fox-battery-hero h1 {
    max-width: 520px;
    margin: 30px 0;
}
.fox-battery-hero p {
    max-width: 537px;
    margin-bottom: 40px;
}
.fox-battery{
    padding-bottom: 130px;
}
.border-top {
    border-top: 1px solid #DDDDDD;
    margin-top: 0;
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 70px;
}
.doc-card {
    padding: 11px 10px 11px 25px;
    border: 1px solid #1F293733;
    border-radius: 50px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.doc-card:hover {
    box-shadow:
        0px 2px 8px rgba(11, 18, 32, 0.06),
        0px 8px 14px rgba(11, 18, 32, 0.10);
    transform: translateY(-2px);
}
.doc-title {
    font-size: 22px;
}
.battery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}
.battery-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #1F293733;
}
.battery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.card-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.card-content {
    padding: 30px;
}
.card-content h3 {
    font-size: 22px;
    margin-bottom: 7px;
}
.card-subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}
.card-content p {
    font-size: 17px;
    margin-bottom: 25px;
}
.card-content .global-btn {
    width: 100%;
    padding: 11px 25px;
}
.comparison-container {
    margin-top: 50px;
}
.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 1fr 2.2fr 2fr;
}
.comparison-row {
  border-top: 1px solid #e5e7eb;
}
.comparison-header .features, .comparison-header .highlight, .comparison-header .other {
    font-size: 19px;
}
.tbl-col {
  padding: 20px;
}
.highlight {
    background: #FFFFFF;
}
.comparison-header .highlight {
    border-radius: 50px 50px 0 0;
    padding: 40px 0 20px 30px;
}
.comparison-header .tbl-col {
    padding-top: 35px;
}
.comparison-row .highlight {
    padding-left: 30px;
}
.comparison-container .comparison-row:last-child .highlight {
    border-radius: 0 0 50px 50px;
    padding-bottom: 40px;
}
.check {
  margin-right: 2px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    position: relative;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 30px 30px 25px;
    border: 1px solid #DDDDDD;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.feature-card h3 {
    font-size: 24px;
}
.feature-card p{
    margin: 10px 0 20px;
}
.feature-number {
    font-size: 28px;
    line-height: 32px;
    margin: 0 !important;
}
.exit-right{
    max-width: 550px;
}
.exit-inner{
    max-width: 697px;
}
.rating, .growth {
    border: 1px solid #DDDDDD;
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    position: relative;
}
.rating h4, .growth h4 {
    font-size: 32px;
    margin: 7px;
}
.growth{
    text-align: left;
    margin-top: 20px;
}
.growth img {
    position: absolute;
    right: 20px;
    bottom: 0;
    max-width: 75px;
}
.exit-img {
    margin-top: 15px;
}
.hero-section .get-started-wrap {
    background-color: #fff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.85);
}
.map-section{
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 20px;
}
.map-section iframe {
    width: 100%;
    border-radius: 24px;
    height: 350px;
    margin-bottom: 20px;
}
.map-section p{
    font-size: 24px;
}
.page-not-found h1 {
    font-size: 250px;
    line-height: 1;
}
.page-not-found .short-content {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 30px;
}
.page-not-found p {
    font-size: 18px;
}


@media(max-width: 1025px){
    .process-line, .tab-hide {
        display: none;
    }
    .tab-show{
        display: block;
    }
    .solution-card {
        padding: 30px 10px;
    }
    .consult-btn {
        margin-top: 40px;
    }
    .mobile-bg  p {
        max-width: 620px;
        margin: 0 auto;
    }
    .quick-links {
        gap: 10px;
    }
    .box p, .overlay p {
        font-size: 16px;
    }
    .box h3, .overlay h3 {
        font-size: 22px;
    }
    .box span, .overlay span {
        font-size: 18px;
    }
    h1 {
        font-size: 52px;
    }
    .why-exit {
        flex-direction: column;
        align-items: flex-start;
    }
    .exit-inner .hero-btn {
        justify-content: flex-start;
    }
    .page-not-found h1 {
        font-size: 150px;
    }
    .page-not-found .short-content {
        font-size: 28px;
        margin-bottom: 15px;
    }
}
@media(max-width: 767px){
    .desc-img, .image-content, .form-content h2, .form-content p, .popup-img, .tbl-text, .comparison-header, .page-not-found p br{
        display: none;
    }
    .border-top {
        border: none;
    }
    .mob-img{
        display: block;
    }
    .mobile-logo{
        display: flex;
    }
    .hamburger {
        width: 20px;
        cursor: pointer;
        transform: rotate(180deg);
    }
    .hamburger span {
        width: 100%;
        height: 3px;
        background: #F6B80D;
        margin: 5px 0;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .hamburger span:nth-child(2) {
        width: 60%;
    }
    .menubar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 90%;
        max-width: 100%;
        background: #fff;
        padding: 42px 24px 24px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1000;
    }
    .menubar.active {
        transform: translateX(0);
    }
    .menubar ul {
        flex-direction: column;
        margin-top: 50px;
    }
    .menubar li a {
        padding: 10px 0;
        justify-content: space-between;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        margin-top: 0 !important;
        border: none;
    }
    .dropdown.active .submenu {
        display: block;
    }
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .submenu, .social-icons a span {
        display: none;
    }
    nav {
        padding: 10px 25px 10px 25px;
        margin: 30px 20px 0;
    }
    .logo-sec img, .mobile-logo img {
        max-width: 90px;
    }
    .logo-sec {
        border-right: none;
    }
    .subheading {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-section {
        padding-top: 160px;
    }
    h1 {
        font-size: 37px;
    }
    .hero-section h1 {
        margin: 20px auto 15px;
        text-align: center;
    }
    .hero-btn .outline-btn, .fox-battery-btn a:first-child {
        display: none;
    }
    .fox-battery-btn {
        flex-direction: column;
    }
    .hero-btn {
        margin-top: 25px;
    }
    .global-btn {
        padding: 11px 25px;
    }
    .main-hero-img img {
        border-radius: 18px;
        width: 100%;
    }
    .animation-spin {
        max-width: 140px;
    }
    .pos-abs {
        bottom: -80px;
    }
    .pos-abs .abs-arrow {
        top: 39px;
        max-width: 60px;
    }
    .s-section {
        margin: 100px auto 0;
    }
    .section-margin{
        margin: 70px 0 0;
    }
    h2 {
        font-size: 28px;
    }
    .process-container {
        flex-direction: column;
        margin: 40px 0 0;
        gap: 0;
    }
    .icon-wrap img {
        width: 50px;
    }
    .icon-wrap {
        margin: 0 auto 10px;
    }
    .process-line {
        display: block;
        transform: rotate(90deg);
    }
    .process-line img {
        margin-top: 0;
        height: 95px;
    }
    .process-item {
        width: 100%;
        border: 1px solid #1F29371A;
        padding: 25px;
        border-radius: 20px;
        text-align: left;
        background-color: #F5F5F5;
        position: relative;
    }
    .steps_num {
        display: block;
        position: absolute;
        right: 20px;
        top: 40px;
        font-size: 50px;
        color: #E6E6E6;
    }
    .bg-gray .subheading, .solution-card a {
        margin: auto;
    }
    .gray-bg-heading-div h2, .gray-bg-heading-div p, .solution-card h3, .solution-card p, .solution-card a {
        text-align: center;
    }
    .gray-bg-heading-div, .solutions-wrap, .fox-battery-wrapper {
        flex-direction: column;
    }
    .solution-card {
        flex: 1;
        padding: 30px;
        flex-direction: column;
        align-items: center;
        border: 1px solid #1F29371A;
        border-radius: 20px;
    }
    .solutions-wrap {
        gap: 15px;
        margin: 40px 0;
    }
    .solution-card p, .solution-card h3 {
        max-width: 100%;
    }
    .form-content form {
        margin-top: 0px;
    }
    .get-started-wrap {
        padding: 40px 0 0;
    }
    button[type="submit"] {
        width: 100%;
    }
    .consult-btn {
        margin-top: 30px;
    }
    .accordion-wrapper {
        gap: 0;
        flex-direction: column;
        margin-top: 40px;
    }
    .accordion-header {
        padding: 20px;
        font-size: 17px;
    }
    .accordion-content {
        padding: 0 20px 20px;
    }
    footer h2 {
        font-size: 22px;
        max-width: 260px;
    }
    .social-icons a {
        padding: 12px 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .social-icons {
        margin-top: 25px;
        gap: 15px;
    }
    footer {
        padding: 50px 0 30px;
    }
    .right-arrow {
        margin-top: 25px;
    }
    .divider-footer {
        margin: 40px 0;
    }
    .bottom-footer {
        flex-direction: column;
        gap: 50px;
    }
    .bottom-footer p {
        max-width: 100%;
        margin-top: 20px;
    }
    .quick-links {
        gap: 70px;
    }
    .newsletter-form button {
        width: unset !important;
    }
    .copyright {
        margin-top: 30px;
        font-size: 15px;
    }
    .bottom-footer h4, .newsletter-wrapper h3 {
        font-size: 18px;
    }
    .quick-links ul a {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .image-box.tall {
        min-height: 320px;
    }
    .box {
        min-height: 220px;
    }
    .popup-form {
        padding: 30px 20px;
    }
    .popup-form form {
        margin-top: 20px;
    }
    .docs-grid, .battery-container {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }
    .doc-title, .card-content h3 {
        font-size: 18px;
    }
    .doc-download img {
        width: 32px;
    }
    .card-content {
        padding: 20px;
    }
    .card-subtitle, .card-content p {
        font-size: 15px;
    }
    .margin-0 {
        margin: 0 auto !important;
    }
    .mobile-justify-center{
        justify-content: center;
    }
    .fox-battery-hero p {
        text-align: center;
        margin-bottom: 20px;
    }
    .fox-battery-wrapper .mob-img {
        border-radius: 18px;
    }
    .fox-battery {
        padding-bottom: 70px;
    }
    .comparison-header, .comparison-row {
        grid-template-columns: 6fr 1fr 1fr;
    }
    .comparison-row .highlight {
        padding-left: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .exit-right img {
        object-fit: cover;
    }
    .exit-inner {
        text-align: center;
    }
    .map-section {
        padding: 0;
        margin: 30px 0 0;
    }
    .map-section iframe {
        border-radius: 0;
        height: 220px;
    }
    .map-section div {
        border: 1px solid #DDDDDD;
        background-color: #F5F5F5;
        padding: 25px;
        border-radius: 15px;
        max-width: 85%;
        margin: 0 auto;
    }
    .map-section p {
        font-size: 18px;
    }
    .map-section img {
        width: 20px;
        margin-right: 5px;
    }
}

@media(min-width: 768px){
    .dropdown:hover > .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .submenu li a:after{
        display: none;
    }
    .dropdown:hover > a::after {
        opacity: 1;
    }
    .menubar li:last-child a {
        padding: 23px 20px 23px 23px;
    }
    .submenu li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #F6B80D;
        z-index: -1;
        transition: width 0.35s ease;
    }
    .submenu li a:hover::before {
        width: 100%;
    }
    .menubar li a:hover::after {
        opacity: 1;
    }
}