@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.5s ease;
    background-color: var(--light);
}

@font-face {
    font-family: 'Lora';
    src: url('../font/Lora-Regular.woff2') format('woff2'),
        url('../font/Lora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-ThinItalic.woff2') format('woff2'),
        url('../font/Raleway-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg1: #8aa930;
    --bg2: #a2bf27;
    --dark: #373435;
    --gray: #222222;
    --light: #fff;
    --bg: #f5f5f5;
    --bg3: #e0dcdc;
    --primary: #f8e895;
    --secondary: #fefefe;
    --font1: 'Raleway';
    --font2: 'Lora';
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1240px;
}

.container-fluid {
    padding: 0;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font2);
    line-height: 1.6;
}

a:hover {
    color: var(--bg1);
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/*-------------*/
.title-sec {
    font-size: 50px;
    color: var(--bg2);
    font-weight: 700;
    display: inline-block;
    padding: 25px 0px;
    margin-bottom: 0;
    line-height: 43px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-shadow: 0px 1px var(--dark);
    font-family: var(--font2);
}


.sub-title {
    margin: 0 0 16px 0;
    font-family: var(--font2);
    line-height: 1.2;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark);
    text-transform: capitalize
}

.heading-sec {
    font-size: 24px;
    text-transform: capitalize;
    font-family: var(--font2);
    line-height: 1.6;
    font-weight: 600;
    color: var(--gray);
}

.content-sec {
    font-size: 16px;
    word-spacing: 1.3px;
    line-height: 1.8;
    font-family: var(--font2);
    font-weight: 500;
}

.header-part {
    display: block;
    text-align: start;
    margin-top: -50px;
    margin-bottom: 2rem;
}

.btn-sec {
    align-items: center;
    appearance: none;
    background-color: var(--bg1);
    border-width: 0;
    box-sizing: border-box;
    color: var(--light);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font2);
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 1.4px;
    list-style: none;
    overflow: hidden;
    position: relative;
    padding: 12px 22px;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 16px;
    text-transform: capitalize;
    z-index: 9;
}

.btn-sec:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    background: var(--bg2);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}

.btn-sec span {
    color: var(--light);
}

.enquiry-sec {
    display: flex;
    align-items: center;
}

.btn-sec:hover {
    color: var(--light);
}


.btn-sec:hover:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.btn-sec:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}


