@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

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


@font-face {
    font-family: 'audrey-normal';
    src: url(../fonts/audrey-normal.otf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'audrey-normal';
    font-size: 115px;
    line-height: 120px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h2 {
    font-family: 'audrey-normal';
    font-size: 70px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0 0 15px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    font-family: "Roboto", sans-serif;
    color: #636162;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.topsec-follow-us ul li a {
    border: 1px solid #b3b3b3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    font-size: 18px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-animation 2s infinite;
}


.topsec-follow-us h2 {
    font-family: 'audrey-normal';
}

.topSec {
    padding: 20px 0;
}

.topsec-follow-us h2 {
    font-size: 25px;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 30px;
}

.topsec-follow-us ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.menuSec {
    border-right: 1px solid #b2b2b2;
    border-left: 1px solid #b2b2b2;
}

.menusec-logo a img {
    width: 122px;
    height: 120px;
    object-fit: contain;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 0px 20px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.continue-purchasing a {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.continue-purchasing {
    margin-top: 15px;
}

.continue-purchasing a i {
    margin-left: 15px;
}

.topsec-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 35px;
    position: relative;
}

/* .topsec-icon ul:before {
    content: "";
    position: absolute;
    background: #e3e3e3;
    width: 1px;
    height: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
} */

.topsec-icon ul li a {
    font-size: 25px;
    color: #333333;
}

li.topsec-icon-heart {
    position: relative;
    padding: 5px 0;
}

li.topsec-icon-heart sup {
    position: absolute;
    right: -8px;
}

.topsec-icon ul li sup {
    font-family: 'audrey-normal';
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    font-size: 12px;
}

.topsec-icon ul li sup {
    font-family: 'audrey-normal';
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(0 124 255);
    }

    100% {
        box-shadow: 0 0 0 20px rgb(180 9 9 / 5%);
    }
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 20px 0 15px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 0px 22px;
    font-size: 15px;
}

li.home-icon a i {
    font-size: 25px;
    color: #000;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #0077ff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.topsec-follow-us ul li a:hover {
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    color: #fff !important;
    transform: scale(1.1);
    -webkit-text-fill-color: inherit;
}

.menusec-logo {
    text-align: center;
    border-bottom: 1px solid #b2b2b2;
    padding-bottom: 15px;
}

.no-padding {
    padding: 0;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.btn-shine {
    background: linear-gradient(to right, #0061ff 0, #007bff, #00a1ff 33%, #000 0%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

@keyframes shine {

    0%,
    100% {
        background-position: 0;
    }

    10% {
        background-position: 50px;
    }

    20% {
        background-position: 100px;
    }

    30% {
        background-position: 150px;
    }

    40% {
        background-position: 200px;
    }

    50% {
        background-position: 250px;
    }

    60% {
        background-position: 300px;
    }

    70% {
        background-position: 350px;
    }

    80% {
        background-position: 400px;
    }

    90% {
        background-position: -450px;
    }
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.banner_text {
    text-align: center;
}

.banner_text h2 {
    font-family: "Lato", sans-serif;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 300 !important;
    letter-spacing: 10px;
    color: #545454;
}

.banner_text p {
    color: #807d78;
    width: 46%;
    margin: 0 auto;
    line-height: 28px;
    font-weight: 500;
}


/* Banner End */


/*About Us Start*/

.about-us-sec {
    padding: 120px 0;
}

.about-us-images img {
    width: 92%;
    height: 604px;
    object-fit: cover;
}

.about-us-text {
    padding-left: 55px;
    position: relative;
}

.about-us-text:before {
    content: "";
    position: absolute;
    background-image: url(../images/about-boder.png);
    width: 376px;
    height: 339px;
    top: -70px;
    left: 0;
    background-size: cover;
}

.about-us-images {
    margin-left: 20px;
    position: relative;
}

.about-us-images:before {
    content: "";
    position: absolute;
    width: 88%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    z-index: -1;
    bottom: -50px;
    right: 0;
}

/*About Us End*/


/*Products End*/

.products-silder .slick-active {
    opacity: 1.5;
}

.products-silder-items-text h2 {
    font-size: 20px;
}

.products-silder .slick-slide {
    margin: 0px 8px;
}

.products-silder-items-text {
    width: 95%;
}

.products-silder {
    margin-top: 25px;
}

.products-silder-items-img img {
    width: 100%;
    height: 562px;
    object-fit: cover;
}

.products-silder .slick-dots {
    bottom: -100px;
    width: 16%;
    margin: 0 auto;
    right: 0;
    left: 0;
}

.products-sec .container-fluid.add-padding {
    padding: 0;
}

.products-silder-items-text h2 {
    font-size: 23px;
    line-height: 30px;
    border-bottom: 1px solid #7d7d7d;
    padding: 10px 0px;
    font-weight: 600;
    margin-top: 10px;
}

.products-silder-items-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.products-silder .slick-slide {

    opacity: 1.2;
}

.products-sec {
    padding: 70px 0;
}

.products-silder-items-text ul li img {
    width: 52px;
    height: 48px;
    object-fit: contain;
}

.products-silder-items-text ul li span {
    font-family: 'audrey-normal';
    font-size: 29px;
    margin-bottom: 0;
    line-height: 25px;
}

.products-silder .slick-dots li button:before {
    width: 10px;
    height: 10px;
    content: '';
    opacity: 10.25;
    background: #b2b2b2;
}

.products-silder .slick-dots li.slick-active button:before {
    opacity: 10.75;
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    animation: pulse-animation 2s infinite;
}

.products-silder .slick-dots li {
    margin: 0 8px;
}

.products-silder .slick-prev {
    top: inherit;
    bottom: -100px;
}

.products-silder .slick-next {
    top: inherit;
    bottom: -100px;
}

.products-silder .slick-next:before {
    content: '\f30b';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #b7b7b7 !important;
}

.products-silder .slick-next {
    right: 0;
    left: 260px;
    margin: 0 auto;
}

.products-silder .slick-prev:before {
    content: '\f30a';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #b7b7b7 !important;
}

.products-silder .slick-prev {
    left: -290px;
    right: 0;
    margin: 0 auto;
}

/*Products End*/


/*Our Story Start*/

.our-story-sec {
    margin: 100px 0 0;
    background-image: url(../images/our-story-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}

.our-story-box {
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    text-align: center;
    padding: 80px 40px;
}

.our-story-box h2 {
    color: #fff;
}

.our-story-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
}

.our-story-box h2 {
    margin-bottom: 35px;
}

.our-story-box a img {
    width: 191px;
    height: 191px;
    object-fit: cover;
}

/*Our Story End*/


/*What People Say Start*/

.what-people-say-sec {
    padding: 120px 0 20px;
}

.what-people-say-sec.inner {
    padding: 30px 0 20px;
}

.what-people-say-sec .container-fluid.add-padding {
    background: #000;
    padding: 60px 0;
}

.what-people-say-heading {
    margin-bottom: 50px;
}

.what-people-say-silder-items {
    background: #ffffff;
    text-align: center;
    padding: 50px 40px;
    margin: 0 auto;
    position: relative;
    width: 97%;
}

.what-people-say-quote img {
    width: 92px;
    height: 74px;
    object-fit: cover;
}

.what-people-say-quote {
    position: absolute;
    top: -30px;
    left: 25px;
}

.what-people-say-silder-items:before {
    content: "";
    position: absolute;
    border: 1px solid #fff;
    width: 105%;
    height: 100%;
    left: -20px;
    bottom: -25px;
    z-index: -1;
}

.what-people-say-silder .slick-slide {
    margin: 30px 30px;
}

.what-people-say-silder-items ul li h2 {
    font-size: 24px;
    margin-bottom: 0;
    line-height: 30px;
    color: #393939;
    text-transform: capitalize;
}

.what-people-say-silder-items ul li {
    text-align: justify;
}

ul.what-people-say-star {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    gap: 5px !important;
}

.what-people-say-silder-items ul li img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    animation: pulse-animation 2s infinite;
}

.what-people-say-silder-items ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    margin-top: 30px;
}

.what-people-say-silder-items ul li i {
    font-size: 20px;
    color: #fd8f00;
}

.what-people-say-silder .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2;
}

.what-people-say-silder-items ul li span {
    text-align: left !important;
    font-size: 17px;
    color: #616161;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

/*What People Say End*/



/*Footer Start*/


.footer-sec {
    padding: 30px 0 0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 70px;
}

.footer-logo a img {
    width: 13%;
}

.footer-sec h2 {
    font-size: 22px;
    color: #363636;
    line-height: 25px;
}

.footer-client-services ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px 0;
}

.footer-client-services ul {
    line-height: 45px;
    margin-bottom: 0;
}

.footer-client-services ul li a img {
    width: 24px;
    height: 25px;
    object-fit: contain;
}

.footer-helpful-link {
    margin-left: 120px;
}

.footer-client-services {
    margin-left: 30px;
}

.footer-copy-right {
    margin-top: 70px;
    background: #171717;
    padding: 12px 0;
}

.footer-copy-right-text p {
    margin: 0;
}

.footer-copy-right-img {
    text-align: end;
}

.footer-copy-right-text p {
    margin: 0;
    color: #a2a2a3;
}

.footer-helpful-link ul li a {
    font-family: "Roboto", sans-serif;
    color: #6f6f6f;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
}

.footer-helpful-link ul li a:hover {
    color: #0081ff;
    letter-spacing: 1px;
    transition: 0.5s;
}

.footer-helpful-link ul {
    margin-bottom: 0;
    line-height: 30px;
}

.footer-about ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.footer-about ul li a {
    border: 1px solid #b3b3b3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    font-size: 18px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-animation 2s infinite;
}

.footer-about ul li a:hover {
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    color: #fff !important;
    transform: scale(1.1);
    -webkit-text-fill-color: inherit;
}

/*Footer End*/

/*Inner About Us Start*/

.about-us-row {
    margin-top: 40px;
}

.inner-banner-sec {
    background: #fdf1e3;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-banner-heading h2 {
    font-size: 90px;
}

.inner-banner-heading p {
    width: 45%;
    margin: 0 auto;
}

.our-story-row {
    padding: 60px 0;
}

/*Inner About Us End*/



/* Inner Cart Start */

.product-cart figure,
.product-cart article {
    display: inline-block;
}

.product-cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cart-page-tble thead tr {
    height: 40px;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
}


.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

ul.list-inline.pr_counter.d-flex.align-items-center.justify-content-center {
    margin-bottom: 10px;
}

.proceed-checkout a {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    color: #fff;
    font-size: 22px;
    padding: 20px 0;
    margin-bottom: 15px;
}

.cart-page-tble tbody tr td {
    padding: 25px 0px;
}

table.cart-page-tble {
    width: 100%;
}

.product-cart article p {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 25px;
    letter-spacing: 0;
    font-family: "Roboto", sans-serif;
}

.product-cart article {
    margin-left: 10px !important;
}

.cart-page-tble tbody tr td input {
    /* height: 60px; */
    /* border: 1px solid #c4c4c4; */
    /* background-color: #ffffff; */
    /* color: #000; */
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 0px solid #ebebeb;
    font-size: 23px;
    color: #0000009c;
    font-weight: 500;
    background: #fff0;
    margin: 0;
    border-radius: 5px;
    width: 100px;
}

.update-cart {
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0;
}

.unit-sub-price-text {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.cart-page-tble tbody tr {
    border-bottom: 1px solid #d9d9d9;
}

.cart-page-tble tbody tr td i {
    margin: 0 auto;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
}

.cart-cross {
    height: 40px;
    width: 40px;
    font-size: 25px;
    background: #000000;
    color: #fff;
    padding: 7px;
}

.total-box,
.total-f,
.shipping-box {
    padding: 30px 50px 0 40px;
    background-color: #f9f9f9;
    border: 1px solid #d7d7d7;
}

.proceed-checkout {
    margin-top: 10px;
}

.total-f {
    padding: 10px 50px 10px 50px;
    background-color: #f6f6f6;
    border-top: 0 !important;
}

.total-box .sum li {
    line-height: 35px;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.total-f h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.total-box .sum li span {
    margin-left: 60px;
}

.total-f span {
    margin-left: 71px;
}


.cart-paypal-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    background: #fff;
}

.cart-paypal-box p {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    padding: 4px 20px;
    margin-top: -43px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid #c4c4c4;
    color: #333;
    font-family: "Roboto", sans-serif;
}

.pd-12-110 {
    padding: 12px 110px;
}

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

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

.mt-minus-60 {
    margin-top: -60px;
}

.cart-main-sec {
    padding: 100px 0 80px 0;
}

.cart_btn {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0% auto;

    color: #fff;

    font-size: 20px;

    text-transform: uppercase;

    height: 50px;

    width: 250px;

    background: #53171d;

    border-radius: 100px;

    font-family: 'Bebas Neue';
}

.cart_btn:hover {
    color: black;
}

.product-cart img {
    width: 114px;
    height: 108px;
    border-radius: 6px;
    text-align: center;
}

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}



.shipping-box h4 {
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
}

.shipping-box p {
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.for-lin:before {
    position: absolute;
    content: '';
    left: 0;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    width: 949px;
    height: 30px;
    z-index: 9999;
    top: 10px;
}

.for-lin {
    position: relative;
}


.inc {
    background-color: #fafafa !important;
    padding: 2px 15px;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    border: 1px solid #e5e5e5;
}

.input-number {

    border: none;

}

.input-number-decrement,
.input-number-increment {

    display: inline-block;

    width: 40px;

    height: 40px;

    display: inline-flex;

    color: #444;

    text-align: center;

    font-weight: 700;

    border: 1px solid black !important;
    cursor: pointer;

    background: #f7f7f7;

    border-radius: 100%;

    justify-content: center;

    align-items: center;

}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {

    border: 0;

    height: 20px;

    user-select: none;

    font-weight: 700;

    padding: 5px 5px 5px 5px;

    width: 20px;
}

a.update {
    color: #333333;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

/* Inner Cart End */


/*Inner Check Out Start*/




.billing_form h3 {
    font-size: 40px;
    margin: 0;
    margin-bottom: 30px;
    line-height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'audrey-normal';
}

.billing_form label {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
    font-family: "Roboto", sans-serif;
}


input[type="text"]::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    line-height: 14px;
}

.radiosss p {
    font-size: 12px;
    line-height: 25px;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #e2e2e2;
    margin-bottom: 25px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 5px;
}


.billing_form input::placeholder {
    color: #7C7C7C;

}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar .cart_lst li span {
    float: right;
}


.cart_sidebar .cart_lst li:last-child {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    font-family: "Roboto", sans-serif;
    margin-top: 25px;
}


.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}



.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;

}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;

}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;

}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;

}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;

}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;

    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;

}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #700ea3;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #d8d8d8;
}


