@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
a, img {
	border: 0px;
	outline: 0px;
}
html {
	width: 100%;
}
body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	font-family: "Inter", sans-serif;
  	font-weight: 400;
  	font-style: normal;
    box-sizing: border-box;
    /*font-family: "Italiana", sans-serif;*/
}
h1, h2, h3, h4, h5, h6{
    font-family: "Inter", sans-serif;
}
.main_fluid{
	width: 100%;
	display: block;
}
.main-wrapper{
	max-width: 1467px;
	position: relative;
	margin: auto;
    padding: 0px 15px;
}
.header.fixed-header{
    position: fixed;
    top: 0px;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
}
.mobile-hamburger{
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: #3CA936;
    @media (max-width:1024px){
        display: block;
    }
}
.mobilemenu {
    position: fixed;
    background: #000;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    right: 0;
    top: 0px;
    display: none;
}
.mobilemenu .menuheader {
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-weight: 400;
    padding: 25px 25px;
    i{
       color: #E40317; 
    }
}
.mobilemenulist ul {
    padding: 0;
}
.mobilemenulist ul li a {
    color: #fff;
    font-size: 18px;
    text-align: left;
    padding: 20px 20px;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #454545;
}
.mobilemenulist ul li.active a {
    color: #E40317;
}
.header {
    position: relative;
    z-index: 9;
    background: #000;
    padding: 15px 0px;
    border-top: 5px solid #fff;
    margin: 0px;
    &::before{
        width: 33.33%;
        position: absolute;
        height: 5px;
        content: "";
        top: -5px;
        left: 0px;
        background: #3CA936;
    }
    &::after{
        width: 33.33%;
        position: absolute;
        height: 5px;
        content: "";
        top: -5px;
        right: 0px;
        background: #E40317;
    }
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        div{
            flex: 1;
        }
        .header-contact{
            @media  (max-width:1024px){
                display: none;
            }
            ul{
                li{
                    margin-bottom: 10px;
                    &:last-child{
                        margin-bottom: 0px;
                    }
                    a{
                        gap: 7px;
                        color: #fff;
                        text-decoration: none;
                        font-size: 14px;
                        font-weight: 400;
                        display: flex;
                        font-family: "Inter", sans-serif;
                    }
                }
            }
        }
        .logo{
            text-align: center;
            @media (max-width:1024px){
                text-align: left;
            }
            img{
                @media (max-width:767px){
                    width: 250px;
                }
            }
        }
        .get-a-quote{
            text-align: right;
            a{
                background: #E40317;
                color: #fff;
                text-decoration: none;
                padding: 14px 24px;
                border-radius: 30px;
                font-size: 16px;
                font-weight: 500;
                transition: all 0.3s;
                position: relative;
                @media (max-width:767px){
                    width: 40px;
                    height: 40px;
                    padding: 5px;
                    float: right;
                }
                i{
                    position: absolute;
                    left: 0px;
                    right: 0px;
                    margin: auto;
                    display: inline-table;
                    top: 10px;
                    font-size: 20px;
                }
                &:hover{
                    background: #3CA936;
                    color: #fff;
                    transition: all 0.3s;
                }
            }
        }
    }
}
.menu{
    background: #C9C7C8;
    position: sticky;
    top: 0px;
    z-index: 9;
    @media  (max-width:1024px){
        display: none;
    }
    nav {
        ul {
            list-style-type: none;
            display: flex;
            grid-gap: 2vw;
            justify-content: center;
            @media (min-width:1025px) and (max-width:1240px){
                grid-gap: 1.5vw;
            }
            li {
                a {
                    text-decoration: none;
                    color: #000000;
                    font-size: 16px;
                    font-weight: 400;
                    transition: all 0.3s;
                    padding: 20px 15px;
                    display: block;
                    @media (min-width:1025px) and (max-width:1240px){
                       font-size: 14px;
                       padding: 20px 10px;
                    }
                    &:hover {
                        color: #E40317;
                        transition: all 0.3s;
                    }
                }
            }
            li.active a{
                color: #E40317;
            }
        }
    }
}
.hero-banner {
    .item {
        position: relative;
        img{
            width: 100%;
			height: 600px;
            object-fit: cover;
            object-position: center center;
        }
        .banner-content {
            position: absolute;
            top: 19%;
            max-width: 1345px;
            right: 0;
            left: 0;
            margin: auto;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background-color: rgba(255, 255, 255, 0.15);
            padding: 40px;
            text-align: center;
            margin-top: 50px;
            @media (max-width:767px){
                padding: 40px 68px;
            }
            h1 {
                color: #fff;
                font-size: 4vw;
                margin-bottom: 20px;
                font-weight: 400;
                text-align: center;
                font-family: "Italiana", sans-serif;
                text-transform: uppercase;
                @media (min-width:1885px){
                    font-size: 3.6vw;
                }
                @media  (max-width:1024px){
                    font-size: 8vw;
                }
                @media  (max-width:767px){
                    font-size: 10vw;
                }
            }
            p{
                color: #fff;
                font-size: 2vw;
                text-align: center;
                font-weight: 400;
                margin-bottom: 30px;
                font-family: "Italiana", sans-serif;
                text-transform: uppercase;
                line-height: 1.6;
                @media (min-width:1885px){
                    font-size: 1.2vw;
                }
                @media  (max-width:1024px){
                    font-size: 3vw;
                }
                @media  (max-width:767px){
                    font-size: 18px;
                }
                span{
                    background: rgba(65, 166, 59, 0.7);
                }
            }
        }
    }
    .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        button {
            border: 1px solid #fff !important;
            width: 50px;
            height: 50px;
            display: table;
            left: 15px;
            border-radius: 100px;
            position: absolute;
            transition: all 0.3s;
            &:hover {
                background: #E40317;
                transition: all 0.3s;
            }
            span {
                color: #fff;
                font-size: 52px;
                line-height: 30px;
            }
        }
        button.owl-next {
            left: auto;
            right: 15px;
            position: absolute;
        }
    }
}
.hero-banner .item::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    opacity: 0.6;
}
.hm-services a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    opacity: 0.3;
}