.read-more {
    position: relative;
    padding: 10px 25px 10px 25px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    box-shadow: 0 16px 35px 0 rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.read-more span {
    color: var(--light);
    font-size: 14px;
    padding-left: 10px;
    transition: all 0.8s ease;
}

.read-more:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

/*--------top-header---------*/
/**********/
.th-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.t-header {
    display: block;
    position: relative;
    background-color: var(--bg1);
    overflow: hidden;

}

.top-dark {
    background-color: var(--bg);
    height: 100%;
}

.top-header {
    padding: 4px 0;
    position: relative;
}

.top-header::after {
    position: absolute;
    content: '';
    left: -37px;
    height: 200%;
    background-color: var(--bg1);
    width: 21px;
    top: -25%;
    transform: rotate(28deg);
    bottom: -25%;
}

.top-header::before {
    position: absolute;
    content: '';
    right: -37px;
    height: 200%;
    background-color: var(--bg1);
    width: 21px;
    top: -25%;
    transform: rotate(-28deg);
    bottom: -25%;
}

.th-element {
    display: flex;
    color: var(--light);
    gap: 10px
    font-size:14px;
}

.th-element .th-icon {
    font-size: 15px;
    padding-right:5px;
}

.th-icon img {
    width: 24px;
}

.th-element a {
    color: var(--light);
    font-size: 14px;
    font-weight: 400;
}

.th-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.th-social-links a {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    line-height: 30px;
}

.th-social-links a:hover {
    color: var(--light);
    transform: scale(1.1);
}

.s-icon {
    border-radius: 50%;
    color: var(--light);
}

.s-icon img {
    width: 24px;
    transition: all 1s ease-in-out;
}


/*--------header---------*/
header {
    background-color: var(--bg);
    box-sizing: border-box;
    box-shadow: 0px 1px 1px var(--dark);
    padding: 6px 0;
    position: relative;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    box-sizing: border-box;
    width: 100%;
}

.logo img {
    width: 120px;
    position: relative;
    z-index: 999;
    margin-top: -40px;
    transition: 0.2s ease-in-out;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu li {
    display: inline-block;
    position: relative;
}

.nav-menu li::after {
    position: absolute;
    content: '';
    height: 12px;
    top: 36px;
    width: 1px;
    left: 6px;
    background-color: var(--gray);
    transform: skew(-30deg);
    transition: 0.3s;
}

.nav-menu li:hover::after {
    left: 2px;
    color: var(--bg2);
}

.nav-menu li a {
    font-family: var(--font2);
    text-transform: capitalize;
    display: block;
    padding: 36px 18px;
    font-weight: 300;
    line-height: 1;
    font-size: 15px;
    color: var(--dark);
    letter-spacing: 1px;
}

.nav-menu li a :nth-child(last) {
    padding-right: 0px !important;
}

.nav-menu li.drop-menu {
    position: relative;
    display: block;
    transition-delay: 0.6s;
}

.drop-content {
    position: absolute;
    top: 100%;
    width: 260px;
    height: 350px;
    display: none;
    background-color: var(--light);
    z-index: 999;
    box-shadow: rgba(9, 9, 9, 0.2) 0px 2px 2px 0px;
    overflow: auto;
    border: 1px solid var(--secondary);
    transition: all 0.6s ease-in-out 0.4s;
}

.drop-menu:hover .drop-content {
    display: block;
    top: 100%;
}

.drop-content li {
    line-height: 50px;
    display: block;
    transition: all 1.8s ease;
    box-shadow: 0px 0px 1px var(--secondary);
}

.drop-content li a {
    color: var(--gray);
    display: block;
    width: 100%;
    padding: 16px 20px;
    transition: all 0.4s ease;
}

.drop-content li a:hover {
    color: var(--light);
    font-weight: 500;
    background-color: var(--bg1);
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    color: var(--bg1);
    background-color: var(--light);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--bg1);
    background-color: var(--gray);
    border-radius: 5px;
}

ul.drop-content li:after {
    display: none;
}

.click-btn {
    position: absolute;
    right: 0;
    top: 33px;
    color: var(--dark);
}

.enq-icon img {
    width: 40px;
    animation: wave 0.8s ease infinite;
}

@keyframes wave {
    from {
        transform: roate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

.enq-number {
    display: inline-block;
    padding: 12px 20px;
}

.enq-number:hover {
    color: var(--light);
}

/*----sticky-header----------*/

/* sticky-header */
#navbar-sec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg);
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 0px 1px var(--dark);
}

#navbar-sec.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#navbar-sec.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

#navbar-sec.sticky .logo img {
    width: 70px;
    margin-top: 0;
}

/*=========banner========*/
.banner-section {
    position: relative;
}

.ban-next.slick-arrow,
.ban-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 26px;
    font-weight: 900;
    padding: 8px;
    color: var(--light);
    background-color: var(--bg1);
    height: 2.4rem;
    width: 2.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.ban-next.slick-arrow:hover,
.ban-back.slick-arrow:hover {
    color: var(--bg2);
    background-color: var(--light);
}

.ban-next.slick-arrow {
    right: 5px;
}

.ban-back.slick-arrow {
    left: 5px;
}

.banner-img img {
    object-fit: cover;
    max-height: 600px;
}

/* ------service-section---------- */
.service-box {
    background-color: var(--bg);
    padding: 20px;
    height: 250px;
    position: relative;
    width: 100%;
}

.service-box::after {
    position: absolute;
    left: 0;
    top: -160px;
    width: 25px;
    height: 0;
    content: "";
    background: var(--light);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: bottom left;
    -webkit-transform: rotate(34deg);
    -ms-transform: rotate(34deg);
    transform: rotate(45deg);
    height: calc(100% + 180px);
    z-index: 1;

}

.service-img {
    width: 40%;
    margin: 2rem auto;
    opacity: 0.99;
}

.service-detail {
    background-color: var(--bg);
    border: 5px solid var(--light);
    height: 100%;
    z-index: 2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-inner-section {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.service-card {
    width: 60%;
    padding-top: 32px;
    padding-left: 10px;
}

.service-card h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font2);
    font-size: 1.2rem;
}

.service-card p {
    color: var(--dark);
    font-weight: 300;
    font-family: var(--font2);
}




/* ***************** */

/*----about-us-------*/
.about-sec {
    background-color: var(--secondary);
    position: relative;
}

.about-us {
    z-index: 1;
    text-align: center;
    width: 45%;
    float: left;
}

.about-us img {
    width: 100%;
    padding-right: 1.5rem;
}

.about-box {
    width: 100%;
}

.about-header .sub-title {
    color: var(--dark) !important;
    font-weight: 500;
}

.ab_btn {
    padding-left: 25px;
    padding-right: 25px;
}

.ab_btn:hover {
    color: var(--light) !important;
}

.ab_btn span {
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: var(--light);
    transition: all 0.5s ease;
}

.ab_btn:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

.about-box-content p {
    font-family: var(--font2);
    color: var(--dark) !important;
    font-weight: 400;
    margin-top: 20px;
}

.about-btn {
    margin-top: 20px;
}

.about-item {
    display: flex;
    gap: 15px;
}

.about-item-icon img {
    width: 50px;
}

.about-mid-content {
    padding-bottom: 20px;
}

/*--=====about-sec-end========----*/

/*--=======md-banner========----*/
.md-banner {
    position: relative;
    padding: 2rem 1rem;
}

.md-bg {
    position: absolute;
    left: 10px;
    top: 0px;
    height: 100%;
}

.md-banner-detail {
    position: relative;
    background-color: var(--secondary);
    margin-left: 1.5rem;
    border: 20px solid #ebebeb;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 22px 32px 70px rgba(0, 0, 0, 0.16);
    box-shadow: 22px 32px 70px rgba(0, 0, 0, 0.16);
    padding: 1rem;
}

.md-left-sec {
    width: 100%;
}

.md-right-sec {
    height: 100%;
}

.md-detail {
    margin: 0 auto;
    text-align: left;
    padding: 3rem 0;
}

.md-btn {
    width: 142px;
    height: 50px;
    border-radius: 0;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    background: #fff;
    border: 3px solid var(--bg1);
    padding: 12px 30px;
    color: var(--bg2);
}

.md-btn:hover {
    background-color: var(--bg1);
    color: var(--light);
}

p.md-content {
    font-size: 20px;
    color: #6c6c6c;
    font-weight: 300;
    letter-spacing: 0.25px;
    line-height: 30px;
    margin-bottom: 38px;
    font-family: var(--font1);

}

/* -------------------------- */

/*--=====category-sec-start========----*/
.p-slide {
    margin: 20px;
}

.category-section {
    background-color: var(--light);
}

.category-header .title-sec {
    background-color: var(--secondary);
}

.category-box {
    background-color: var(--secondary);
    padding: 1rem 1rem 0 1.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    margin: 30px 0;
    transition: all 0.5s ease-in-out;
}

.category-box:hover {
    background-color: var(--bg2);
    transform: translatey(10px);
}


.category-img {
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    z-index: 1;
    box-shadow: rgba(17, 17, 12, 0.5) 0px 3px 9px 0px;
}

.category-content {
    margin-top: 20px;
}

.category-img::after {
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--bg1);
    opacity: 0.9;
    border-radius: 50%;

}