.cart_sidebar h3 {
    font-size: 24px;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: #000;
    font-size: 25px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #7c7c7c;
    font-family: "Roboto", sans-serif;
}


.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #d8d8d8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #007dff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 5px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;

}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    padding: 14px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
    text-transform: uppercase;
    border-radius: 100px;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}


ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 600;
    color: #000;
    font-size: 23px;
    margin-bottom: 30px;
    font-family: "Roboto", sans-serif;
    margin-top: 30px;
}

label {
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {

    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #0097ff;
}


.cart_sidebar a {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    color: #fff;
    font-size: 22px;
    padding: 15px 0;
    margin-bottom: 15px;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid #fff;
    margin-left: 0;
    background-color: #fff0;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}



.billing_form {
    padding: 40px;
    border-radius: 10px;
}




/*Inner Check Out End*/

/*Inner Contact Us Start*/


.Inner-contact-us-sec {
    margin: 140px 0;
}

.Inner-contact-us-form {
    padding: 50px 30px;
    position: relative;
}

.Inner-contact-us-form:before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -9;
    background: #fff;
    box-shadow: 0 0 10px 0 #0000001f;
}

.Inner-contact-us-form input {
    width: 100%;
    height: 60px;
    margin-bottom: 25px;
    padding: 0 20px;
    border: 1px solid #c4c4c4;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #a7a6a6;
}

.Inner-contact-us-form input::placeholder {

    text-transform: uppercase;
    font-weight: 600;
    color: #a7a6a6;
}

.Inner-contact-us-form p {
    width: 80%;
    margin-bottom: 20px;
}

.Inner-contact-us-form textarea::placeholder {

    text-transform: uppercase;
    font-weight: 600;
    color: #a7a6a6;
}

.Inner-contact-us-form textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 25px;
    padding: 20px 20px;
    border: 1px solid #c4c4c4;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #a7a6a6;
    resize: none;
}