.hmabout-section{
    margin: 75px 0px 0px;
    @media (max-width:767px){
        margin: 30px 0px 0px;
    }
    .inner{
        display: grid;
        grid-template-columns: 0.55fr 1fr;
        grid-gap: 2vw;
        @media (max-width:767px){
            grid-template-columns:auto;
        }
        .oftheyear{
            width: 100%;
            height: 100%;
            position: relative;
            padding: 30px;
            background: url(../images/greenbg.png) no-repeat center bottom;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-items: center;
            @media  (max-width:1024px){
                padding: 15px;
            }
            @media (max-width:767px){
                height: 55vh;
            }
            img{
                margin-bottom: 50px;
            }
            h2{
                color: #fff;
                font-size: 3vw;
                line-height: 130%;
                @media (max-width:767px){
                    font-size: 8vw;
                }
            }
        }
        .hm_about{
            width: 100%;
            height: 100%;
            position: relative;
            @media (max-width:767px){
                height: 60vh;
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .content{
                position: absolute;
                top: auto;
                bottom: 0px;
                padding: 30px;
                @media  (max-width:1024px){
                   padding: 15px;
                }
                p{
                    color: #fff;
                    font-size: 16px;
                    margin-bottom: 20px;
                    line-height: 26px;
                    &:last-child{
                        margin-bottom: 0px;
                    }
                }
            }
        }
    }
}
.shdkjahdkaj{
    width: 90%;position: absolute;bottom: -40px;color: #fff;font-size: 18px;
}
@media (max-width: 767px) {
    .shdkjahdkaj{
        width: 90%;position: absolute;bottom: -60px;color: #fff;font-size: 18px;
    }   
}
.heading-content {
    display: grid;
    grid-template-columns: 0.50fr 1fr;
    gap: 3vw;
    @media (max-width:1024px){
       grid-template-columns: 1fr;
    }
    .left-heading {
        flex: 1 1 0;
        width: 100%;
        h3 {
            font-family: Italiana;
            font-weight: 400;
            line-height: 125%;
            letter-spacing: -1px;
            text-transform: uppercase;
            font-size: 3.6vw;
            color: #727272;
            @media (min-width:1885px){
                 font-size: 2.6vw;
            }
            @media  (max-width:1024px){
                font-size: 5.6vw;
            }
            @media (max-width:767px){
                font-size: 9vw;
            }
        }
    }
    .rightcontent {
        flex: 1 1 0;
        width: 100%;
        p {
			width:100%;
            color: #545454;
            font-size: 20px;
            font-weight: 400;
            line-height: 36px;
            margin-bottom: 20px;
            &:last-child{
                margin-bottom: 0px;
            }
        }
    }
}
.mainfeatures-section {
    padding: 100px 0;
    @media (max-width:767px){
        padding: 30px 0px 30px;
    }
    .features-section {
        padding-top: 40px;
        @media (max-width:767px){
            padding-top: 0px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(211px, 1fr));
            gap: 2vw;  
            @media (min-width:768px) and (max-width:992px){
                grid-template-columns: repeat(2, 1fr);
            }
            @media (max-width:767px){
                grid-template-columns: 1fr;
            }
        }
        .feature-card {
            background: #fff;
            padding: 50px 25px;
            text-align: left;
            transition: all 0.2s ease;
            border: 1px solid;
            border-image-slice: 1;
            border-width: 2px;
            border-image-source: linear-gradient(178deg,rgba(255, 31, 19, 1) 0%, rgba(65, 166, 59, 1) 100%);
            @media (min-width:768px) and (max-width:1024px){
                padding: 20px;
            }
        }
        .feature-card:hover {
           box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;      
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        .feature-icon {
            font-size: 28px;
            color: #1abc9c;
            margin-bottom: 30px;
        }
        .feature-title {
            color: #2C2C2C;
            margin-bottom: 20px;
            font-family: "Inter", sans-serif;
            font-weight: 400;
            font-size: 28px;
            line-height: 125%;
            vertical-align: bottom;
            @media (max-width:1024px){
                font-size: 24px;
            }

        }
        .feature-desc {
            color: #666;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
            font-family: "Inter", sans-serif;
        }
    }
}
 .big-heading {
        h2 {
            font-size: 8vw;
            background: -webkit-linear-gradient(0deg,rgba(196, 204, 213, 1) 0%, rgba(255, 255, 255, 1) 100%);
            background: -moz-linear-gradient(0deg,rgba(196, 204, 213, 1) 0%, rgba(255, 255, 255, 1) 100%);
            background: linear-gradient(0deg,rgba(196, 204, 213, 1) 0%, rgba(255, 255, 255, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 100%;
            text-align: center;
            @media (max-width:767px){
                font-size: 9vw;
                margin-bottom: 15px;
            }
        }
    }
.ourservices-section {
    margin-bottom: 100px;
    @media (max-width:767px){
        margin-bottom: 30px;
    }
    .hm-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2vw;
        @media (max-width:767px){
            grid-template-columns: 1fr;
        }
        a {
            position: relative;
            img {
                width: 100%;
            }
			img.dajhdja{
				height: 100%;
                object-fit: cover;
                width: 100%;
			}
            .content {
                position: absolute;
                bottom: 60px;
                padding: 30px;
                display: flex;
                gap: 20px;
                width: 100%;
                @media (max-width:992px){
                    padding: 10px 15px;
                    gap: 10px;
                    bottom: 80px;
                }
                p{
                    @media (max-width:992px){
                        font-size: 18px !important;
                    }
                    @media (max-width:767px){
                        font-size: 14px !important;
                        max-width: 93%;
                    }
                }
                h3 {
                    background: #fff;
                    border-radius: 100px;
                    padding: 20px 40px;
                    font-family: "Italiana", sans-serif;
                    font-weight: 400;
                    font-size: 26px;
                    line-height: 100%;
                    letter-spacing: 1px;
                    text-align: center;
                    text-transform: uppercase;
                    color: #000;
                    display: flex;
                    align-items: center;
                    @media (min-width:1025px) and (max-width:1240px){
                        font-size: 20px;
                        padding: 20px 20px;
                    }
                    @media (max-width:1024px){
                        font-size: 18px;
                        padding: 15px;
                    }
                    @media (max-width:767px){
                        font-size: 14px;
                    }
                }
                .arrow {
                    height: 63px;
                    width: 63px;
                    background: #fff;
                    border-radius: 100px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    @media (max-width:767px){
                        height: 40px;
                        width: 40px;
                    }
                    img {
                        width: auto;
                    }
                }
            }
        }
    }
}
.wizardV_sec4 .center-heading h2 {
	font-family: "Italiana", sans-serif;
	font-weight: 400;
	font-size: 3.6vw;
	letter-spacing: -1px;
	text-align: center;
	line-height: 125%;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 25px;
    @media (max-width:1024px){
       font-size: 5.6vw;
    }
    @media (max-width:767px){
        font-size: 9vw;
    }
}
.collection-section {
    margin-bottom: 100px;
    padding: 100px 0;
    background: url("../images/servicebg.png") no-repeat center bottom;
    background-size: cover;
    .center-heading {
        max-width: 1050px;
        margin: 0 auto 80px;
        h2 {
            font-family: "Italiana", sans-serif;
            font-weight: 400;
            font-size: 3.6vw;
            letter-spacing: -1px;
            text-align: center;
            line-height: 125%;
            text-transform: uppercase;
            color: #727272;
        }
    }
    .item {
        a {
            text-align: center;
            font-family: "Inter", sans-serif;
            font-weight: 300;
            font-size: 16px;
            leading-trim: NONE;
            line-height: 130%;
            letter-spacing: 0;
            text-align: center;
            color: #000000;
            text-decoration: none;
            img {
                width: 100%;
                border-radius: 42px;
                margin-bottom: 20px;
            }
            p {
                font-family: "Inter", sans-serif;
                font-weight: 300;
                font-size: 22px;
                leading-trim: NONE;
                line-height: 130%;
                letter-spacing: 0;
                text-align: center;

            }
        }
    }
    h4 {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 28px;
        line-height: 130%;
        letter-spacing: 0;
        text-align: center;
        margin: 100px 0 40px;
    }
    a.explore-btn {
        font-family: "Inter", sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: -1px;
        text-align: center;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #E40317;
        max-width: 210px;
        color: #000;
        text-decoration: none;
        border-radius: 100px;
        padding: 17px 10px;
    }
}

.categories-section {
    .items {
        margin: 75px 0;
        display: flex;
        gap: 30px;
        .item {
            flex: 1 1 0;
            color: #000;
            text-decoration: none;
            img {
                border-radius: 30px;
                width: 100%;
            }
            .content {
                margin-top: 15px;
                h3 {
                    font-family: "Inter", sans-serif;
                    font-weight: 400;
                    font-size: 32px;
                    line-height: 130%;
                    letter-spacing: -1%;
                    margin-bottom: 10px;
                }
                p {
                    font-family: "Inter", sans-serif;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 150%;
                    letter-spacing: 0;

                }
            }
        }
    }
}
footer {
    margin-top: 100px;
    position: relative;
    padding-bottom: 40px;
     @media (max-width:767px){
        margin-top: 30px;
    }
    &:after{
        width: 100%;
        height: 692px;
        position: absolute;
        content: "";
        bottom: 0px;
        z-index: -1;
        left: 0px;
        background: url(../images/footerbg.png) no-repeat center bottom;
        background-size: cover;
    }
    .form-section {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        align-items: center;
        align-items: stretch;
        @media (max-width:767px){
            grid-template-columns: 1fr;
        }
        .image {
            width: 100%;
            min-width: 0;
            height: 100%;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        form {
            padding: 60px;
            background: #F4F4F4 url("../images/formbg.svg") repeat center;
            @media (max-width:1024px){
                padding: 15px;
            }
            h2 {
                font-family: Italiana;
                font-weight: 400;
                line-height: 125%;
                letter-spacing: -1px;
                text-transform: uppercase;
                font-size: 3.4vw;
                color: #727272;
                margin-bottom: 50px;
                @media (max-width:1024px){
                    font-size: 5.6vw;
                }
                @media (max-width:767px){
                    font-size: 9vw;
                }
            }
            .field {
                margin-bottom: 30px;
                label {
                    display: block;
                    font-size: 20px;
                    margin-bottom: 10px;
                }
                input,
                textarea {
                    width: 100%;
                    border: 0;
                    padding: 15px 0;
                    font-size: 16px;
                    height: 60px;
                    background: transparent;
                    font-family: "Inter", sans-serif;
                    border-bottom: 1px solid #000;
                }
                button {
                    height: 53px;
                    border: 0;
                    color: #FFF;
                    text-align: center;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 40px;
                    text-transform: capitalize;
                    border-radius: 100px;
                    background: #E40317;
                    transition: all 0.5s;
                    width: 147px;
                    cursor: pointer;
                    margin-top: 20px;
                }
            }
            .section {
                display: flex;
                gap: 20px;
                width: 100%;
                @media (max-width:767px){
                   flex-direction: column;
                   gap: 0px;
                }
                .field {
                    flex: 1 1 0;
                }
            }
        }
    }
    .footer-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 100px;
        @media (max-width:1024px){
            display: none;
        }
        ul {
            list-style-type: none;
            display: flex;
            grid-gap: 25px;
            justify-content: center;
            width: auto;
            margin: auto;
            li {
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 14px;
                    font-weight: 400;
                    transition: all 0.3s;
                    padding: 20px 0;
                    display: block;
                    &:hover {
                        color: #E40317;
                        transition: all 0.3s;
                    }
                }
            }
        }
        .getintouch {
            background: #E40317;
            color: #fff;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            &:hover {
                background: #3CA936;
                color: #fff;
                transition: all 0.3s;
            }
        }
    }
    .copyright-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 50px;
        @media (max-width:1024px){
            flex-direction: column;
            gap: 20px;
        }
        ul {
            list-style-type: none;
            display: flex;
            grid-gap: 25px;
            justify-content: center;
            @media (max-width:767px){
               grid-gap: 10px;
            }
            li {
                a {
                    text-decoration: none;
                    color: #7E7E7E;
                    font-size: 14px;
                    font-weight: 400;
                    transition: all 0.3s;
                    padding: 20px 0;
                    display: block;
                    &:hover {
                        color: #E40317;
                        transition: all 0.3s;
                    }
                }
            }
        }
        .social-icons {
            display: flex;
            gap: 25px;
            align-items: center;
            a {
                color: #fff;
                font-size: 22px;
                &:hover {
                    color: #E40317;
                    transition: all 0.3s;
                }
            }
        }
        p {
            color: #7E7E7E;
            font-size: 14px;
            font-weight: 400;
        }
    }
}

