@charset "utf-8";

/******* Fonts Face CSS Start **********/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Oxygen:wght@300;400;700&family=Roboto:wght@100;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

/* Variable Declaration */
:root {
    --primary-color: #41C1C3;
    --secondary-color: #000222;
    --white-color: #fff;
    --neon-dark: #28F6A2;
    --neon-light: #8AFACC;
}

/******* Common Element CSS Start ******/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-moz-selection {
    color: var(--white-color);
    background: var(--primary-color);
}

::selection {
    color: var(--white-color);
    background: var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

html,
body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden !important;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--secondary-color);
}

.light-theme {
    background-color: var(--white-color);
}

img {
    border: 0px !important;
    outline: none;
    width: 100%;
    max-width: 100%;
}

section {
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    right: 14px !important;
    transform: translateY(-50%);
}

button:focus,
button:focus:active {
    outline: none;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

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

a {
    text-decoration: none;
    outline: none;
}

textarea {
    resize: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    outline: none;
    text-decoration: none;
}

.btn:focus,
.btn.focus,
.form-control:hover,
.form-control:focus,
.form-control:focus:Active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
span,
i,
a {
    font-family: 'DM Sans', sans-serif;
}

.h1,
h1 {
    margin: 0px 0px 16px;
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 79px;
    color: var(--white-color);
}

.h2,
h2 {
    margin: 0px 0px 16px;
    font-size: 47px;
    line-height: 62px;
    color: var(--white-color);
    font-weight: 700;
}

.h1 span b,
h1 span b {
    font-weight: 500;
    font-size: 25px;
    line-height: 33px;
    color: var(--white-color);
    text-transform: uppercase;
    display: block;
}

.h1 span,
.h2 span,
.h5 span,
h1 span,
h2 span,
h5 span {
    padding-left: 40px;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

h5 span,
.h5 span {
    padding-left: 24px;
}

.h2 span i,
h2 span i {
    display: block;
    font-style: normal;
    font-weight: 500;
}

.h1 span:before,
.h2 span:before,
.h3 span:before,
.h5 span:before,
h1 span:before,
h2 span:before,
h3 span:before,
h5 span:before {
    content: "";
    width: 8px;
    max-height: 0px;
    height: 100%;
    display: block;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
}

.h1.aos-animate span:before,
.h2.aos-animate span:before,
.h3.aos-animate span:before,
.h5.aos-animate span:before,
h1.aos-animate span:before,
h2.aos-animate span:before,
h3.aos-animate span:before,
h5.aos-animate span:before {
    max-height: 100%;
    top: 0px;
    bottom: auto;
}

.h3,
h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    position: relative;
}

h3,
.h3 span {
    padding-left: 24px;
}

.h4,
h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 27px;
}

.h5,
h5 {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
    color: var(--white-color);
}

.h6,
h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.h6 span,
h6 span {
    padding-left: 148px;
    display: block;
    position: relative;
}

.h6 span:before,
h6 span:before {
    content: "";
    width: 124px;
    height: 8px;
    display: block;
    max-width: 0px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    transition: ease-in-out 0.6s;
    -webkit-transition: ease-in-out 0.6s;
}

.h6.aos-animate span:before,
h6.aos-animate span:before {
    max-width: 100%;
}

p {
    margin: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

/******* Common Element CSS End *********/
.fixed {
    position: fixed;
    top: 0;
}

#sidebar {
    will-change: min-height;
}

.sidebar__inner {
    transform: translate(0, 0);
    /* For browsers don't support translate3d. */
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}

p.ask-us-text.dark-txt a {
    color: var(--second-color);
    font-weight: 500;
    text-decoration: underline;
}

/* site Loader */
.site-loader {
    z-index: 999999999;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-color);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: -webkit-translate(-50%, -50%);
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.pagescroll-off {
    overflow: hidden;
}

.loader-inner-wrap .loader-img svg {
    height: 60px;
    width: 60px;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgb(132 250 202 / 40%);
    margin-left: -60px;
    margin-top: -60px;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotate 0.8s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgb(132 250 202 / 80%);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* -=- Common CSS Start -=- */
.mt-56 {
    margin-top: 56px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.pb-16 {
    padding-bottom: 16px;
}

.f-light {
    font-weight: 400;
}

.neon-bg {
    /* background-color: var(--neon-dark); */
    background-image: linear-gradient(180deg, #28F6A2, #8AFACC);
    background-size: 100% 150%;
    background-position: top;
    transition: background-position 0.6s ease-in-out, color 0.6s linear;
    -webkit-transition: background-position 0.6s ease-in-out, color 0.6s linear;
}

.white-txt {
    color: var(--white-color);
}

.dark-txt {
    color: var(--secondary-color);
}

.border__b_light {
    border-bottom: 0.4px solid #C4C4C4;
}

.grey-txt {
    color: #828282;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.common-spacing {
    padding-top: 88px;
    padding-bottom: 88px;
}

/* -=- Common Button CSS Start -=- */
.btn {
    padding: 20px 24px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--secondary-color);
    border-radius: 0px;
    outline: none;
    border: 0px;
}

.neon-bg.btn:hover,
.neon-bg.btn:focus:active,
.neon-bg.btn:not(:disabled):not(.disabled):active,
.neon-bg.btn:focus {
    background-image: linear-gradient(180deg, #28F6A2, #8AFACC);
    background-position: bottom;
    color: var(--secondary-color);
    outline: none;
    border: 0px;
}

/* -=- Header CSS Start -=- */
header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

.expand-menu {
    margin-top: 10px;
}

.expand-menu a {
    color: var(--neon-dark);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    transition: color 0.4s linear;
}

.expand-menu a:hover {
    color: var(--primary-color);
}

header .navbar-brand {
    padding: 12px 25px 12px 0px;
    position: relative;
}

header .navbar-brand:after {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    border: 100%;
    background-color: #C6C6C6;
}

header .navbar {
    padding: 16px 0px;
}

header .shopping-btn {
    margin-left: 23px;
    padding: 12px 13px;
    border: 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

header .shopping-btn svg {
    width: 32px;
    height: 32px;
}

header .shopping-btn svg path {
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
}

header .shopping-btn:focus svg path,
header .shopping-btn:hover svg path {
    fill: var(--neon-dark);
}

header .navbar-nav {
    margin: 0px 0px 0px 24px;
}

header .navbar-nav .nav-item {
    margin: 0px 22px 0px 0px;
}

header .navbar-nav .nav-item .nav-link {
    padding: 16px 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: var(--white-color);
}

.dropdown-menu .dropdown-item {
    padding: 0px 32px;
}

header .navbar-brand .light-theme-logo,
footer .footer-logo .light-theme-logo {
    display: none;
}

.dropdown-menu .dropdown-item span {
    padding: 12px 30px 12px 0px;
    display: block;
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-menu .dropdown-item span:before {
    content: "";
    padding: 12px;
    display: block;
    background: url("../img/arrow-right.svg") no-repeat center center / 100% 100%;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:focus:active,
.dropdown-menu .dropdown-item:hover {
    background-color: var(--secondary-color);
}

header .shop-btn-mobile-device {
    display: none;
}

/* Light Theme header */
.light-theme.static-header header {
    position: static;
    top: auto;
    left: auto;
}

.light-theme header .navbar .navbar-nav .active .nav-link {
    color: var(--secondary-color);
    background: transparent;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.light-theme .dropdown-menu .dropdown-item span::after,
.light-theme header .navbar .navbar-nav .nav-link::before {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
}

.light-theme .navbar-toggler.-menu-open svg,
.light-theme .navbar-toggler svg {
    stroke: var(--secondary-color);
}

.light-theme header .navbar {
    background-color: var(--white-color);
}

.light-theme header .navbar-nav .nav-item .nav-link {
    color: var(--secondary-color);
}

.light-theme header .shopping-btn svg path {
    fill: var(--secondary-color);
}

.light-theme footer .footer-logo .light-theme-logo,
.light-theme header .navbar-brand .light-theme-logo {
    display: block;
}

.light-theme footer .footer-logo .dark-theme-logo,
.light-theme header .navbar-brand .dark-theme-logo {
    display: none;
}

.light-theme footer a,
.light-theme footer p,
.light-theme footer span {
    color: var(--secondary-color);
}

.light-theme .footer-contact,
.light-theme .social-icons li a:hover,
.light-theme .social-icons li a:focus,
.light-theme .social-icons li a {
    border-color: var(--secondary-color);
}

.light-theme .social-icons li a:hover svg path,
.light-theme .social-icons li a:focus svg path {
    stroke: var(--neon-dark);
}

.light-theme .social-icons li a svg path {
    stroke: var(--secondary-color);
}

.light-theme .footer-copyright:before {
    background: var(--secondary-color);
    height: 0.6px;
}

.light-theme .footer-contact li a.mail-contact:before {
    background-image: url("../img/light-mail.svg");
}

.light-theme .footer-contact li a.tel-contact:before {
    background-image: url("../img/light-phone-call.svg");
}

.categories-outer-wrap:after,
.light-theme .dashed-border:before {
    background-image: url(../img/black-line.svg);
}

.light-theme .contact-us .contact-us-inner-wrap {
    background-color: transparent;
}

.light-theme .contact-us .contact-us-inner-wrap .contact-us-title {
    color: var(--secondary-color);
}

.light-theme .procedure-list>li:before {
    background-image: url("../img/light-arrow-right.svg");
}

.light-theme .procedure-list>li {
    color: var(--secondary-color);
}

.light-theme .quick-shop-list>li {
    border-color: var(--secondary-color);
}

.light-theme .read-more-link::before {
    background-image: url("../img/light-arrow-right.svg");
}

.common-btn-center {
    position: relative;
}

.common-btn-center .cmn-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

/* -=- Banner CSS Start -=- */
.home-hero {
    min-height: 100vh;
    background: url() no-repeat center center / cover;
    position: relative;
}

.home-hero>img {
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center center;
    height: 100%;
    z-index: 0;
}

.home-hero.repair-service-banner:before {
    background: none;
}

.home-hero:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.quick-service-main-content .h5 {
    margin-bottom: 24px;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    max-width: 700px;
}

.hero-wrapper p {
    margin: 0px 0px 24px;
}

/* Thank you page */
.thank-you-section h1 span,
.thank-you-section .h1 span {
    padding-bottom: 16px;
    position: relative;
}

.thank-you-section h1 span:after,
.thank-you-section .h1 span:after {
    content: "";
    height: 8px;
    width: 100%;
    display: block;
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.any-trouble p {
    padding: 16px 40px;
    border: 0.1px solid #000222;
    display: inline-block;
}

.any-trouble a {
    margin-left: 16px;
    padding-right: 34px;
    color: #000222;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-decoration: underline;
}

.any-trouble a:hover:after,
.any-trouble a:focus:after,
.any-trouble a:focus:active:after {
    right: -10px;
}

.any-trouble a:after {
    content: "";
    padding: 12px;
    display: block;
    background: url("../img/grey-arrow-right.svg") no-repeat center center / cover;
    position: absolute;
    top: 50%;
    right: 0px;
    transition: right 0.3s linear;
    filter: brightness(0);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.thank-you-section .h5,
.thank-you-section .h5 {
    line-height: 32px;
}

/* Small Banner Section */
.small-hero-section {
    padding: 110px 0px;
    background: url() no-repeat center center / cover;
    position: relative;
    z-index: 0;
}

.small-hero-section p {
    margin-top: 12px;
    color: #000222;
}

.small-hero-section .container {
    position: relative;
    z-index: 1;
}

.small-hero-section h1,
.small-hero-section .h1 {
    margin: 0px;
}

.small-hero-section:before {
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
}

/* Form Page */
.input-box-wrap {
    position: relative;
}

.input-box-wrap label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #49454F;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: transform .1s linear, top .1s linear, top .1s linear;
    transform-origin: left top;
    pointer-events: none;
}

.input-box-wrap textarea+label {
    top: 32px;
}

.input-box-wrap input::placeholder {
    color: transparent;
}

.input-box-wrap input:-ms-input-placeholder {
    color: transparent;
}

.input-box-wrap input::-ms-input-placeholder {
    color: transparent;
}

.input-box-wrap textarea::placeholder {
    color: transparent;
}

.input-box-wrap textarea:-ms-input-placeholder {
    color: transparent;
}

.input-box-wrap textarea::-ms-input-placeholder {
    color: transparent;
}

.input-box-wrap textarea,
.input-box-wrap .select2-container .select2-selection--single,
.input-box-wrap input {
    padding: 19px 16px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    color: #333333;
    /* transition: 0.1s ease-out; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 20px;
}

.select2-dropdown {
    border-color: #E0E0E0;
}

.input-box-wrap .select2-container .select2-selection--single {
    height: 100%;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
}

.input-box-wrap .select2-container {
    width: 100% !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px;
}

.input-box-wrap textarea:focus,
.input-box-wrap .select2-container.select2-container--open .select2-selection--single,
.input-box-wrap input:focus {
    border-color: #000222;
}

.input-box-wrap textarea:focus+label,
.input-box-wrap input:focus+label {
    color: #000222;
    top: 0;
    transform: translateY(-50%) scale(.9);
}

.input-box-wrap textarea:not(:placeholder-shown)+label,
.input-box-wrap input:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%) scale(.9);
}

.file-upload {
    background-color: #ffffff;
    width: 100%;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-title {
    padding-left: 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.005em;
    color: #828282;
    position: relative;
    text-align: left;
}

.file-upload-content,
.image-upload-inner-wrap {
    padding: 27px 47px;
    border: 0.6px dashed #828282;
    border-radius: 4px;
    position: relative;
}

.file-upload-content {
    z-index: 1;
}

.image-upload-inner-wrap {
    z-index: 0;
}

.file-title::before {
    content: "";
    padding: 12px;
    display: block;
    background: url("../img/publish.svg") no-repeat center center / cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
}

.file-title.image-wrap-title::before {
    background-image: url("../img/image.svg");
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
    top: 0px;
    left: 0px;
    z-index: 1;
}

/* .image-upload-wrap {
    padding: 27px 47px;
    border: 0.6px dashed #828282;
    border-radius: 4px;
} */

/* .image-dropping,
.image-upload-wrap:hover {
    border: 0.6px dashed #828282;
    border-radius: 4px;
} */

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    margin: 0;
    padding: 0px;
    border: none;
    outline: none;
    background: transparent;
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .2s ease;
}

.remove-image:hover {
    background: transparent;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

/* Contact us location Section */
.location-inner-section {
    display: flex;
    display: -webkit-flex;
    column-gap: 10%;
    position: relative;
    justify-content: space-between;
}

.location-inner-section>li {
    width: 33.33%;
}

.prdct-view-details::after,
.location-inner-section:before,
.location-inner-section:after {
    content: "";
    height: 100%;
    width: 1px;
    background: url(../img/vertical-line.svg) repeat-y center center / 100% auto;
    display: block;
    position: absolute;
    top: 0px;
    left: 31.33%;
}

.location-inner-section:after {
    left: auto;
    right: 31.33%;
}

.common-icon {
    padding: 12px;
    border-radius: 0px 8px;
    display: inline-block;
    flex-shrink: 0;
    align-self: flex-start;
}

.common-icon img {
    height: 24px;
    width: 24px;
}

.location-details-list>li {
    display: flex;
    display: -webkit-flex;
}

.location-details-list {
    padding: 40px 0px 56px;
}

.location-details-list>li:not(:last-child) {
    margin-bottom: 40px;
}

.contact-details-block {
    margin-left: 16px;
}

.contact-details-title {
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 32px;
    color: #000000;
}

.contact-details-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
}

a.contact-details-text {
    overflow-wrap: anywhere;
    transition-duration: 0.4s;
}

a.contact-details-text:hover {
    color: var(--neon-dark);
    text-decoration: underline;
}

/* Map section */
.gm-style-cc:last-child {
    display: none !important;
}

.gmnoprint.gm-style-cc,
a[title="Report errors in the road map or imagery to Google"] {
    display: none !important;
}

.map-area {
    margin-bottom: 32px;
}

.map-div {
    border-radius: 0px 24px;
    filter: drop-shadow(0px 4px 40px rgba(128, 128, 128, 0.16));
}

.map-title {
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 700;
    font-size: 27px;
    line-height: 32px;
    color: #000000;
}

/* Repair Services Banner */
.repair-service-banner .hero-wrapper {
    padding: 56px;
    max-width: 770px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 0px 56px;
}

.featured-drive-section .nav.nav-pills li {
    flex-grow: 1;
}

.featured-drive-section .nav.nav-pills li a {
    padding: 16px 15px;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 21px;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    text-align: center;
    border-bottom: 1px solid transparent;
    background: #C9FCE8;
    white-space: nowrap;
    transition: ease-in-out background 0.4s;
}

.featured-drive-section .nav-pills .nav-link {
    border-radius: 0px;
}

.featured-drive-section .nav-pills .nav-link.active {
    background-color: #fff;
    border-color: rgba(0, 2, 34, 1);
}

/* -=- Discover Services Section -=- */
.quick-service-img {
    position: relative;
}

.quick-service-img>img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    max-width: 100%;
}

.quick-services-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 14px;
}

.quick-services-list li a {
    padding: 15px 23px;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    border-radius: 32px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0), 0px 22.3363px 17.869px rgba(0, 0, 0, 0), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0), 0px 22.3363px 17.869px rgba(0, 0, 0, 0), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0);
    transition-duration: 0.4s;
}

.quick-services-list li a:hover,
.quick-services-list li a:focus {
    border-color: var(--neon-dark);
    background: #0F253E;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725);
    -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725);
}

/* -=- Our Client Section -=- */
.our-clients {
    padding: 0px 0px 88px;
}

.client-list {
    margin-top: 48px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

/* -=- Our Services Section -=- */
.our-services-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 24px;

}

.our-services-list>li {
    width: calc(25% - 18px);
}

.our-services-list>li.tl-br-radius a {
    border-radius: 24px 0px;
}

.our-services-list>li.tr-bl-radius a {
    border-radius: 0px 24px;
}

.our-services-list>li a span {
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
}

.our-services-list>li a {
    padding: 24px;
    border: 1px solid var(--neon-dark);
    height: 100%;
    position: relative;
    z-index: 0;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition-duration: 0.6s;
}

.our-services-list>li a:hover,
.our-services-list>li a:focus:active,
.our-services-list>li a:focus {
    background-color: #0F253E;
}

.our-services-list>li a:hover span,
.our-services-list>li a:focus:active span,
.our-services-list>li a:hover span {
    color: var(--neon-dark);
}

.our-services-list>li a b {
    margin-bottom: 47px;
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 79px;
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-services-list>li a span {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 35px;
    color: var(--white-color);
}

.book-service {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.book-service .book-ser-title {
    margin: 0px 20px 0px 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 62px;
    color: var(--white-color);
}

/* -=- Product Quality Section -=- */
.product-order-counter>li {
    margin-bottom: 47px;
    display: flex;
    display: -webkit-flex;
    position: relative;
}

.product-order-counter>li:last-child {
    margin-bottom: 0px;
}

.product-order-counter>li .num-counter {
    position: absolute;
    top: 0px;
    left: 0px;
}

.product-order-counter>li .num-counter,
.product-order-counter>li .num-counter b {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--neon-dark);
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-prdct-quality.product-quality-section .product-order-counter>li .num-counter,
.about-us-prdct-quality.product-quality-section .product-order-counter>li .num-counter b {
    background: transparent;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #000;
}

.couter-desc {
    margin: 24px 0px 0px 118px;
    padding: 40px 0px 0px 40px;
    border-top: 1px solid var(--neon-dark);
    border-left: 1px solid var(--neon-dark);
    border-top-left-radius: 32px;
    flex-grow: 1;
}

.couter-desc .h5 {
    margin-bottom: 8px;
    line-height: 25px;
}

/* -=- Procedure Section -=- */
.neon-border-img-wrap {
    padding: 1px 8px;
    border-radius: 0px 56px;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    box-shadow: 0px 64px 147px rgba(74, 74, 74, 0.07), 0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112), 0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035), 0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888);
    -webkit-box-shadow: 0px 64px 147px rgba(74, 74, 74, 0.07), 0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112), 0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035), 0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888);
}