.Inner-contact-us-form button {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    color: #fff;
    font-size: 18px;
    padding: 15px 40px;
    margin-bottom: 15px;
    border: none;
}

.contact-details-box {
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
    padding: 70px 70px;
}

.contact-details-box ul li img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.contact-details-box h2 {
    font-size: 39px;
    color: #ffff;
    margin-bottom: 50px;
}

.contact-details-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 0;
}

.contact-details-box ul li a {
    font-family: "Roboto", sans-serif;
    color: #fff;
}


/*Inner Contact Us End*/



/* Inner Shop Start */



.product-inner-sec .product-side-bar h4 {
    font-size: 30px;
    margin: 0px 0 30px;
    color: #271e17;
    position: relative;
    text-transform: uppercase;
    font-family: 'audrey-normal';
}


.product-inner-sec .product-side-bar ul li {
    margin: 20px 0;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0;
}

.product-inner-sec .product-side-bar ul li a input {
    height: 15px;
    width: 15px;
    border: 10px solid #1c1c1c;
    margin-right: 30px;
}

h4.themes-h4.chg {
    margin-top: 50px;
}

.products-silder-items.chg {
    margin-top: 30px;
}

.product-inner-sec .product-side-bar ul li a label {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.product-inner-sec ::-webkit-scrollbar {
    width: 10px;
}




.product-inner-sec ::-webkit-scrollbar-track {
    background: #f0f0f0;
}


/* Handle */

.product-inner-sec ::-webkit-scrollbar-thumb {
    background: #632705;
    border-radius: 5px;
}

.product-inner-sec .al-cent {
    align-items: center;
    margin-bottom: 30px;
}

.product-inner-sec select {
    width: 100%;
    padding: 10px 15px;
    height: 50px;
    background-color: transparent;
    color: #000;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 18px;
    border-radius: 0;
    -webkit-appearance: auto;
}

.product-inner-sec h6 {
    margin: 0;
    font-size: 18px;
    float: right;
    color: #000;
    font-family: 'Montserrat';
}

.product-inner-sec .arrival-text h4 {
    font-size: 21px;
}

.product-inner-sec .product-side-bar ul {
    padding-right: 20px;
}

.about-bottom-btn a {
    padding: 15px 50px;
}

.about-bottom-btn {
    text-align: center;
    margin-top: 30px;
}

.product-inner-sec {
    position: relative;
    background-image: url(../images/inner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 -750px;
}


/* Inner Shop End */


/*Products Detail Start*/


.products-detail-sec {
    padding: 120px 0;
}

.products-detail-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.products-detail-bottom-row {
    margin-top: 40px;
}

.products-detail-text h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

ul.reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.reviews li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.reviews li h4 i {
    font-size: 16px;
    color: #ffc107;
}

ul.reviews li h4 {
    margin-bottom: 0;
}

ul.reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #66caff;
    padding-bottom: 10px;
}

.products-detail-bottom-row h2 {
    font-size: 35px;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-weight: 600;
}

ul.reviews li h3 {
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
    line-height: 60px;
}

ul.reviews li span {
    font-family: "Montserrat", sans-serif;
    color: #8c8c8c;
    margin-bottom: -5px;
    font-weight: 600;
}

.color-black h2 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    margin-bottom: 0;
}