.category-img img {
    width: 60px;
    transition: all 0.5s ease-in-out;
}

.category-box:hover .category-img img {
    transform: rotateY(360deg);
}

.category-bottom-sec {
    padding: 30px 10px;
}

.category-bottom-sec a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.category-box:hover .category-content p {

    color: var(--light);
}

.category-box:hover .category-bottom-sec .read-more,
.category-box:hover .category-bottom-sec .read-more span {
    color: var(--bg1);
}

/*--=====category-sec-end========----*/




/*--=========md-banner_start=========--*/
.md-ban-section {
    background-image: url(../image/img/bg/md.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}

.md-ban-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: 0;
}

.md-ban-box {
    position: relative;
    padding: 2rem 4rem 2rem;
    background-color: rgba(253, 113, 21, 0.9)
}

.md-ban-title {
    color: var(--light);
    font-family: var(--font2);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.md-ban-content {
    margin: 1rem auto;
}

.md-ban-content .heading-sec {
    font-family: var(--font1);
    color: var(--light);
    font-style: italic;
    font-weight: 700;
}

.md-ban-content p {
    font-family: var(--font1);
    color: var(--light);
}

/*--=========md-ban-end=========--*/
/*--=========feature-sec-start=========--*
.feature-sec {
    background: linear-gradient(to right,#1f3890 0,#6c194f 100%);
    position: relative;
    z-index: 9;
}
.feature-bg{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.feature-item-content {
    color: var(--light);
    background-color: var(--light);
    padding: 20px;
    text-align: center;

}

.feature-item {
    margin: 20px;
    position: relative;
    border-radius: 0px 0px 8px 8px;
    box-shadow: rgba(240, 240, 240, 0.24) 0px 2px 2px;
}

.feature-header .sub-title{
    color: var(--light)!important;
}
.feature-item:hover::before {
    width: 100%;
}

.feature-item-img {
    overflow: hidden;
}

.feature-img {
    overflow: hidden;
}

.feature-img img {
    transition: all 0.5s ease-in-out;
    height: 300px;
    object-fit: contain;
}

.feature-img img:hover {
    transform: scale(1.1);
}

.pi-title {
    font-size: 22px;
    font-family: var(--font2);
    text-transform: capitalize;
    color: var(--bg1);
    font-weight: 400;
}

.feature-item-content p {
    color: var(--dark);
    font-family: var(--font1), sans-serif;
    line-height: 1.6;
    margin-top: 10px;
    padding-top: 8px;    
    border-top: 3px solid var(--secondary);
}

.pi-btn {
    padding-top: 1rem;
}

.pi-btn a.read-more,
.pi-btn a.read-more span {
    color: var(--light);
}
.feature-slider{
    position: static;
}
.feature-sec{
    position: relative;
}


/*-------why-us------- */
.why-us {
    position: relative;
    z-index: 9;
    padding-bottom: 280px;
}

/* .why-us:after{
    background-color: rgba(17, 17, 17, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
} */

.why-header p {
    color: var(--light);
    font-family: var(--font2);
}

.why-box {
    display: flex;
    gap: 1rem;
    background-color: var(--light);
    margin-bottom: 10px;
    align-items: center;
}

.why-content .heading-sec {
    line-height: 1.4;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font2);
    margin-bottom: 15px;
    min-height: 25px;

}

