@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=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

/***** General CSS *****/

.slicknav_nav a:hover {
    background: #f49423;
}

.heading {
    text-align: center;
    margin: 0 0 50px 0;
}

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

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 0px;
    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
}


/***** 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;
}

/* Buttons css Starts */

    .theme1{
        display: inline-block;
        border: 2px solid white;
        border-radius: 100px;
        background-color: #007FFF;
        padding: 13px 30px;
        color: white;
        font-size: 16px;
        text-align: center;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .theme1:hover{
        background-color: black;
        color: white;
        border: 2px solid #007FFF;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme1:focus{
        color: white;
    }

    





    .theme2 {
        padding: 5px 10px;
        background-color: #fff;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 1px solid #0000;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .theme2:hover {
        background-color: #000;
        border: 1px solid #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme2 span.btn-txt {
        font-size: 13px;
        line-height: 20px;
        color: #000;
        font-family: "Montserrat", sans-serif;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .theme2:hover span.btn-txt {
        color: #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    span.btn-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        background-color: #007FFF;
        border: 1px solid #0000;
        color: #fff;
        border-radius: 100px;
        font-size: 15px;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .theme2:hover span.btn-icon i {
        background-color: #0000;
        border: 1px solid #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    }







    .theme3 {
        padding: 5px 10px;
        background-color: #0000;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 1px solid #0000;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme3:hover {
        background-color: #000;
        border: 1px solid #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme3 span.btn-txt {
        font-size: 12px;
        line-height: 20px;
        color: #fff;
        font-family: "Montserrat", sans-serif;
    }

/* Buttons css Ends */


.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: "Oswald", sans-serif;
    font-size: 45px;
    line-height: 80px;
    color: #000;
    font-weight: 500;
    margin: 20px 0;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    line-height: 45px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
}

h5 {
    
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #000;
    font-size: 12px;
    line-height: 20px;
    font-family: 'Poppins', serif;
    font-weight: 400;
    letter-spacing: 0px;
    /*margin: 0px;*/
}

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 */
header {
    padding: 5px 0;
}
.banner_text h1 img {
    width: 10%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(41%) saturate(0%) hue-rotate(300deg) brightness(115%) contrast(100%);
    animation: rotateY-anim 4s linear infinite;
}
@keyframes rotateY-anim {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}
.menuSec {
    padding: 0px 0;
}
.menuSec-btns {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.menuSec img {
    margin: 0;
}

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

.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;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.2s;
}

.header-logo a img {
    width: 90%;
}
.menuSec ul li a:hover {
    color: #007FFF;
    transition: ease-out;
    transition-duration: 0.2s;
}

.menuSec ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0%;
    border-bottom: 1px solid #007FFF;
    transition: ease-out;
    transition-duration: 0.2s;
}

.menuSec ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.2s;
}


.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.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;
}

.menuSec li:hover a {}

.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;
}


/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.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;
    background: rgba(0, 0, 0, 0.1);
}

.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;
}

.carousel-item {
    height: 900px;
}

.banner-card-txt h4 {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    text-transform: uppercase;
}

.banner-card-main {
    position: relative;
}

.banner-card-txt {
    position: absolute;
    top: 40%;
    left: unset;
    width: 100%;
    text-align: center;
}