.neon-border-img-wrap.opp-border-radius {
    border-radius: 56px 0px;
}

.neon-border-img-wrap.light-theme-border-img-wrap {
    background: var(--secondary-color);
}

.neon-border-img-wrap>img {
    border-radius: inherit;
}

.procedure-list>li {
    margin-bottom: 34px;
    padding-left: 64px;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 26px;
    color: var(--white-color);
}

.expert-drive-list.procedure-list>li:not(:last-child) {
    margin-bottom: 26px;
}

.procedure-list>li:last-child {
    margin-bottom: 0px;
}

.procedure-list>li:before {
    content: "";
    background: url("../img/arrow-right.svg") no-repeat center center / 100% 100%;
    padding: 20px;
    display: block;
    position: absolute;
    top: -7px;
    left: 0px;
}

/* -=- Blog Section -=- */
.blog-list {
    margin-top: 50px;
    display: flex;
    display: -webkit-flex;
    gap: 24px;
}

.blog-list>li {
    width: 33.33%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

.blog-list>li img {
    margin-bottom: 24px;
    border-radius: 0px 24px;
    object-fit: cover;
    object-position: center top;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.blog-list>li .blog-release-data {
    margin-bottom: 16px;
    display: block;
    color: var(--white-color);
    text-transform: uppercase;
}

.blog-sub-title {
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-list>li h3 {
    margin-bottom: 16px;
    padding-left: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-list>li .blog-desc {
    flex-grow: 1;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-desc-grid h3 a {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
    transition-duration: 0.8s;
    -webkit-transition-duration: 0.8s;
    display: block;
}

.blog-desc-grid h3 a:hover {
    color: var(--neon-dark);
}

.read-more-link {
    padding-right: 34px;
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    font-style: normal;
    position: relative;
    display: inline-block;
}

.featured-drive-list-desc {
    text-align: center;
}

.read-more-link span {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    text-decoration: none;
}

.read-more-link span:before {
    content: "";
    display: block;
    height: 0.5px;
    width: 100%;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.read-more-link:before {
    content: "";
    padding: 12px;
    background: url("../img/arrow-right.svg") no-repeat center center / 100% 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
}

.read-more-link:hover:before {
    right: -10px;
}

/* Experts Drive section */
.experts-sub-title {
    padding-bottom: 32px;
    margin-bottom: 32px;
    position: relative;
}

.experts-sub-title:before {
    content: "";
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    height: 1px;
    width: 100%;
    max-width: 312px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.experts-drive-subtitle-wrap {
    margin-bottom: 23px;
}

/* Experts Drive section */
.experts-sub-title {
    padding-bottom: 32px;
    margin-bottom: 32px;
    position: relative;
}

.experts-sub-title:before {
    content: "";
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    height: 1px;
    width: 100%;
    max-width: 312px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.experts-drive-subtitle-wrap {
    margin-bottom: 23px;
}

.light-theme .read-more-link span {
    background: none;
    background-clip: initial;
    color: var(--secondary-color);
    -webkit-text-fill-color: initial;
}

.light-theme .read-more-link span::before {
    background: var(--secondary-color);
}

.featured-drive-list-desc {
    margin-top: 24px;
}

.featured-prdct-title {
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 25px;
    color: var(--secondary-color);
}

/* -=- Quick Shop Section -=- */
.common-title-breaker-wrapper {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.common-title-breaker {
    max-width: 82%;
}

.quick-shop-list {
    margin-top: 48px;
    display: flex;
    display: -webkit-flex;
    gap: 24px;
}

.quick-shop-list>li {
    padding: 32px 48px;
    width: 33.33%;
    border: 1px solid var(--neon-dark);

}

.quick-shop-list>li>img {
    border-radius: 32px 0px;
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-position: center top;
    filter: drop-shadow(0px 64px 147px rgba(74, 74, 74, 0.07)) drop-shadow(0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112)) drop-shadow(0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035)) drop-shadow(0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888));
}

.quick-shop-text {
    margin-top: 24px;
}

.quick-shop-text .main-prdct-title {
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.quick-shop-text .main-prdct-title:hover {
    color: var(--neon-dark);
}

.quick-shop-text p span b {
    margin-left: 5px;
    font-weight: 400;
    font-style: normal;
}

.quick-shop-text p span {
    display: inline-block;
}

.quick-shop-text p {
    line-height: 22px;
    font-weight: 400;
}

.quick-shop-brand {
    margin-bottom: 8px;
}

/* Customer Offer Section */
.cust-offer-icon {
    margin-bottom: 24px;
    padding: 16px;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 0px 8px;
}

.neon-gradient {
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
}

.neon-gradient.neon-gradient-reverse {
    background-image: linear-gradient(0deg, #28F6A2 0%, #8AFACC 100%);
}

.cust-offer-icon.icon-border-radius-swap {
    border-radius: 8px 0px;
}

.cust-offer-list {
    margin-bottom: 64px;
}

.cust-offer-list .h4 {
    margin-bottom: 16px;
}

/* Data Compare Slider Section */
.data-compare-slider>img,
.data-compare-slider>.beer-reveal>img {
    border-radius: 0px 40px;
}

.beer-range:focus~.beer-handle {
    background: linear-gradient(180deg, rgba(40, 246, 162, 0.6) 0%, rgba(138, 250, 204, 0.6) 100%);
}

.data-compare-slider .beer-handle,
.data-compare-slider .beer-handle:focus,
.data-compare-slider .beer-handle:focus:active {
    background: linear-gradient(180deg, rgba(40, 246, 162, 0.6) 0%, rgba(138, 250, 204, 0.6) 100%);
}

.data-compare-slider .beer-reveal[data-beer-label]:after,
.data-compare-slider.beer-slider[data-beer-label]:after {
    opacity: 0;
}

.data-slider-info-wrap {
    margin-bottom: 8px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

.data-slider-info-wrap span {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #000222;
    display: inline-block;
}

/* Featured Drive Section */
.featured-drive-list {
    padding: 32px;
    box-shadow: 0 0 0px 1px var(--neon-dark) inset;
    border-radius: 0px 24px;
}

.featured-drive-prdct-slider .swiper-slide:nth-child(4n+2) .featured-drive-list {
    border-radius: 24px 0px;
}

.swiper {
    padding-right: 1px;
}

.featured-drive-list>img {
    margin: 0px auto;
    width: auto;
    max-height: 200px;
    height: 100%;
    display: block;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
}

.swiper-pagination-bullet {
    background: #CBCBCB;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
}

.featured-drive-prdct-slider .swiper-pagination {
    margin-top: 40px;
}

/* -=- Contact Us Section -=- */
.contact-us .contact-us-inner-wrap {
    padding: 72px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neon-light);
    background-color: #0F253E;
    border-radius: 0px 56px;
}

.contact-us .contact-us-inner-wrap .contact-us-title {
    margin: 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 62px;
}

.contact-us.product-desc-contact .contact-us-inner-wrap .contact-us-title {
    font-size: 29px;
    line-height: 44px;
    max-width: 80%;
}

.contact-us-pattern {
    position: absolute;
    top: 50%;
    left: 0px;
    z-index: 0;
    opacity: 0.2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.contactus-desc-wrap {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Client Review Section */
.client-review-inner-wrap {
    /* margin-top: 32px; */
    padding: 64px 24px 32px;
    border: 1px solid var(--neon-dark);
    position: relative;
    transition: background-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-review-slider .swiper-slide {
    margin-top: 32px;
    height: auto;
}

.client-review-inner-wrap:hover {
    background-color: var(--secondary-color);
}

.client-review-inner-wrap:hover * {
    color: var(--white-color);
}

.client-review-inner-wrap .neon-gradient {
    padding: 20px;
    display: inline-block;
    border-radius: 0px 12px;
    position: absolute;
    top: -32px;
}

.client-review-inner-wrap .neon-gradient img {
    max-width: 24px;
}

.client-profile-wrap {
    margin-top: 20px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.client-profile-img {
    margin-right: 16px;
    max-height: 48px;
    max-width: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.client-profile-img img {
    object-fit: cover;
}

.client-review-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--secondary-color);
}

.client-profile-desc .h5 {
    margin-bottom: 4px;
}

.swiper-arrow-wrapper {
    display: flex;
    display: -webkit-flex;
    column-gap: 24px;
    align-items: center;
}

.client-review-slider .swiper-arrow-wrapper .swiper-button-next,
.client-review-slider .swiper-arrow-wrapper .swiper-button-prev {
    margin: 0px;
    padding: 12px;
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    width: 48px;
    height: 48px;
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
}

.client-review-slider .swiper-button-prev {
    transform: scaleX(-1);
}

.client-review-slider .swiper-button-next:after,
.client-review-slider .swiper-button-prev:after {
    content: "";
}

.swiper-slider-indicator-wrap {
    margin-top: 40px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-slider-indicator-wrap .swiper-pagination {
    text-align: left;
}

/* FAQ Section */
.faq-accordian-wrap .card-header {
    padding: 0px;
    border: 0px;
    border-top: 0.4px solid #C4C4C4;
    border-radius: 0px;
}

.faq-accordian-wrap .card-header .btn {
    padding: 16px 45px 10px 0px;
    display: block;
    width: 100%;
    text-align: left;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--secondary-color);
    background-color: var(--white-color);
    transition: 0.15s all ease;
    position: relative;
    white-space: initial;
}

.faq-accordian-wrap .card-header .btn.collapsed {
    padding-top: 24px;
    padding-bottom: 24px;
}

.faq-accordian-wrap .card-body {
    padding: 0px 0px 40px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #747474;
}

.faq-accordian-wrap .card-header .btn::before {
    content: "";
    padding: 16px;
    display: block;
    background: url("../img/not-collapsed.svg") no-repeat center center / cover;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.faq-accordian-wrap .card-header .btn.collapsed::before {
    background-image: url("../img/collapsed.svg");
}

.faq-accordian-wrap .card {
    border: 0px;
}

.faq-accordian-wrap .card:last-child {
    border-bottom: 0.4px solid #C4C4C4;
}

.faq-accordian-wrap .btn:hover,
.faq-accordian-wrap .btn:focus,
.faq-accordian-wrap .btn:focus:active {
    text-decoration: none;
}

/* ASK US section */
.ask-us-list-wrap {
    display: flex;
    display: -webkit-flex;
}

.ask-us-list-wrap .ask-us-list-icon {
    margin: 0px 24px 0px 0px;
    flex-shrink: 0;
}

.ask-us-list-outer-wrap {
    margin-top: 63px;
}

.ask-us-list-outer-wrap:last-child {
    margin-bottom: 63px;
}

.ask-us-list-desc .ask-us-text {
    margin: 16px 0px 24px;
}

.ask-us-image-wrap {
    background: url("../img/ask-us.jpeg") no-repeat right center / auto 100%;
    position: relative;
}

.ask-us-list-row {
    position: relative;
    z-index: 1;
}

.ask-us-image-wrap:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    background: linear-gradient(90deg, #FFFFFF 65.07%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.ask-us-list-desc .h4 {
    font-weight: 400;
}

.ask-us-list-desc .h4 b {
    font-weight: 700;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .60;
}

/* Contact Page */
.contact-form-wrap {
    padding: 56px 64px;
    border: 1px solid var(--neon-dark);
    box-shadow: 0px 4px 40px rgba(128, 128, 128, 0.16);
    -webkit-box-shadow: 0px 4px 40px rgba(128, 128, 128, 0.16);
    border-radius: 0px 40px;
}

.contact-form-inner-wrap>form {
    display: flex;
    display: -webkit-flex;
    column-gap: 24px;
    row-gap: 32px;
    flex-wrap: wrap;
}

.form-group {
    margin: 0px;
}

.form-group .form-control {
    padding: 14px 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #828282;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    height: auto;
}

.contact-form-inner-wrap .width-50 {
    width: calc(50% - 12px);
}

.contact-form-inner-wrap .width-100 {
    width: 100%;
}

.error-msg {
    margin-top: 7px;
    color: #EA0000;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.error-msg::before {
    content: "!";
    border: 1px solid #EA0000;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    width: 16px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
}

.subscribe-section .contact-us-via-email-wrap .contact-us-title {
    margin-bottom: 16px;
}

.subscribe-section .contact-us-via-email-wrap .form-group {
    max-width: 440px;
}

.contact-us.subscribe-section .contact-us-inner-wrap {
    padding-top: 67px;
    padding-bottom: 67px;
}

/* Blog Listing Page */
.blog-listing {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 48px;
}

.blog-listing>li {
    width: 33%;
    /* width: calc(33.33% - 16px); */
    width: calc(50% - 12px);
}

.blog-list-desc-wrapper {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-list-wrap {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    height: 100%;
}

.blog-writer-profile {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.blog-writer-profile-img {
    margin-right: 8px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.blog-writer-profile-img img {
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.blog-list-date-time,
.blog-writer-prfl-share-wrap {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
}

.blog-writer-profile-name {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
}

.share-link.common-icon {
    padding: 8px;
    line-height: 0px;
    border-radius: 8px 0px;
    align-self: center;
    background-position: bottom;
    background-size: 100% 150%;
    transition: background-position 0.4s ease-in-out;
}

.share-link>img {
    height: 16px;
    width: 16px;
}

.blog-list-img-wrapper {
    margin-bottom: 16px;
    width: 100%;
    height: 200px;
    border-radius: 0px 24px;
    overflow: hidden;
}

.blog-list-img {
    background: url("") no-repeat center center / cover;
    height: 100%;
    width: 100%;
    transition: 0.4s ease-in-out;
}

.blog-list-title {
    margin-bottom: 8px;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--secondary-color);
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.blog-list-short-desc {
    /* margin-bottom: 12px; */
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #4F4F4F;
}

.blog-list-date,
.blog-list-time {
    padding-left: 32px;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4F4F4F;
}

.blog-list-date:before,
.blog-list-time:before {
    content: "";
    padding: 12px;
    display: block;
    background: url() no-repeat center center / cover;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.blog-list-date:before {
    background-image: url("../img/calendar-icon.svg");
}

.blog-list-time:before {
    background-image: url("../img/clock-icon.svg");
}

.blog-list-date-time {
    margin-bottom: 8px;
}

.blog-list-wrap:hover .blog-list-img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.blog-listing-highlight-section .blog-list-img-wrapper {
    height: 324px;
}

.blog-listing-highlight-section .blog-list-title {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
}

.blog-listing-sidebar h3,
.blog-listing-sidebar .h3 {
    margin-bottom: 20px;
    padding: 0px 0px 20px 0px;
    position: relative;
}

.blog-listing-sidebar h3:before,
.blog-listing-sidebar .h3:before {
    content: "";
    width: 100%;
    height: 1px;
    background: url(../img/small-dashed-line.svg) repeat-x center center / auto 100%;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.sidebar-nav-links li:not(:last-child) {
    margin-bottom: 16px;
}

.sidebar-nav-links li a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #000;
    display: inline-block;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.sidebar-blog-searchbox form .form-group:not(:last-child),
.sidebar-subscribe-section form .form-group:not(:last-child) {
    margin-bottom: 16px;
}

.sidebar-contact-us .location-details-list {
    padding: 0px;
}

.blog-list-title:hover {
    color: var(--primary-color);
}

.sidebar-nav-links li a:hover {
    color: var(--neon-dark);
}

a.share-link:hover {
    background-position: top;
}

/* blog Details Page */
.blog-detail-hero-inner-wrap .blog-detail-sub-title {
    /* margin-bottom: 16px; */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #828282;
}

.blog-detail-hero-inner-wrap .blog-writer-profile-name {
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 150%;
    color: var(--secondary-color);
}

.blog-detail-hero-inner-wrap .blog-writer-profile-img {
    max-height: 48px;
    max-width: 48px;
}

.related-blog-list .blog-listing>li {
    width: calc(25% - 18px);
}

.conclusion-outer-wrap .h2 {
    margin-bottom: 30px;
}

.conclusion-outer-wrap .neon-gradient {
    padding: 1px 4px;
    filter: drop-shadow(0px 64px 147px rgba(74, 74, 74, 0.07)) drop-shadow(0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112)) drop-shadow(0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035)) drop-shadow(0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888));
    border-radius: 0px 56px;
}

.blog-conclusion-inner-wrap {
    padding: 32px;
    background-color: var(--white-color);
    border-radius: 0px 56px;
}

.conclusion-outer-wrap {
    margin-top: 24px;
}

.blog-detail-main-area-inner p i {
    margin-bottom: 0px;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    display: inline-block;
}

.blog-detail-main-area-inner i {
    margin-bottom: 24px;
    color: #280D69;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    display: block;
}

.blog-detail-main-area-inner li,
.blog-detail-main-area-inner p {
    font-style: normal;
    font-weight: 400;
    /* font-size: 16px;
    line-height: 24px; */
    font-size: 20px;
    line-height: 30px;
    color: #4F4F4F;
}

.blog-detail-main-area-inner ul,
.blog-detail-main-area-inner ol,
.blog-detail-main-area-inner img,
.blog-detail-main-area-inner p {
    margin-bottom: 32px;
}

.blog-detail-main-area-inner a {
    color: var(--primary-color);
    text-decoration: underline;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.blog-detail-main-area-inner a:hover {
    color: var(--secondary-color);
}

.blog-detail-main-area-inner ol ol>li,
.blog-detail-main-area-inner ul>li {
    padding-left: 48px;
}

.blog-detail-main-area-inner ol ol>li {
    list-style-type: upper-alpha;
}

.blog-detail-main-area-inner li {
    margin-bottom: 16px;
    position: relative;
}

.blog-detail-main-area-inner ul>li:before {
    content: "";
    padding: 16px;
    display: block;
    background: url("../img/brown-arrow-right.svg") no-repeat center center / cover;
    position: absolute;
    left: 0px;
    top: -4px;
}

.blog-detail-main-area-inner ol {
    list-style: numeric inside;
}

.blog-detail-main-area-inner img {
    margin: 0px auto 24px;
    display: block;
    max-height: 348px;
    height: 100%;
    width: auto;
    border-radius: 0px 32px;
}

.blog-detail-main-area-inner hr {
    background: url("../img/black-line.svg");
}

.blog-detail-main-area-inner h1,
.blog-detail-main-area-inner h2,
.blog-detail-main-area-inner h3,
.blog-detail-main-area-inner h4,
.blog-detail-main-area-inner h5,
.blog-detail-main-area-inner h6 {
    color: var(--secondary-color);
    padding-left: 0px;
}

.blog-detail-main-area-inner h3 {
    margin-bottom: 22px;
}

.blog-detail-main-area-inner blockquote {
    margin-bottom: 32px;
    padding: 0px 0px 0px 66px;
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    position: relative;
    font-style: italic;
}

.blog-detail-main-area-inner blockquote:before {
    content: "";
    padding: 22px;
    display: block;
    background: url(../img/left-quote.png) no-repeat center center / cover;
    position: absolute;
    top: 0px;
    left: 0px;
}

.blog-detail-main-area-inner>iframe {
    margin-bottom: 30px;
    width: 100% !important;
    height: 500px !important;
}

.blog-detail-main-area-inner h6 {
    margin-bottom: 20px;
}

.blog-detail-main-area-inner ol ul,
.blog-detail-main-area-inner ul ol,
.blog-detail-main-area-inner ol ol,
.blog-detail-main-area-inner ul ul {
    margin-top: 20px;
}

.blog-detail-main-area-inner h4 {
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 500;
}

.blog-detail-instruction {
    margin-bottom: 32px;
    padding: 24px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--neon-dark);
    background: linear-gradient(180deg, rgba(40, 246, 162, 0.12) 0%, rgba(138, 250, 204, 0.12) 100%);
    border-radius: 0px 16px;
}

.brand-reason-desc-section .blog-detail-instruction {
    margin-bottom: 0px;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
}

.brand-reason-desc-list {
    margin: 24px 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    column-gap: 24px;
}

.find-brands-list>li>a {
    font-size: 22px;
    line-height: 20px;
    color: #000;
    font-weight: 700;
}

.brand-reason-desc-list>li {
    width: 33.33%;
}

.blog-detail-inst-inner-wrap {
    max-width: 84%;
}

.blog-detail-main-area-inner .blog-detail-inst-inner-wrap .instruction-desc {
    margin-bottom: 0px;
    color: #4F4F4F;
}

.blog-detail-inst-inner-wrap .main-title {
    margin-bottom: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 35px;
    color: var(--secondary-color);
}

.blog-detail-instruction .btn {
    color: var(--secondary-color);
    text-decoration: none;
}

/* About Product Section */
.about-tab-content-area {
    padding: 40px 80px;
    border: 0.6px solid #828282;
    border-radius: 4px;
}

.about-tab-content-area .about-tab-title {
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 700;
    font-size: 29px;
    line-height: 21px;
    color: #000000;
}

.about-tab-content-area p {
    margin-bottom: 16px;
}

.about-tab-content-area ul li {
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
}

.prdct-view-desc-txt,
.about-tab-content-area p,
.about-tab-content-area ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #828282;
}

.about-tab-content-area ul li:before {
    content: "";
    padding: 12px;
    background: url('../img/grey-arrow-right.svg') no-repeat center center / cover;
    position: absolute;
    top: 2px;
    left: 0px;
    display: block;

}

/* Product Specification */
.product-spec-inner-wrap {
    padding: 24px;
    border: 0.6px solid #828282;
    border-radius: 4px;
}

.product-spec-list li {
    margin-bottom: 16px;
    padding-bottom: 20px;
    border-bottom: 0.4px solid #BDBDBD;
    display: flex;
    display: -webkit-flex;
}

.product-spec-list span {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #000222;
    display: block;
    min-width: 190px;
}

.product-spec-list p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
}

.product-spec-list {
    overflow: hidden;
}

.full-height {
    height: 100% !important;
}

.less {
    display: none;
}

.prdct-list-btn .more-div {
    display: none;
}

.prdct-list-btn .less-div {
    display: inline-block;
}

.prdct-view-details {
    margin-bottom: 24px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    position: relative;
    row-gap: 16px;
}

.prdct-view-details>li {
    display: flex;
    display: -webkit-flex;
    width: 50%;
}

.prdct-view-details::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);

}

.prdct-view-details>li:nth-child(odd) {
    padding-right: 72px;
}

.prdct-view-details>li:nth-child(even) {
    padding-left: 72px;
}

.prdct-view-details>li span,
.prdct-view-details>li p {
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 30px;
    color: #000222;
    display: inline-block;
}

.prdct-view-details>li p {
    margin-left: 5px;
    font-weight: 400;
    color: #828282;
}

/* Product Listing page */
.product-listing-wrap {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 48px;
    row-gap: 40px;
}

.cart-main-title {
    padding-bottom: 80px;
}

.common-cart-section:not(:first-of-type) {
    display: none;
}

.product-listing-wrap>li {
    width: calc(33.33% - 16px);
}

.product-listing-wrap.browse-product-list-wrap-box>li {
    width: 100%;
}

.product-listing-wrap.browse-product-list-wrap-box>li .prdct-list-card {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    column-gap: 32px;
}

.product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap img {
    border-radius: 8px 0px;
}

.product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap {
    max-width: 230px;
    width: 100%;
    align-self: center;
    filter: drop-shadow(0px 64px 147px rgba(74, 74, 74, 0.07)) drop-shadow(0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112)) drop-shadow(0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035)) drop-shadow(0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888));
    border-radius: 8px 0px;
}

.product-listing-wrap.browse-product-list-wrap-box .pdct-quality {
    margin-bottom: 8px;
    position: relative;
    top: 0px;
    left: 0px;
}

.product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #000222;
    transition: color 0.4s linear;
}

.product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a:hover {
    color: var(--primary-color);
}

.product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-desc-wrap {
    flex-grow: 1;
}

.product-listing-wrap.browse-product-list-wrap-box .prdct-category {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #333333;
    text-align: left;
}

.product-listing-wrap.browse-product-list-wrap-box .brand-img {
    max-height: 16px;
    width: auto;
}

.product-listing-wrap.browse-product-list-wrap-box .prdct-card-desc-wrap {
    padding: 24px 24px 50px;
    border: 0.4px solid rgba(0, 2, 34, 0.2);
    position: relative;
}

.product-listing-wrap.browse-product-list-wrap-box .delete-btn {
    padding: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    border-radius: 4px 0px;
    cursor: pointer;
    transition: background 0.4s linear;
}

.product-listing-wrap.browse-product-list-wrap-box .delete-btn:hover {
    background-color: var(--neon-light);
}

.product-listing-wrap.browse-product-list-wrap-box .prdct-list-card:hover .prdct-card-desc-wrap {
    border-color: rgba(0, 2, 34, 0.2);
}

.browse-product-list-wrap>li .prdct-list-card {
    padding: 16px 14px;
    border: 0.4px solid rgba(0, 2, 34, 0.2);
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    height: 100%;
}

.product-listing-wrap.browse-product-list-wrap>li {
    width: calc(25% - 18px);
}

.browse-product-list-wrap .prdct-card-desc-wrap {
    padding: 16px 0px 0px;
    border: none;
}

.browse-product-list-wrap .prdct-list-card .prdct-card-img-wrap img {
    filter: drop-shadow(0px 64px 147px rgba(74, 74, 74, 0.07)) drop-shadow(0px 19.2941px 44.3162px rgba(74, 74, 74, 0.0456112)) drop-shadow(0px 8.01379px 18.4067px rgba(74, 74, 74, 0.035)) drop-shadow(0px 2.89843px 6.65734px rgba(74, 74, 74, 0.0243888));
    border-radius: 8px 0px;
}

.browse-product-list-wrap .prdct-card-title a {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000222;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.browse-product-list-wrap .prdct-list-card:hover .btn {}

.browse-product-list-wrap .brand-cate-card-wrap p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #828282;
}

.browse-product-list-wrap .prdct-list-card:hover .prdct-card-desc-wrap {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.card-prdct-condition {
    margin-bottom: 16px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

.prdct-list-card .card-prdct-condition .pdct-quality {
    position: static;
}

.card-prdct-condition>img {
    height: 16px;
    width: auto;
}

.prdct-list-card .prdct-card-img-wrap {
    position: relative;
    border: 0.4px solid rgba(0, 2, 34, 0.2);
}
.product-listing-wrap.browse-product-list-wrap .prdct-list-card .prdct-card-img-wrap{
    border: none;
}

.prdct-list-card .prdct-card-img-wrap:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.prdct-list-card .prdct-card-img-wrap img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.prdct-card-img-wrap .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s linear;
}

.prdct-list-card .pdct-quality {
    padding: 4px 12px;
    background: #000222;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--white-color);
    text-transform: uppercase;
    position: absolute;
    top: 16px;
    left: 16px;
}

.prdct-card-desc-wrap {
    padding: 20px 16px;
    border: 0.4px solid rgba(0, 2, 34, 0.2);
    border-top: none;
    transition: border-color 0.5s linear, box-shadow 0.5s linear;
    box-shadow: 0px 4px 40px rgba(128, 128, 128, 0);
    -webkit-box-shadow: 0px 4px 40px rgba(128, 128, 128, 0);
}

.brand-cate-card-wrap {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
}

.prdct-card-title {
    margin-bottom: 12px;
}

.prdct-card-title a {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #000222;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.5s ease-in-out;
}

.prdct-card-title a:hover {
    color: var(--primary-color);
}

.prdct-list-card:hover .btn {
    opacity: 1;
}

.prdct-list-card:hover .prdct-card-desc-wrap {
    border-color: #000222;
    box-shadow: 0px 4px 40px rgba(128, 128, 128, 0.16);
    -webkit-box-shadow: 0px 4px 40px rgba(128, 128, 128, 0.16);
}

.brand-cate-card-wrap p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #4F4F4F;
}

.prdct-card-desc-wrap span,
.brand-cate-card-wrap span {
    display: inline-block;
    font-weight: 400;
}

.related-product-list.product-listing-wrap li {
    width: calc(25% - 18px);
}

.find-brands-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 40px;
}

.find-brands-list>li {
    width: calc(14% + 12px);
}

.find-brands-list>li>a {
    padding: 25px 10px;
    border: 1px solid #BDBDBD;
    border-radius: 8px 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 100%);
    transition: border-color .4s linear, background .4s linear;
}

.brands-list-view>li {
    margin-bottom: 6px;
    padding: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--secondary-color);
}

/* .brands-list-view > li:nth-child(odd){
    background-color: rgba(0, 0, 0, .02);
}
.brands-list-view > li:nth-child(even){
    background-color: rgba(40, 246, 162, .2);
} */
.find-brands-list>li>a.active:hover,
.find-brands-list>li>a:focus,
.find-brands-list>li>a:focus:active,
.find-brands-list>li>a.active {
    border-color: transparent;
    background: linear-gradient(180deg, #28f6a2 0%, #8AFACC 100%);
}

.find-brands-list>li>a:hover {
    border-color: var(--neon-dark);
    background: rgba(40, 246, 162, 0.1);

}

.find-brands-list>li>a:focus img,
.find-brands-list>li>a:hover img {
    mix-blend-mode: darken;
}

.find-brands-list>li>a>img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
}

.find-brands-list>li>a.active>img {
    mix-blend-mode: darken;
}

.browse-prdct-row .form-group {
    margin-bottom: 16px;
}

.browse-prdct-tab-wrap .nav-tabs {
    margin-bottom: 64px;
    border: none;
    gap: 0px 24px;
}

.browse-prdct-tab-wrap .nav-tabs .nav-link {
    padding: 0px 8px 11px;
    position: relative;
    border: none;
    border-radius: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 23px;
    line-height: 30px;
    color: #828282;
}

.browse-prdct-tab-wrap .nav-tabs .nav-item.show .nav-link,
.browse-prdct-tab-wrap .nav-tabs .nav-link.active {
    font-weight: 700;
    color: #333333;
}

.browse-prdct-tab-wrap .nav-tabs .nav-link:before {
    content: "";
    height: 2px;
    width: 100%;
    max-width: 0px;
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    border-radius: 4px 0px;
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
    transition-duration: .6s;
    -webkit-transition-duration: .6s;
}

.browse-prdct-tab-wrap .nav-tabs .nav-item.show .nav-link:before,
.browse-prdct-tab-wrap .nav-tabs .nav-link.active:before,
.browse-prdct-tab-wrap .nav-tabs .nav-link:hover:before {
    max-width: 100%;
    right: auto;
    left: 0;
}

/* Cart Page */
/* .product-listing-wrap.cart-listing > li{
    width: 100%;
} */
/* Product Listing Banner Section */
.prdct-listing-banner {
    padding: 24px;
    background: #F2F2F2;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.prdct-listing-hero-inner-wrap {
    max-width: 64%;
    position: relative;
    z-index: 1;
}

.prdct-listing-banner .h4 {
    margin-bottom: 8px;
    line-height: 40px;
}

.prdct-listing-banner .prdct-listing-sub-title {
    margin-bottom: 8px;
    color: #828282;
}

.prdct-listing-banner-img {
    width: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    z-index: 0;
}

/* Common Checkbox CSS */
.form-check-box {
    margin-bottom: 0px;
    display: block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check-box input {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check-box input {
    margin: 0px;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    background: transparent;
    transition: background 0.6s linear;
}

.form-check-box:hover input~.checkmark {
    background-color: #efefef;
}

.form-check-box input:checked~.checkmark {
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    border-color: var(--neon-dark);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check-box input:checked~.checkmark:after {
    opacity: 1;
}

.form-check-box .checkmark:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--secondary-color);
    border-width: 0 3px 3px 0;
    display: block;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: opacity 0.4s linear;
}

.checkbox-txt {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #000222;
}

.common-checkbox-list>li {
    margin-bottom: 24px;
}

.common-checkbox-list {
    margin-top: 32px;
}

.checkbox-item-count {
    margin-left: 40px;
    padding: 0px;
    border: none;
    outline: none;
    background: transparent;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000222;
}

.checkbox-item-count span {
    display: inline-block;
    margin-right: 5px;
}

.categories-outer-wrap {
    position: relative;
}

.categories-outer-wrap,
.brands-outer-wrap {
    padding: 48px 0px;
}

.product-listing-section .categories-outer-wrap:after {
    top: auto;
    bottom: 0px;
    width: 100%;
    background-image: url(../img/black-line.svg);
}

.categories-outer-wrap h5,
.brands-outer-wrap h5 {
    margin-bottom: 32px;
}

.categories-outer-wrap h5 span,
.brands-outer-wrap h5 span {
    padding-left: 24px;
}

.categories-outer-wrap .form-group .form-control,
.brands-outer-wrap .form-group .form-control {
    font-size: 16px;
    line-height: 21px;
}

/* Product Desc Slider CSS */
.slider .swiper-container {
    width: 100%;
    height: 100%;
}

.slider__flex {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.slider__col {
    display: flex;
    flex-direction: column;
    width: 88px;
    margin-right: 24px;
}

.slider__prev,
.slider__next {
    margin: 15px auto;
    cursor: pointer;
    text-align: center;
    color: transparent;
    height: 24px;
    width: 24px;
    background: url("../img/product-slider-arrow.svg") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider__prev.swiper-button-disabled,
.slider__next.swiper-button-disabled {
    opacity: 0.3;
}

.slider__prev {
    margin-top: 0px;
}

.slider__next {
    margin-bottom: 0px;
    transform: scale(-1);
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

.slider__thumbs {
    /* height: 418px;
    overflow: hidden;
    width: 80px; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider__thumbs .slider__image {
    transition: 0.25s;
    /* -webkit-filter: grayscale(100%); */
    /* filter: grayscale(100%); */
    opacity: 0.9;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.slider__images {
    height: 418px;
    overflow: hidden;
}

.slider__images .slider__image img {
    transition: 3s;
}

.slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--neon-dark) !important;
}

a[data-fancybox] img {
    cursor: zoom-in;
}

/* About Us Page */
.aboutus-video-banner-inner {
    height: 348px;
    border-radius: 0px 32px;
}

.common-video-img-wrapper {
    background: url() no-repeat center center / cover;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.common-video-img-wrapper:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    background: linear-gradient(180deg, rgba(0, 2, 34, 0) 0%, rgba(0, 2, 34, 0.48) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.prdct-video-inner-wrap {
    border-radius: 0px 24px;
}

.common-video-img-wrapper .btn {
    position: relative;
    z-index: 2;
}

.prdct-video-inner-wrap {
    padding: 40px 24px;
    border: 1px solid #000222;
    border-radius: 0px 24px;
}

.prdct-video-inner-wrap p {
    color: #4F4F4F;
}

.prdct-video-inner-wrap p b {
    color: #000222;
}

.prdct-video-inner-wrap .video-play-btn {
    padding: 20px;
}

.prdct-video-inner-wrap .video-play-btn svg {
    height: 30px;
    width: 30px;
}

.common-video-img-wrapper.mission-video-inner-wrapper {
    height: 520px;
}

.video-play-btn {
    padding: 27px;
    display: inline-block;
    border-radius: 50%;
}

.mission-video-inner-wrapper .video-info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 52px;
    color: #FFFFFF;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 2;
}

.mission-video-inner-wrapper .video-info-text span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
}

.compensate-for-scrollbar {
    padding-right: 0px !important;
}

.video-play-btn>svg {
    display: block;
}

.competitive-price-inner-wrap {
    padding: 64px 20px;
    background: rgba(242, 242, 242, 0.5);
    border: 1px solid rgba(0, 2, 34, 0.5);
    border-radius: 16px;
}

.competitive-price-inner-wrap .h4 {
    margin-bottom: 24px;
}

.competitive-price-inner-wrap .h3 {
    margin-bottom: 0px;
}

/* About Counter Section */
.abt-number-counter {
    font-style: normal;
    font-weight: 700;
    font-size: 120px;
    line-height: 180px;
    color: #000222;
}

.abt-counter-wrap {
    margin-top: 64px;
}

.abt-counter-title {
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 40px;
    color: #828282;
}

.industries-list-wrapper {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 24px;
}

.industries-list-wrapper>li {
    width: calc(33.33% - 16px);
}

.industries-list-inner {
    padding: 40px 24px;
    border: 1px solid #000222;
    border-radius: 24px 0px;
    height: 100%;
    transition: border-radius 0.4s linear, border-color 0.4s linear, background-color 0.4s linear;
}

.industries-list-inner:hover {
    border-radius: 0px 24px;
    background-color: #0F253E;
    border-color: var(--neon-dark);
}

.industries-list-inner p {
    background: linear-gradient(180deg, #000222 0%, #000222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-list-inner:hover p {
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-list-inner svg {
    display: block;
}

.industries-list-inner .h5 {
    margin: 24px 0px;
}

.gradian-hover-start {
    stop-color: #1C1B1F;
    transition: stop-colors 0.4s linear;
}

.gradian-hover-end {
    stop-color: #1C1B1F;
    transition: stop-colors 0.4s linear;
}

.industries-list-inner:hover .gradian-hover-start {
    stop-color: #28F6A2;
}

.industries-list-inner:hover .gradian-hover-end {
    stop-color: #8AFACC;
}

/* Brand Page */
.industrial-auto-parts-wrapper {
    padding: 40px;
    background: linear-gradient(180deg, rgba(40, 246, 162, .24) 0%, rgba(138, 250, 204, .24) 100%);
}

.industrial-auto-parts-wrapper .h5 {
    margin: 0px;
}

.industrial-auto-parts-wrapper .h3 {
    margin: 16px 0px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.industrial-auto-parts-wrapper .h3 b {
    padding-right: 50px;
    display: inline-block;
    position: relative;
}

.industrial-auto-parts-wrapper .h3 b:after {
    content: "";
    height: 3px;
    width: 13px;
    display: block;
    background-color: #000222;
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.industrial-auto-parts-wrapper .h3 b:last-child {
    padding: 0px;
}

.industrial-auto-parts-wrapper .h3 b:last-child:after {
    display: none;
}

.industrial-auto-parts-img {
    margin-bottom: 16px;
    height: 40px;
    width: 40px;
}

.specialists-inner-wrap {
    padding: 48px;
    background: rgba(242, 242, 242, 0.4);
    border: 0.4px solid rgba(0, 2, 34, 0.4);
    border-radius: 0px 40px;
}

.common-popular-parts-wrap {
    border: 1px solid #000222;
    border-radius: 0px 32px;
    height: 100%;
    padding-bottom: 40px;
}

.common-popular-parts-wrap .main-prdct-category,
.common-popular-parts-wrap .popular-parts-list {
    padding-left: 40px;
    padding-right: 40px;
}

.common-popular-parts-wrap .main-prdct-category {
    padding-top: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #000222;
}

.common-popular-parts-wrap .popular-parts-list {
    padding-top: 32px;
}

.common-popular-parts-wrap .popular-parts-list>li {
    padding-left: 30px;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #000222;
}

.common-popular-parts-wrap .popular-parts-list>li>p {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: var(--secondary-color);
}

.common-popular-parts-wrap .popular-parts-list>li>a {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.4s linear;
}

.common-popular-parts-wrap .popular-parts-list>li>a:hover,
.common-popular-parts-wrap .popular-parts-list>li>a:focus {
    color: var(--primary-color);
}

.common-popular-parts-wrap .popular-parts-list>li:not(:last-child) {
    margin-bottom: 24px;
}

.common-popular-parts-wrap .popular-parts-list>li:before {
    content: "";
    padding: 2.5px;
    display: block;
    background-color: #000222;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    top: 50%;
    left: 12px;
}

.main-prdct-category h5,
.main-prdct-category .h5 {
    margin-bottom: 8px;
}

.popular-parts-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #828282;
}

.popular-image-section .experts-drive-subtitle-wrap .h3 {
    padding-bottom: 32px;
    margin-bottom: 32px;
    position: relative;
}

.popular-image-section .experts-drive-subtitle-wrap .h3:before {
    content: "";
    bottom: 0px;
    left: 0px;
    width: 312px;
    height: 1px;
    background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
    position: absolute;
}

.popular-image-row {
    margin-top: 72px;
}

.specialists-inner-wrap .about-tab-content-area {
    padding: 0px;
    border: none;
}

.specialists-image {
    width: max-content;
    max-width: 100%;
}

.specialists-image img {
    width: 310px;
}

.specialists-inner-wrap .experts-drive-subtitle-wrap {
    margin-bottom: 16px;
}

/* -=- Footer Widget CSS Start -=- */
footer .container {
    padding-top: 88px;
    padding-bottom: 32px;
}

.dashed-border {
    position: relative;
}

.categories-outer-wrap:after,
.related-blog-list>.container:after,
.dashed-border:before {
    content: "";
    width: calc(100% - 32px);
    height: 1px;
    background: url("../img/neon-line.svg") repeat-x center center / auto 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.related-blog-list>.container:after {
    background-image: url(../img/black-line.svg);
    top: auto;
    bottom: 0px;
}

footer a,
footer p,
footer span {
    color: var(--white-color);
}

/* footer ul a {
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
} */

footer ul a:focus,
footer ul a:focus:active,
footer ul a:hover {
    color: var(--neon-dark);
}

footer .footer-logo {
    margin: 0px 0px 24px;
    max-width: 90px;
    display: inline-block;
}

footer .company-short-desc,
.footer-contact a,
.footer-nav a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}

.footer-contact a {
    line-height: 22px;
}

.footer-contact a,
.footer-nav a {
    transition: color 0.4s linear;
}

.social-icons li a svg path {
    transition: stroke 0.4s linear;
}

.footer-nav li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-copyright {
    margin-top: 32px;
    padding-top: 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    position: relative;
}

.footer-copyright:before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
}

/* -=- Social icons -=- */
.social-icons {
    margin-top: 28px;
}

.social-icons li a {
    display: block;
    line-height: 0px;
    padding: 7px;
    border: 1px solid #87f9ca;
    border-radius: 0px 8px;
}

.social-icons li a svg {
    width: 24px;
    height: 24px;
}

/* .social-icons li a svg path,
.social-icons li a {
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
} */

.social-icons li a:hover,
.social-icons li a:focus {
    border-color: var(--white-color);
}

.social-icons li a:hover svg path,
.social-icons li a:focus svg path {
    stroke: #fff;
}

.social-icons li:not(:last-child) {
    margin-right: 16px;
}

.footer-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #28F6A2;
}

.footer-contact li {
    margin-bottom: 16px;
}

.footer-contact li a {
    padding-left: 40px;
    display: block;
    position: relative;
    word-break: break-all;
}

.footer-contact li a:before {
    content: "";
    padding: 12px;
    background: url() no-repeat center center / 100% 100%;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.footer-contact li a.mail-contact:before {
    background-image: url('../img/mail.svg');
}

.footer-contact li a.tel-contact:before {
    background-image: url('../img/phone-call.svg');
}


/****** Responsive CSS Start ******/
/* Large Desktop Device */
@media only screen and (min-width: 1300px) {
    .container {
        max-width: 1240px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299.98px) {
    .common-spacing {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    /* Common CSS */
    .btn {
        padding: 14px 18px;
        font-size: 14px;
        line-height: 14px;
    }

    /* Home page */
    /* navbar CSS */
    header .navbar-nav .nav-item {
        margin: 0px 16px 0px 0px;
    }

    header .navbar-nav {
        margin: 0px 0px 0px 18px;
    }

    header .shopping-btn {
        margin-left: 16px;
        padding: 8px;
        width: 100%;
    }

    header .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        line-height: 19px;
    }

    /* Product Listing page 2 */
    .find-brands-list>li {
        width: calc(14% + 9px);
    }

    /* Discover Services Section*/
    .quick-services-list li a {
        font-size: 18px;
        line-height: 24px;
    }

    /* Our Services Section */
    .our-services-list>li a span {
        font-size: 22px;
        line-height: 30px;
    }

    /* Book Services Section */
    .book-service .book-ser-title {
        font-size: 44px;
        line-height: 52px;
    }

    /* Contact Us Section */
    .contact-us .contact-us-inner-wrap .contact-us-title {
        max-width: 75%;
        font-size: 44px;
        line-height: 58px;
    }

    .subscribe-section .contact-us-via-email-wrap .contact-us-title {
        max-width: 100%;
    }

    /* Product Listing Page */
    .prdct-listing-banner-img {
        right: -10%;
    }

    .product-listing-wrap>li {
        width: calc(50% - 12px);
    }

    .prdct-card-desc-wrap {
        padding: 18px 12px;
    }

    .brand-cate-card-wrap p {
        font-size: 13px;
        line-height: 18px;
    }

    .product-spec-list li {
        margin-bottom: 12px;
        padding-bottom: 16px;
    }

    .product-spec-list p,
    .product-spec-list span {
        font-size: 16px;
        line-height: 21px;
    }

    /* Product Description page */
    .prdct-view-details>li span,
    .prdct-view-details>li p {
        font-size: 18px;
        line-height: 24px;
    }

    .about-tab-content-area {
        padding: 30px 40px;
    }

    .h3,
    h3 {
        font-size: 28px;
        line-height: 120%;
    }

    /* Footer Section */
    footer .company-short-desc,
    .footer-contact a,
    .footer-nav a {
        font-size: 14px;
        line-height: 32px;
    }

    footer .container {
        /* padding-bottom: 42px; */
        padding-bottom: 24px;
    }

    .footer-contact li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        margin-top: 28px;
        padding-top: 24px;
        font-size: 18px;
        line-height: 28px
    }

    .social-icons li a {
        padding: 5px;
    }

    .social-icons li a svg {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (min-width: 992px) {

    header .navbar .navbar-nav .nav-link {
        position: relative;
    }

    .expand-menu {
        display: block;
    }

    .dropdown-menu .dropdown-item span:after,
    header .navbar .navbar-nav .nav-link:before {
        content: "";
        height: 2px;
        width: 100%;
        display: block;
        max-width: 0;
        position: absolute;
        bottom: 8px;
        right: 0;
        background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
        transition-duration: .6s;
        -webkit-transition-duration: .6s;
    }

    header .navbar .navbar-nav .active .nav-link {
        color: var(--neon-light);
        background: linear-gradient(180deg, #28F6A2 0%, #8AFACC 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .dropdown-menu .dropdown-item:hover span:after,
    .dropdown-menu .dropdown-item:focus span:after,
    header .navbar .navbar-nav .active .nav-link:before,
    header .navbar .navbar-nav .nav-link:hover:before {
        max-width: 100%;
        right: auto;
        left: 0;
    }

    .dropdown-menu .dropdown-item span:after {
        height: 1px;
        bottom: 0px;
    }

    .dropdown-menu {
        padding: 20px 0px;
        background: var(--secondary-color);
        border-radius: 0px 24px;
        min-width: 280px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20%);
        transition: all .5s;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {

    /* Common CSS */
    .mb-48 {
        margin-bottom: 38px;
    }

    .mt-48 {
        margin-top: 38px;
    }

    .common-spacing {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    /* Navigation CSS */
    header .navbar-brand {
        padding: 6px 14px 6px 0px;
        margin-right: 14px;
    }

    header .navbar-nav {
        margin: 0px 0px 0px 5px;
    }

    header .navbar-nav .nav-item {
        margin: 0px 14px 0px 0px;
    }

    header .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        line-height: 16px;
    }

    header .navbar-nav {
        margin: 0px;
    }

    header .shopping-btn {
        margin-left: 10px;
        padding: 8px 8px;
    }

    header .shopping-btn svg {
        width: 24px;
        height: 24px;
    }

    header .navbar-nav .nav-item:last-child {
        margin-right: 0px;
    }

    .dropdown-menu .dropdown-item span {
        font-size: 13px;
        line-height: 14px;
    }

    .dropdown-menu .dropdown-item {
        padding: 0px 25px;
    }

    .dropdown-menu .dropdown-item span:before {
        padding: 12px;
    }

    /* Common Element CSS */
    .h1,
    h1 {
        font-size: 50px;
        line-height: 59px;
    }

    .h2,
    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .h3,
    h3 {
        font-size: 24px;
        line-height: 125%;
    }

    .h5,
    h5 {
        font-size: 21px;
        line-height: 28px;
    }

    .h6,
    h6 {
        font-size: 18px;
        line-height: 24px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Common CSS */
    .btn {
        padding: 12px 12px;
        font-size: 13px;
        line-height: 14px;
    }

    /* Home Page Banner Section */
    .hero-wrapper {
        max-width: 600px;
    }

    .h1 span b,
    h1 span b {
        font-size: 20px;
        line-height: 28px;
    }

    /* Discover Services */
    .quick-services-list li a {
        font-size: 14px;
        line-height: 18px;
    }

    /* Product Quality Section */
    .product-order-counter>li {
        margin-bottom: 24px;
    }

    .neon-border-img-wrap>img {
        height: auto;
    }

    .product-order-counter>li .num-counter,
    .product-order-counter>li .num-counter b {
        font-size: 35px;
        line-height: 35px;
    }

    .couter-desc {
        margin: 16px 0px 0px 100px;
        padding: 30px 0px 0px 30px;
    }

    /* Our Services Section */
    .our-services-list>li a b {
        margin-bottom: 38px;
        font-size: 52px;
        line-height: 70px;
    }

    .our-services-list>li a span {
        font-size: 18px;
        line-height: 26px;
    }

    /* Book Services */
    .book-service .book-ser-title {
        font-size: 34px;
        line-height: 48px;
    }

    /* cart page  */
    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap {
        max-width: 156px;
    }

    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-desc-wrap {
        padding: 15px 20px 15px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title {
        margin-bottom: 5px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a {
        font-size: 20px;
        line-height: 24px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-category {
        margin-bottom: 5px;
        font-size: 18px;
        line-height: 22px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn {
        top: 12px;
        right: 12px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn img {
        height: 26px;
        width: 26px;
    }

    .cart-main-title {
        padding-bottom: 20px;
    }

    /* Product Listing page2 */
    .find-brands-list>li {
        width: calc(14% + 4px);
    }

    .find-brands-list>li>a>img {
        max-height: 25px;
    }

    .find-brands-list {
        row-gap: 30px;
    }

    .browse-prdct-tab-wrap .nav-tabs .nav-link {
        font-size: 20px;
    }

    .product-listing-wrap.browse-product-list-wrap>li {
        width: calc(33% - 13px);
    }

    /* Procedure Section */
    .procedure-list>li {
        margin-bottom: 20px;
        padding-left: 50px;
        font-size: 16px;
        line-height: 24px;
    }

    .procedure-list>li:before {
        padding: 16px;
        top: -2px;
    }

    /* Our Blog Section */
    .blog-list>li .blog-release-data {
        margin-bottom: 5px;
    }

    .blog-list>li h3 {
        font-size: 24px;
        line-height: 125%;
    }

    .read-more-link {
        font-size: 16px;
        line-height: 22px;
    }

    /* Quick Shop Section */
    .quick-shop-list>li {
        padding: 22px 36px;
    }

    /* Contact Us Section */
    .contact-us .contact-us-inner-wrap .contact-us-title {
        font-size: 32px;
        line-height: 46px;
        max-width: 60%;
    }

    .contact-us .contact-us-inner-wrap {
        padding: 60px 50px;
        border-radius: 0px 84px;
    }

    .contact-us.product-desc-contact .contact-us-inner-wrap .contact-us-title {
        font-size: 22px;
        line-height: 36px;
        max-width: 80%;
    }

    /* Repair Services Page */
    .experts-sub-title {
        padding-bottom: 18px;
        margin-bottom: 18px;
        font-size: 22px;
        line-height: 24px;
    }

    .expert-drive-list.procedure-list>li:not(:last-child) {
        margin-bottom: 14px;
    }

    .featured-drive-section .nav.nav-pills li a {
        padding: 12px 15px;
        font-size: 18px;
        line-height: 20px;
    }

    .cust-offer-list .h4 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 26px;
    }

    .data-slider-info-wrap span {
        font-size: 22px;
        line-height: 32px;
    }

    .repair-service-banner .hero-wrapper {
        max-width: 575px;
    }

    /* Contact Us Page */
    .subscribe-section .contact-us-via-email-wrap .contact-us-title {
        max-width: 100%;
    }

    .contact-us.subscribe-section .contact-us-inner-wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .form-group .form-control {
        padding: 10px 20px;
        font-size: 16px;
        line-height: 26px;
    }

    .contact-form-inner-wrap>form {
        row-gap: 28px;
    }

    .contact-details-text {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-details-title {
        font-size: 20px;
        line-height: 28px;
    }

    .small-hero-section {
        padding: 90px 0px;
    }

    .map-title {
        margin-bottom: 32px;
        font-size: 24px;
        line-height: 28px;
    }

    /* Blog Listing Page */
    .blog-list-date:before,
    .blog-list-time:before {
        padding: 10px;
    }

    .blog-list-date,
    .blog-list-time {
        padding-left: 26px;
        font-size: 13px;
        line-height: 26px;
    }

    .sidebar-nav-links li a {
        font-size: 16px;
        line-height: 20px;
    }

    .blog-listing-highlight-section .blog-list-title {
        font-size: 26px;
        line-height: 34px;
    }

    .sidebar-nav-links li:not(:last-child) {
        margin-bottom: 10px;
    }

    /* Blog Detail Page */
    .blog-detail-hero-inner-wrap .blog-writer-profile-name {
        font-size: 22px;
        line-height: 32px;
    }

    .blog-detail-inst-inner-wrap .main-title {
        font-size: 20px;
        line-height: 26px;
    }

    .blog-detail-main-area-inner i {
        font-size: 18px;
        line-height: 26px;
    }

    .blog-detail-main-area-inner blockquote {
        font-size: 20px;
        line-height: 30px;
    }

    /* Product Listing Page */
    .prdct-listing-banner-img {
        top: 0px;
        right: -16%;
    }

    .checkbox-txt {
        font-size: 16px;
        line-height: 26px;
    }

    .common-checkbox-list>li {
        margin-bottom: 12px;
    }

    .prdct-listing-banner .h4 {
        margin-bottom: 6px;
        line-height: 32px;
    }

    .product-listing-wrap>li {
        width: calc(50% - 12px);
    }

    .checkbox-item-count {
        font-size: 16px;
    }

    /* Product description page */
    .prdct-view-details>li span,
    .prdct-view-details>li p {
        font-size: 16px;
        line-height: 24px;
    }

    .prdct-view-details {
        row-gap: 10px;
    }

    .mb-24 {
        margin-bottom: 18px;
    }

    .about-tab-content-area {
        padding: 30px 50px;
    }

    .about-tab-content-area .about-tab-title {
        margin-bottom: 15px;
        font-size: 26px;
        line-height: 26px;
    }

    .product-spec-list li {
        margin-bottom: 12px;
        padding-bottom: 16px;
    }

    .product-spec-list span,
    .product-spec-list p {
        font-size: 14px;
        line-height: 19px;
    }

    .related-product-list.product-listing-wrap li {
        width: calc(50% - 12px);
    }

    .prdct-view-details>li:nth-child(odd) {
        padding-right: 35px;
    }

    .prdct-view-details>li:nth-child(even) {
        padding-left: 35px;
    }

    /* About Page CSS */
    .abt-number-counter {
        font-size: 100px;
        line-height: 160px;
    }

    .mission-video-inner-wrapper .video-info-text {
        font-size: 34px;
        line-height: 46px;
    }

    /* Footer CSS */
    .logo-desc-wrap,
    .footer-nav-wrap {
        margin-bottom: 30px;
    }

    footer .company-short-desc,
    .footer-contact a,
    .footer-nav a {
        font-size: 14px;
        line-height: 30px;
    }

    footer .container {
        padding-top: 55px;
        /* padding-bottom: 40px; */
        padding-bottom: 24px;
    }

    .footer-nav li:not(:last-child) {
        margin-bottom: 4px;
    }

    .footer-contact {
        margin-top: 25px;
        padding-top: 25px;
        max-width: 205px;
    }

    .footer-copyright {
        margin-top: 24px;
        padding-top: 24px;
        font-size: 16px;
        line-height: 26px;
    }

    .footer-contact li {
        margin-bottom: 8px;
    }

    .social-icons li a svg {
        width: 20px;
        height: 20px;
    }

}

@media only screen and (max-width: 991px) {

    /* Header Hamburger Menu Design */
    .navbar-toggler {
        padding: 0px;
        height: 48px;
        cursor: pointer;
        z-index: 2;
    }

    .navbar-toggler svg {
        stroke: #fff;
        transition: 0.2s;
    }

    .navbar-toggler svg g:first-child {
        opacity: 1;
        transition: opacity 0s 0.2s;
    }

    .navbar-toggler svg g:first-child line {
        transition: transform 0.2s 0.2s;
        transform: translateY(0px);
    }

    .navbar-toggler svg g:last-child {
        opacity: 0;
        transition: opacity 0s 0.2s;
    }

    .navbar-toggler svg g:last-child line {
        transition: transform 0.2s;
        transform: rotate(0deg);
        transform-origin: center;
    }

    .navbar-toggler.-menu-open svg {
        stroke: #fff;
    }

    .navbar-toggler.-menu-open svg g:first-child {
        opacity: 0;
    }

    .navbar-toggler.-menu-open svg g:first-child line {
        transition: transform 0.2s;
    }

    .navbar-toggler.-menu-open svg g:first-child line:first-child {
        transform: translateY(7px);
    }

    .navbar-toggler.-menu-open svg g:first-child line:last-child {
        transform: translateY(-7px);
    }

    .navbar-toggler.-menu-open svg g:last-child {
        opacity: 1;
    }

    .navbar-toggler.-menu-open svg g:last-child line {
        transition: transform 0.2s 0.2s;
    }

    .navbar-toggler.-menu-open svg g:last-child line:first-child {
        transform: rotate(45deg);
    }

    .navbar-toggler.-menu-open svg g:last-child line:last-child {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        background-color: var(--secondary-color);
    }

    .light-theme .dropdown-menu,
    .light-theme .navbar-collapse {
        background-color: var(--white-color);
        border: 0px;
    }

    .light-theme .dropdown-menu .dropdown-item span::before {
        background-image: url("../img/light-arrow-right.svg");
    }

    .light-theme .dropdown-menu .dropdown-item span {
        background: transparent;
        -webkit-text-fill-color: initial;

    }

    .light-theme .dropdown-menu .dropdown-item:focus,
    .light-theme .dropdown-menu .dropdown-item:focus:active,
    .light-theme .dropdown-menu .dropdown-item:hover {
        background: transparent;
        -webkit-text-fill-color: initial;
    }

    .light-theme header .navbar-nav .nav-item::after {
        background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    }

    .navbar-collapse {
        position: absolute;
        width: 100%;
        left: 0px;
        right: 0px;
        top: 0px;
        z-index: 1;
    }

    header .navbar-brand {
        z-index: 2;
    }

    header .navbar-nav {
        margin: 100px auto 0px !important;
        max-width: 720px;
    }

    /* Book Services Section */
    .book-services-nav {
        margin: 20px auto 50px !important;
        max-width: 720px;
    }

    .book-services-nav a {
        width: 100%;
    }

    header .navbar-nav .nav-item {
        margin: 0px;
        position: relative;
    }

    header .dropdown-menu {
        display: none;
    }

    header .navbar-nav .nav-item .nav-link {
        padding: 12px 0px;
        font-size: 16px;
        line-height: 20px;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 16px;
        top: 22px;
    }

    header .navbar-nav .nav-item:after {
        content: "";
        height: 1px;
        width: 100%;
        display: block;
        background: linear-gradient(180deg, var(--neon-dark) 0%, var(--neon-light) 100%);
        position: absolute;
        left: 0px;
        bottom: 0px;
    }

    header .shop-btn-mobile-device {
        margin: 0px;
        padding: 7px 10px;
        display: block;
        position: absolute;
        top: 22px;
        left: calc(50% + 235px);
        z-index: 2;
    }

    header .shopping-btn svg {
        width: 30px;
        height: 30px;
    }

    .book-services-nav .shopping-btn {
        display: none;
    }

    .dropdown-menu {
        padding: 20px 0px;
        background: var(--secondary-color);
        min-width: 280px;
        display: block;
    }

    .dropdown-menu .dropdown-item {
        padding: 0px 12px;
    }

    .dropdown-menu .dropdown-item span {
        padding: 7px 30px 7px 0px;
        font-size: 14px;
        line-height: 18px;
    }

    .dropdown-menu .dropdown-item span:before {
        padding: 10px;
    }

    .dropdown-menu {
        padding: 0px 0px 15px;
    }

    /* Quick Services Section */
    .quick-service-main-content {
        order: 2;
    }

    .quick-service-img {
        margin-bottom: 25px;
        order: 1;
    }

    .quick-service-img>img {
        max-width: 295px;
        height: auto;
    }

    .neon-border-img-wrap>img {
        height: auto;
    }

    /* Repair Services Page */
    .repair-rebuild-desc {
        order: 3;
    }

    .repair-rebuild-img {
        order: 2;
    }

    .ask-us-image-wrap::before {
        background: var(--white-color);
    }

    /* Contact Us page */
    .location-inner-section {
        display: block;
    }

    .location-inner-section:before,
    .location-inner-section:after {
        display: none;
    }

    .location-inner-section>li {
        width: 100%;
    }

    .small-hero-section {
        padding: 60px 0px;
    }

    .location-details-list {
        padding: 20px 0px 25px;
    }

    .common-icon {
        padding: 8px;
    }

    .contact-details-title {
        font-size: 16px;
        line-height: 22px;
    }

    .contact-details-text {
        font-size: 14px;
        line-height: 22px;
    }

    .location-details-list>li:not(:last-child) {
        margin-bottom: 16px;
    }

    .map-title {
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 26px;
    }

    .map-area {
        margin-bottom: 40px;
    }

    .contact-form-wrap {
        padding: 25px 15px;
    }

    .contact-form-inner-wrap>form {
        column-gap: 0px;
        row-gap: 22px;
    }

    .contact-form-inner-wrap .width-50 {
        width: 100%;
    }

    .form-group .form-control {
        padding: 8px 18px;
        font-size: 14px;
        line-height: 24px;
    }

    .error-msg {
        font-size: 11px;
        line-height: 16px;
    }

    /* Blog Detail Page */
    .blog-detail-instruction {
        display: block;
    }

    .blog-detail-inst-inner-wrap {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .blog-detail-main-area-inner li,
    .blog-detail-main-area-inner p {
        /* font-size: 14px;
        line-height: 22px; */
        font-size: 16px;
        line-height: 26px;
    }

    .blog-detail-inst-inner-wrap .main-title {
        font-size: 20px;
        line-height: 24px;
    }

    .blog-detail-main-area-inner i {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-detail-main-area-inner blockquote:before {
        padding: 18px;
    }

    .blog-detail-main-area-inner blockquote {
        margin-bottom: 20px;
        padding: 0px 0px 0px 54px;
        font-size: 16px;
        line-height: 24px;
    }

    .blog-detail-main-area-inner ul,
    .blog-detail-main-area-inner ol,
    .blog-detail-main-area-inner img,
    .blog-detail-main-area-inner p {
        margin-bottom: 18px;
    }

    .blog-detail-main-area-inner li {
        margin-bottom: 12px;
    }

    .blog-detail-main-area-inner ol ol>li,
    .blog-detail-main-area-inner ul>li {
        padding-left: 32px;
    }

    .blog-detail-main-area-inner ul>li:before {
        padding: 12px;
        top: -1px;
    }

    .popular-image-row {
        flex-direction: column-reverse;
    }

    .popular-parts-outr-wrap:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    /* Common Element CSS */
    .h1,
    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .h1 span b,
    h1 span b {
        font-size: 18px;
        line-height: 26px;
    }

    .h2,
    h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .h3,
    h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .h4,
    h4 {
        font-size: 21px;
        line-height: 24px;
    }

    .h1 span,
    .h2 span,
    h1 span,
    h2 span {
        padding-left: 30px;
    }

    .h5,
    h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .h6,
    h6 {
        font-size: 18px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Common CSS */
    .btn {
        padding: 12px 16px;
        font-size: 14px;
        line-height: 14px;
    }

    .common-spacing {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .mb-48 {
        margin-bottom: 30px;
    }

    .mt-48 {
        margin-top: 30px;
    }

    /* Header Section */
    header .navbar {
        padding: 16px 0px;
    }

    header .navbar-brand {
        padding: 5px 25px 5px 0px;
    }

    /* Home Page Banner */
    .hero-wrapper {
        max-width: 442px;
    }

    /* Our Services Section */
    .our-services-list>li a {
        padding: 20px;
    }

    .our-services-list>li a span {
        font-size: 16px;
        line-height: 22px;
    }

    .our-services-list>li a b {
        margin-bottom: 20px;
        font-size: 32px;
        line-height: 42px;
    }

    .book-service .book-ser-title {
        font-size: 25px;
        line-height: 40px;
    }

    .read-more-link span {
        font-size: 14px;
        line-height: 24px;
    }

    /* Form Page */
    .file-upload-content,
    .image-upload-inner-wrap {
        padding: 18px;
    }

    .input-box-wrap textarea,
    .input-box-wrap .select2-container .select2-selection--single,
    .input-box-wrap input {
        padding: 12px 14px;
    }

    .mb-32 {
        margin-bottom: 26px;
    }

    .input-box-wrap label,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .input-box-wrap textarea,
    .input-box-wrap input {
        font-size: 14px;
        line-height: 20px;
    }

    .remove-image {
        right: 18px;
    }

    .file-title {
        font-size: 14px;
        line-height: 20px;
    }

    .file-title::before {
        padding: 10px;
    }

    /* Product Listing page2 */
    .find-brands-list>li {
        width: calc(25% - 18px);
    }

    .find-brands-list>li>a>img {
        max-height: 30px;
    }

    .browse-prdct-tab-wrap .nav-tabs .nav-link {
        font-size: 16px;
        line-height: 24px;
    }

    .find-brands-list {
        row-gap: 24px;
    }

    .browse-prdct-tab-wrap .nav-tabs {
        margin-bottom: 40px;
    }

    .product-listing-wrap.browse-product-list-wrap>li {
        width: calc(50% - 12px);
    }

    /* Quick Services Section */
    .quick-services-list li a {
        padding: 8px 18px;
        font-size: 16px;
        line-height: 24px;
    }

    .browse-product-list-wrap .prdct-card-title a {
        font-size: 18px;
    }

    .browse-product-list-wrap .prdct-card-title {
        margin-bottom: 5px;
    }

    .quick-service-img>img {
        margin: 0px auto;
        position: relative;
        top: auto;
        left: auto;
        display: block;
    }

    /* cart page  */
    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap {
        max-width: 156px;
    }

    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-desc-wrap {
        padding: 15px 20px 15px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title {
        margin-bottom: 5px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a {
        font-size: 20px;
        line-height: 24px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-category {
        margin-bottom: 5px;
        font-size: 18px;
        line-height: 22px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn {
        top: 12px;
        right: 12px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn img {
        height: 26px;
        width: 26px;
    }

    .cart-main-title {
        padding-bottom: 20px;
    }

    /* Product Specialize Section */
    .neon-border-img-wrap {
        margin: 0px auto 30px;
        max-width: 320px;
    }

    .neon-border-img-wrap img {
        height: auto;
    }

    .product-order-counter>li .num-counter,
    .product-order-counter>li .num-counter b {
        font-size: 34px;
        line-height: 36px;
    }

    .couter-desc {
        margin: 14px 0px 0px 94px;
        padding: 25px 0px 0px 30px;
    }

    .product-order-counter>li {
        margin-bottom: 26px;
    }

    /* Procedure Section */
    .procedure-list>li {
        margin-bottom: 20px;
        padding-left: 50px;
        font-size: 16px;
        line-height: 24px;
    }

    .procedure-list>li:before {
        padding: 16px;
        top: -2px;
    }

    /* Blog Section */
    .blog-list>li .blog-release-data {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 22px;
    }

    .blog-sub-title {
        margin-bottom: 16px;
    }

    .read-more-link {
        font-size: 14px;
        line-height: 20px;
    }

    /* Quick Shop Section */
    .quick-shop-list>li {
        padding: 20px 15px;
    }

    .quick-shop-text {
        margin-top: 16px;
    }

    .quick-shop-text p {
        line-height: 16px;
    }

    /* Contact us Section */
    .contact-us .contact-us-inner-wrap {
        padding: 36px;
        border-radius: 0px 56px;
    }

    .contact-us.product-desc-contact .contact-us-inner-wrap .contact-us-title {
        font-size: 22px;
        line-height: 36px;
        max-width: 80%;
    }

    .contact-us.product-desc-contact .contact-us-inner-wrap .contact-us-title {
        font-size: 17px;
        line-height: 28px;
        max-width: 80%;
    }

    .contact-us .contact-us-inner-wrap .contact-us-title {
        font-size: 26px;
        line-height: 40px;
        max-width: 410px;
    }

    /* Repair Services page */
    .cust-offer-list .h4 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 26px;
    }

    .featured-prdct-title {
        font-size: 16px;
        line-height: 22px;
    }

    .experts-sub-title {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .expert-drive-list.procedure-list>li:not(:last-child) {
        margin-bottom: 12px;
    }

    .data-slider-info-wrap span {
        font-size: 20px;
        line-height: 26px;
    }

    .featured-drive-section .nav.nav-pills li a {
        padding: 12px 14px;
        font-size: 16px;
        line-height: 20px;
    }

    .featured-drive-prdct-slider .swiper-pagination {
        margin-top: 25px;
    }

    .cust-offer-icon {
        width: 58px;
        height: 58px;
    }

    /* Client Review Section */
    .client-review-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .client-review-slider .swiper-arrow-wrapper .swiper-button-next,
    .client-review-slider .swiper-arrow-wrapper .swiper-button-prev {
        padding: 8px;
        width: 40px;
        height: 40px;
    }

    .swiper-slider-indicator-wrap {
        margin-top: 30px;
    }

    /* Ask us Section */
    .ask-us-list-outer-wrap {
        margin-top: 45px;
    }

    .ask-us-list-desc .h4 {
        font-size: 22px;
        line-height: 22px;
    }

    .ask-us-list-desc .ask-us-text {
        margin: 10px 0px 15px;
    }

    .ask-us-list-outer-wrap:last-child {
        margin-bottom: 20px;
    }

    /* Contact Us Page */
    .small-hero-section {
        padding: 65px 0px;
    }

    .contact-details-text {
        font-size: 14px;
        line-height: 20px;
    }

    .common-icon {
        padding: 8px;
    }

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

    .location-details-list>li:not(:last-child) {
        margin-bottom: 22px;
    }

    .contact-details-title {
        font-size: 16px;
        line-height: 22px;
    }

    .map-title {
        margin-bottom: 25px;
        font-size: 20px;
        line-height: 26px;
    }

    .map-div,
    .map-div>iframe {
        height: 210px !important;
    }

    .location-details-list {
        padding: 25px 0px 45px;
    }

    .map-area {
        margin-bottom: 15px;
    }

    .form-group .form-control {
        padding: 8px 18px;
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form-inner-wrap>form {
        column-gap: 15px;
        row-gap: 20px;
    }

    /* Blog Listing Page */
    .blog-listing>li {
        width: calc(50% - 12px);
    }

    .blog-list-date:before,
    .blog-list-time:before {
        padding: 10px;
    }

    .blog-list-date,
    .blog-list-time {
        padding-left: 25px;
        font-size: 13px;
        line-height: 20px;
    }

    .sidebar-nav-links li a {
        font-size: 16px;
        line-height: 20px;
    }

    .sidebar-nav-links li:not(:last-child) {
        margin-bottom: 8px;
    }

    .blog-listing-highlight-section .blog-list-title {
        font-size: 22px;
        line-height: 30px;
    }

    /* Blog Details Page */
    .blog-detail-hero-inner-wrap .blog-detail-sub-title {
        font-size: 14px;
        line-height: 22px;
    }

    .blog-detail-hero-inner-wrap .blog-writer-profile-img {
        max-height: 42px;
        max-width: 42px;
    }

    .blog-detail-hero-inner-wrap .blog-writer-profile-name {
        font-size: 18px;
        line-height: 28px;
    }

    .blog-detail-main-area-inner h4 {
        margin-bottom: 16px;
    }

    .blog-detail-main-area-inner h6 {
        margin-bottom: 16px;
    }

    .related-blog-list .blog-listing>li {
        width: calc(50% - 12px);
    }

    /* Product Listing page */
    .prdct-listing-banner-img {
        right: -8%;
    }

    .prdct-listing-banner .h4 {
        margin-bottom: 3px;
        line-height: 28px;
    }

    .product-listing-section .sticky-wrapper {
        margin-bottom: 30px;
        display: flex;
        display: -webkit-flex;
    }

    .product-listing-wrap>li {
        width: calc(50% - 12px);
    }

    .product-listing-section .categories-outer-wrap,
    .product-listing-section .brands-outer-wrap {
        width: 50%;
        padding: 0px 20px 0px;
    }

    .checkbox-txt {
        font-size: 16px;
        line-height: 24px;
    }

    .common-checkbox-list>li {
        margin-bottom: 10px;
    }

    .categories-outer-wrap h5,
    .brands-outer-wrap h5 {
        margin-bottom: 22px;
    }

    .common-checkbox-list {
        margin-top: 22px;
    }

    .product-listing-section .categories-outer-wrap:after {
        display: none;
    }

    .checkbox-item-count {
        font-size: 14px;
        line-height: 22px;
    }

    /* Product Description Page */
    .related-product-list.product-listing-wrap li {
        width: calc(50% - 12px);
    }

    .product-spec-list li {
        margin-bottom: 8px;
        padding-bottom: 12px;
    }

    .product-spec-list span,
    .product-spec-list p {
        font-size: 14px;
        line-height: 18px;
    }

    .about-tab-content-area {
        padding: 24px;
    }

    .about-tab-content-area .about-tab-title {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 18px;
    }

    .about-tab-content-area ul li {
        margin-bottom: 10px;
    }

    .prdct-view-details>li span,
    .prdct-view-details>li p {
        font-size: 16px;
        line-height: 20px;
    }

    .product-view-desc-area {
        margin-top: 30px;
    }

    /* About us Page */
    .industries-list-inner .h5 {
        margin: 14px 0px;
    }

    .industries-list-inner {
        padding: 30px 18px;
    }

    .common-video-img-wrapper.mission-video-inner-wrapper {
        height: 380px;
    }

    .mission-video-inner-wrapper .video-info-text {
        font-size: 30px;
        line-height: 48px;
    }

    .competitive-price-inner-wrap .h4 {
        margin-bottom: 16px;
    }

    .competitive-price-inner-wrap {
        padding: 46px 0px;
    }

    .abt-counter-wrap {
        margin-top: 10px;
    }

    .abt-number-counter {
        font-size: 60px;
        line-height: 80px
    }

    .prdct-video-outr-wrap:not(:last-child) {
        margin-bottom: 40px;
    }

    .industrial-auto-parts-wrapper {
        padding: 34px 25px;
    }

    /* brand Page */
    .common-popular-parts-wrap .popular-parts-list>li:not(:last-child) {
        margin-bottom: 12px;
    }

    .common-popular-parts-wrap .popular-parts-list>li {
        font-size: 18px;
        line-height: 24px;
    }

    .popular-parts-outr-wrap:not(:last-child) {
        margin-bottom: 30px;
    }

    /* Footer Section */
    .logo-desc-wrap {
        margin-bottom: 30px;
    }

    .company-short-desc {
        max-width: 500px;
    }

    footer .company-short-desc,
    .footer-contact a,
    .footer-nav a {
        font-size: 13px;
        line-height: 20px;
    }

    .footer-nav li:not(:last-child) {
        margin-bottom: 5px;
    }

    .footer-nav-wrap,
    .footer-service-wrap {
        margin-bottom: 30px;
    }

    .footer-followus-wrap {
        display: grid;
        display: -ms-grid;
        display: -moz-grid;
        grid-template-columns: 50% 50%;
    }

    .footer-followus-wrap h5 {
        grid-column: 1 / 3;
    }

    .footer-contact li {
        margin-bottom: 10px;
    }

    .footer-contact li a:before {
        padding: 10px;
    }

    .social-icons li a svg {
        width: 16px;
        height: 16px;
    }

    .social-icons {
        margin: 0px;
    }

    .footer-contact {
        margin: 0px 0px 0px 0px;
        padding: 0px;
        border: none;
    }

    .footer-contact li {
        text-align: left;
    }

    .footer-contact li a {
        padding-left: 30px;
        display: inline-block;
    }

    .footer-copyright {
        margin-top: 30px;
        padding-top: 30px;
        font-size: 16px;
        line-height: 24px;
    }

    footer .container {
        padding-top: 50px;
        /* padding-bottom: 50px; */
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767.98px) {

    /* Common Element */
    .h1,
    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .h2,
    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .h1 span,
    .h2 span,
    h1 span,
    h2 span {
        padding-left: 20px;
    }

    .h1 span b,
    h1 span b {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 1px;
    }

    .h1 span:before,
    .h2 span:before,
    h1 span:before,
    h2 span:before {
        width: 6px;
    }

    .h3,
    h3 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 28px;
    }

    .h4,
    h4 {
        font-size: 19px;
        line-height: 22px;
    }

    .h5,
    h5 {
        font-size: 18px;
        line-height: 20px;
    }

    .h6,
    h6 {
        font-size: 14px;
        line-height: 18px;
    }

    .h6 span,
    h6 span {
        padding-left: 75px;
    }

    .h6 span:before,
    h6 span:before {
        width: 62px;
        height: 6px;
    }

    p {
        font-size: 14px;
        line-height: 22px;
    }

    /* Common CSS */
    .mb-48 {
        margin-bottom: 22px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 12px;
        line-height: 14px;
    }

    .common-spacing {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .common-title-breaker-wrapper {
        display: block;
    }

    .common-title-breaker {
        max-width: 100%;
        margin-bottom: 15px;
    }

    /* Header CSS */
    header .navbar-brand {
        padding: 5px 22px 5px 0px;
    }

    header .shopping-btn svg {
        width: 26px;
        height: 26px;
    }

    header .shop-btn-mobile-device {
        left: calc(50% + 148px);
    }

    .book-services-nav,
    header .navbar-nav {
        max-width: 540px;
    }

    /* Product Listing page2 */
    .find-brands-list>li {
        width: calc(50% - 12px);
    }

    .find-brands-list>li>a>img {
        max-height: 22px;
    }

    .find-brands-list>li>a {
        padding: 22px 10px;
    }

    .browse-prdct-tab-wrap .nav-tabs .nav-link {
        font-size: 16px;
        line-height: 18px;
    }

    .browse-prdct-tab-wrap .nav-tabs {
        padding-bottom: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .browse-prdct-tab-wrap .nav-tabs {
        margin-bottom: 20px;
    }

    .product-listing-wrap.browse-product-list-wrap>li {
        width: 100%;
    }

    .browse-product-list-wrap .prdct-card-title a {
        font-size: 16px;
        line-height: 22px;
    }

    .prdct-card-title {
        margin-bottom: 5px;
    }

    .browse-product-list-wrap .brand-cate-card-wrap p {
        font-size: 14px;
        line-height: 20px;
    }

    .browse-prdct-tab-wrap .nav-tabs .nav-link {
        white-space: nowrap;
    }

    .find-brands-list {
        column-gap: 20px;
        row-gap: 20px;
    }

    .mt-56 {
        margin-top: 30px;
    }

    .mb-32 {
        margin-bottom: 25px;
    }

    .mt-48 {
        margin-top: 26px;
    }

    .pb-16 {
        padding-bottom: 10px;
    }

    /* Form Page */
    .form-section h3,
    .form-section .h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .input-box-wrap label,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .input-box-wrap textarea,
    .input-box-wrap input {
        font-size: 14px;
        line-height: 22px;
    }

    .input-box-wrap textarea,
    .input-box-wrap .select2-container .select2-selection--single,
    .input-box-wrap input {
        padding: 13px 16px;
    }

    .file-upload-content,
    .image-upload-inner-wrap {
        padding: 14px 12px;
    }

    .file-title {
        padding-left: 26px;
        font-size: 13px;
        line-height: 20px;
    }

    .file-title::before {
        padding: 10px;
    }

    .remove-image {
        right: 12px;
    }

    .remove-image img {
        height: 20px;
        width: 20px;
    }

    /* Thank you page */
    .thank-you-section .h5,
    .thank-you-section .h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .any-trouble p {
        padding: 10px 16px;
    }

    .any-trouble a:after {
        padding: 8px;
    }

    .any-trouble a {
        padding-right: 20px;
    }

    /* Quick Services Section */
    .quick-service-img>img {
        margin: 0px auto;
        display: block;
        position: relative;
        top: auto;
        left: auto;
    }

    .quick-services-list {
        column-gap: 10px;
        row-gap: 10px;
    }

    .quick-services-list li a {
        padding: 7px 14px;
        font-size: 13px;
        line-height: 22px;
    }

    .quick-shop-list {
        margin-top: 30px;
    }

    .quick-shop-list>li {
        padding: 25px 30px;
    }

    .quick-shop-text {
        margin-top: 16px;
    }

    .quick-shop-text p {
        font-size: 13px;
        line-height: 16px;
    }

    /* Blog Section Section */
    .blog-list>li img {
        margin-bottom: 15px;
    }

    .blog-list>li .blog-release-data {
        margin-bottom: 8px;
    }

    .blog-list>li .blog-release-data {
        font-size: 13px;
        line-height: 16px;
    }

    .blog-list>li h3 {
        margin-bottom: 10px;
    }

    .blog-sub-title {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 20px;
    }

    .read-more-link {
        padding-right: 26px;
        font-size: 14px;
        line-height: 22px;
    }

    .read-more-link:before {
        padding: 10px;
    }

    /* Manufacture Page */
    .brands-mob-list {
        width: 50%;
        ;
    }

    /* Quick Shop Section */
    .blog-list,
    .quick-shop-list {
        display: block;
    }

    .blog-list>li,
    .quick-shop-list>li {
        margin: 0px auto 25px;
        width: 100%;
        max-width: 300px;
    }

    .blog-list>li:last-child,
    .quick-shop-list>li:last-child {
        margin-bottom: 0px;
    }

    .our-services-list {
        gap: 15px;
    }

    .our-services-list>li {
        width: calc(50% - 8px);
    }

    .our-services-list>li a b {
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 36px;
    }

    .our-services-list>li a {
        padding: 16px;
    }

    .our-services-list>li.tr-bl-radius a {
        border-radius: 0px 16px;
    }

    .our-services-list>li.tl-br-radius a {
        border-radius: 16px 0px;
    }

    .our-services-list>li a span {
        font-size: 16px;
        line-height: 24px;
    }

    /* Product Specialize Section */
    .neon-border-img-wrap {
        margin: 0px auto 25px;
        max-width: 300px;
    }

    .neon-border-img-wrap img {
        height: auto;
    }

    /* Book Services Section */
    .book-service {
        display: block;
    }

    .book-service .book-ser-title {
        margin: 0px 0px 20px;
        font-size: 20px;
        line-height: 28px;
    }

    /* Product Counter Section */
    .product-order-counter>li .num-counter,
    .product-order-counter>li .num-counter b {
        font-size: 28px;
        line-height: 30px;
    }

    .product-order-counter>li {
        margin-bottom: 45px;
    }

    .couter-desc {
        margin: 40px 0px 0px 56px;
        padding: 22px 0px 0px 22px;
    }

    .couter-desc .h5 {
        line-height: 22px;
    }

    /* Procedure Section */
    .procedure-list>li {
        margin-bottom: 16px;
        padding-left: 40px;
        font-size: 14px;
        line-height: 22px;
    }

    .procedure-list>li:before {
        padding: 12px;
        top: -2px;
    }

    /* Contact Us section */
    .contactus-desc-wrap {
        display: block;
    }

    .manufacture-contact-section.contact-us .contactus-info-wrap {
        margin-bottom: 25px;
    }

    .manufacture-contact-section.contact-us .contactus-info-wrap .contact-us-title {
        line-height: 28px;
    }

    .manufacture-contact-section.contact-us .contactus-info-wrap {
        font-size: 14px;
        line-height: 18px;
    }

    .contact-us .contact-us-inner-wrap {
        margin: 0px auto;
        padding: 25px 38px;
        max-width: 100%;
        border-radius: 0px 32px;
    }

    .contact-us .contact-us-inner-wrap .contact-us-title {
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 34px;
    }

    .contact-us.product-desc-contact .contact-us-inner-wrap .contact-us-title {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .contact-us-via-email-wrap {
        margin-bottom: 24px;
    }

    .contact-us .contact-us-via-email-wrap .contact-us-title {
        margin-bottom: 12px;
    }

    /* Blog Listing Page */
    .blog-list-date,
    .blog-list-time {
        padding-left: 26px;
        font-size: 13px;
        line-height: 22px;
    }

    .blog-list-date:before,
    .blog-list-time:before {
        padding: 10px;
    }

    .blog-listing-highlight-section .blog-list-title {
        font-size: 20px;
        line-height: 26px;
    }

    .blog-listing>li {
        width: 100%;
    }

    .blog-list-short-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .blog-listing-sidebar {
        margin-top: 30px;
    }

    .sidebar-nav-links li a {
        font-size: 14px;
        line-height: 16px;
    }

    .sidebar-nav-links li:not(:last-child) {
        margin-bottom: 5px;
    }

    .blog-listing-sidebar h3,
    .blog-listing-sidebar .h3 {
        padding: 0px 0px 10px 0px;
    }

    .blog-listing {
        column-gap: 0px;
        row-gap: 30px;
    }

    /* Blog Detail Page */
    .blog-detail-hero-inner-wrap .blog-detail-sub-title {
        font-size: 14px;
        line-height: 22px;
    }

    .blog-detail-hero-inner-wrap .blog-writer-profile-name {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-detail-hero-inner-wrap .blog-writer-profile-img {
        max-height: 40px;
        max-width: 40px;
    }

    .related-blog-list .blog-listing>li {
        width: 100%;
    }

    /* Product Listing Page */
    .product-listing-wrap>li {
        width: 100%;
    }

    .product-listing-wrap {
        row-gap: 30px;
    }

    .prdct-list-card {
        max-width: 300px;
        margin: 0px auto;
    }

    .checkmark {
        height: 20px;
        width: 20px;
        top: 2px;
    }

    .checkbox-txt {
        font-size: 14px;
        line-height: 24px;
    }

    .form-check-box .checkmark:after {
        left: 6px;
        top: 1px;
    }

    .common-checkbox-list>li {
        margin-bottom: 6px;
    }

    .common-checkbox-list {
        margin-top: 20px;
    }

    .checkbox-item-count {
        font-size: 14px;
        line-height: 22px;
    }

    .form-check-box {
        padding-left: 32px;
    }

    .categories-outer-wrap,
    .brands-outer-wrap {
        padding: 30px 0px;
    }

    .prdct-listing-banner-img {
        display: none;
    }

    .prdct-listing-hero-inner-wrap {
        max-width: 100%;
    }

    .prdct-listing-banner .h4 {
        margin-bottom: 8px;
        line-height: 25px;
    }
    .find-brands-list > li > a{
        font-size: 16px;
    }
    /* Product Description page */
    .prdct-view-desc-txt,
    .about-tab-content-area p,
    .about-tab-content-area ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .prdct-view-details>li {
        width: 100%;
        padding: 0px;
    }

    .prdct-view-details>li:nth-child(odd),
    .prdct-view-details>li:nth-child(even) {
        padding: 0px;
    }

    .prdct-view-details::after {
        display: none;
    }

    .prdct-view-details>li span,
    .prdct-view-details>li p {
        font-size: 16px;
        line-height: 20px;
    }

    .prdct-view-details {
        row-gap: 12px;
    }

    .product-spec-inner-wrap,
    .about-tab-content-area {
        padding: 15px;
    }

    .about-tab-content-area .about-tab-title {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 26px;
    }

    .about-tab-content-area ul li:before {
        padding: 10px;
    }

    .about-tab-content-area ul li {
        margin-bottom: 8px;
        padding-left: 28px;
    }

    .product-spec-list li {
        display: block;
    }

    .product-spec-list span,
    .product-spec-list p {
        font-size: 14px;
        line-height: 20px;
    }

    .product-spec-list li {
        margin-bottom: 10px;
        padding-bottom: 14px;
    }

    .related-product-list.product-listing-wrap li {
        width: 100%;
        max-width: 300px;
        margin: 0px auto;
    }

    .product-view-desc-area {
        margin-top: 30px;
    }

    .about-tab-content-area p {
        margin-bottom: 10px;
    }

    /* About Us Page */
    .video-play-btn {
        padding: 16px;
    }

    .video-play-btn>svg {
        height: 30px;
        width: 30px;
    }

    .aboutus-video-banner-inner {
        height: 240px;
    }

    .industries-list-wrapper {
        display: block;
    }

    .industries-list-wrapper>li {
        width: 100%;
    }

    .industries-list-wrapper>li:not(:last-child) {
        margin-bottom: 30px;
    }

    .industries-list-inner {
        padding: 30px 24px;
    }

    .industries-list-inner .h5 {
        margin: 18px 0px;
    }

    .common-video-img-wrapper.mission-video-inner-wrapper {
        height: 300px;
    }

    .mission-video-inner-wrapper .video-info-text {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
        bottom: 20px;
    }

    .competitive-price-inner-wrap {
        padding: 36px 16px;
    }

    .competitive-price-inner-wrap .h4 {
        margin-bottom: 16px;
    }

    .abt-number-counter {
        font-size: 50px;
        line-height: 80px;
    }

    .abt-counter-title {
        font-size: 20px;
        line-height: 30px;
    }

    .abt-counter-wrap {
        margin-top: 10px;
    }

    .prdct-video-outr-wrap:not(:last-child) {
        margin-bottom: 30px;
    }

    .brand-reason-desc-section .blog-detail-instruction {
        padding: 30px 20px;
    }

    .brand-reason-desc-list {
        display: block;
    }

    .brand-reason-desc-list>li {
        width: 100%;
    }

    .brand-reason-desc-list>li:not(:last-child) {
        margin-bottom: 20px;
    }

    /* Footer CSS  */
    footer .container {
        padding-top: 40px;
        /* padding-bottom: 35px; */
        padding-bottom: 26px;
    }

    .logo-desc-wrap {
        margin-bottom: 25px;
    }

    footer .company-short-desc,
    .footer-contact a,
    .footer-nav a {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-nav-wrap,
    .footer-service-wrap {
        margin-bottom: 25px;
        width: 50%;
    }

    /* Social Icon Footer */
    .social-icons {
        margin-top: 18px;
    }

    .social-icons li a svg {
        width: 18px;
        height: 18px;
    }

    .experts-sub-title {
        padding-bottom: 16px;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 26px;
    }

    .expert-drive-list.procedure-list>li:not(:last-child) {
        margin-bottom: 10px;
    }

    .data-slider-info-wrap span {
        font-size: 18px;
        line-height: 28px;
    }

    .featured-drive-section .nav.nav-pills li a {
        padding: 14px 20px;
        font-size: 16px;
        line-height: 18px;
    }

    .featured-drive-list {
        padding: 25px 15px;
    }

    .featured-prdct-title {
        font-size: 16px;
        line-height: 22px;
    }

    .featured-drive-prdct-slider .swiper-pagination {
        margin-top: 20px;
    }

    .cust-offer-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .cust-offer-wrap {
        margin: 0px auto;
        max-width: 300px;
        text-align: center;
    }

    .cust-offer-list .h4 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 20px;
    }

    .cust-offer-list {
        margin-bottom: 35px;
    }

    .featured-drive-section .nav.nav-pills li {
        padding-bottom: 5px;
    }

    .featured-drive-tab-wrap .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    /* Client Review section */
    .client-review-inner-wrap .neon-gradient {
        padding: 12px;
        height: 50px;
        width: 50px;
        top: -25px;
    }

    .client-review-inner-wrap {
        /* margin-top: 25px; */
        padding: 50px 24px 24px;
    }

    .client-review-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .client-profile-desc .h5 {
        font-size: 16px;
        line-height: 18px;
    }

    .swiper-arrow-wrapper {
        column-gap: 15px;
    }

    .swiper-slider-indicator-wrap {
        margin-top: 20px;
    }

    .client-review-slider .swiper-arrow-wrapper .swiper-button-next,
    .client-review-slider .swiper-arrow-wrapper .swiper-button-prev {
        padding: 4px;
        width: 30px;
        height: 30px;
    }

    /* Ask us Section */
    .ask-us-list-outer-wrap {
        margin-top: 30px;
    }

    .cust-offer-icon {
        padding: 12px;
        width: 50px;
        height: 50px;
    }

    .ask-us-list-desc .ask-us-text {
        margin: 5px 0px 12px;
    }

    .ask-us-list-wrap .ask-us-list-icon {
        margin: 0px 20px 0px 0px;
    }

    .ask-us-list-desc .h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .ask-us-list-outer-wrap:last-child {
        margin-bottom: 40px;
    }

    .faq-accordian-wrap .card-header .btn {
        font-size: 16px;
        line-height: 20px;
    }

    .faq-accordian-wrap .card-header .btn::before {
        padding: 12px;
    }

    .faq-accordian-wrap .card-header .btn.collapsed {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .faq-accordian-wrap .card-body {
        padding: 0px 0px 28px;
        font-size: 14px;
        line-height: 22px;
    }

    .blog-detail-main-area-inner>iframe {
        margin-bottom: 25px;
        height: 290px !important;
    }

    /* Brand Page */
    .industrial-auto-parts-wrapper {
        padding: 30px 20px;
    }

    .industrial-auto-parts-wrapper .h5 {
        font-size: 18px;
        line-height: 26px;
    }

    .industrial-auto-parts-img {
        height: 35px;
        width: 35px;
    }

    .industrial-auto-parts-wrapper .h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .specialists-inner-wrap {
        padding: 35px 20px;
    }

    .specialists-image {
        width: 100%;
    }

    .common-popular-parts-wrap .popular-parts-list>li {
        font-size: 16px;
        line-height: 20px;
    }

    .popular-image-row {
        margin-top: 30px;
    }

    .popular-image-section .experts-drive-subtitle-wrap .h3 {
        padding-bottom: 14px;
        margin-bottom: 20px;
    }

    .popular-image-section .experts-drive-subtitle-wrap .h3:before {
        width: 100%;
    }

    .common-popular-parts-wrap .main-prdct-category,
    .common-popular-parts-wrap .popular-parts-list {
        padding-left: 20px;
        padding-right: 20px;
    }

    .common-popular-parts-wrap .popular-parts-list>li:not(:last-child) {
        margin-bottom: 14px;
    }

    /* Footer Contact */
    .footer-contact {
        margin-top: 26px;
        padding-top: 26px;
    }

    .footer-contact {
        margin-bottom: 0px;
    }

    .footer-contact li {
        margin-bottom: 8px;
    }

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

    .footer-contact li a {
        padding-left: 32px;
    }

    .footer-contact li a:before {
        padding: 10px;
    }

    .footer-copyright {
        margin-top: 26px;
        padding-top: 26px;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 22px;
    }

    .beer-handle {
        width: 30px;
        height: 30px;
    }

    .beer-handle:before,
    .beer-handle:after {
        height: 6px;
        width: 6px;
    }

    .beer-handle:before {
        left: 6px;
    }

    /* cart page */
    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-desc-wrap {
        padding: 10px 12px 10px;
        border: none;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-list-card .pdct-quality {
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 1px;
    }

    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap {
        max-width: 280px;
    }

    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-list-card {
        margin: 0px auto;
        column-gap: 15px;
        row-gap: 2px;
        flex-direction: column;
        border: 0.4px solid rgba(0, 2, 34, 0.2);
    }

    .product-listing-wrap.browse-product-list-wrap-box>li .prdct-card-img-wrap img {
        padding-top: 12px;
        border-radius: 0px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a {
        font-size: 17px;
        line-height: 21px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn {
        top: 5px;
        right: 5px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .delete-btn img {
        height: 24px;
        width: 24px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-category {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 14px;
    }

    .product-listing-wrap.browse-product-list-wrap-box .prdct-card-title a {
        -webkit-line-clamp: 2;
    }

    .cart-main-title {
        padding-bottom: 25px;
    }
}

@media (max-width: 576.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 24px;
        width: 100%;
    }

    .slider__images {
        width: 386px;
    }

    .slider__thumbs {
        width: calc(100% - 96px);
        margin: 0 16px;
        height: auto;
    }

    .slider__thumbs .swiper-wrapper {
        display: flex;
        display: -webkit-flex;
    }

    .slider__prev,
    .slider__next {
        margin: 0px;
        transform: rotate(-90deg);
    }

    .slider__next {
        transform: rotate(90deg);
    }

}

@media only screen and (max-width: 575px) {
    header .navbar {
        padding: 12px 15px;
    }

    .navbar-brand img {
        max-width: 76px;
        height: auto;
    }

    header .shop-btn-mobile-device {
        right: 70px;
        left: auto;
        top: 14px;
    }

    .navbar-toggler svg {
        max-width: 36px;
        height: 36px;
    }

    .navbar-toggler {
        height: 36px;
    }

    header .navbar-nav {
        margin: 100px 15px 0px !important;
        max-width: 720px;
    }

    /* Banner Section */

    /* Book Services Section */
    .book-services-nav {
        margin: 20px 15px 50px !important;
        max-width: 720px;
    }

    /* Repair services page */
    .cust-offer-icon {
        padding: 12px;
        width: 50px;
        height: 50px;
    }

    .cust-offer-list .h4 {
        font-size: 18px;
        line-height: 18px;
    }

    .featured-drive-section .nav.nav-pills li a {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 18px;
    }

    .repair-service-banner .hero-wrapper {
        padding: 25px;
        border-radius: 0px 30px;
    }

    /* Contact us Page */
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: top left;
    }
}

/*================= Responsive CSS End =========================*/