.color-black h2 span {
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul.availability li {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul.availability {
    line-height: 33px;
    margin-top: 30px;
    margin-bottom: 15px;
}

ul.availability li span {
    color: #000 !important;
    background: inherit !important;
    -webkit-background-clip: inherit !important;
    -webkit-text-fill-color: #000;
}

.color-black ul li span {

    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.color-black ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.size-lager h2 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    margin-bottom: 0;
}

.size-lager h2 span {
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.size-lager ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.size-lager ul li a {
    display: flex;
    align-items: center;
    border: 2px solid #005fff;
    width: 80px;
    justify-content: center;
    height: 50px;
    font-size: 22px;
    font-family: "Roboto", sans-serif;
    color: #000;
}

.products-detail-qut ul {
    justify-content: left !important;
}

.products-detail-qut-row {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-detail-qut-btn a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 20px;
    padding: 13px 50px;
    background: #000;
}

.products-detail-qut-row .inc {

    padding: 15px 45px;

}

.products-detail-qut-heart a {
    border: 1px solid #a9a9a9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(to right, #005fff 0%, #00a3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Products Detail End*/

/* Blogs Section Start */

section.blog-sec {
    padding: 100px 0px;
}

.centerCol {
    margin: 0 auto;
}

.blog-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    transition: .5s ease-in-out;
}

.blog-text h3 {
    font-size: 16px;
    color: #171515;
    text-transform: uppercase;
    line-height: 30px;
    width: 80%;
    margin-bottom: 10px;
}

ul.blog-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.blog-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

ul.blog-list img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

ul.blog-list li h5 {
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    display: grid;
    line-height: 24px;
}

ul.blog-list li span {
    color: #a09c9c;
}

ul.blog-list li i {
    font-size: 20px;
    color: #a09c9c;
}

.blog-text {
    padding: 10px 30px 0px;
}

.blog-main-box {
    position: relative;
}

.blog-main-box .blog-image img {
    width: 100%;
    height: 385px;
    object-fit: cover;
    transition: 1s All;
}

.blog-main-box .blog-text {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 30px;
}

.blog-main-box .blog-text * {
    color: #fff !important;
}

.blog-main-box .blog-text h3 {
    width: 60%;
    font-weight: 400;
    font-weight: 700;
}

section.blog-sec .row {
    align-items: center;
}

.blog-box:hover .blog-image img {
    transform: scale(1.5);
}

.blog-det-wrap ul li {
    margin-bottom: 15px;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transition: 1s all;
    height: 173px;
}

.blog-box:hover {
    box-shadow: 0 0 11px 0 #ccc;
}

section.blog-sec .top-heading {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

section.blog-sec.inn-blog {
    padding: 100px 0;
}

section.blog-sec.inn-blog .blog-box {
    margin-top: 30px;
}


/* Blogs Section End */


/* Blog detail */

section.blog-detail {
    padding: 100px 0;
}

.blog-det-img {
    box-shadow: 0 0 8px 0 #fffafa;
    padding: 10px;
    margin-bottom: 40px;
    border: 10px solid #f3f3f3;
}

.blog-det-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.blog-det-img h5 {
    text-transform: uppercase;
    margin: 20px 0;
    color: #171515;
    font-size: 32px;
}

.blog-det-wrap ul li {
    color: #000;
    font-size: 14px;
}

.blog-det-wrap ul li strong {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    color: #171515;
}

.blog-det-img ul {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
}

.blog-det-img ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-det-img ul li span {
    font-weight: 600;
    color: #161414;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-det-img ul:before {
    position: absolute;
    content: '';
    background: #161414;
    width: 50px;
    left: 76px;
    height: 1px;
}


/* end  */

html {
    overflow-x: hidden;
}
.slicknav_nav a:hover {
    background: linear-gradient(0deg, rgba(0, 166, 255, 1) 0%, rgba(0, 95, 255, 1) 100%);
}

.slicknav_nav a:hover i{
    color:#fff;
}
#preloader {
    max-width: 100vw;
    max-height: 100vh;
    background-color: #f79a32 !important;
}
div#preloader video {
    height: 100%;
    width: 100%;
}


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    
#preloader {
    max-width: 100vw;
    max-height: 100vh;
    background-color: #f79a32 !important;
}
div#preloader video {
    height: 100%;
    width: 100%;
}
    .main_slider .banner-bg {
        width: 100%;
        height: 610px;
        object-fit: cover;
    }