.why-icon {
    background-color: var(--bg2);
    border-radius: 50%;
    padding: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.why-icon img {
    width: 48px;

}

.why-content {
    padding: 1rem;
}

.why-img {
    border: 1px solid var(--bg);
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(130, 238, 15, 0.3) 0px 30px 60px -30px, rgba(10, 64, 23, 0.35) 0px -2px 6px 0px inset;
}

.why-img img {
    border-radius: 50%;
    width: 100%;
    height: 500px;
}

.why-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 1;
}

/*------product-sec-------*/
.product-sec {
    position: relative;

}

.product-bg {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    top: 0%;
    right: 0;
    height: 50%;
    content: '';
    background-color: var(--bg);
}

.product-bg img {
    opacity: 0.1;
}

.product-slider {
    position: static;
}

.product-img img {
    width: 100%;
    transition: all 0.4s ease-in-out;
    height: 280px;
}

.product-slider .f-back.slick-arrow,
.product-slider .f-next.slick-arrow {
    top: 40%;
    cursor: pointer;
}

.product-img img:hover {
    transform: scale(1.1);
}

.product-box {
    margin: 10px;
    cursor: pointer;

}

.product-img {
    padding: 0.8rem;
    display: block;
    overflow: hidden;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.product-name {
    text-align: center;
}

.product-name a {
    display: block;
    text-align: center;
    color: var(--dark);
    padding: 10px 5px;
    text-transform: capitalize;
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    background-color: var(--bg);
    margin-top: 1rem;
}


.product-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
}

/*------counter-------*/
.counter-sec {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
}

.counter-element .sub-title {
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.5px;
}

.counter-element p {
    color: var(--dark);
    font-family: var(--font2);
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 1.5;
}

.counter-box {
    margin: 15px 0px;
    overflow: hidden;
}

.counter-content {
    color: var(--dark);
    font-family: var(--font1);
    text-align: left;
}

.counter-content .count-number {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font2);
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: rgba(31, 31, 31, 0.6);
    stroke: rgba(31, 31, 31, 0.6);
    font-weight: 500;
    line-height: 0.8;
}

.counter-content span {
    font-size: 70px;
    position: relative;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: rgba(31, 31, 31, 0.6);
    stroke: rgba(31, 31, 31, 0.6);
    font-weight: 500;
    line-height: 0.8;
}

.count-name {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font2);
    text-transform: capitalize;
    padding-top: 0.5rem;
}

.count-line {
    display: block;
    height: 1px;
    color: var(--dark);
    border-top: 1px solid var(--bg3);
    margin: 1rem 0;
}

/* -----feature-sec------ */