.inner-banner{
    position: relative;
    @media (max-width: 767px) {
        overflow: hidden;
    }
    &::after{
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        top: 0px;
        left: 0px;
        background: rgba(53, 54, 34, 0.9);
        z-index: 1;
    }
    img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        @media (max-width: 767px) {
            height: 100%;
            width: auto;
        }
    }
    .banner-content {
        position: absolute;
        top: 50%;
        max-width: 1345px;
        width: 100%;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 2;
        transform: translateY(-50%);
        h1 {
            color: #fff;
            font-size: 4.858vw;
            margin-bottom: 20px;
            font-weight: 400;
            text-align: center;
            font-family: "Italiana", sans-serif;
            text-transform: uppercase;
            @media (max-width: 767px) {
                font-size: 9vw;
            }
        }
         ul{
            list-style-type: none;
            display: flex;
            gap:15px;
            justify-content: center;
            margin-top: 20px;
            li{
                color: #fff;
                a{
                    color: #fff;
                    font-size: 14px;
                    text-decoration: none;
                    &:hover{
                        text-decoration: underline;
                    }
                }
            }
        }
    }
}

.hm-aboutmain{
    padding: 75px 0px;
    @media (max-width: 991px) {
        padding: 35px 0px;
    }
    .hm-aboutsection {
        gap: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        align-items: stretch;
        @media (max-width: 991px) {
            grid-template-columns: auto;
        }
        .about-image {
            width: 100%;
            flex-grow: 1;
            flex-basis: 0;
            min-width: 0;
            height: 100%;
            @media (min-width: 768px) and (max-width: 991px) {
                order: 2;
            }
            @media (max-width: 767px) {
                display: none;
            }
            img {
                width: 100%;
                height: 100%;
            }
        }
        .content {
            flex-grow: 1;
            flex-basis: 0;
            min-width: 0;
            h2 {
                font-family: Italiana;
                font-weight: 400;
                line-height: 125%;
                letter-spacing: -1px;
                text-transform: uppercase;
                font-size: 3.6vw;
                color: #727272;
                margin-bottom: 20px;
                @media (min-width: 992px) and (max-width: 1335px) {
                    font-size: 2.5vw;
                }
                @media (min-width: 768px) and (max-width: 991px) {
                    font-size: 4.5vw;
                }
                @media (max-width: 767px) {
                    font-size: 9vw;
                }
            }
            h4 {
                font-weight: 400;
                font-size: 28px;
                line-height: 100%;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-bottom: 10px;
                line-height: 160%;
            }
            p {
                color: #545454;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
            }
            .item {
                margin-top: 30px;
                .heading {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 10px;
                    .icon {
                        width: 62px;
                        height: 62px;
                        border-radius: 100px;
                        background: #EFEFEF;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            width: 25px;
                        }
                    }
                    h3 {
                        color: #000000;
                        font-size: 23px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 25px;
                        font-family: "Inter", sans-serif;
                        /* 125% */
                        text-transform: capitalize;
                    }
                }
                p {
                    margin-bottom: 15px;
                    font-size: 16px;
                }
            }
        }
    }
}