body {
    padding-top: 0 !important;
}
.topSec {
    position: relative !important; 
}

.our-story-sec {
    margin: 60px 0 0;
    background-position: -350px;
    background-size: cover;
}
.menuSec ul li a {
    padding: 0px 2px !important;
    font-size: 13px !important;
}
.menuSec ul {
    padding: 20px 0 15px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 5px;
}
p {
    font-size: 13px;
    line-height: 20px;
}
.about-us-sec {
    padding: 120px 0 0px;
}
.products-silder-items-text ul li img {
        width: 30px;
        height: 35px;
    }
    .products-silder-items-text ul li span {
        font-size: 18px;
        line-height: 22px;
    }

.what-people-say-sec {
    padding: 0px 0 20px;
}
section.product-inner-sec.all-section .sectnj div#primary ul.products>li {
    width: 40% !important;
}


}

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

#preloader {
    max-width: 100vw;
    max-height: 100vh;
    background-color: #f79a32 !important;
}
div#preloader video {
    height: 100%;
    width: 100%;
}
    .main_slider .banner-bg {
        width: 100%;
        height: 610px;
        object-fit: cover;
    }
body {
    padding-top: 0 !important;
}
.topSec {
    position: relative !important; 
}

.our-story-sec {
    margin: 60px 0 0;
    background-position: -350px;
    background-size: cover;
}
.menuSec ul li a {
    padding: 0px 2px !important;
    font-size: 13px !important;
}
.menuSec ul {
    padding: 20px 0 15px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 5px;
}
p {
    font-size: 13px;
    line-height: 20px;
}
.about-us-sec {
    padding: 120px 0 0px;
}
.products-silder-items-text ul li img {
        width: 30px;
        height: 35px;
    }
    .products-silder-items-text ul li span {
        font-size: 18px;
        line-height: 22px;
    }