/*----feature-section-------*/
.feature-sec {
    position: relative;
    display: block;
    padding: 120px 0px 70px;
    z-index: 10;
}

.feature-box {
    position: relative;
    display: block;
    margin-bottom: 50px;
    z-index: 1;
}

.feature-count {
    position: absolute;
    top: 60px;
    right: 25px;
    color: #F8F6F0;
    font-size: 120px;
    line-height: 1em;
    font-weight: 700;
}

.f-icon-box {
    position: relative;
    display: block;
    width: 130px;
    margin-bottom: 56px;
    margin-left: 12px;
    z-index: 1;
}

.f-icon-box:after {
    position: absolute;
    top: 30px;
    left: 9px;
    right: 9px;
    bottom: -12px;
    background: var(--bg2);
    border-radius: 50%;
    content: "";
    z-index: -1;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.f-icon-box:before {
    position: absolute;
    top: 30px;
    right: 30px;
    left: -12px;
    bottom: -12px;
    background: var(--secondary);
    border-radius: 50%;
    content: "";
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.f-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: #ffffff;
    box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    border-radius: 50%;
    z-index: 1;
}

.f-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: var(--bg1);
    border-radius: 50%;
    transform: scale(0.2);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

.f-inner span {
    font-size: 60px;
    color: var(--bg3);
    text-align: center;
    display: flex;
}

.f-content-box .f-heading {
    margin-bottom: 20px;
}

.f-content-box .f-heading a.feature-heading {
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    font-weight: 700;
    font-family: var(--font2);
    margin-bottom: 20px;
}

.f-btn-box {

    position: relative;
    display: block;
    margin-top: 12px;
}

.f-btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid var(--bg3);
}

a.f-btn span {
    position: relative;
    display: inline-block;
    color: var(--bg1);
    font-size: 30px;
    line-height: 20px;
    padding-left: 5px;
    transform: rotate(45deg);
    font-weight: 700;
    transition: all 400ms linear;
    transition-delay: 0.2s;
}

.feature-box:hover a.f-btn span {
    transform: rotate(-40deg);
}

.feature-box:hover .f-inner::before {
    opacity: 1;
    transform: scale(1);
}

.feature-box:hover .f-icon-box:after {
    transform: scale(1);
    opacity: 0.8;
}

.feature-box:hover .f-icon-box::before {
    transform: scale(0);
}


/* ------------------ */

/*----contact-us-------*/
.contact-us {
    position: relative;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.2) 23px 20px 36px -28px inset;
}

.contact-right-sec {
    position: absolute;
    height: 100%;
    top: 0;
    inset-inline-end: 0;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url(../image/img/images/why1.jpg);
    right: 0;
    width: calc(40%);
    opacity: 0.5;

}

.contact-us:before {
    position: absolute;
    content: '';
    left: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 6rem;
    transform: rotate(45deg);
    border-radius: 0%;
    background-color: var(--bg);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.contact-us::after {
    position: absolute;
    content: '';
    right: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 6rem;
    transform: rotate(-45deg);
    border-radius: 0%;
    background-color: var(--bg);
    opacity: 1;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.contact-box {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.contact-title {
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font2);
    text-transform: capitalize;
}

.contact-form p {
    font-size: 1.2rem;
    color: var(--light);
    font-family: var(--font1);
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background-color: var(--bg1);
    padding: 3rem 2rem;
    border-radius: 6px;
}

.contact-heading {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: .5rem;
    font-family: var(--font2);
    color: var(--bg1);
}

.rs-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
    gap: 30px 50px;
}

.rs-contact-list-item {
    display: flex;
    gap: 30px;
}

.rs-contact-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 80px;
    clip-path: polygon(0% 0%, 78% 0px, 100% 18%, 100% 100%, 0% 100%);
    background: var(--bg1);
    font-size: 30px;
    color: var(--light);
}

.rs-contact-list-content span {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    display: inline-block;
    color: var(--dark);
}

.rs-contact-list-content p {
    margin-bottom: 0.5rem;
    font-family: var(--font1);
    color: var(--gray);
}

input::placeholder {
    color: var(--dark);
}

.rs-contact-list-content a {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font2);
}

/* --------- */
.input-msg {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: var(--light);
    border-radius: 2px;
}

.input-text-area {
    margin-bottom: 40px;
}

.input-msg span {
    padding: 10px;
}

.input-msg input {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--light);
}

select.input-select.input-text {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: var(--secondary);
}