.timeline-section .big-heading h2 {
    font-size: 9vw;
    margin-bottom: 30px;
    text-align: center;
}
.timeline-wrapper {	
	margin: 0 auto;
}
.timeline {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	gap: 40px;
	align-items: start;
	position: relative;
}
.timeline::before {
	content: "";
	grid-column: 2 / 3;
	justify-self: center;
	width: 2px;
	background: #ccc;
	height: 100%;
	position: absolute;
	display: block;
	transform: translateX(0);
}
.timeline-item {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	grid-column: 1 / -1;
	align-items: center;
}
.timeline-item .timeline-img,
.timeline-item .timeline-content {
	padding: 0 20px;
}
.timeline-img{
    @media (max-width: 767px) {
       display: none;
    }
}
.timeline-img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 6px 18px rgba(28, 28, 28, 0.07);
}
.timeline-marker {
	width: 16px;
	height: 16px;
	background: #ff0000;
	border-radius: 50%;
	justify-self: center;
	align-self: center;
	z-index: 2;
    border: 2px solid #3CA936;
    @media (max-width: 767px) {
       display: none;
    }
}
.timeline-content .meta {
	color: var(--muted);
	font-size: 16px;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}
.timeline-content h3 {
	margin: 0 0 14px 0;
	font-size: 28px;
	font-weight: 400;
	color: var(--accent);
}
.timeline-content p {
	margin: 0;
	color: #646464;
	line-height: 1.7;
    font-size: 18px;
}
.timeline-item.even .timeline-img {
	grid-column: 1 / 2;
}
.timeline-item.even .timeline-marker {
	grid-column: 2 / 3;
}
.timeline-item.even .timeline-content {
	grid-column: 3 / 4;
	text-align: left;
}
.timeline-item.odd .timeline-content {
	grid-column: 1 / 2;
	text-align: right;
	padding-right: 40px;
	padding-left: 0;
}
.timeline-item.odd .timeline-marker {
	grid-column: 2 / 3;
}
.timeline-item.odd .timeline-img {
	grid-column: 3 / 4;
	padding-left: 40px;
	padding-right: 0;
}
.timeline-item .timeline-marker {
	margin: 0;
}
/*wizardV_sec4*/
.wizardV_sec {
    padding: 75px 100px 100px 100px;
    width: 100%;
    display: block;
    @media (max-width:1024px){
        padding: 15px;
    }
}
.wizardV_sec4 {
  background-color: #000;
}
.home_test {
  text-align: center;
}
.home_test span {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.home_test p {
  color: #fff;
  font-style: italic;
  font-weight: 500;
  margin: 20px 0;
  font-size: 16px;
  padding: 0 70px;
  line-height:38px;
    @media (max-width:767px){
        font-size: 14px;
        padding: 0 35px;
        line-height: 27px;
    }
}
.home_test h3 {
  color: #4CAF50;
  position: relative;
  padding-top: 20px;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
.home_test h3::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 1px;
  content: "";
  background-color: #ffa200;
  transform: translate(-50%, -50%);
}
.swiper-button-next2,
.swiper-button-prev2 {
  color: #fff !important;
}
.wizardV_sec4 .container {
    max-width: 1300px;
    margin: auto;
}


@media (max-width: 980px) {
	.timeline {
		grid-template-columns: 1fr 50px 1fr;
		gap: 28px;
	}
	.timeline-content h3 {
		font-size: 20px;
	}
}
@media (max-width: 720px) {
	.timeline {
		grid-template-columns: 1fr;
	}
	.timeline::before {
		display: none;
	}
	.timeline-item {
		grid-template-columns: 1fr;
		margin: 28px 0;
        @media (max-width: 767px) {
            margin: 0px 0;
        }
	}
	.timeline-item .timeline-marker {
		width: 12px;
		height: 12px;
		margin: 0 0 12px 0;
	}
	.timeline-item .timeline-img,
	.timeline-item .timeline-content {
		padding: 0;
	}
	.timeline-item.odd .timeline-content,
	.timeline-item.even .timeline-content {
		text-align: left;
		padding: 0 0 12px 0;
        @media (max-width: 767px) {
           padding: 0;
        }
	}
	.timeline-item.odd .timeline-img,
	.timeline-item.even .timeline-img {
		padding: 0;
	}
	.timeline-item::before {
		content: "";
		display: block;
		height: 1px;
		background: var(--line-color);
		margin: 8px 0 12px 0;
        @media (max-width: 767px) {
          display: none;
        }
	}
	.timeline-item .marker-wrap {
		display: flex;
		align-items: center;
		gap: 12px;
	}
}
.timeline-item .timeline-content .meta small {
	font-weight: 600;
}
.timeline-item .timeline-content .spacer {
	height: 6px;
}
.ourmission{
    background: url('../images/vission.jpg');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 100px 0px;
    background-attachment: fixed;
    background-position: bottom;
    @media (max-width: 767px) {
        margin: 30px 0px;
    }
}
.ourmission .main-wrapper{
    @media (max-width: 767px) {
        padding: 30px 15px;
    }
}
.ourmission .sectioninner  {
    position: relative;
}
.ourmission .sectioninner .mission-vission  {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    @media (max-width: 767px) {
       grid-template-columns: 1fr;
    }
}
.ourmission .sectioninner .mission-vission .item {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(178deg, rgba(255, 31, 19, 1) 0%, rgba(65, 166, 59, 1) 100%);
    @media (min-width:768px) and (max-width:1024px){
        padding: 20px;
    }
    @media (max-width: 767px) {
        padding: 15px;
    }
}
.ourmission .sectioninner .mission-vission .item h2 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 30px;
    font-family: Italiana;
    font-weight: 600;
    line-height: 125%;
    font-size: 2.6vw;
    @media (max-width: 767px) {
        font-size: 9vw;
        margin-bottom: 10px;
    }
}
.ourmission .sectioninner .mission-vission .item p {
    font-size: 16px;
    text-align: justify;
    color: #fff;
    line-height: 1.9;
    margin-bottom: 20px;
    &:last-child{
        margin-bottom: 0px;
    }
}

