* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'Lora', sans-serif;
    color: #3f3f3f;
    overflow-x: hidden;
    font-size: 16px;

}

p {
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    line-height: 24px;
    color: #3f3f3f;
}

a {
    font-size: 16px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'Lora', sans-serif;
    color: #3f3f3f;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    color: #343434;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    margin: 0px;
    color: #252525;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

/* Header Section */
.topHeader {
    background: #2c2c2d;
    padding: 8px 0px;
}

.topHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: unset;
}

.tophead {
    display: flex;
}

.tophead ul {
    display: flex;
}

.tophead ul li a {
    color: #fff;
    font-size: 12px;
}

.tophead p {
    color: #fff;
    line-height: normal;
    font-size: 15px;
    line-height: 24px;
}

.tophead ul li i {
    color: #fff;
}

.tophead.topHeadInfo ul li {
    color: #fff;
    margin: 0px 16px 0px 0px;
}

.topHeadSocial.tophead p {
    margin-right: 8px;
}

.tophead.topHeadInfo ul li i {
    color: #ffec13;
    font-size: 14px;
    margin-right: 6px;
}

.tophead.topHeadSocial ul li a {
    padding: 13px 15px;
    border-right: 1px solid #dddddd45;
}

.tophead.topHeadSocial ul li:first-child a {
    border-left: 1px solid #dddddd45;
}

.tophead.topHeadSocial ul li i {
    line-height: 23px;
    color: #ffec13;
}

.mainHeader {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 5px 0px;
    background-image: none;
    background-size: contain;
    transition: 0.4s ease-in-out;
    background-color: #fdf8f1;
}

.mHeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoImg {
    width: 160px;
    transition: 0.4s ease-in-out;
}

.logoImg img {
    width: 100%;
}

.headerNav ul {
    display: flex;

}

.hamburger {
    display: grid;
    align-items: center;
    height: 26px;
    display: none;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #080b55;

}

.headerNav>ul>li {
    position: relative;
}

.headerNav>ul>li>a {
    position: relative;
    margin: 0px 0px 0px 35px;
    padding: 31px 0px;
    color: #343434;
    font-weight: 500;
}

.headerNav>ul>li>a::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    bottom: 28px;
    left: 0px;
    background-color: #eac26d;
    transition: left 1s, width 1s;
}

.headerNav>ul>li>a.active::after,
.headerNav>ul>li:hover>a::after {
    width: 100%;
}

.headerNav>ul>li>a.headerBtn::after,
.headerNav>ul>li:hover>a.headerBtn::after {
    width: 100%;
    visibility: hidden;
}

.headerNav>ul>li>a.active {
    color: #fc0000;
}