textarea.input-text {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    height: 140px;
    border-radius: 8px;
    background-color: var(--secondary);
}

.contact-btn {
    background-color: var(--secondary);
    color: var(--gray);
    border: 1px solid var(--light);
}

/********** client ************/
.our-client {
    background-color: var(--secondary);
    z-index: 9;

}

.client-title {
    color: var(--bg2);
}

.c-img {
    overflow: hidden;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 10px;
    background-color: var(--light);
}

.c-img img {
    height: 100px;
    width: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
    cursor: grab;
    border-radius: 5px;
    background-color: var(--light);
}

.c-box {
    margin: 10px 5px;
    float: left;
    position: relative;
    background-color: var(--light);
    border-radius: 4px;
    padding: 10px;

}

.client-slider {
    padding: 10px;
    background-color: var(--secondary);
}

/* ------------------ */

/*_________testimonail________*/

.testimonial-sec {
    background-color: var(--light);
    position: relative;
    z-index: 1;
}

.testimonial-header .title-sec {
    padding: 5px 10px;
}

.testi-slider {
    position: static;
    background-color: transparent;
}

.testi-slider .f-back.slick-arrow {
    left: 2rem;
}

.testi-slider .f-next.slick-arrow {
    right: 2rem;
}

.testi-box {
    padding: 2rem 1rem;
    background-color: #ffffff;
    background-image: linear-gradient(43deg, #ffffff 0%, #f2f2f2 100%, #ffe8f5 46%);
    border-radius: 1rem;
    margin: 1rem;
    position: relative;
    z-index: 9;
    border: 2px solid var(--secondary);
    width: 100%;
    height: 360px;
}

/* .testi-box:after{
    position: absolute;
    left: 0;
    top: 0;
    content: '\f10d';
    font-family: FontAwesome;
    z-index: 1;
    color: var(--bg3);
    font-size: 32px;
    
} */
.testi-quote {
    border-radius: 10px;
    background: var(--bg1);
    transform: rotate(45deg);
    width: 70px;
    height: 70px;
    top: -30px;
    left: 32px;
    position: absolute;
    text-align: center;
    line-height: 100px;
}

.testi-icon {
    transform: translateY(-15px) rotate(-45deg);
    width: 70px;
    height: 70px;
    vertical-align: middle;
    fill: rgb(255, 255, 255);
    text-align: center;
    color: var(--light);
    font-size: 2rem;

}


.testi-slider .content-sec {
    color: var(--light);
}

.testi-img img {
    width: 60px;
    height: 60px;
}

.testi-thumb {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testi-name {
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 2rem;
    font-weight: 600;
    color: var(--bg1);
}

.t-name {
    color: var(--dark);
    font-family: var(--font2);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 1.3px;
}

.testi-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.testi-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.testi-slider ul.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
}

/* ------------ */

.f-next.slick-arrow,
.f-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 26px;
    font-weight: 900;
    padding: 8px;
    color: var(--light);
    background-color: var(--bg1);
    height: 2.4rem;
    width: 2.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}


.f-back.slick-arrow {
    left: 10px;
}

.f-next.slick-arrow {
    right: 10px;
}

/*_________footer________*/

footer {
    background-image: url(../image/img/icons/grass.jpg);
    background-position: 320px 30%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    z-index: 9;
}

footer:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background-color: var(--bg1);
    opacity: 1;
}

.footer-logo img {
    width: 120px;
    background-color: var(--light);
    padding: 4px;
    border-radius: 2px;
}

.footer-content p {
    color: var(--light);
    font-family: var(--font1), sans-serif;
    padding: 20px 0;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

ul.footer-icons li a {
    display: flex;
    font-size: 16px;
    color: var(--light);
    border: 1px solid var(--bg3);
    padding: 11px;
    border-radius: 15%;
    text-align: center;
    justify-content: center;
    font-family: var(--font2);
}

ul.footer-icons li a:hover {
    background-color: var(--dark);

}

.footer-heading {
    font-size: 20px;
    font-family: var(--font2);
    color: var(--bg1);
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 3px 10px;
    border-radius: 2px;
    font-weight: 600;
    display: inline-block;
    background-color: var(--light);
}

.footer-element li {
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.footer-element li a {
    font-family: var(--font2);
    color: var(--light);
    text-transform: capitalize;
}

li.footer-list {
    display: flex;
    gap: 1rem;
}

li.footer-list span.f-icon {
    color: var(--light);
    font-size: 18px;
}

.footer-item {
    height: 270px;
    overflow-x: hidden;
}

ul.footer-element li span {
    color: var(--light);
    padding-right: 10px;
    color: var(--bg1);
}

.footer-item::-webkit-scrollbar {
    width: 5px;
}

.footer-item::-webkit-scrollbar-track {
    background: var(--bg1);
    border-radius: 20px;
}

.footer-item::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}

.copyright-sec {
    background-color: var(--bg);
}

.copy-right {
    padding-top: 1rem;
    text-align: center;
}

.copy-right p {
    color: var(--dark);
    font-family: var(--font2);
    font-size: 14px;
}

.copy-right p a {
    color: var(--gray);
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.3px;
}

.copy-right p span {
    color: var(--light);
    font-family: var(--font2);
    font-weight: 400;
    font-size: 16px;
}


/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--dark);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 40px;
    color: var(--bg1);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--secondary);
    color: var(--bg1);
}