.what-people-say-sec {
    padding: 0px 0 20px;
}


section.product-inner-sec.all-section .sectnj div#primary ul.products>li {
    width: 50% !important;
}


.inner-banner-heading h2 {
    font-size: 60px;
}

.footer-helpful-link {
    margin-left: 0px;
}








}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .about-us-text:before {
    width: 100%;    top: -35px;
    height: 339px;
}
.topSec {
    width: 100vw !important;
    position: relative !important;
}
#preloader {
    max-width: 100vw;
    max-height: 100vh;
    background-color: #f79a32 !important;
}
div#preloader video {
    height: 100%;
    width: 100%;
}
 .main_slider  .banner-bg{    width: 100%;
    height: 450px;
    object-fit: cover;
}
   body {
    padding-top: 0px !important;
} 
  h1 {
    font-size: 45px;
    line-height: 45px;
}  
.banner_text h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 2px;
}
.banner_text p {
    width: 100%;
    line-height: 18px;
}
p {
    font-size: 12px;
    line-height: 18px;
}

.about-us-sec {
    padding: 70px 0 40px;
}
.about-us-text {
    padding-left: 25px;
    position: relative;
}
h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 5px;
}

.products-sec {
    padding: 0px 0 40px;
}
.products-sec .container-fluid.add-padding {
    padding: 0px 5px;
}
.products-silder-items-text h2 {
    font-size: 16px;
    line-height: 18px;
    padding: 5px 0px;
    margin-top: 8px;
}.our-story-sec {
    margin: 40px 0 0;
}
.products-silder-items-text ul li img {
    width: 30px;
    height: 35px;
}
.products-silder-items-text ul li span {
    font-size: 18px;
    line-height: 22px;
}
.our-story-box {
    padding: 30px 10px;
}
.our-story-box h2 {
    margin-bottom: 5px;
}.our-story-box p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 25px; 
}