.banner_text h1 {
    padding: 200px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_text h2 {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 75px;
    padding-bottom: 200px;
    height: 80px;
}


/*banner css end*/

/*Promote Sec css Starts*/

    section.promote-sec {
        padding: 20px 0;
    }

    .promote-card-txt h4 {
        font-size: 30px;
        line-height: 35px;
        text-align: center;
        text-transform: uppercase;
    }

    .promote-card {
        position: relative;
    }

    .promote-card-txt {
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 70%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promote-card-img {
        position: relative;
    }

    .promote-card-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(0deg, rgb(0 127 255) 0%, rgba(0, 0, 0, 0) 100%);
        height: 100%;
        width: 100%;
    }

    .promote-card-img:hover::before {
        background: linear-gradient(0deg, rgb(0 127 255) 0%, rgba(0, 0, 0, 0) 100%);
    }

    section.promote-sec .slick-slide {
        opacity: 1;
        outline: none;
        margin: 0 10px;
    }
    .promote-card-img img {
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        height: 470px;
        width: 100%;
    }

    .promotesliderleft .slick-list.draggable {
        padding: 0px 0 0 240px !important;
        margin: 0 100px 0 0 !important;
    }

    .promotesliderright .slick-list.draggable {
        padding: 0 240px 0 0 !important;
        margin: 0 0 0 100px !important;
    }


/*Promote Sec css Ends*/

/*ourproduct_sec start */

    .rate {
        float: left !important;
        height: 46px;
        display: block;
        width: 100%;
    }
    .rate:not(:checked) > input {
        position:absolute;
        top:-9999px;
    }
    .rate:not(:checked) > label {
        float: left;
        width: 20px;
        overflow:hidden;
        white-space:nowrap;
        cursor:pointer;
        font-size: 23px;
        color:#ccc;
    }
    .rate:not(:checked) > label:before {
        content: '★ ';
    }
    .rate > input:checked ~ label {
        color: #fd8f00;
    }

    .rate > input:checked + label:hover,
    .rate > input:checked + label:hover ~ label,
    .rate > input:checked ~ label:hover,
    .rate > input:checked ~ label:hover ~ label,
    .rate > label:hover ~ input:checked ~ label {
        color: #fd8f00;
    }


    .ourproduct_sec{

padding: 100px 0 0 0;

/* background-color: black; */
}

    .productslider{

    }
    .product_card{

    }
    .product_image{

background-color: white;

border-radius: 10px;

padding: 60px 0;

}
    .product_image img{
        
    margin: 0 auto;
        
    display: block;
        
    width: 50%;
        
    height: 170px;
        
    object-fit: scale-down;
    }

    .product_text a{

    margin-top: -70px;

    justify-content: center;

    background-color: white;

    display: flex;

    align-items: center;

    width: 60px;

    height: 60px;

    float: right;

    border-radius: 50%;

    margin-right: 10px;
    }
    .product_text a img{

    height: 30px;

    width: 30px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(74%) saturate(5577%) hue-rotate(198deg) brightness(103%) contrast(106%);
    }
    .product_text {

padding: 40px 20px;

background-color: #181818;

margin-top: -10px;

border-bottom-left-radius: 10px;

border-bottom-right-radius: 10px;

}
    .product_text .price{

    padding: 10px 0 0 0;

    display: flex;

    border-top: 1px solid #393838;

    align-items: center;

    justify-content: space-between;

    width: 100%;
    }
    .product_text .price p{

        margin: 0;

        color: white;
    }
    .product_text .price h6{

color: white;

margin: 0;

font-size: 23px;

font-weight: 300;

}
    .product_text h5 {

margin-bottom: 10px;

text-transform: uppercase;

color: white;

font-weight: 400;

}

    .product-heading {
        padding: 0 0 30px 0;
    }

    .productslider  .slick-active {
        opacity: 1;
    }

    .productslider  .slick-slide {
        opacity: 1;
    }

    .productslider  .slick-slide.slick-current.slick-active.slick-center .product_image{
        background-color: #007FFF;
    }

/*ourproduct_sec Ends */


/*journey start*/



    .journey_text{
        width: 100%;
        height: 100%;
        display: flex;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
    }

    .journey_text h3{
        font-size: 53px;
        line-height: 60px;
        padding-bottom: 30px;
        text-transform: uppercase;
        border-bottom: 1px solid #ffffff3b;
        color: #fff;
    }
    .journey_text h5{
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-weight: 600;
        color: white;
    }

    .journey_image img{
        width: 100%;
        height: 380px;
        object-fit: cover;
    }


    .journey_sec {
        background-image: linear-gradient(to right, #010006db, #010006db), url("../images/journey_bg.png");
        background-size: cover;
        background-position: center;
        height: 100%;
        padding: 80px 0;
        margin: 0 0 80px 0;
        background-attachment: fixed;
    }

/*journey Ends*/

/* Footer */

footer {
    background: #111111;
    padding-top: 0;
    padding-bottom: 4px;
    padding: 80px 0 0 0;
    border-top: 1px solid #007FFF;
}

footer p {
    font-size: 15px;
    width: 90%;
    margin-bottom: 0;
    color: white;
    line-height: 30px;
    font-family: 'Montserrat';
}

footer h3 {
    color: #fff;
    font-size: 25px;
    font-family: 'Anton';
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
    padding-top: 60px;
    font-family: 'Oswald';
}

.quick-links ul {
    column-count: 2;
    column-gap: 100px;
    position: relative;
}

.quick-links ul li {
    margin-bottom: 13px;
}

.quick-links ul li a {
    color: white;
    font-weight: 400;
    margin-bottom: 13px;
    text-transform: uppercase;
    font-size: 16px;
}

.quick-links>div {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 80px;
}

ul.footer-list li a {
    font-size: 17px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 300;
}

ul.ftr-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 12px;
    color: #c1c1c3;
    padding-top: 15px;
    margin-bottom: 10px;
}

ul.ftr-list li a p {
    color: white;
    line-height: 1;
}

ul.ftr-list i {
    font-size: 24px;
}

.footer-text {
    width: 100%;
}

.quick-links {
    width: 98%;
    margin: 0 0 0 auto;
    margin-bottom: 0;
}

.quick-links.ser-links {
    width: 80%;
}

.quick-links:before {
    position: absolute;
    content: '';
    border: 1px solid #ffffff33;
    border-top: none;
    border-bottom: none;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
}

footer .col-md-4,
footer .col-md-3,
footer .col-md-2 {
    position: relative;
}

footer .col-md-3:last-child:before {
    display: none;
}

.ftr-btm {
    background: #141414;
    padding: 12px 20px;
    border: 1px solid #ffffff33;
}

.ftr-btm ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.ftr-btm ul li {
    font-size: 14px;
    color: #fff;
}

.social-icons {
    padding: 20px 0;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.ftr-btm ul li a i:hover {
    background: #fff;
    color: #000;
}

.social-icons a i {
    color: #969696;
    font-size: 20px;
    border: 1px solid #787878;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
}

.fotterbottom p{
    font-weight: 300;
    text-align: center;
    margin-top: 40px;
    letter-spacing: 3px;
    padding: 10px 0;
    border-top: 1px solid #ffffff33;
    width: 100%;
}

/* Footer end */

/*Media Query Start*/

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

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

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


/* Fonts css Starts */

/* Fonts css Ends */




/* Buttons css Starts */

    .theme2, .theme3 {
        padding: 5px;
        gap: 5px;
    }

/* Buttons css Ends */




/* Home css Starts */

    .menuSec ul li a {
        padding: 8px 8px;
        font-size: 12px;
    }

    .banner_text h1 {
        padding: 0;
    }

    .carousel-item {
        height: 500px;
    }
    
    .promote-card-txt {
        left: unset;
        width: 100%;
    }

    .promote-card-txt h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .promotesliderleft .slick-list.draggable, .promotesliderright .slick-list.draggable {
        padding: 0 !important;
        margin: 0 !important;
    }

    .journey_text h5 {
        letter-spacing: 4px;;
    }

    .quick-links ul {
        column-count: 1;
    }

    .social-icons a i {
        font-size: 17px;
        width: 40px;
        height: 40px;
    }



    



/* Home css Ends */

















}

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

/* Fonts css Starts */

    h1 {
        font-size: 50px;
        line-height: 55px;
    }

    h4 {
        font-size: 35px;
        line-height: 40px;
    }


/* Fonts css Ends */



/* Buttons css Starts */

    .theme2, .theme3 {
        padding: 5px;
        display: flex;
    }

    .theme2 span.btn-txt {
        font-size: 12px;
    }

    span.btn-icon i {
        height: 25px;
        width: 25px;
        font-size: 12px;
    }

    

/* Buttons css Ends */


/* Home css Starts */

    .menuSec-btns {
        display: block;
    }

    .menuSec-btns a {
        margin: 0 0 10px 0;
    }

    .menuSec ul li a {
        padding: 8px 1px;
        font-size: 12px;
    }

    .carousel-item {
        height: 400px;
    }

    .banner_text h1 {
        padding: 0;
    }

    .banner-card-txt h4 {
        font-size: 20px;
        line-height: 25px;
    }

    .promote-card-txt h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .promotesliderleft .slick-list.draggable, .promotesliderright .slick-list.draggable {
        padding: 0 !important;
        margin: 0 !important;
    }

    .promote-card-txt {
        left: unset;
        width: 100%;
    }

    .ourproduct_sec {
        padding: 20px 0 0 0;
    }

    .journey_sec {
        padding: 20px 0;
        margin: 0 0 20px 0;
    }

    .journey_text h3 {
        font-size: 40px;
        line-height: 45px;
        padding: 20px 0;
        margin: 0;
    }

    .journey_text h5 {
        letter-spacing: 4px;
    }

    .journey_image img {
        height: 100%;
        width: 50%;
        margin: 20px auto;
        display: flex;
    }

    .quick-links ul {
        column-count: 1;
    }

    footer {
        padding: 40px 0 0 0;
    }

    footer h3 {
        padding: 20px;
        margin: 0;
    }

    footer p {
        width: 100%;
        line-height: 20px;
        font-size: 13px;
    }

    .social-icons a i {
        width: 40px;
        height: 40px;
    }







    



    




/* Home css Ends */







}