#scroll-top:active {
    background-color: var(--bg2);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-align: start;
    z-index: 9;
    transition: all 2s ease-in-out;
    transform: translateX(-500px);
}

#slide.active{
    transform: translateX(0px);
    display: block;
}

.fixed-wtsp a.phone {
    background-color: #2067b5;
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    margin: 1rem 0;
    display: inline-block;
}

.fixed-wtsp a {
    background-color: #075e54;
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    display: block;
}



/* --------inner-page----- */

/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/img/bg/popularrecipebg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 10c0px 0;
    position: relative;
    z-index: 1;
    min-height: 300px;

}

.breadcrump-sec:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(4, 0, 0, 0.2);
    content: '';
    z-index: -1;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    background-color: var(--bg1);
    padding: 5px 12px;

}

.b-links {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    display: inline-block;
    background-color: var(--secondary);
    padding: 14px 30px;
    color: var(--light);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 1px 4px;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg1);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}

span.fa-solid {
    color: var(--dark);
}


.market-place {
    background-color: var(--bg);
    position: relative;
}

a.market-btn {
    display: block;
    border-radius: 5px !important;
    font-family: var(--font2);
}

.market-title {
    color: var(--bg1);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
    height: 60px;
}



/*-------certificate------- */
.certificate-gallery{
    position: relative;
    background-color: var(--bg);
}

.certificate-slider{
    position: static;
}

.certificate-gallery.gallery-slider.slick-slide{
    margin: 0px 10px;
    background-color: var(--light);
}
.c-next.slick-arrow {
    position: absolute;
    top: 55%;
    right:  10px;
    padding: 5px 2px;
    font-size: 20px;
    background-color: var(--bg1);
    color: var(--light);
    z-index: 999;
    border-radius: 5%;
    height: 40px;
    text-align: center;
    width: 40px;
}

.c-back.slick-arrow {
    position: absolute;
    top: 55%;
    left: 10px;
    background-color: var(--bg1);
    border-radius: 5%;
    padding: 5px 2px;
    font-size: 20px;
    z-index: 999;
    color: var(--light);
    height: 40px;
    width: 40px;
    text-align: center;
}
.slick-slider{
    position: static;
    display: block;
}
.slick-arrow{
    transition: all 0.5s ease;
}
.slick-arrow:hover{
    transform: scale(1.1);
}
.p-img{
    margin: 1rem;
    padding: 0.2rem;
    background-color: var(--gray);
}
.p-img img{
    height: 350px;
}