.ourprocess-section {
    padding: 0px 0;
    .features-section {
        padding-top: 40px;
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            @media (min-width:768px) and (max-width:1024px){
                gap: 20px;
                grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
            }
            @media (max-width: 767px) {
               gap: 20px;
            }
        }
        .feature-card {
            background: #fff;
            padding: 50px 25px;
            text-align: left;
            transition: all 0.2s ease;
            border: 1px solid;
            border-image-slice: 1;
            border-width: 2px;
            border-image-source: linear-gradient(178deg,rgba(255, 31, 19, 1) 0%, rgba(65, 166, 59, 1) 100%);
            @media (max-width: 767px) {
               padding: 25px 25px;
            }
        }
        .feature-card:hover {
           box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;      
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        .feature-icon {
            font-size: 28px;
            color: #1abc9c;
            margin-bottom: 30px;
        }
        .feature-title {
            color: #2C2C2C;
            margin-bottom: 20px;
            font-family: "Inter", sans-serif;
            font-weight: 400;
            font-size: 28px;
            line-height: 150%;
            vertical-align: bottom
        }
        .feature-desc {
            color: #666;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
            font-family: "Inter", sans-serif;
        }
    }
}

.mainservices-section {
    padding: 100px 0 30px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content {
        margin-bottom: 50px;
    }
    .services-items {
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            @media (min-width:768px) and (max-width:1024px){
                gap: 20px;
            }
            @media (max-width: 767px) {
                gap: 20px;
            }
        }
        .feature-card {
            background: #fff;
            padding: 87px 25px 25px;
            text-align: left;
            transition: all 0.2s ease;
            border: 1px solid;
            border-image-slice: 1;
            border-width: 2px;
            text-decoration: none;
            position: relative;
            border-image-source: linear-gradient(178deg,rgba(255, 31, 19, 1) 0%, rgba(65, 166, 59, 1) 100%);
        }
        .arrow {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            line-height: 55px;
            text-align: center;
            background-color: #f5f5f5;
            border-radius: 50%;
            transition: all 0.5s;
            border: 1px solid #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            svg {
                position: relative;
                left:0px;
                top: 0px;
                width: 25px;
                transform: rotate(150deg);
            }
        }
        .feature-card:hover {
            box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            .arrow {
                top: 0;
                right: 0;
                width: 55px;
                height: 55px;
                line-height: 55px;
                border-radius: 0 0px 0 50px !important;
                background-color: #FA2314;
                border-top: 1px solid transparent;
                border-bottom: 1px solid #FA2314;
                border-left: 1px solid transparent;
                border-right: 1px solid #FA2314;
                svg {
                    left: 4px;
                    top: -2px;
                    path {
                        fill: #fff !important;
                    }
                }
            }
        }
        .feature-icon {
            font-size: 28px;
            color: #1abc9c;
            margin-bottom: 30px;
        }
        .feature-title {
            color: #2C2C2C;
            margin-bottom: 20px;
            font-family: "Inter", sans-serif;
            font-weight: 400;
            font-size: 28px;
            line-height: 125%;
            letter-spacing: 0;
            vertical-align: bottom;
        }
        .feature-desc {
            color: #666;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
            font-family: "Inter", sans-serif;
        }
    }
}