section.blog-sec {
    padding: 40px 0px 0px;
}
.what-people-say-sec {
    padding: 20px 0 0px;
}

.what-people-say-silder-items {
    padding: 15px 20px;
}
.what-people-say-quote img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.what-people-say-quote {
    top: -10px !important;
    left: 15px !important;
}
.what-people-say-silder-items ul {
    margin-top: 10px;
}

.what-people-say-silder-items ul li i {
    font-size: 12px;
}
ul.what-people-say-star {
    margin-bottom: 5px !important;
}
.what-people-say-sec .container-fluid.add-padding {
   padding: 0px 0;
}
.footer-logo {
    margin-bottom: 25px;
}
.footer-client-services{margin-left: 0px;
}

.footer-helpful-link{
    margin-left: 0px;
}    

.footer-copy-right {
    margin-top: 25px;
    padding: 10px 0;
}

.footer-client-services ul li a {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 15px 0;
}

.footer-sec h2 {
    font-size: 18px;
     line-height: 18px; 
}
.footer-client-services ul li a img {
    width: 15px;
    height: 20px;
    object-fit: contain;
}

.footer-helpful-link ul li a {
    font-size: 13px;
}

.footer-helpful-link ul {
    line-height: 23px;
}

.footer-copy-right-text p {
    text-align: center;
    margin-bottom: 10px;
}

.footer-copy-right-img {
    text-align: center;
}
.inner-banner-heading h2 {
    font-size: 30px;
}
.inner-banner-sec {
    height: 200px;
}
.inner-banner-heading {
    padding-top: 20px;
}

.inner-banner-heading p {
    width: 100%;
}
.about-us-images img {
    height: 250px;
}

.about-us-images:before {
    bottom: -25px;
}
.our-story-box a img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.what-people-say-heading {
    margin-bottom: 20px;
}
section.blog-sec.inn-blog {
    padding: 40px 0;
}
.Inner-contact-us-sec {
    margin: 40px 0;
}
.Inner-contact-us-form {
    padding: 25px 10px;
    position: relative;
}
.Inner-contact-us-form input {
    height: 50px;
    margin-bottom: 8px;
    padding: 0 20px;
    font-size: 12px;
}
.contact-details-box {
    padding: 20px 10px;
}
.contact-details-box h2 {
    font-size: 25px;
    margin-bottom: 15px;
}
.contact-details-box ul li a {
    font-size: 12px;
    line-height: 18px;
}