/*----media_queries-------*/
@media (max-width:992px) {
    section {
        padding: 50px 0;
        overflow: hidden;
    }

    .title-sec {
        color: var(--bg1);
        font-family: var(--font1), sans-serif;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 1.2px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2);
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 500;
        word-spacing: 2px;
        letter-spacing: 1.2px;
    }

    .heading-sec {
        font-size: 16px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.5;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.6;
        font-family: var(--font2);
        font-weight: 300;
        text-align: left;
    }

    .header-part {
        margin-bottom: 0px;
    }

    .btn-sec {
        padding: 12px 20px;
    }

    /*-------top-header--------*/
    .t-header {
        display: none;
    }

    .top-header {
        justify-content: center;
        position: relative;
    }

    .th-links {
        display: none;
    }

    .th-social-links {
        gap: 10px;
    }

    .nav-menu {
        display: none;
    }

    header {
        position: relative;
        width: 100%;
        z-index: 999;
        overflow: visible;
    }

    .header {
        display: flex;
        justify-content: space-between;
    }

    .comp-logo img {
        width: 100px;
        margin-top: 0;
    }

    .enq-icon {
        display: none;
        align-items: center;
    }

    .enq-icon img {
        width: 30px;
    }

    .enq-number {
        font-size: 13px;
        font-family: var(--font1);
    }

    .toggle-btn {
        margin: 10px;
        cursor: pointer;
        height: 30px;
        width: 30px;
        order: 3;
    }

    .toggle-btn>* {
        background-color: var(--dark);
        display: block;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
    }

    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        opacity: 0;
    }

    .toggle-btn.active .span3 {
        transform: rotate(-45deg) translate(1px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        z-index: 999;
        background-color: var(--light);
        flex-direction: column;
        width: 100%;
        left: 0;
    }

    .nav-menu>li {
        display: block;
        line-height: 35px;
        background-color: var(--light);
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 30px;
        font-weight: 600;
        line-height: 30px;
        border-bottom:1px solid var(--gray);
        color: var(--dark);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--dark);
        background-color: var(--light);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        top: 20px;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--bg1);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
    }

    .enquiry-sec {
        display: none;
    }

    .nav-menu li::after {
        display: none;
    }

    .drop-content li a {
        color: var(--light);
    }

    /* ----------------- */

    .ban-next.slick-arrow,
    .ban-back.slick-arrow {
        position: absolute;
        content: '';
        z-index: 1;
        top: 50%;
        font-size: 16px;
        font-weight: 900;
        padding: 8px;
        color: var(--bg1);
        background-color: var(--gray);
        height: 1.7rem;
        width: 1.7rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5%;
        transition: all 0.2s ease-in-out;
    }

    /* ------service-section-------- */
    .service-inner-section {
        flex-direction: column;
        gap: 50px;
    }

    /* -------------------- */

    /*-----about-us------ */
    .about-us {
        margin-bottom: 30px;
        background-color: var(--bg);
        width: 100%;

    }

    .about-us img {
        height: auto;
    }

    .c-img img {
        height: 80px;
    }

    /* -------------- */
    .why-us {
        padding-bottom: 40px;
    }

    .why-img img {
        border-radius: 0;
        height: auto;
    }

    .why-bg {
        display: none;
    }

    /*------------- */
    .counter-box {
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--gray);
        margin-top: 3rem;
    }

    .counter-content {
        text-align: center;
        border-bottom: 1px soloid var(--bg3);
    }

    .count-line {
        display: none;
    }

    /*------------- */

    .product-slider .f-back.slick-arrow,
    .product-slider .f-next.slick-arrow {
        top: 50%;
    }

    .f-back.slick-arrow {
        left: 0;
    }

    .f-next.slick-arrow {
        right: 0;
    }

    /*------------- */
    .md-right-sec {
        display: none;
    }

    .md-banner-detail {
        padding: 1rem;
    }

    /*-------why-choose */

    .contact-element a,
    .contact-element p {
        font-size: 15px;
    }

    .contact-right-sec {
        display: none;
    }

    .contact-form {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }

    /* ------------- */
    .footer-heading {
        margin-bottom: 10px;
    }

    .footer-wrapper {
        margin-bottom: 30px;
    }

    .footer-element li {
        font-size: 16px;
    }

    .feature-slider .f-back.slick-arrow,
    .feature-slider .f-next.slick-arrow {
        top: 90%;
    }

    .feature-sec {
        padding-bottom: 100px;
    }

    .bread-title {

        color: var(--light);
        background-color: var(--bg1);
        padding: 8px 20px;
        border-radius: 0px 10px 0px 10px;

    }

    /* ------------ */
    .testi-box {
        height: auto;
    }

    .testi-slider .f-back.slick-arrow {
        left: 0rem;
    }

    .testi-slider .f-next.slick-arrow {
        right: 0rem
    }
    
     /* ------------- */
     .fixed-wtsp a span{
         display:none;
     }
    .fixed-wtsp{
        left: 5px;
    }
    .fixed-wtsp a.phone,
    .fixed-wtsp a {
    padding: 6px 10px;
    border-radius: 5px 5px;
    animation: all 0.5s ease-in-out;
    }
    .fixed-wtsp a i{
    animation: pop-up 1s ease infinite;
}
@keyframes pop-up {
    0%{
        transform: scale(0.8);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    }
    50%{
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    }
    100%{
        transform: scale(1.1);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    }
}

}