.level2services-section {
    padding: 100px 0px 30px 0px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content{
        margin-bottom: 100px;
        .left-heading{
            h3 {
                font-family: Italiana;
                font-weight: 400;
                line-height: 125%;
                letter-spacing: -1px;
                text-transform: uppercase;
                font-size: 2.6vw;
                color: #727272;
            }
        }
    }
    .services-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        grid-row-gap: 50px;
        .item {
            text-decoration: none;
            .image {
                margin-bottom: 20px;
                img {
                    width: 100%;
                    display: flex;
					height:460px;
					object-fit: cover;
					object-position: center center;
                }
            }
            .content {
                position: relative;
                padding: 0 20px;
                &:after {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 100%;
                    background: rgb(221, 221, 221);
                }
                h2 {
                    font-family: "Inter", sans-serif;
                    color: #2C2C2C;
                    font-size: 28px;
                    font-weight: 400;
                }
            }
        }
    }
}


.galleryservices-section {
    padding: 100px 0px 30px 0px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content{
        margin-bottom: 100px;
        .left-heading{
            h3 {
                font-family: Italiana;
                font-weight: 400;
                line-height: 125%;
                letter-spacing: -1px;
                text-transform: uppercase;
                font-size: 2.6vw;
                color: #727272;
            }
        }
    }
    .l3gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        .item {
            text-decoration: none;
            .image {
                margin-bottom: 20px;
                img {
                    width: 100%;
                    display: flex;
                }
            }
            .content {
                position: relative;
                padding: 0 20px;
                &:after {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 100%;
                    background: rgb(221, 221, 221);
                }
                h2 {
                    font-family: "Inter", sans-serif;
                    font-size: #666666;
                    color: #727272;
                    font-size: 26px;
                    letter-spacing: 1px;
                }
            }
        }
    }
}