.contact-details-box ul li img {
    width: 25px;
    height: 25px;
}
section.product-inner-sec.all-section .sectnj div#primary ul.products>li {
    width: 50% !important;
}

}

@media only screen and (min-width: 0px) and (max-width: 519px) {
    
    .about-us-text:before {
    width: 100%;    top: -35px;
    height: 339px;
}
.topSec {
    width: 100vw !important;
    position: relative !important;
}
#preloader {
    max-width: 100vw;
    max-height: 100vh;
    background-color: #f79a32 !important;
}
div#preloader video {
    height: 100%;
    width: 100%;
}
 .main_slider  .banner-bg{    width: 100%;
    height: 450px;
    object-fit: cover;
}
   body {
    padding-top: 0px !important;
} 
  h1 {
    font-size: 45px;
    line-height: 45px;
}  
.banner_text h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 2px;
}
.banner_text p {
    width: 100%;
    line-height: 18px;
}
p {
    font-size: 12px;
    line-height: 18px;
}

.about-us-sec {
    padding: 70px 0 40px;
}
.about-us-text {
    padding-left: 25px;
    position: relative;
}
h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 5px;
}

.products-sec {
    padding: 0px 0 40px;
}
.products-sec .container-fluid.add-padding {
    padding: 0px 5px;
}
.products-silder-items-text h2 {
    font-size: 16px;
    line-height: 18px;
    padding: 5px 0px;
    margin-top: 8px;
}.our-story-sec {
    margin: 40px 0 0;
}
.products-silder-items-text ul li img {
    width: 30px;
    height: 35px;
}
.products-silder-items-text ul li span {
    font-size: 18px;
    line-height: 22px;
}
.our-story-box {
    padding: 30px 10px;
}
.our-story-box h2 {
    margin-bottom: 5px;
}.our-story-box p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 25px; 
}

section.blog-sec {
    padding: 40px 0px 0px;
}
.what-people-say-sec {
    padding: 20px 0 0px;
}

.what-people-say-silder-items {
    padding: 15px 20px;
}
.what-people-say-quote img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.what-people-say-quote {
    top: -10px !important;
    left: 15px !important;
}
.what-people-say-silder-items ul {
    margin-top: 10px;
}

.what-people-say-silder-items ul li i {
    font-size: 12px;
}
ul.what-people-say-star {
    margin-bottom: 5px !important;
}
.what-people-say-sec .container-fluid.add-padding {
   padding: 0px 0;
}
.footer-logo {
    margin-bottom: 25px;
}
.footer-client-services{margin-left: 0px;
}

.footer-helpful-link{
    margin-left: 0px;
}    

.footer-copy-right {
    margin-top: 25px;
    padding: 10px 0;
}

.footer-client-services ul li a {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 15px 0;
}

.footer-sec h2 {
    font-size: 18px;
     line-height: 18px; 
}
.footer-client-services ul li a img {
    width: 15px;
    height: 20px;
    object-fit: contain;
}

.footer-helpful-link ul li a {
    font-size: 13px;
}

.footer-helpful-link ul {
    line-height: 23px;
}

.footer-copy-right-text p {
    text-align: center;
    margin-bottom: 10px;
}

.footer-copy-right-img {
    text-align: center;
}
.inner-banner-heading h2 {
    font-size: 30px;
}
.inner-banner-sec {
    height: 200px;
}
.inner-banner-heading {
    padding-top: 20px;
}

.inner-banner-heading p {
    width: 100%;
}
.about-us-images img {
    height: 250px;
}

.about-us-images:before {
    bottom: -25px;
}
.our-story-box a img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.what-people-say-heading {
    margin-bottom: 20px;
}
section.blog-sec.inn-blog {
    padding: 40px 0;
}
.Inner-contact-us-sec {
    margin: 40px 0;
}
.Inner-contact-us-form {
    padding: 25px 10px;
    position: relative;
}
.Inner-contact-us-form input {
    height: 50px;
    margin-bottom: 8px;
    padding: 0 20px;
    font-size: 12px;
}
.contact-details-box {
    padding: 20px 10px;
}
.contact-details-box h2 {
    font-size: 25px;
    margin-bottom: 15px;
}
.contact-details-box ul li a {
    font-size: 12px;
    line-height: 18px;
}

.contact-details-box ul li img {
    width: 25px;
    height: 25px;
}

.product-template-default .woocommerce-product-gallery__wrapper img {
    object-fit: cover;
}




 
    
    
    
    
}


/*Media Query End*/