@media only screen and (min-width: 520px) and (max-width: 767px) {


.heading {
    margin: 0 0 20px 0;
}

/* Fonts css Starts */

    h1 {
        font-size: 45px;
        line-height: 50px;
    }

    h4 {
        font-size: 30px;
        line-height: 35px;
    }

/* Fonts css Ends */


/* Buttons css Starts */

    .theme1 {
        padding: 10px 20px;
        font-size: 14px;
    }

/* Buttons css Ends */



/* Home css Starts */

    .header-logo img {
        width: 40%;
        margin: 0 auto 20px auto;
        display: flex;
    }

    .menuSec-btns {
        justify-content: center;
        gap: 20px;
    }

    .carousel-item {
        height: 1200px;
    }

    .banner-card-img img {
        width: 100%;
    }

    .banner_text h1 {
        padding: 0;
    }

    .banner-card-main {
        margin: 0 auto 30px auto;
        width: 80%;
    }

    .banner-card-txt h4 {
        font-size: 25px;
        line-height: 20px;
    }

    .promote-card-txt h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .promote-card-txt {
        left: unset;
        width: 100%;
    }

    .promotesliderleft .slick-list.draggable, .promotesliderright .slick-list.draggable {
        padding: 0 !important;
        margin: 0 !important;
    }

    .ourproduct_sec {
        padding: 20px 0 0 0;
    }

    .product_text {
        padding: 20px;
    }

    .journey_sec {
        padding: 20px 0;
        margin: 0 0 20px 0;
    }

    .journey_text h3 {
        font-size: 30px;
        padding: 20px 0;
        margin: 0;
    }

    .journey_text h5 {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .journey-btn .theme1 {
        width: 50%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .journey_image img {
        width: 50%;
        height: 100%;
        margin: 20px auto 0 auto;
        display: flex;
    }

    footer {
        padding: 20px 0 0 0;
    }

    footer h3 {
        padding: 20px 0;
        margin: 0;
    }

    footer p {
        font-size: 12px;
        width: 100%;
    }

    .quick-links ul li a {
        font-size: 14px;
        line-height: 20px;
    }

    .social-icons a i {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }

    .social-icons {
        justify-content: start;
        gap: 20px;
    }

    .fotterbottom p {
        letter-spacing: 0;
        margin-top: 0;
    }
    
/* Home css Ends */























}

@media only screen and (min-width: 300px) and (max-width: 519px) {

.heading {
    margin: 0 0 20px 0;
}

/* Fonts css Starts */

    h1 {
        font-size: 35px;
        line-height: 40px;
    }

    h4 {
        font-size: 30px;
        line-height: 35px;
    }

/* Fonts css Ends */


/* Buttons css Starts */

    .theme1 {
        padding: 10px 20px;
        font-size: 14px;
    }

/* Buttons css Ends */



/* Home css Starts */

    .header-logo img {
        width: 100% !important;!i;!;
        margin: 0 auto 20px auto;
        display: flex;
    }
div#smooth-wrapper {
    padding-top: 36%;
    background: #171717;
}

.banner_text h2 {
    padding: 0;
}
.header-logo {
    width: 27%;
}

.menuSec {
    padding: 10px 0;
    background: #212121;
    position: relative;
    z-index: 1;
}
.banner_text.wow.fadeInLeft {
    padding-top: 60px;
}

.slicknav_menu {
    position: relative;
    z-index: 99;
}

.slicknav_nav {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: auto;
    background: #212121;
    z-index: 9999999;
}

header {
    /* z-index: 1; */
    position: inherit !important;!i;!;
    padding: 0;
}
    .menuSec-btns {
        justify-content: center;
        gap: 20px;
        float: right;
        margin-top: -75px;
    }

    .carousel-item {
        height: 1270px;
    }

    .banner_text h1 {
        padding: 0;
    }

    .banner-card-main {
        margin: 0 0 30px 0;
    }

    .banner-card-txt h4 {
        font-size: 25px;
        line-height: 20px;
    }

    .banner-card-txt {
        top: 50%;
    }

    .promote-card-txt h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .promote-card-txt {
        left: unset;
        width: 100%;
    }

    .promotesliderleft .slick-list.draggable, .promotesliderright .slick-list.draggable {
        padding: 0 !important;
        margin: 0 !important;
    }

    .ourproduct_sec {
        padding: 20px 0 0 0;
    }

    .product_text {
        padding: 20px;
    }

    .journey_sec {
        padding: 20px 0;
        margin: 0 0 20px 0;
    }

    .journey_text h3 {
        font-size: 30px;
        padding: 20px 0;
        margin: 0;
    }

    .journey_text h5 {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .journey-btn .theme1 {
        width: 100%;
    }

    footer {
        padding: 20px 0 0 0;
    }

    footer h3 {
        font-size: 20px;
        line-height: 25px;
        padding: 20px 0;
        margin: 0;
    }

    footer p {
        font-size: 12px;
        width: 100%;
    }

    ul.ftr-list li a p {
        line-height: 20px;
    }

    .quick-links ul li a {
        font-size: 14px;
        line-height: 20px;
    }

    .quick-links ul {
        column-count: 1;
    }

    .social-icons a i {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }

    .social-icons {
        justify-content: start;
        gap: 20px;
    }

    .fotterbottom p {
        letter-spacing: 0;
        margin-top: 0;
    }
    
/* Home css Ends */

}

/*Media Query End*/

.promote-slider-main {
	overflow-x: clip;
	white-space: nowrap;
	position: relative;
	width: 100%;
}

.promoteslider {
	display: flex;
	align-items: center;
	gap: 2vw;
	will-change: transform;
}

.promoteslider > div {
	height: 100%;
	transition: transform 0.5s;
	flex-shrink: 0;
	width: 400px;
	border-radius: 2rem;
}
.profusts.promoteslider > div{
    width: 19vw;
}



.single-product .product {
    padding-top: 20%;
}

.single-product .product h1.product_title.entry-title {
    font-size: 50px;
    text-align: left;
}

.single-product .product .woocommerce-product-gallery__image {
    width: 260px;
    margin: auto;
}

.single-product .product .woocommerce-product-gallery__wrapper {
    background-color: white;
    border: 1px solid #ffffff;
}




.single-product .product p {
    color: white;
    font-size: 16px;
}

.single-product .product bdi {
    color: white;
    font-size: 40px;
    line-height: 80px;
}

.product_meta {
    display: none;
}