.projects-section {
    padding: 70px 0 30px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content {
        margin-bottom: 100px;
        .left-heading {
            h3 {
                font-family: Italiana;
                font-weight: 400;
                line-height: 125%;
                letter-spacing: -1px;
                text-transform: uppercase;
                font-size: 3.6vw;
                color: #727272;
                @media (max-width: 767px) {
                    font-size: 9vw;
                }
            }
        }
    }
    .projects-gallery {
        position: sticky;
        top: 75px;
        .item {
            text-decoration: none;
            display: grid;
            grid-template-columns: 1fr 2fr;
            grid-gap: 50px;
            align-items: center;
            margin-bottom: 30px;
            @media (min-width:768px) and (max-width:1024px){
                gap: 20px;
            }
            @media (max-width: 767px) {
                gap: 20px;
                grid-template-columns: 1fr;
            }
            .image {
                display: flex;
                img {
                    width: 100%;
                    display: flex;
                }
            }
            .content {
                position: relative;
                span {
                    text-transform: uppercase;
                    font-size: 14px;
                    font-weight: 400;
                    letter-spacing: 2px;
                    margin-bottom: 20px;
                    color: rgb(29, 30, 33);
                    display: inline-block;
                    background: rgb(238, 238, 238);
                    padding: 7px 10px;
                }
                h2 {
                    font-size: 45px;
                    letter-spacing: 0;
                    color: #000;
                    font-family: "Italiana", sans-serif;
                    letter-spacing: 3px;
                    margin-bottom: 20px;
                }
                p {
                    color: #545454;
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 36px;
                }
                .arrow {
                    width: 55px;
                    height: 55px;
                    line-height: 55px;
                    text-align: center;
                    background-color: #f5f5f5;
                    border-radius: 50%;
                    transition: all 0.5s;
                    border: 1px solid #f5f5f5;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-top: 30px;
                    &:hover{
                        background-color: #E40317;
                        svg {
                            path {
                                fill: #fff !important;
                            }
                        }
                    }
                    svg {
                        position: relative;
                        left: 0;
                        top: 0;
                        width: 25px;
                        transform: rotate(180deg);
                    }
                }
            }
        }
    }
}
.projectdetails-content{
    h3{
        font-size: 28px;
        color: #2C2C2C;
         font-weight: 400;
        margin-bottom: 20px;
    }
    p{
        width: 100%;
        color: #545454;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .l3gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        @media (min-width:768px) and (max-width:1024px){
            gap: 20px;
        }
        @media (max-width: 767px) {
            gap: 20px;
            grid-template-columns: 1fr;
        }
        .item {
            text-decoration: none;
            .image {
                margin-bottom: 20px;
                img {
                    width: 100%;
                    display: flex;
					height:460px;
					object-fit: cover;
					object-position: center center;
                }
            }
            .content {
                position: relative;
                padding: 0 20px;
                &:after {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 100%;
                    background: rgb(221, 221, 221);
                }
                h2 {
                    font-family: "Inter", sans-serif;
                    font-size: #666666;
                    color: #727272;
                    font-size: 26px;
                    letter-spacing: 1px;
                }
            }
        }
    }
}
.compare-section{
    padding: 100px 0 30px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content {
        margin-bottom: 100px;
    }
    .ba-wrapper {
        max-width: 1437px;
        margin: 0 auto 40px;
        text-align: center;
        position: sticky;
        top: 100px;
        background: #fff;
    }
    .ba-slider {
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;
        user-select: none;
    }
    .ba-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
    }
    .after-container {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 50%;
        overflow: hidden;
    }
    .label {
        position: absolute;
        bottom: 15px;
        padding: 12px 24px;
        font-size: 20px;
        background: rgba(0,0,0,0.8);
        color: #fff;
        letter-spacing: 2px;
        text-transform: uppercase;
        z-index: 2;
        transition: opacity 0.2s ease;
    }
    .label.before { left: 15px; }
    .label.after  { right: 15px; }
    .ba-range {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: ew-resize;
        z-index: 3;
    }
    .handle {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: #ff0000;
        background: linear-gradient(to bottom,  #3ca936 47%,#3ca936 47%,#3ca936 47%,#3ca936 47%,#f6290c 48%,#f6290c 48%,#e40317 100%);
        z-index: 2;
    }
    .handle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 34px;
        height: 34px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(0,0,0,0.25);
    }
    .caption {
        margin-top: 25px;
        font-size: 34px;
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Italiana", sans-serif;
        letter-spacing: 2px;
    }
    .para{
        margin-top: 15px;
        font-size: 18px;
        color: #545454;
        line-height: 30px;
        font-weight: 400;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .ba-slider {
            height: 320px;
        }
    }
}
.contactus-main{
    padding: 100px 0px 0px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
}
.adderss-form {
    margin: 100px 0;
    @media (max-width:767px){
        margin: 45px 0;
    }
}
.adderss-form .inner-container {
    display: grid;
    grid-template-columns: 0.50fr 1fr;
    grid-gap: 70px;
    @media (min-width:768px) and (max-width:1024px){
        gap: 20px;
    }
    @media (max-width:767px){
        grid-template-columns: auto;
        grid-gap: 30px;
    }
}
.adderss-form .getintouch .address .item {
    margin-bottom: 50px;
    padding-left: 70px;
    position: relative;
    @media (max-width: 767px) {
        padding-left: 0px;
        margin-bottom: 30px;
    }
}
.adderss-form .getintouch .address .item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #E40317;
    justify-content: center;
    background: #fff;
    font-size: 20px;
    position: absolute;
    border-radius: 100px;
    padding: 15px;
    left: 0;
    border: 2px solid #E40317;
    @media (max-width: 767px) {
        position: relative;
        margin-bottom: 20px;
    }
}
.adderss-form .getintouch .address .item h4 {
    margin-top: 0;
    color: #2C2C2C;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}
.adderss-form .getintouch .address .item p {
    margin-bottom: 0;
}
.adderss-form .getintouch .address .item table {
    width: 100%;
    border-collapse: collapse;
    max-width: 350px;
    tr {
        td {
            padding: 10px 0;
            font-size: 16px;
            @media (max-width: 767px) {
                display: block;
            }
            &:first-child {
                color: #2C2C2C;
                font-weight: 600;
            }
            &:last-child {
                text-align: right;
                color: #545454;
                @media (max-width: 767px) {
                   text-align: left;
                }
            }
        }
    }
}
.adderss-form{
    .form {
        width: 100%;
        border-radius: 5px;
        padding: 30px;
        box-sizing: border-box;
        box-shadow: 0 0 7px 1px rgba(59, 90, 136, 0.1);
        @media (max-width: 767px) {
            padding: 15px;
        }
    }
    .form h2 {
        margin-top: 0;
        color: #2C2C2C;
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 15px;
    }
    .form p {
        font-size: 16px;
        line-height: 28px;
        color: #2C2C2C;
    }
    .form form {
        margin-top: 20px;
    }
    .form form .section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-bottom: 20px;
        @media (max-width: 767px) {
            grid-template-columns:1fr;
        }
    }
    .form form .field {
        width: 100%;
        display: inline-block;
    }
    .form form .field input,
    .form form .field select,
    .form form .field textarea {
        width: 100%;
        border: 1px solid #ccc;
        height: 60px;
        padding: 15px;
        border-radius: 5px;
        font-size: 16px;
        color: #000;
    }
    .form form .field select {
        margin-bottom: 20px;
    }
    .form form .field textarea {
        height: 120px;
        margin-bottom: 30px;
        font-family: "Inter", sans-serif;
    }
    .form form .get_btn {
        background: #ff0000;
        color: #fff;
        font-size: 16px;
        width: 100%;
        border: 1px solid #ff0000;
        height: 60px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 20px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
        &:hover {
            background: #3CA936;
            border: 1px solid #3CA936;
            transition: all 0.3s;
        }
    }
}

