@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&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: "Poppins", sans-serif;
  	font-weight: 400;
  	font-style: normal;
    box-sizing: border-box;
    color: #2a2d2a;
    font-size: 16px;
    line-height: 1.8;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Parkinsans", sans-serif;
    color: #384538;
}
p, ul li{
    color: #2a2d2a;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}
.main_fluid{
	width: 100%;
	display: block;
}
.main-wrapper{
	max-width: 1280px;
	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: 30px;
    color: #384538;
    @media (max-width:1024px){
        display: block;
    }
}
.mobilemenu {
    position: fixed;
    background: #384538;
    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: #D4AF37; 
    }
}
.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 #1e351e;
}
.mobilemenulist ul li.active a {
    color: #D4AF37;
}
.top-header{
    background: #F3F7F3;
    text-align: center;
    padding: 10px 0px;
    .inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width:767px){
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
    }
    .header-contact{
        ul{
            list-style-type: none;
            display: flex;
            gap: 20px;
            li{
                a{
                    gap: 7px;
                    color: #000000;
                    text-decoration: none;
                    font-size: 14px;
                    font-weight: 400;
                    display: flex;
                    font-family: "Inter", sans-serif;
                    align-items: center;
                }
            }
        }
    }
    .social-icons {
        display: flex;
        gap: 25px;
        align-items: center;
        a {
            color: #16542F;
            font-size: 22px;
            &:hover {
                color: #D4AF37;
                transition: all 0.3s;
            }
        }
    }
}
.header {
    position: relative;
    z-index: 9;
    background: #fff;
    padding: 15px 0px;
    margin: 0px;
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width: 1024px) {
            justify-content: normal;
            gap: 16px;
        }
        .logo{
            text-align: center;
            @media (max-width:1024px){
                text-align: left;
            }
            img{
                width: 250px;
                display: flex;
                @media (max-width:767px){
                    width: 190px;
                }
            }
        }
        nav {
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 1vw;
                justify-content: center;
                @media (min-width:1025px) and (max-width:1240px){
                    grid-gap: 1.5vw;
                }
                li {
                    a {
                        text-decoration: none;
                        color: #2a2d2a;
                        font-size: 16px;
                        transition: all 0.3s;
                        padding: 20px 15px;
                        font-weight: 500;
                        display: block;
                        @media (min-width:1025px) and (max-width:1240px){
                            font-size: 14px;
                            padding: 20px 10px;
                        }
                        &:hover {
                            color: #D4AF37;
                            transition: all 0.3s;
                        }
                    }
                }
                li.active a{
                    color: #D4AF37;
                }
            }
        }
        .get-a-quote{
            text-align: right;
            @media (max-width: 1024px) {
                margin-left: auto;
            }
            a{
                background: #384538;
                color: #fff;
                text-decoration: none;
                padding: 14px 20px;
                border-radius: 100px;
                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: #D4AF37;
                    color: #fff;
                    transition: all 0.3s;
                }
            }
        }
    }
}
.hero-banner {
    padding: 0px 15px;
    @media (max-width:767px){
        padding: 0px;
    }
    .item {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        @media (max-width:767px){
            border-radius: 0px;
            height: 400px;
        }
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            border-radius: 30px;
            @media (max-width:767px){
                border-radius: 0px;
            }
        }
        .banner-content {
            position: absolute;
            top: 12%;
            max-width: 1437px;
            right: 0;
            left: 0;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            margin-top: 50px;
            @media (max-width:767px){
                padding: 0px 15px;
                margin-top: 0px;
                top: 10%;
            }
            .banner-text{
                max-width: 1000px;
                margin-bottom: 30px;
                @media (min-width:768px) and (max-width:1024px){
                    padding: 0px 60px;
                }
                @media (max-width:767px){
                    max-width: 100%;
                }
                h1 {
                    color: #fff;
                    font-size: 4vw;
                    margin-bottom: 20px;
                    font-family: "Parkinsans", sans-serif;
                    text-transform: capitalize;
                    font-weight: 700;
                    text-align: center;
                    line-height: 1.3;
                    @media (min-width:1885px){
                        font-size: 3.6vw;
                    }
                    @media  (max-width:1024px){
                        font-size: 5vw;
                    }
                    @media  (max-width:767px){
                        font-size: 9vw;
                    }
                }
                p{
                    color: #f0fbf0;
                    font-size: 2vw;
                    font-weight: 400;
                    line-height: 1.6;
                    text-align: center;
                    margin: auto;
                    margin-bottom: 35px;
                    max-width: 800px;
                    @media (min-width:1885px){
                        font-size: 1.2vw;
                    }
                    @media  (max-width:1024px){
                        font-size: 3vw;
                    }
                    @media  (max-width:767px){
                        font-size: 18px;
                        margin-bottom: 20px;
                    }
                    span{
                        background: rgba(65, 166, 59, 0.7);
                    }
                }
                .btn-secondary {
                    background: linear-gradient(to right, #384538 9%, #D4AF37 100%);
                    color: #fff;
                    border: 2px solid #fff;
                    margin: auto;
                    text-decoration: none;
                    padding: 8px 30px;
                    border-radius: 100px;
                    font-size: 20px;
                }
            }

        }
    }
    .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: #D4AF37;
                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: rgba(24, 36, 24, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
}
a.btn-primary{
    background: #384538;
    color: #fff;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    &:hover{
        background: #D4AF37;
        color: #fff;
        transition: all 0.3s;
    }
}
.btn-secondary{
    background: linear-gradient(to right, #384538 9%, #D4AF37 100%);
    color: #fff;
    border: 2px solid #fff;
    margin: auto;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 100px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: fit-content;
    @media (max-width:767px){
        padding: 10px 30px;
        font-size: 16px;
    }
    &:hover{
        background: linear-gradient(to right, #D4AF37 9%, #384538 100%);
        transition: all 0.5s;
    }
}
.hmabout-section{
    margin: 75px 0px 0px;
    @media (max-width:1024px){
        margin: 40px 0px 40px;
    }
    .inner{
        display: grid;
        grid-template-columns: 1fr 0.80fr;
        grid-gap: 2vw;
        @media (max-width:767px){
            grid-template-columns:auto;
            grid-gap: 40px;
        }
        .oftheyear{
            width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            display: flex;
            h2{
                color: #384538;
                font-size: 3.5vw;
                line-height: 130%;
                margin-bottom: 15px;
                background: #384538;
                background: linear-gradient(to right, #384538 9%, #D4AF37 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                @media (min-width:1441px){
                    font-size: 2.6vw;
                }
                @media (max-width:767px){
                    font-size: 8vw;
                }
            }
            ul{
                list-style-type: disc;
                margin-top: 20px;
                padding-left: 20px;
                li{
                    color: #2a2d2a;
                    font-size: 16px;
                    line-height: 1.8;
                    margin-top: 15px;
                    @media  (max-width:767px){
                        font-size: 16px;
                    }
                }
            }
        }
        .hm_about{
            width: 100%;
            height: 100%;
            position: relative;
            @media (max-width:767px){
                height: 45vh;
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 30px;
            }
        }
    }
}
.heading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
    @media (max-width:1024px){
       grid-template-columns: 1fr;
    }
    .left-heading {
        flex: 1 1 0;
        width: 100%;
        h3 {
            line-height: 125%;
            font-size: 3.6vw;
            background: #384538;
            background: linear-gradient(to right, #384538 9%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            @media (min-width:1885px){
                 font-size: 2.6vw;
            }
            @media (min-width:768px) and (max-width:1024px){
                font-size: 4vw;
            }
            @media (max-width:767px){
                font-size: 8vw;
            }
        }
    }
    .rightcontent {
        flex: 1 1 0;
        width: 100%;
        p {
			width:100%;
            font-size: 20px;
            font-weight: 400;
            line-height: 36px;
            margin-bottom: 20px;
            @media (max-width:767px){
                font-size: 16px;
                line-height: 30px;
            }
            &:last-child{
                margin-bottom: 0px;
            }
        }
    }
}
.mainfeatures-section {
    padding: 70px 0;
    @media (max-width:1024px){
        padding: 30px 0px 30px;
    }
    .features-section {
        padding-top: 40px;
        @media (max-width:1024px){
            padding-top: 0px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(211px, 1fr));
            gap: 1vw;  
            @media (min-width:768px) and (max-width:1024px){
                grid-template-columns: repeat(2, 1fr);
            }
            @media (max-width:767px){
                grid-template-columns: none;
                gap: 4vw;
            }
        }
        .feature-number {
            position: absolute;
            right: -10px;
            top: -10px;
            width: 100px;
            height: 100px;
            background: #F3F7F3;
            border: 10px solid #fff;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            border-radius: 0px 60px 0px 160px;
            gap: 5px;
            padding-right: 10px;
            font-size: 14px;
            span{
                font-size: 18px;
                font-weight: 500;
                color: #384538;
            }
        }
        .feature-card {
            background: #F3F7F3;
            padding: 50px 25px;
            text-align: left;
            transition: all 0.2s ease;
            border-radius: 30px;
            position: relative;
            /*border: 1px solid;
            border-image-slice: 1;
            border-width: 2px;
            border-image-source: linear-gradient(0deg,#384538 0%, #D4AF37 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;
            margin-bottom: 30px;
            @media (max-width:767px){
                font-size: 24px;
                margin-bottom: 5px;
            }
        }
        .feature-title {
            margin-bottom: 15px;
            font-weight: 500;
            font-size: 24px;
            line-height: 125%;
            vertical-align: bottom;
        }
    }
}
 .big-heading {
        h2 {
            font-size: 6vw;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 100%;
            text-align: center;
            background: linear-gradient(0deg,#384538 0%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            @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: 1vw;
        @media (max-width:767px){
            grid-template-columns: 1fr;
            gap: 4vw;
        }
        a {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            &:before {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                content: "";
                background-color: #000;
                opacity: 0.5;
                transition: all 0.1s;
            }
            &:hover{
                &:before{
                    opacity: 0.5;
                    transition: all 0.1s;
                }
                img.dajhdja{
                    transform: scale(1.1);
                    transition: all 0.3s;
                }
                .content h3{
                    background: #D4AF37;
                    color: #fff;
                    transition: all 0.3s;
                }
                .arrow{
                    transition: all 0.3s;
                    transform: rotate(40deg);
                }
            }
            img {
                width: 100%;
            }
			img.dajhdja{
				height: 100%;
                object-fit: cover;
                width: 100%;
                transition: all 0.3s;
			}
            .content {
                position: absolute;
                bottom: 0px;
                padding: 30px;
                display: flex;
                gap: 10px;
                width: 100%;
                @media (min-width:768px) and (max-width:1024px){
                    padding: 10px 15px;
                    gap: 10px;
                    bottom: 16px;
                }
                @media (max-width:767px){
                    padding: 10px 15px;
                    gap: 10px;
                    bottom: 0px;
                }
                p{
                    color: #fff;
                    @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-weight: 400;
                    font-size: 26px;
                    line-height: 100%;
                    letter-spacing: 1px;
                    text-align: center;
                    text-transform: uppercase;
                    color: #000;
                    display: flex;
                    align-items: center;
                    transition: all 0.3s;
                    @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;
                    transition: all 0.3s;
                    @media (max-width:767px){
                        height: 40px;
                        width: 40px;
                    }
                    img {
                        width: auto;
                    }
                }
            }
        }
    }
}
.wizardV_sec4 .center-heading h2 {
	font-size: 3.6vw;
	text-align: center;
	line-height: 125%;
	margin-bottom: 20px;
    color: #ebbe2e !important;
    @media (min-width:1885px){
        font-size: 2.6vw;
    }
    @media  (max-width:1024px){
        font-size: 5.6vw;
    }
    @media (max-width:767px){
        font-size: 9vw;
        margin-bottom: 0px;
    }
}
.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-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 #D4AF37;
        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-weight: 700;
                line-height: 125%;
                font-size: 2.6vw;
                margin-bottom: 50px;
                background: linear-gradient(0deg, #384538 0%, #D4AF37 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                @media (max-width:1024px){
                    font-size: 5.6vw;
                }
                @media (max-width:767px){
                    font-size: 8vw;
                }
            }
            .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: "Poppins", sans-serif;
                    border-bottom: 2px solid #384538;
                    &:focus {
                        outline: none;
                        border-bottom: 2px solid #D4AF37;
                    }
                }
                button {
                    height: 53px;
                    border: 0;
                    color: #FFF;
                    text-align: center;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 40px;
                    text-transform: uppercase;
                    border-radius: 100px;
                    background: #384538;
                    transition: all 0.5s;
                    width: 180px;
                    cursor: pointer;
                    margin-top: 20px;
                    &:hover {
                        background: #D4AF37;
                        transition: all 0.5s;
                    }
                }
            }
            .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: #D4AF37;
                        transition: all 0.3s;
                    }
                }
            }
        }
        .getintouch {
            background: #D4AF37;
            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: #D4AF37;
                        transition: all 0.3s;
                    }
                }
            }
        }
        .social-icons {
            display: flex;
            gap: 25px;
            align-items: center;
            a {
                color: #fff;
                font-size: 22px;
                &:hover {
                    color:#D4AF37;
                    transition: all 0.3s;
                }
            }
        }
        p {
            color: #7E7E7E;
        }
    }
}

.inner-banner{
    position: relative;
    height: 250px;
    @media (max-width: 767px) {
        overflow: hidden;
    }
    &::after{
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        top: 0px;
        left: 0px;
        background-color: rgba(24, 36, 24, 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;
            text-transform: uppercase;
            line-height: 1.5;
            @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;
                    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-weight: 700;
                line-height: 125%;
                font-size: 3vw;
                margin-bottom: 20px;
                background: linear-gradient(to right, #384538 9%, #D4AF37 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                @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: 24px;
                margin-bottom: 10px;
                line-height: 160%;
            }
            .item {
                margin-top: 30px;
                .heading {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    .icon {
                        width: 62px;
                        height: 62px;
                        border-radius: 100px;
                        background: #F3F7F3;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        img {
                            width: 30px;
                        }
                    }
                    h3 {
                        font-size: 24px;
                        text-transform: capitalize;
                        font-weight: 500;
                        @media (max-width: 767px) {
                            font-size: 20px;
                        }
                    }
                }
                p {
                    margin-bottom: 15px;
                }
            }
        }
    }
}

.timeline-section .big-heading h2 {
    font-size: 4vw;
    margin-bottom: 30px;
    text-align: center;
    @media (max-width: 767px) {
       font-size: 8vw;
    }
}
.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: 20px;
    height: 20px;
    background: #D4AF37;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
    z-index: 2;
    border: 3px solid #384538;
    @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: 24px;
	font-weight: 500;
	color: var(--accent);
}
.timeline-content p {
	margin: 0;
}
.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: url('../images/testmonial-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    &::after{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: rgba(24, 36, 24, 0.9);
    }
}
.wizardV_sec4 .main-wrapper {
    position: relative;
    z-index: 1;
}
.home_test {
  text-align: center;
}
.home_test span {
  color: #fff;
  font-size: 20px;
}
.home_test p {
  color: #fff;
  margin: 20px 0;
  font-size: 20px;
  padding: 0 120px;
  line-height:38px;
    @media (max-width:767px){
        font-size: 14px;
        padding: 0px;
        line-height: 27px;
        margin-top: 0px;
    }
}
.home_test h3 {
  position: relative;
  padding-top: 10px;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.home_test h3::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 1px;
  content: "";
  background: #fff;
  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;
        font-weight: 600;
	}
}
@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 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 {
    padding:100px 50px;
    background-color: rgba(24, 36, 24, 0.9);
    @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-weight: 600;
    line-height: 125%;
    font-size: 2.6vw;
    @media (max-width: 767px) {
        font-size: 8vw;
        margin-bottom: 10px;
    }
}
.ourmission .sectioninner .mission-vission .item p {
    color: #fff;
    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-weight: 400;
            font-size: 28px;
            line-height: 150%;
            vertical-align: bottom
        }
        .feature-desc {
            color: #666;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
        }
    }
}

.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: 15px;
            @media (min-width:768px) and (max-width:1024px){
                gap: 20px;
            }
            @media (max-width: 767px) {
                gap: 20px;
            }
        }
        .feature-card {
            background: #F3F7F3;
            padding: 100px 25px  40px;
            text-align: left;
            transition: all 0.2s ease;
            border-radius: 30px;
            text-decoration: none;
            position: relative;
        }
        .arrow {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            line-height: 55px;
            text-align: center;
            background: #384538;
            border-radius: 50%;
            transition: all 0.5s;
            border: 1px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            svg {
                position: relative;
                left:0px;
                top: 0px;
                width: 25px;
                transform: rotate(150deg);
                path {
                    fill: #fff !important;
                }
            }
        }
        .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: linear-gradient(to right, #384538 9%, #D4AF37 100%);
                background: #D4AF37;
                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: 15px;
            font-size: 24px;
            line-height: 125%;
            letter-spacing: 0;
            vertical-align: bottom;
            font-weight: 500;
            @media (max-width: 767px) {
                font-size: 24px;
            }
        }
        .feature-desc {
            color: #2a2d2a;
        }
    }
}

.level2services-section {
    padding: 100px 0px 30px 0px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content{
        margin-bottom: 100px;
        .left-heading{
            h3 {
                line-height: 125%;
                font-size: 2.6vw;
            }
        }
    }
    .services-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        grid-row-gap: 50px;
        @media (min-width:768px) and (max-width:1024px){
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width: 767px) {
            grid-template-columns: repeat(1, 1fr);
        }
        .item {
            text-decoration: none;
            .image {
                margin-bottom: 20px;
                img {
                    width: 100%;
                    display: flex;
					height:460px;
					object-fit: cover;
					object-position: center center;
                    @media (max-width: 767px) {
                        height:380px;
                    }
                }
            }
            .content {
                position: relative;
                padding: 0 20px;
                &:after {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 100%;
                    background: rgb(221, 221, 221);
                }
                h2 {
                    color: #2C2C2C;
                    font-size: 24px;
                    font-weight: 500;
                }
            }
        }
    }
}


.galleryservices-section {
    padding: 100px 0px 30px 0px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content{
        margin-bottom: 100px;
        .left-heading{
            h3 {
                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;
        @media (max-width: 991px) {
           grid-gap: 15px;
           grid-template-columns: repeat(2, 1fr);
        }
        .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-size: 26px;
                    letter-spacing: 1px;
                }
            }
        }
    }
}


.projects-section {
    padding: 70px 0 30px;
    @media (max-width: 767px) {
        padding: 30px 0 30px;
    }
    .heading-content {
        margin-bottom: 100px;
        @media (max-width: 991px) {
            margin-bottom: 20px;
        }
        .left-heading {
            h3 {
                line-height: 125%;
                font-size: 3vw;
                @media (max-width: 767px) {
                    font-size: 8vw;
                }
            }
        }
    }
    .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: 15px;
            }
            @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;
                    @media (max-width: 991px) {
                        margin-bottom: 5px;
                    }
                }
                h2 {
                    font-size: 45px;
                    letter-spacing: 0;
                    color: #000;
                    letter-spacing: 3px;
                    margin-bottom: 20px;
                    @media (max-width: 991px) {
                       font-size: 28px;
                       margin-bottom: 5px;
                    }
                }
                .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;
                    @media (max-width: 991px) {
                        margin-top: 15px;
                    }
                    &:hover{
                        background-color: #384538;
                        svg {
                            path {
                                fill: #fff !important;
                            }
                        }
                    }
                    svg {
                        position: relative;
                        left: 0;
                        top: 0;
                        width: 25px;
                        transform: rotate(180deg);
                    }
                }
            }
        }
    }
}
.projectdetails-content{
    h3{
        color: #2C2C2C;
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 28px;
        line-height: 125%;
    }
    p{
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        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;
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width: 767px) {
            gap: 20px;
            grid-template-columns: 1fr;
        }
        .item {
            text-decoration: none;
            .image {
                margin-bottom: 20px;
                @media (max-width: 991px) {
                    margin-bottom: 0px;
                }
                img {
                    width: 100%;
                    display: flex;
					height:460px;
					object-fit: cover;
					object-position: center center;
                    @media (max-width: 991px) {
                        height:350px;
                    }
                }
            }
            .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-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: #384538;
        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;
        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 (max-width:991px){
        grid-template-columns: auto;
        gap: 20px;
    }
}
.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: #384538;
    justify-content: center;
    background: #fff;
    font-size: 20px;
    position: absolute;
    border-radius: 100px;
    padding: 15px;
    left: 0;
    border: 2px solid #384538;
    @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: #384538;
        color: #fff;
        font-size: 16px;
        width: 100%;
        border: 1px solid #384538;
        height: 60px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 20px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
        &:hover {
            background: #D4AF37;
            border: 1px solid #D4AF37;
            transition: all 0.3s;
        }
    }
}

.mobile{
    display: none;
}
@media (max-width:1024px){
    .mobile-table {
        display: none;
    }
}
@media (max-width: 767px) {
    .mobile{
        display: block;
    }
    .desktop, .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}