.headerNav>ul>li>a.headerBtn {
    background: linear-gradient(90deg, #eac26d, #fc0000 143%);
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.headerNav>ul>li>a.headerBtn:hover {
    background: linear-gradient(90deg, #ffec13, #fc0000 143%);
}

.mainHeader.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
    transition: 0.4s ease-in-out;
    background-color: #fff;
}

.mainHeader.sticky .logoImg {
    width: 110px;
}

/* Header Responsive */
@media screen and (max-width:1024px) and (min-width:768px) {
    .logoImg {
        width: 120px;
    }

    .headerNav>ul>li>a {
        margin: 0px 0px 0px 18px;
        font-size: 12px;
    }

    .headerNav>ul>li>a.headerBtn {
        padding: 10px 15px;
    }
}

@media screen and (max-width:767px) {
    .topHeaderWrap {
        flex-direction: column;
    }

    .headerNav ul {
        flex-direction: column;
    }

    .headerNav {
        display: none;
        position: fixed;
        top: 166px;
        left: 0px;
        width: 100%;
        background: #020b54;
        height: 100vh;
        z-index: 22;
        transition: 0.4s ease-in-out;
    }

    .mainHeader.sticky .headerNav {
        top: 72px;
        transition: 0.4s ease-in-out;
    }
   

    .hamburger {
        display: grid;
    }

    .headerNav>ul>li>a {
        display: block;
        max-width: 540px;
        
        margin: 0px auto;
        padding: 16px 16px;
        color: #ddd;
    }

    .headerNav>ul>li>a::after {
        bottom: 0px;
        background-color: #dddddd2b;
        height: 1px;
    }

    .headerNav>ul>li>a::before {
        position: absolute;
        content: "";
        right: 0px;
        bottom: 0px;
        top: 0px;
        margin: auto;
        background-image: url(../img/icons/right-arrow.png);
        background-size: 10px;
        background-position: left center;
        width: 22px;
        height: 30px;
        background-repeat: no-repeat;
        filter: brightness(1) invert(1);
    }

    .headerNav>ul>li>a.active {
        color: #ffec13;
        background: #020b542b;
        font-weight: 700;
    }

    .headerNav>ul>li>a.headerBtn {
        text-align: center;
        /* margin: 0px 11px; */

    }

    .headerNav>ul>li>a.headerBtn::before {
        visibility: hidden;
    }

    .hamburger.active span {
        transition: 0.4s ease-in-out;
    }

    .hamburger.active span:nth-child(2) {
        visibility: hidden;

    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(34deg);
        position: relative;
        bottom: -9px;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(143deg);
        position: relative;
        bottom: 8px;

    }
}


/* Slider */

/* slider start*/
.hero-slider {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media screen and (max-width:1920px) and (min-width:1821px) {
    .hero-slider {
        height: 710px;
    }
}
@media screen and (max-width:1820px) and (min-width:1517px) {
    .hero-slider {
        height: 570px;
    }
}
@media screen and (max-width:1516px) and (min-width:1366px) {
    .hero-slider {
        height: 500px;
    }
}
@media screen and (max-width:1365px) and (min-width:1241px) {
    .hero-slider {
        height: 420px;
    }
}
@media screen and (max-width:1240px) and (min-width:1092px) {
    .hero-slider {
        height: 352px;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 240px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 32px;
    height: 47px;
    line-height: 50px;
    margin-top: -30px;
    text-align: center;
    border: 1px solid #2c2c2dd1;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #fc0000;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    line-height: 5px;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #fc0000;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 6px;

    }
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    /* height: 500px; */
    transition: all .4s ease;
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.SliderContentsWrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-image: url(../img/bg/bg1.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-animation: mover 7s infinite alternate;
    animation: mover 7s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
        transform: scale(1);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
    }
}


.SliderContents {
    position: absolute;
    left: 9%;
    right: 0px;
    top: 0px;
    margin: auto;
    bottom: 0px;
    width: 41%;
    height: fit-content;
    z-index: 1;
    margin-left: 0px;
}

/* .SliderContentsWrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(360deg, #000000bd -100px, transparent);
} */

@media (max-width: 991px) {
    .hero-style {
        height: 480pxpx;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 240px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btn {
    max-width: 750px;
    margin: 0px auto;
}

.hero-style .slide-title h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    color: #2c2c2d;
    margin-bottom: 0px;
    text-transform: capitalize;
    transition: all .4s ease;
}

.hero-style .slide-title h2 span {
    color: #fc0000;
    font-size: 54px;
    
    font-weight: 500;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    font-size: 18px;
    color: #343434;
    margin: 0 0 20px;
    transition: all .4s ease;
    margin-top: 15px;
}

.hero-style .slide-text p span {
    color: #009a4e;
    font-weight: 600;
}

.hero-style .slide-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f4be6a, #ff1800 143%);
    border-radius: 30px;
    color: #fff;
    position: relative;
    animation: mover1 3s infinite linear;

}

@keyframes mover1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-style .slide-btn a::after {
    position: absolute;
    content: '';
    width: 96%;
    height: 5px;
    bottom: -10px;
    left: 0px;
    background: #2c2c2d;
    right: 0px;
    margin: auto;
    filter: blur(3px);
    border-radius: 100%;
    opacity: 0.3;
    animation: shadowEffector 3s infinite linear;
}

@keyframes shadowEffector {
    0% {
        opacity: 0.3;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-3px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(0px);
    }

}

.hero-style .slide-btn a i {
    transform: rotate(-90deg);
    margin-left: 6px;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    background: #005ba8;
}

.hero-slider {
    width: 100%;
}

.sectionTitleIcon {
    display: flex;
    align-items: center;
}

.sectionTitleIcon img {
    width: 50px;
    margin: 0px 15px;
    animation: scaleRoate 3s infinite linear;
}

.sectionTitleIcon span {
    width: 52px;
    height: 1px;
    display: inline-block;
    background: #00a959;
}

@keyframes scaleRoate {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

.sectionTitle h4 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fc0000;
    margin-bottom: 8px;
    margin-top: 4px;
}

.sectionTitle h2 {
    margin-bottom: 2px;
    
    font-size: 40px;
    margin-top: 8px;
}

.sectionTitle p {
    padding: 0px 20%;
}

.secColImg {
    width: 100%;
}

.secColImg img {
    width: 100%;
}

.sectionTitle.centered {
    text-align: center;
}

.sectionTitle.centered .sectionTitleIcon {
    justify-content: center;
}

.featuresCard {
    padding: 10px;
}

.featuresImg {
    width: 30%;
    margin: auto;
}

.featuresImg img {
    width: 100%;
}

.featuresTitles {
    text-align: center;
}

.featuresTitles h4 {
   font-family: 'Lora', sans-serif;
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #f00;
}

.sectionImg {
    width: 100%;
}

.sectionImg img {
    width: 100%;
}

.aboutContent {
    margin-top: 30px;
}

.aboutContent .viewAllBtn {
    margin-top: 20px;
}

.aboutContentPara h4 {
    
    margin-bottom: 12px;
    font-size: 30px;
    background: -webkit-linear-gradient(#fc0000, #d1a158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.aboutContentPara h5 {
    font-size:24px;
    color: #343434;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 28px;

}


.aboutContentPara h6 {
    font-size: 18px;
    color: #343434;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 28px;

}
.aboutContentPara h6 span{
    color: #ff1b00;
    font-weight: 900;
}
.aboutContentPara p {
    line-height: 28px;
}


.someFeaturedProduct {
    background-image: url(../img/texture/1.png);
    background-size: cover;
    background-position: 50% 50%;
    background-color: #fdf8f1;
}

.productSwiper {
    width: 100%;
    padding-top: 40px;
    /* overflow: hidden; */
    padding-bottom: 36px;
    position: relative;
}
.productSwiper::after{
    position: absolute;
    content: '';
    width: 105px;
    height: 67%;
    background: linear-gradient(90deg, #fef8f1, transparent);
    left: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 2;
    margin: auto;
}
.productSwiper::before{
    position: absolute;
    content: '';
    width: 105px;
    height: 67%;
    background: linear-gradient(270deg, #fef8f1, transparent);
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 2;
    margin: auto;
}
.swiper-container {
    overflow: visible; 
}
.productSwiper .swiper-button-prev {
    background-image: url(../img/icon/arrow-prev.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-color: #ff0000a8;
    width: 42px;
    border-radius: 10px;
    height: 42px;
}
.productSwiper .swiper-button-next {
    background-image: url(../img/icon/arrow-next.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-color: #ff0000a8;
    width: 42px;
    border-radius: 10px;
    height: 42px;
}
/* .productSwiper .swiper-button-next::before, .productSwiper .swiper-button-prev::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #fc0000;
} */

.productWrapper .swiper-pagination-bullet,
.productWrapper .swiper-pagination-bullet-active {
    background: #ff9898;
}


.productWrapper .swiper-slide {
    width: 100%;
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    padding: 30px 23px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
    background-size: contain!important;
    background-position: center center!important;
    background-repeat: no-repeat!important;
    background-color: #fff!important;
}

.productWrapper .swiper-slide h2 {
    color: #ff1a00;
    font-size: 22px;
    font-weight: 600;
    /* margin-bottom: 10px; */
}

.productWrapper .swiper-slide p {
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #efefef;
    font-size: 15px;
    line-height: 24px;
}

.productWrapper .swiper-slide a {
    font-size: 0.9rem;
}

.productWrapper .swiper-slide a:hover {
    color: #005baa;
}

.productWrapper .swiper-slide div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 2;
    /* padding-bottom: 0.625rem; */
    width: 100%;
    text-align: center;
    left: 0px;
    right: 0px;
    transition: 0.4s ease-in-out;
    transform: scale(0);
}

.productWrapper .swiper-slide-active div {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}

.productWrapper .swiper-slide {
    position: relative;
    /* filter: blur(2px); */
}

.productWrapper .swiper-slide::after {
    width: 0%;
    height: 0%;
    position: absolute;
    content: '';
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(360deg, #ff000014, transparent);
    z-index: 1;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin: auto;
}

.productWrapper .swiper-slide.swiper-slide-active {
    filter: blur(0px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.productWrapper .swiper-slide.swiper-slide-active:after {
    opacity: 1;
    width: 100%;
    height: 100%;
}


.productWrapper .swiper-slide {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}


.productWrapper .swiper-3d .swiper-slide-shadow-left,
.productWrapper .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

.productWrapper .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 11px !important;
}

.btn1 {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f4be6a, #ff1800 143%);
    border-radius: 30px;
    color: #fff;
    position: relative;
    animation: mover1 3s infinite linear;
}

a.btn1::after {
    position: absolute;
    content: '';
    width: 96%;
    height: 5px;
    bottom: -10px;
    left: 0px;
    background: #2c2c2d;
    right: 0px;
    margin: auto;
    filter: blur(3px);
    border-radius: 100%;
    opacity: 0.3;
    animation: shadowEffector 3s infinite linear;
}

.viewAllBtn {
    text-align: center;
}

.viewAllBtn.left {
    text-align: left;
}

.sectionTitle.centered.light h2 {
    color: #fff;
}

.sectionTitle.centered.light h4 {
    color: rgba(248, 248, 248, 0.867);
}

.testimonialsWrapper {
    overflow: hidden;
}

.testimonialsWrapper .swiper-button-next,
.testimonialsWrapper .swiper-button-prev {
    display: none;
}

.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonialCard {
    padding: 30px;
    background: #ffffffe8;
    border-radius: 30px;
    position: relative;
    padding-top: 100px;
    margin-top: 50px;
}

.testimonialImg {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    padding: 0px;
    margin-right: 15px;
    position: absolute;
    top: -41px;
    left: 0px;
    right: 0px;
    margin: auto;
    border: 4px solid #fff;
}

.testimonialImg img {
    width: 100%;

}

.testimonialsContent .tcMessage p {
    text-align: justify;
}

.tcAuthor {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.tcAuthor h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ee0000;
}

.tcAuthor p {
    font-size: 14px;
    color: #3e3e3e;
    margin-bottom: -4px;
}

.reviewRatings {
    display: flex;
    align-items: center;
    position: absolute;
    top: 66px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
}

.reviewRatings li {
    margin: 0px 0px 0px 0px;
}

.reviewRatings li i {
    font-size: 12px;
    color: #ffec13;
}

.testimonials-bg {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    z-index: -1;
}

.testimonials-bg img {
    width: 100%;
}

.testiContainer {
    position: relative;
    z-index: 2;

}

.blogWrapper{
    margin-top: 40px;
}
.blogCard {
    overflow: hidden;
}

.blogImg {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.blogImg img {
    width: 100%;
}

.blogDetails {
    margin-top: 22px;
}

.blogTitle h4.blogDate {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #767676;
    line-height: 1em;
}

.blogContent h2 a {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #343434;
}
.blogTitle{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blogTitle h6 {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    color: #767676;
    margin-top: 5px;
}

.blogTitle h6 span {
    color: #cd9b33;
}

.blogContent p {
    margin-top: 10px;
}

/* Style for the toggle link */
.blogCard .toggle {
   margin-top: 10px;
   display: inline-block;
}

/* Style for the panel */
.blogCard .hide {
    display: none;
}

.ps-footer{
    overflow: hidden;
}
.ps-footer .ps-footer__content {
    padding: 50px 0;
    background-color: #22202e;
    background-attachment: fixed;
}
.ps-site-info {
    text-align: center;
}
.ps-site-info .ps-logo {
    margin-bottom: 30px;
    display: inline-block;
    max-width:120px;
}
.ps-site-info .ps-logo img{
    width: 100%;
}
.ps-site-info p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ccc;
}
.ps-list--social li {
    display: inline-block;
    margin-right: 12px;
}
.ps-list--social li a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #000;
    background-color: #b3b3b3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.ps-list--social li:last-child {
    margin-right: 0;
}
.ps-list--social li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.ps-footer .ps-form--subscribe-offer {
    margin-bottom: 40px;
}
.ps-footer  p{
    font-size: 16px;
    color: #ccc;
    line-height: 28px;
}
.ps-footer  .form-group{
    height: 50px;
}
.ps-form--subscribe-offer {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
.ps-form--subscribe-offer h4 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #ffffff;
    line-height: 30px;
}
.ps-form--subscribe-offer .form-group input {
    float: left;
    width: calc(100% - 120px);
    border: solid 1px #979797;
    background-color: transparent;
    text-indent: 10px;
    color: #979797;
    -webkit-border-radius: 50px 0 0 50px;
    -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
    border-radius: 50px 0 0 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 50px;
}
.ps-form--subscribe-offer .form-group button {
    width: 120px;
    float: right;
    height: 50px;
    background-color: #cd9b33;
    color: #fff;
    font-size: 14px;
    border: none;
    -webkit-border-radius: 0 50px 50px 0;
    -moz-border-radius: 0 50px 50px 0;
    -ms-border-radius: 0 50px 50px 0;
    border-radius: 0 50px 50px 0;
}
.ps-form--subscribe-offer .form-group::after {
    clear: both;
    content: "";
    display: table;
}
.ps-footer .ps-footer__contact {
    text-align: center;
}
.ps-footer .ps-footer__contact a {
    color: #ccc;
    margin: 0px 8px 0px 0px;
}

.ps-footer .ps-footer__contact h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom:10px;
}

.ps-footer .ps-footer__contact h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom:10px;
}





.ps-footer .ps-footer__open {
/*    text-align: center;*/
}
.ps-footer .ps-footer__open h4 {
    margin-bottom:10px;
    font-size: 24px;
    color: #ffffff;
}
.ps-footer .ps-footer__open p {
    color: #ccc;
    line-height: 1.8em;
}


.copyright {
    background: #202020;
    padding: 10px 0px;
}

.col-lg-6.powerd {
    display: flex;
    justify-content: flex-end;
}

.col-lg-6.copy {
    color: #ffff;
    font-size: 13px;
    line-height: 27px;
}


/* Go to Top */

#button {
    display: inline-block;
    background:linear-gradient(2deg, #eac26d, #fc0000 143%);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    font-size: 10px;
    animation: breathing 2s ease-out infinite normal;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #151e25;
}

#button:active {
    background-color: #151e25;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}


#whatsapp {
    position: fixed;
    right: 30px;
    text-align: center;
    height: 50px;
    width: 50px;
    font-size: 35px;
    background-color: #13a4e1;
    border-radius: 100%;
    bottom: 100px;
    z-index: 100000000000;
    -webkit-animation: mymove 3s;
    -webkit-animation-iteration-count: infinite;
    animation: mymove 3s;
    animation-iteration-count: infinite;
}

.fa-whatsapp:before {
    content: "\f232";
}

@-webkit-keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

@keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

.subscribed {
    background-image: url(../img/bg/bg10.jpg);
    padding: 50px 0px;
    background-size: cover;
    background-position: center top -214px;
    background-color: #00000085;
    background-blend-mode: color;
}

.subscribed a {
    color: #00f378;
}

.subscribed .btn1 a {
    color: #ffff;
    margin-top: 30px;
}

.innerBanner{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.bnrImg {
    width: 100%;
    position: relative;
}
.bnrImg img{
    width: 100%;

}

.inrBnrContent {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
}
.inrbnrnavicon{
    width: 10px;
    margin: 0px 7px;
    filter: brightness(0.3);
}
.inrBnrNav{
    text-align: center;
}
.inrBnrNav ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inrBnrNav h4.inrbnrtitle{
    margin-bottom: 2px;
    
    font-size: 40px;
    margin-top: 0px;
    color: #ff1900;
    font-weight: 600;
}

.inrBnrNav ul li:last-child a{
    font-weight: 600;
    color: #161616;
}

.productWrapper{
    margin-top: 30px;
}
.productCard{
    margin-bottom: 60px;
}
.productWrapImg {
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.productWrapImg img{
    width: 100%;
}
.productDetail {
    position: relative;
    text-align: center;
    padding-top: 6px;
}
.productDetail h4{
/*    */
    margin-bottom: 10px;
    font-size: 20px;
    color:#000;
    /*background: -webkit-linear-gradient(#fc0000, #d1a158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-weight: 600;
}
.productDetail p {
    padding: 0px 5%;
}
.productDetail a{
    position: absolute;
    top: -54px;
    left: 0px;
    right: 0px;
    padding: 0px;
    background: #ddd;
    width: fit-content;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    line-height: 52px;
}
.productDetail i{color:#000;}
.productDetail:hover i{color:#ffed00;}

.productCard:hover a{
    background: #ff3c00;
    color: #fff;
}

.formWrapper{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dddddd87;
}
.contactInfo.enqCard {
    height: 100%;
}
.mapSec{
    height: 100%;
}
.enqCard ul{
    padding: 40px;
}
.enqCard ul li{
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.enqCard ul li:last-child{
    margin-bottom: 0px;
}
.enqCard ul li i{
    width: 30px;
    height: 30px;
    background: #ddd;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 10px;
    margin-right: 12px;
}
.enqCard ul li a{
    position: relative;
    top: -1px;
}
.enqCard.enquiryFormContainer {
    padding: 40px;
    background: linear-gradient(88deg, #ff000008, #ffec1317);
}
.formWrapper .col-md-6{
    padding: 0px;
}

.enqCard h5 {
    
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    font-weight: 600;
    position: relative;

}
.enqCard h5::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 80px;
    height: 3px;
    background: #ff0000;
}
.contactTitle{
    margin-bottom: 40px;
}
.submitButton{
    background: linear-gradient(90deg, #eac26d, #fc0000 139%);
    color: #ffff;
    padding: 7px 43px;
    border-radius: 30px;
    border: none;
}
.submitButton:hover {
    color: #ffff;
}
@media screen and (max-width:1024px) and (min-width:768px) {
    .hero-style .slide-title h2 {
        margin-bottom: 0px;
    }

    .hero-style .slide-text p {
        margin-top: 20px;
    }

    .hero-style .slide-btn {
        margin-top: 30px;
    }

    .secColImg {
        width: 100%;
        position: sticky;
        top: 80px;
        bottom: -40px;
        background: #fff;
        padding: 10px;
        border: 1px dashed #ddd;
        padding-bottom: 0px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .rightabsImg {
        background-size: 150% 100%;
        background-position: right -88px center;
    }

    .counter-wrapper .common-box .timer {
        font-size: 40px;
    }
}

@media screen and (max-width:767px) {
    .SliderContents {
        top: 40px;
        bottom: 0px;
    }

    .hero-style .slide-title h2 {
        font-size: 28px;
        margin: 0 0 5px;
        line-height: 28px;
    }

    .hero-style .slide-text p {
        margin: 0 0 10px;
    }

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 0px;
    }

    .rightabsImg {
        width: 100%;
        height: 280px;
        background-size: 100% 100%;
        background-position: center;
        margin-top: 100px;
    }

    .secColImg {
        width: 100%;
        position: sticky;
        top: 80px;
        bottom: -40px;
        background: #fff;
        padding: 10px;
        border: 1px dashed #ddd;
        padding-bottom: 0px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        margin-bottom: 30px;
    }

    .aboutContentWrapper .row {
        flex-direction: column-reverse;
    }

    .aboutContentWrapper {
        padding-bottom: 40px;
    }

    .absleftimg {
        background-size: cover;
        background-color: #ffffffd4;
        background-blend-mode: color;
        width: 100%;
    }

    .coutnerWrapper .mob-dis-none {
        display: none;
    }

    .whychooseWrap .row {
        flex-direction: column-reverse;
    }

    .whyChooseCard.leftsided {
        flex-direction: unset;
    }

    .whyChooseCard .whyContent {
        padding: 0px 10px;
    }

    .rightSided {
        text-align: left;
    }

    .whyChooseimg {
        margin-bottom: 30px;
    }

    .col-lg-6.powerd {
        justify-content: center;
    }

    .col-lg-6.copy {
        text-align: center;
    }
    .sectionTitle p{
        padding: 0px 2%;
    }
    .aboutContentPara{
        text-align: center;
    }
    .viewAllBtn.left{
        text-align: center;
    }
    .mapSec{
        height: auto;
    }
    .enqCard ul li a{
        width: 70%;
        display: block;
    }
    .enqCard ul li.infoNumber a{
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .topHeader {
        display: none;
    }

    .hero-style .slide-title h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .hero-style .slide-text p {
        margin: 0 0 10px;
        font-size: 12px;
        line-height: 20px;
    }

    .testimonialCard {
        margin-left: 0px;
    }

    .testimonialImg {
        position: relative;
        top: 0px;
        left: 0;
        margin: auto;
    }

    .testimonialContent p {
        padding-left: 0px;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    .hero-style .slide-title h2 span{
        font-size: 24px;
        line-height: 32px;
    }
    .SliderContents{
        left: 4%;
        width: 53%;
        top: 0px;
    }
    .hero-style .slide-btn a{
        padding: 4px 16px;
    }
    .innerBanner {
        overflow: hidden;
        height: 123px;
    }
    .bnrImg{
        height: 100%;
    }
    .bnrImg::after{
        position: absolute;
        content: '';
        background: url(../img/bg/inner-bg-mob.jpg);
        background-size: cover;
        width: 100%;
        height: 100%;
        top: 0px;
        bottom: 0px;
        left: 0px;
    }
    .inrBnrContent{
        margin-right: 5%;
    }
    .inrBnrNav h4.inrbnrtitle{
        margin-bottom: 2px;
        font-size: 32px;
        color: #d80000;
    }
    .logoImg{
        width: 90px;
    }
    .headerNav{
        top: 62px;
        transition: unset;
    }
    .headerNav>ul>li>a{
        text-align: center;
        border-bottom: 1px solid #dddddd11;
    }
    .headerNav>ul>li>a.headerBtn{
        margin-top: 10px;
    }
    .headerNav>ul>li>a::after {
        display: none;
    }
    .testimonials-bg img{
        width: 400%;
    }
}
.footer_links{width: 100%; list-style: none; margin: 0px; padding: 0px;}
.footer_links li{padding-bottom:10px; display:block;}
.footer_links li a{color: #ccc; font-size: 13px;}

.footer_links li::before { font-size: 13px;
    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    color: #ccc; 
    margin-right: 5px;
}
.footer_links li:hover::before{ color: #fc0000;}
.footer_links li:hover a{ color: #fc0000;
}