.mobile{
    display: none;
}
.section3 .grid,
.section4_in1 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.section4_in1 h2 {
  text-align: center;
}
/*section5*/
.section5 {
  padding: 20px 0 60px 0;
}
.section5 h3 {
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #888888;
}
.section5 h2 {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 30px;
}
.sec5_bx {
}
.sec5_bx .img {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.sec5_bx .img img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.sec5_bx:hover .img img {
  transform: scale(1.1) rotate(2deg);
}
.sec5_bx h5 {
  color: #3ca936;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0;
}
.sec5_bx h4 {
  color: #000;
  font-size: 19px;
  font-weight: 600;
  margin: 10px 0 10px;
  line-height: 1.6;
}
.sec5_bx p {
  margin-bottom: 20px;
  color: #878787;
  font-size: 14px;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main_btn a, .main_btn .btn {
    background-color: #e40317;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 25px;
    text-decoration: none;
}
.main_btn a:hover,
.main_btn .btn:hover,
.hl_info a:hover {
  background-color: #3ca936;
}
    .home_blogs {
  padding: 4rem 0 0rem;
  width: 100%;
  display: block;
}
.home_blogs::after {
  content: "";
  z-index: 9;
  background-repeat: repeat-x;
  background-position: left top;
  width: 100%;
  position: absolute;
  height: 10rem;
  left: 0;
  top: -5rem;
}
.home_blogs_hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.home_blogs_hd h2,
.home_blogs_hd a {
  margin: 0;
}
.home_blogs ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.home_blogs ul li {
}
.home_blogs ul li a {
  text-decoration: none;
  transition: var(--bg-transition);
  color: #000;
}
.home_blogs ul li a .img {
  width: 100%;
  height: 32rem;
  transition: all 0.3s;
  border-bottom: 1px solid #173980;
}
.home_blogs ul li a:hover .img {
  border-bottom: 4px solid #58ad14;
}
.home_blogs ul li a .img img {
  width: 100%;
  display: block;
  height: 30rem;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s;
}
.home_blogs ul li a:hover .img img {
  height: calc(32rem - 4px);
}
.home_blogs ul li a span {
  margin: 1rem 0;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}
.home_blogs ul li a h3 {
  font-weight: 600;
  line-height: 1.4;
  font-size: 2.1rem;
}
.home_blogs ul li a:hover h3 {
  text-decoration: underline;
}
.insights_desc_in {
  max-width: 1240px;
  margin: auto;
}
.insights_desc_top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.insights_desc_top img {
  width: 100%;
  display: block;
}
.insights_desc h1 {
  text-transform: uppercase;
      font-size: 46px;
    font-weight: 700;
    line-height: 58px;
  color: #000;
}
.insights_desc_in p{
    width: 100%;
    color: #545454;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 20px;
}
.insights_desc_in h2{
    color: #3ca936;
    margin-bottom: 20px;
}
.insights_desc_in h3{
    margin-bottom: 20px;
}
.insights_desc h4 {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}
.insights_desc ul {
  margin: 30px 0;
  list-style: none;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.insights_desc ul li {
  position: relative;
  padding-left: 30px;
      background-image: url(../images/office-push-pin.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px;
  color: #545454;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 0px;
}
.insights_desc_top a {
  padding: 0px 25px;
  background-color: var(--color-primary);
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  height: 36px;
  border-radius: 20px;
}
.insights_desc_top a:hover {
  background-color: var(--color-secondary);
}
@media (max-width: 767px) {
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .services-items {
        display:grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .l3gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
    footer {
        &:after {
            height: 150px !important;
        }
    }
    .section3 .grid, .section4_in1 .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .insights_desc_top {
        grid-template-columns: repeat(1, 1fr);
    }
    .insights_desc h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
}