@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #21852a;
    --second: #f6a607;
    --darkgreen: #62a72e;
    --light-bg: #f6a6071a;
    --text-color: #666666;
    --transition: 0.5s all ease;
}

body {
    font-family: "Roboto", serif;
    position: relative;
}

.lightBg {
    background: var(--light-bg);
}

.gap1 {
    gap: 1%;
}

.gap2 {
    gap: 2%;
}

.gap3 {
    gap: 3%;
}

.gap4 {
    gap: 4%;
}

.rajdhani {
    font-family: "Rajdhani", serif;
}

.title {
    font-family: "Rajdhani", serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--darkgreen);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 15px;
    font-family: "Rajdhani", serif;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--second);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subtitle img {
    width: 10px;
}

.subtitleCenter {
    font-size: 15px;
    font-family: "Rajdhani", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--second);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subtitleCenter img {
    width: 10px;
}

.description {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 22px;
}

.headerHero {
    height: 85vh;
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.header .headerTop {
    padding: 12px 0;
}

.header .headerTop .left {
    gap: 20px;
}

.header .headerTop .left .phoneMail a {
    font-size: 12px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.header .headerTop .left .phoneMail a i {
    color: var(--white);
}

.header .headerTop .right ul {
    gap: 5px;
}

.header .headerTop .right ul li {
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    font-size: 12px;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
}

.header .headerTop .right ul li:hover {
    background: var(--darkgreen);
    transition: var(--transition);
}

.header .headerTop .right ul li a {
    color: var(--white);
}

.header .headerTop .right ul li:hover a {
    color: var(--second);
}

/* header top end  */



.headerHero.about {
    height: 40vh;
}

/* logo Menu start */
.header .lgmn.sticky {
    position: fixed;
    background: #fff;
    box-shadow: 0px 0px 10px #ddd;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: 0.4s all ease;
}

.header .logoMenu {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    transition: 0.4s all ease;
}

.header .logoMenu .logo {
    width: 25%;
    cursor: pointer;
}

.header .logoMenu .menu {
    gap: 30px;
    position: relative;
}

.header .logoMenu .menu ul {
    gap: 25px;
}

.header .logoMenu .menu ul li {
    font-size: 13px;
    font-weight: 400;
    position: relative;
}

.header .logoMenu .menu ul li a {
    color: var(--black);
}

.header .logoMenu .menu ul li ul {
    position: absolute;
    left: 0;
    z-index: 9999999;
    background: #fff;
    top: 45px;
    border-radius: 0 0 4px 4px;
    width: 200px;
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.5s all ease;
    box-shadow: 0 0 5px #000;
    border-top: 4px solid var(--primary);
}

.header .logoMenu .menu ul li ul::before {
    content: "";
    position: absolute;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--primary);
    border-left: 5px solid transparent;
    top: -14px;
    left: 10px;
}

.header .logoMenu .menu ul li:hover ul {
    transform: rotateX(0deg);
    transition: 0.5s all ease;
}

.header .logoMenu .menu ul li ul li {
    border-top: 1px solid #ddd;
    padding: 8px 5px;
    font-size: 11px;
}

.header .logoMenu .menu ul li ul li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}


.header .logoMenu .icon-menu {
    display: none;
}

/* logo Menu end */




.bannerSlider .item {
    height: 85vh;
    position: relative;
}

.bannerSlider .item>img {
    height: 100%;
    object-fit: cover;
}

.bannerSlider .item .box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    z-index: 99;
    background: #00000078;
    /* backdrop-filter: blur(5px); */
    display: flex;
    align-items: center;
}

.heroContent h6 {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--second);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 50px;
}

.heroContent h6 img {
    width: 10px;
}

.heroContent h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 45px;
}

.heroContent p {
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 24px;
}










/* hero start */
.hero {
    padding-top: 130px;
}

/* .heroContent h6{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.heroContent h6 img{
    width: 10px;
}
.heroContent h1{
    color: var(--white);
    margin-bottom: 20px;
    font-size: 45px;
}
.heroContent h1 span{}
.heroContent p{
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 24px;
} */
.heroContent p {}

/* hero end */
/* aboutUs start */
.aboutUs {
    padding: 80px 0;
}

.aboutUs .container {
    gap: 4%;
    row-gap: 20px;
}

.aboutUs .left {
    width: 47%;
    height: 400px;
}

.aboutUs .left .img1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 20px #ddd;
}

.aboutUs .left .img1:after,
.aboutUs .left .img3:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.aboutUs .left .img1:hover:after,
.aboutUs .left .img3:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.aboutUs .left .img1 img {
    border-radius: 20px;

}

.aboutUs .left .img2 {
    position: absolute;
    width: 15%;
    top: 10%;
    left: 70%;
}

.aboutUs .left .img3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
}

.aboutUs .left .img3 img {
    border: 5px solid var(--white);
    border-radius: 20px;
    box-shadow: 10px 10px 20px #ddd;
}

.aboutUs .right {
    width: 47%;
}

.aboutUs .right ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}

.aboutUs .right ul li {
    font-size: 14px;
    font-family: "Rajdhani", serif;
    font-weight: 600;
    color: var(--darkgreen);
    width: 50%;
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.aboutUs .right ul li i {
    color: var(--primary);
    font-size: 16px;
}

.aboutUs .right ul li span {}

/* aboutUs end */
/* bestOffer start */
.bestOffer {
    padding: 80px 0;
}

.bestOffer .allOffer {
    display: flex;
    gap: 3%;
    margin-top: 30px;
}

.bestOffer .allOffer .sinOffer {
    width: 30%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    margin: 0 15px;
}

.bestOffer .allOffer .sinOffer img.ofrImg {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.bestOffer .allOffer .sinOffer:hover img.ofrImg {
    transform: scale(1.1);
    transition: var(--transition);
}

.bestOffer .allOffer .sinOffer span {
    position: absolute;
    width: 100%;
    height: 0%;
    bottom: 0px;
    left: 0px;
    border-radius: 20px;
    background-color: #62a72eb8;
    z-index: 1;
    transition: 0.5s all ease;
}

.bestOffer .allOffer .sinOffer:hover span {
    height: 350px;
}

.bestOffer .allOffer .sinOffer .info {
    position: absolute;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    top: 0;
    left: 0;
    z-index: 2;
    padding: 12px;
}

.bestOffer .allOffer .sinOffer .info .icon {
    position: absolute;
    right: 12px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    padding: 10px;
    display: grid;
    place-content: center;
}

.bestOffer .allOffer .sinOffer .info .icon img {
    width: 40px;
}

.bestOffer .allOffer .sinOffer .info .details {
    position: absolute;
    width: calc(100% - 48px);
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    left: 12px;
    bottom: 12px;
}

.bestOffer .allOffer .sinOffer .info .details h5 {
    font-family: "Rajdhani", serif;
    font-size: 18px;
    color: var(--darkgreen);
    margin-bottom: 10px;
}

.bestOffer .allOffer .sinOffer .info .details p {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 22px;
}

.bestOffer .slick-dots li,
.testimonial .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.bestOffer .slick-dots li button,
.testimonial .slick-dots li button {
    padding: 4px;

}

.bestOffer .slick-dots li.slick-active button,
.testimonial .slick-dots li.slick-active button {
    background: var(--primary);

}

/* bestOffer end */
/* workProcess start */
.workProcess {
    padding: 80px 0;
}

.workProcess .process {
    display: flex;
    gap: 4%;
}

.workProcess .process .sinProcess {
    position: relative;
}

.workProcess .process .sinProcess .img {
    width: 70px;
    height: 70px;
    background: var(--darkgreen);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    place-content: center;
    position: relative;
    margin: 30px auto 20px auto;
    position: relative;
}

.workProcess .process .sinProcess .img img {
    width: 60px;
}

.workProcess .process .sinProcess img.shp1 {
    position: absolute;
    left: -30%;
    top: 25%;
    width: 50%;
}

.workProcess .process .sinProcess img.shp2 {
    position: absolute;
    right: -30%;
    top: 30%;
    width: 50%;
}

.workProcess .process .sinProcess .img span {
    width: 20px;
    height: 20px;
    background: var(--darkgreen);
    border: 2px solid #fff;
    position: absolute;
    padding: 5px;
    border-radius: 50%;
    top: -15px;
    right: -15px;
    font-size: 15px;
    font-weight: 600;
    display: grid;
    place-content: center;
    color: #fff;
}

.workProcess .process .sinProcess .info h4 {
    font-family: "Rajdhani", serif;
    font-size: 20px;
    color: var(--darkgreen);
    margin-bottom: 10px;
    text-align: center;
}

.workProcess .process .sinProcess .info p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 24px;
    text-align: center;
}

/* workProcess end */
/* video start */
.video {}

.video iframe {
    width: 100%;
    height: 500px;
}

.video .videoImg {
    position: relative;
}

.video .videoImg .videoBtn {
    position: absolute;
    background: #62a72eb5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.video .videoImg .videoBtn img {
    width: 65px;
}

.video .videoImg .videoBtn .play {
    position: relative;
    width: 65px;
    height: 65px;
    cursor: pointer;
}

.video .videoImg .videoBtn .play::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 150%;
    height: 150%;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: scale(0.6);
    animation: border-zooming 1s infinite linear;
}

.video .videoImg .videoBtn .play::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 150%;
    height: 150%;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: scale(0.6);
    animation: border-zooming 1s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* video end */
/* energy start */
.energy {
    padding: 80px 0;
}

.energy .left {
    width: 46%;
}

.energy .left p {
    font-size: 15px;
    line-height: 26px;
}

.energy .right {
    width: 46%;
}

.energy .right .allSkill {}

.energy .right .allSkill .sinSkill {
    margin-bottom: 15px;
}

.energy .right .allSkill .sinSkill h4 {
    color: var(--darkgreen);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 15px;
}

.energy .right .allSkill .sinSkill h4 span {}

.energy .right .allSkill .sinSkill .skilBar {
    width: 100%;
    height: 5px;
    background: var(--light-bg);
    position: relative;
    border-radius: 10px;
}

.energy .right .allSkill .sinSkill .skilBar .perWidth {
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    background: var(--primary);
    border-radius: 10px;
}

.energy .right .allSkill .sinSkill .skilBar .perWidth.per1 {
    animation: perwidth1 2s linear;
}

.energy .right .allSkill .sinSkill .skilBar .perWidth.per2 {
    animation: perwidth2 2s linear;
}

.energy .right .allSkill .sinSkill .skilBar .perWidth.per3 {
    animation: perwidth3 2s linear;
}

@keyframes perwidth1 {
    0% {
        width: 0%;
    }

    100% {
        width: 99%;
    }
}

@keyframes perwidth2 {
    0% {
        width: 0%;
    }

    100% {
        width: 99%;
    }
}

@keyframes perwidth3 {
    0% {
        width: 0%;
    }

    100% {
        width: 99%;
    }
}

/* energy end */
/* callUs start */
.callUs {
    margin: 40px 0;
    margin-bottom: 80px;
    border-radius: 25px;
    overflow: hidden;
}

.callUs .left {
    position: relative;
    width: 30%;
    overflow: hidden;
}

.callUs .left:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.callUs .left:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.callUs .right {
    position: relative;
    padding: 0 60px;
    width: calc(70% - 120px);
}

.callUs .right .callBtn {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    padding: 15px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: grid;
    place-content: center;
}

.callUs .right .callBtn img {
    width: 30px;
}

.callUs .right .callBtn span {
    content: "";
    width: 0;
    height: calc(100% - 6px);
    background: #62a72e;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    z-index: -1;
    color: #62a72e;
    transition: 0.5s all ease;
}

.callUs .right .callBtn:hover span {
    width: calc(100% - 6px);
    transition: 0.5s all ease;
}

/* callUs end */
/* whyChoseUs start */
.whyChoseUs {
    padding: 80px 0;
}

.whyChoseUs .provide {
    display: flex;
    gap: 2%;
    margin-top: 30px;
    row-gap: 20px;
}

.whyChoseUs .provide .sinProvide {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px #ddd;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover:nth-child(1) {
    background: linear-gradient(45deg, #62a72eb8, #62a72eb8), url('img/whyus-1.jpg') no-repeat center center / cover;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover:nth-child(2) {
    background: linear-gradient(45deg, #62a72eb8, #62a72eb8), url('img/whyus-2.jpg') no-repeat center center / cover;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover:nth-child(3) {
    background: linear-gradient(45deg, #62a72eb8, #62a72eb8), url('img/whyus-3.jpg') no-repeat center center / cover;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover:nth-child(4) {
    background: linear-gradient(45deg, #62a72eb8, #62a72eb8), url('img/whyus-4.jpg') no-repeat center center / cover;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide .icon {
    width: 60px;
    margin-bottom: 20px;
}

.whyChoseUs .provide .sinProvide .icon img {
    width: 60px;
    height: 60px;
}

.whyChoseUs .provide .sinProvide .info {}

.whyChoseUs .provide .sinProvide .info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--darkgreen);
    margin-bottom: 10px;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide .info p {
    font-size: 13px;
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover .info h4 {
    color: var(--white);
    transition: var(--transition);
}

.whyChoseUs .provide .sinProvide:hover .info p {
    color: var(--white);
    transition: var(--transition);
    opacity: 1;
}

/* whyChoseUs end */
/* history start */
.history {
    background: var(--darkgreen);
    padding: 50px 0;
    margin: 50px 0px;
}

.history img {
    width: 35px;
    height: 35px;
    background: var(--second);
    padding: 12px;
    border-radius: 10px;
    margin-right: 12px;
}

.history i {
    width: 60px;
    height: 60px;
    background: var(--second);
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--white);
}

.history h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.history h5 {
    color: var(--white);
}

/* history end */
/* contactForm start */
.contactForm {
    padding: 80px 0;
}

.contactForm .contact {
    padding: 40px;
    border-radius: 25px;
    overflow: hidden;
}

.contactForm .left {
    width: 40%;
}

.contactForm .right {
    display: flex;
    width: 60%;
    gap: 4%;
    flex-wrap: wrap;
    row-gap: 15px;
}

.contactForm .right .controll {
    width: 48%;
}

.contactForm .right .controll input,
.contactForm .right .controll select {
    width: calc(100% - 24px);
    border: none;
    background: var(--white);
    padding: 12px 12px;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
}

.contactForm .right .controll select {
    width: 100%;
}

.contactForm .right .controll input:focus,
.contactForm .right .controll select:focus {
    box-shadow: 0 0 10px #21852a;
}

/* contactForm end */
/* footer start */
.footer {
    background: var(--black);
}

.footerTop {
    padding: 25px 0;
    border-bottom: 1px solid #333;
}

.footerTop img {
    width: 35px;
    height: 35px;
    background: var(--primary);
    padding: 12px;
    border-radius: 10px;
    margin-right: 12px;
}

.footerTop i {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--white);
}

.footerTop h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footerTop h5 {
    color: var(--white);
}

.footer .footerBody {
    padding: 60px 0 30px 0;
}

.footerBody .container {
    gap: 3%;
}

.flogo {
    width: 25%;
}

.flogo a {
    display: block;
    margin-bottom: 20px;
}

.flogo img {}

.flogo p {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 15px;
}

.flogo ul li a i {
    font-size: 15px;
    background: var(--primary);
    color: var(--white);
    width: 20px;
    height: 20px;
    display: grid;
    place-content: center;
    padding: 3px;
    border-radius: 3px;
    transition: var(--transition);
}

.flogo ul li:hover a i {
    background: var(--second);
    color: var(--white);
    transition: var(--transition);
}

.service {
    flex: 1;
}

.service h4 {
    margin-bottom: 20px;
    color: #f1f1f1
}

.service ul {
    display: block;
}

.service ul li {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin: 8px 0px;
    line-height: 24px;
}

.service ul li a {
    color: var(--white);
    opacity: 0.8;
}

.service ul li i {
    color: var(--white);
    margin-right: 10px;
}

ul.socialIcon {
    margin-bottom: 10px;
    display: flex;
}

ul.socialIcon li a {
    background: #043651;
    color: #fff;
    display: grid;
    place-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    margin-right: 10px;
}

.copyright {
    background: var(--primary);
    padding: 15px 0;
    display: block;
    border-radius: 15px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* footer end */
/* testimonial start */
.testimonial {
    padding: 80px 0px;
    background: var(--light-bg);
}

.testimonial h6 {
    font-weight: 700;
}

.testimonial .comments {
    display: flex;
    gap: 3%;
}

.team_member {
    background: var(--white);
    margin: 40px 15px 0 15px;
    padding: 20px;
    line-height: 25px;
    box-shadow: 0px 0px 10px #ddd;
    position: relative;
    border-radius: 20px;
}

.team_member h5 {
    font-family: "Rajdhani", serif;
    font-size: 20px;
    color: var(--darkgreen);
    margin-bottom: 10px;
    text-align: center;
}

.team_member h6 {
    font-size: 15px;
    color: var(--primary);
    text-align: center;
}

.team_member p.role {
    font-size: 11px;
    color: var(--text-color);
    text-transform: uppercase;
    margin: 12px 0;
    font-weight: 500;
}

.team_member .team_img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: absolute;
    top: -32px;
    box-shadow: -3px -3px 5px #ddd;
    left: 30px;
    border: 5px solid #fff;
    background: #21852a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team_member .team_img h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.team_member span {
    color: var(--second);
    font-size: 18px;
}

.team_member span.nonerv {
    color: var(--text-color);
    font-size: 18px;
}

.team_member i.hide {
    display: none;
}

.team_member i.more.hide {
    display: none;
}

.team_member span.dots.hide {
    display: none;
}

.team_member i.seemore {
    color: var(--darkgreen);
    cursor: pointer;
    margin-right: 5px;
    font-weight: 600;
}

.team_member .detail {
    margin-bottom: 12px;
    display: none;
}

.team_member .detail.active {
    display: block;
}

.team_member .detail h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

.team_member .detail h4 span {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 400;
}



.our-brand .our-brand-imge {
    width: 20%;
}

.our-brand .our-brand-imge img {
    padding: 20px;
}

/* testimonial end */
/* contactDetails start */
.contactDetails {
    padding: 80px 0;
}

.contactDetails .allDetails {
    display: flex;
    gap: 2%;
    margin-top: 30px;
    row-gap: 20px;
    flex-wrap: wrap;
}

.contactDetails .allDetails .sinDetails {
    width: 23%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
}

.contactDetails .allDetails .sinDetails:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.contactDetails .allDetails .sinDetails:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.contactDetails .allDetails .sinDetails img.ofrImg {
    width: 100%;
    height: 350px;
    transition: var(--transition);
    object-fit: cover;
}

.contactDetails .allDetails .sinDetails:hover img.ofrImg {
    transform: scale(1.1);
    transition: var(--transition);
    object-fit: cover;
}

.contactDetails .allDetails .sinDetails .info {
    position: absolute;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    top: 0;
    left: 0;
    z-index: 2;
    padding: 12px;
}

.contactDetails .allDetails .sinDetails .info .icon {
    position: absolute;
    right: 12px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    padding: 10px;
    display: grid;
    place-content: center;
}

.contactDetails .allDetails .sinDetails .info .icon img {
    width: 25px;
}

.contactDetails .allDetails .sinDetails .info .details {
    position: absolute;
    width: calc(100% - 48px);
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    left: 12px;
    bottom: 12px;
}

.contactDetails .allDetails .sinDetails .info .details h5 {
    font-family: "Rajdhani", serif;
    font-size: 18px;
    color: var(--darkgreen);
    margin-bottom: 10px;
}

.contactDetails .allDetails .sinDetails .info .details p {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 22px;
}

.contactDetails .allDetails .sinDetails .info .details ul li {
    font-size: 16px;
    color: var(--text-color);
    margin-right: 10px;
}

.contactDetails .slick-dots li,
.testimonial .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.contactDetails .slick-dots li button,
.testimonial .slick-dots li button {
    padding: 4px;

}

.contactDetails .slick-dots li.slick-active button,
.testimonial .slick-dots li.slick-active button {
    background: var(--primary);

}


.contactUs {
    padding: 60px 0px;
    overflow: hidden;
    /* clip-path: polygon(0 0, 0 51%, 0 85%, 50% 100%, 100% 85%, 100% 48%, 100% 0, 50% 15%); */
}

.contactUs .contactData {
    display: flex;
    align-items: flex-end;
}

.contactUs .contactData .conLeft {
    margin-bottom: -40px;
    width: 43%;
}

.contactUs .contactData .conLeft img {}

.contactUs .contactData .conRight {
    width: 55%;
}

.contactUs .contactData .conRight h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #62a72e;
}

.contactUs .contactData .conRight h4 {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.contactUs .contactData .conRight p {
    font-size: 14px;
    line-height: 20px;
    color: #111;
    margin-bottom: 30px;
}

.contactUs .contactData .conRight form {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 0px 20px #ddd;
    border-radius: 25px;
}

.contactUs .contactData .conRight form .name {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactUs .contactData .conRight form input {
    padding: 10px 12px;
    width: calc(49% - 24px);
    border: none;
    background: var(--light-bg);
    padding: 12px 12px;
    box-shadow: 0 0 10px #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid #ddd;
}

.contactUs .contactData .conRight form input::placeholder,
.contactUs .contactData .conRight form textarea::placeholder {
    color: #000;
}

.contactUs .contactData .conRight form textarea {
    padding: 10px 12px;
    width: calc(100% - 24px);
    border: none;
    background: var(--light-bg);
    padding: 12px 12px;
    box-shadow: 0 0 10px #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 12px;
    border: 1px solid #ddd;
}

.contactUs .contactData .conRight form input:focus,
.contactUs .contactData .conRight form textarea:focus {
    box-shadow: 0 0 10px #21852a;
}

.contactUs .contactData .conRight form button {
    width: 50%;
    margin: 0 auto;
    display: block;
}


.loc {}

.loc iframe {
    width: 100%;
}

/* contactDetails end */
/* Gallery start */
.Gallery {
    padding: 80px 0px;
    background: var(--light-bg);
}

.Gallery h1 {
    margin-bottom: 20px;
    text-align: center;
}

.Gallery .gallry {
    display: flex;
    gap: 2%;
    row-gap: 20px;
    flex-wrap: wrap;
}

.Gallery .gallry .singleSer {
    width: calc(23% - 22px);
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 5px #ddd;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: 0.5s all ease;
    border-radius: 15px;

}

.Gallery .gallry .singleSer:hover {
    transform: scale(1.05);
    transition: 0.5s all ease;
}

.Gallery .gallry .singleSer img {
    transition: 1s all ease;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.Gallery .gallry .singleSer:hover img {
    transform: rotateY(360deg);
    transition: 1s all ease;

}

.Gallery .gallry .singleSer .data p {
    color: #fff;
    text-align: center;
}

.Gallery .gallry .singleSer .data p a {
    font-size: 11px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 2px;
    background: #e95761;
    color: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    padding: 10px 20px 10px 20px;
    border: 1px solid #fff;
    transition: 0.5s all ease;
    display: inline-block;
    margin-bottom: 10px;
}

.Gallery .gallry .singleSer .data p a:hover {
    background: transparent;
    color: #e95761;
    border: 1px solid #e95761;
}

.showImg {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 90vh;
    background: #000000b3;
    z-index: 199999999999999;
    transform: scale(0);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 5vh 0;
    transition: 0.5s all ease;

}

.showImg.active {
    display: flex;
    transform: scale(1);
    transition: 0.5s all ease;
}

.showImg img {
    max-width: 500px;
}

.showImg iframe {
    max-width: 500px;
    width: 100%;
}

.showImg span {
    color: #fff;
    position: absolute;
    right: 40px;
    top: 20px;
    display: block;
    z-index: 199999999999999;
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .showImg img {
        max-width: 630px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .showImg img {
        max-width: 320px;
    }

}

/* Gallery end */
/* servicesRequest start */
.servicesRequest {
    padding: 80px 0;
    background: var(--light-bg);
}

.servicesRequest h1 {
    margin-bottom: 30px;
}

.servicesRequest .wrap {
    max-width: 640px;
    width: 100%;
    margin: 0px auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ddd;
}

.servicesRequest .wrap form {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 15px;
    justify-content: center;
}

.servicesRequest .wrap form.rqForm {
    display: none;
}

.servicesRequest .wrap form.rqForm.active {
    display: flex;
    margin-top: 20px;
}

.servicesRequest .wrap form .control {
    width: 49%;
}

.servicesRequest .wrap form .control label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: var(--darkgreen);
    font-family: "Rajdhani", serif;
    font-weight: 600;
}

.servicesRequest .wrap form .control input {
    width: calc(100% - 24px);
    padding: 10px 12px;
}

.servicesRequest .wrap form .control input,
.servicesRequest .wrap form .control select {
    width: calc(100% - 24px);
    border: none;
    background: var(--white);
    padding: 12px 12px;
    box-shadow: inset 0 0 5px var(--text-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
}

.servicesRequest .wrap form .control select {
    width: 100%;
}

.servicesRequest .wrap form .control input:focus,
.servicesRequest .wrap form .control select:focus {
    box-shadow: inset 0 0 5px #21852a;
}

.servicesRequest .wrap form .control button {
    width: 100%;
    color: var(--darkgreen);
    font-weight: 600;
}

.servicesRequest .wrap form .control button:hover {
    width: 100%;
    color: var(--white);
    font-weight: 600;
}

.servicesRequest .wrap form textarea {
    width: calc(100% - 24px);
    border: none;
    background: var(--white);
    padding: 12px 12px;
    box-shadow: inset 0 0 5px var(--text-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
}

.servicesRequest .wrap .fetch {}

.servicesRequest .wrap .fetch .spinner {
    width: 100%;
    height: 200px;
    background: var(--light-bg);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.servicesRequest .wrap .fetch.loading .spinner {
    display: flex;
    margin-top: 20px;
}

.servicesRequest .wrap .fetch .spinner span {
    width: 25px;
    height: 25px;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--text-color);
    border-bottom: 3px solid var(--text-color);
    border-left: 3px solid var(--text-color);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.servicesRequest .wrap .fetch .spinner p {}

.servicesRequest .wrap .fetch .allDetails {
    display: none;
    margin-top: 0;
}

.servicesRequest .wrap .fetch .allDetails.active {
    display: block;
    margin-top: 20px;
}

.servicesRequest .wrap .fetch h3 {
    font-size: 22px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.servicesRequest .wrap .fetch .details {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: 15px;
}

.servicesRequest .wrap .fetch .details p {
    width: calc(49% - 23px);
    /* text-align: center; */
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    background: #fcfcfc;
    border-radius: 5px;
}

.servicesRequest .wrap .fetch .details p b {
    color: var(--darkgreen);
}

.servicesRequest .wrap .fetch h5 {
    font-size: 17px;
}

.servicesRequest .wrap .fetch p {
    margin-bottom: 10px;
}

.servicesRequest .wrap .fetch img {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 150px;
}

/* servicesRequest end */
/* content start */
.content {
    padding: 80px 0;
}

.content .left {
    width: 30%;
    position: sticky;
}

.content .left ul {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 30px;
}

.content .left ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Rajdhani", serif;
    color: var(--darkgreen);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary);
}

.content .left ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.content .left ul li img {
    width: 15px;
}

.content .left ul li span {}

.content .proHelp {}

.content .proHelp .img {
    position: relative;
    overflow: hidden;
}

.content .proHelp .img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.content .proHelp .img:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.content .proHelp img {
    border-radius: 15px 15px 0 0;
}

.content .proHelp .help {
    position: relative;
    padding: 50px 20px 20px 20px;
    background: var(--light-bg);
    border-radius: 0 0 15px 15px;
}

.content .proHelp .help .callBtn {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--primary);
    padding: 15px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: grid;
    place-content: center;
    margin: -90px auto 15px auto;
}

.content .proHelp .help .callBtn img {
    width: 30px;
}

.content .proHelp .help .callBtn span {
    content: "";
    width: 0;
    height: calc(100% - 6px);
    background: #62a72e;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    z-index: -1;
    color: #62a72e;
    transition: 0.5s all ease;
}

.content .proHelp .help .callBtn:hover span {
    width: calc(100% - 6px);
    transition: 0.5s all ease;
}

.content .proHelp h4 {
    font-size: 16px;
    text-align: center;
    color: var(--darkgreen);
    margin-bottom: 12px;
}

.content .proHelp h2 {
    font-size: 25px;
    text-align: center;
    color: var(--primary);
}

.content .right {
    width: 71%;
}

.content .right .img,
.content .right .planing .plLeft .img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.content .right .img:after,
.content .right .planing .plLeft .img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / 30%);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: all 600ms linear;
}

.content .right .img:hover:after,
.content .right .planing .plLeft .img:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.content .right .img img {
    border-radius: 20px;
}

.content .right p {
    font-size: 13px;
    line-height: 25px;
}

.content .right h4 {
    font-family: "Rajdhani", serif;
    margin: 25px 0;
    font-size: 28px;
    font-weight: 900;
    color: var(--darkgreen);
}

.content .right .benefits {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    row-gap: 10px;
}

.content .right .benefits .sinBen {
    width: 32%;
}

.content .right .benefits .sinBen .img {
    border-radius: 0 0 0 0;
    margin-bottom: 10px;
}

.content .right .benefits .sinBen .img img {
    width: 60px;
    height: 60px;
    margin-bottom: 0px;
    border-radius: 0 0 0 0;
}

.content .right .benefits .sinBen h5 {
    font-size: 18px;
    font-weight: 900;
    color: var(--darkgreen);
    font-family: "Rajdhani", serif;
    margin-bottom: 6px;
}

.content .right .benefits .sinBen p {}

.content .right .planing {
    padding: 40px 0 0 0;
}

.content .right .planing .plLeft {
    width: 48%;
}

.content .right .planing .plLeft .img {}

.content .right .planing .plLeft .img img {}

.content .right .planing .plRight {
    width: 48%;
}

.content .right .planing .plRight h3 {
    font-size: 28px;
    font-family: "Rajdhani", serif;
    color: var(--darkgreen);
    margin-bottom: 15px;
}

.content .right .planing .plRight p {}

.content .right .planing .plRight ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.content .right .planing .plRight ul li {
    font-size: 15px;
    font-family: "Rajdhani", serif;
    font-weight: 600;
    color: var(--darkgreen);
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.content .right .planing .plRight ul li i {
    color: var(--primary);
    font-size: 18px;
}


.content .right .accordion {
    border-radius: 5px;
}

.content .right .accordion .contentBox {
    margin-bottom: 10px;
}

.content .right .accordion .contentBox .title {
    color: var(--darkgreen);
    font-size: 16px;
    padding: 10px 20px;
    background: var(--light-bg);
    cursor: pointer;
    position: relative;
    transition: 0.5s all ease;
    border-radius: 5px 5px;
    margin-bottom: 0;
}

.content .right .accordion .contentBox.active .title {
    color: var(--white);
    background: var(--primary);
}

.content .right .accordion .contentBox .title::after {
    content: '\f0d7';
    font-family: 'icomoon' !important;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 800;
}

.content .right .accordion .contentBox.active .title::after {
    content: '\f0d8';
    font-family: 'icomoon' !important;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 800;
}

.content .right .accordion .contentBox .accordionContent {
    height: 0;
    overflow: hidden;
    transition: 0.5s all ease;
    padding: 0 15px;
    background: #fff;
}

.content .right .accordion .contentBox.active .accordionContent {
    height: auto;
    padding: 15px 15px;
}

.content .right .accordion .contentBox .accordionContent p {
    font-family: "Roboto", serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--text-color);
    opacity: 0.9;
}

/* content end */
/* Success start */
.succesStory {
    padding: 80px 0;
    background: var(--light-bg);
}

.succesStory .succes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 30px;
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .succesStory .succes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .succesStory .succes {
        grid-template-columns: repeat(1, 1fr);
    }
}

.succesStory .succes .sinSucces {
    box-shadow: 0 0 10px #ddd;
    border: 1px solid #f1f1f1;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    overflow: hidden;
}

.succesStory .succes .sinSucces .img {
    /* margin-bottom: 15px; */
    border-radius: 10px;
    overflow: hidden;
}

.succesStory .succes .sinSucces .img img {
    height: 275px;
    object-fit: cover;
}

.succesStory .succes .sinSucces .info {}

.succesStory .succes .sinSucces .info h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 12px;
    /* text-align: center; */
    text-transform: capitalize;
}

.succesStory .succes .sinSucces .info p {
    font-size: 13px;
    font-weight: 400;
    color: #000;

    margin-bottom: 12px;
    line-height: 24px;
    padding: 0 12px;
}

.succesStory .succes .sinSucces .info p a {
    font-size: 11px;
    padding: 4px 20px;
}

/* Success end */
/* ser start */
.benifits .subtitle {
    font-family: "Rajdhani", serif;
    font-size: 28px;
    font-weight: 700;
    color: #62a72e;
    margin-bottom: 15px;
}

.benifits .tubtitle {
    font-family: "Rajdhani", serif;
    font-size: 18px;
    font-weight: 700;
    color: #62a72e;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benifits ul li {}

.benifits i {
    font-size: 15px;
    color: #62a72e;
    color: #21852a;
    -webkit-text-stroke: 10px solid #f00;
}

.benifits .img {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
}

.benifits .img img {
    width: 50%;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .benifits .subtitle {
        font-family: "Rajdhani", serif;
        font-size: 17px;
        font-weight: 700;
        color: #000;
        margin-bottom: 15px;
    }

    .benifits .tubtitle {
        font-family: "Rajdhani", serif;
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .benifits .img {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        padding: 20px 0;
    }

    .benifits .img img {
        width: 100%;
    }

    .copyright {
        background: var(--primary);
        padding: 15px 15px;
        display: block;
        border-radius: 15px;
        color: var(--white);
        font-weight: 600;
        font-size: 11px;
    }
}

.allServices {
    display: flex;
    gap: 2.5%;
    flex-wrap: wrap;
}

.sinService {
    box-shadow: 0px 0px 30px #ddd;
    padding: 20px 2%;
    width: calc(31.5% - 4%);
    text-align: center;
    background: #fff;
    border-radius: 10px;
    transform: rotateY(0deg);
    margin-top: 30px;
    margin-bottom: 50px;
    /* border: 1px solid #21852a; */
}


.sinService .serIcon {
    width: 90px;
    height: 90px;
    box-shadow: 0px 0px 5px #21852a;
    /* border: 3px solid #21852a; */
    margin: 0 auto;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s all ease;
    margin-top: -65px;
    padding: 10px;
    font-size: 60px;
}

.sinService .serIcon img {
    width: 90px;
    height: 90px;
    /* border-radius: 50%; */
    object-fit: cover;
}

.sinService:hover .serIcon {
    transform: rotateY(360deg);
    margin-bottom: 20px;
    transition: 0.8s all ease;
}

.sinService .serInfo h4 {
    color: #62a72e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sinService .serInfo p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 22px;
}

.sinService .serInfo p span {
    font-size: 15px;
    font-weight: 500;
    color: #21852a;
    cursor: pointer;
}

.sinService .serInfo p a {
    background: #21852a;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 22px;
    border-radius: 25px;
    border: 1px solid #21852a;
    display: inline-block;
    box-shadow: 0px 0px 10px #ddd;
}

.sinService .serInfo p a:hover {
    transition: 0.5s all ease-in-out;
    background: #fff;
    color: #21852a;
    border: 1px solid #21852a;
}

/* ser end */
/* proMenu start */
.proMenu {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.proMenu .sinMenu {
    border-bottom: 2px solid #ddd;
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proMenu .sinMenu.active {
    background: #fcfcfc;
    border-bottom: 2px solid #21852a;
}

.proMenu .sinMenu a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proMenu .sinMenu a img {
    width: 70px;
    margin-bottom: 20px;
    filter: grayscale(1);
}

.proMenu .sinMenu.active a img {
    filter: inherit;
}

.proMenu .sinMenu a h5 {
    font-size: 20px;
    color: #62a72e;
    text-align: center;
}

.proMenu .sinMenu.active a h5 {
    color: #21852a;
}


.tabContainer {
    width: 100%;
    padding-bottom: 50px;
}

.tabContainer .buttonContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.tabContainer .buttonContainer button {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    background: none;
    display: flex;
    gap: 10px;
}

.tabContainer .buttonContainer button:hover {
    color: #21852a;
}

.tabContainer .tabPanel {
    display: none;
}


.productList {
    gap: 30px;
    row-gap: 30px;
    box-shadow: -18px 0px 50px 18px rgba(54, 55, 56, 0.1);
    padding: 30px;
}

.productList .imgBx {
    width: 40%;
    border-right: 1px solid #ddd;
    padding: 30px;
}

.productList .imgBx img {}

.productList .info {
    width: 50%;
}

.productList .info h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.productList .info .data {
    height: auto;
    overflow: hidden;
    position: relative;
}

.productList .info .data.active {
    height: auto;
    max-height: 350px;
    overflow: hidden;
}

.productList .info p {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 10px;
}

.productList .info ul {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.productList .info ul li {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #62a72e;
    padding-left: 20px;
    position: relative;
}

.productList .info ul li::before {
    content: "\f058";
    font-family: 'icomoon' !important;
    position: absolute;
    left: 0;
    top: 0px;
    color: #21852a;
}

.productList .info ul li i {
    color: #21852a;
}

.productList .info h3 {
    font-size: 14px;
    color: #62a72e;
    cursor: pointer;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(#00000000, #fff, #fff);
    width: 100%;
    text-align: right;
}

/* proMenu end */
/* product slider start */
.productSlider {
    border: 1px solid #ddd;
    padding: 20px;
}

.productSlider .slick-next::before,
.productSlider .slick-prev::before {
    color: #62a72e;
    font-size: 20px;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
}

.productSlider .slick-prev:before {
    content: '\e5c4';
    font-family: icomoon;
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #21852a;
    font-size: 18px;
    opacity: 1;
    border: 1px solid #ddd;
}

.productSlider .slick-next {
    right: -18px
}

[dir=rtl] .productSlider .slick-next {
    right: auto;
    left: -38px
}

.productSlider .slick-next:before {
    content: '\e5c8';
    font-family: icomoon;
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #21852a;
    font-size: 18px;
    opacity: 1;
    border: 1px solid #ddd;
}

.productSlider .slick-prev {
    left: -36px;
    z-index: 999;
}

/* product slider End */
/* cases start */
.cases {
    padding: 20px 0 50px 0;
}

.cases .allCase {
    display: flex;
    justify-content: space-between;
    gap: 10%;
    flex-wrap: wrap;
    row-gap: 50px;
}

.cases .allCase .sinCase {
    width: 45%;
}

.cases .allCase .sinCase img {
    margin-bottom: 15px;
    height: 350px;
    object-fit: cover;
}

.cases .allCase .sinCase h2 {
    font-size: 25px;
    font-weight: 400;
    color: #000;
}

.cont {
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
}

/* cases end */
/* Feedback start */
.wrapper {
    width: 100%;
    background: #eff1ec;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    flex-direction: column;
    /* overflow: hidden; */
}

.wrapper .orderForm {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.wrapper .orderForm h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    border-left: 3px solid #62a72e;
    border-right: 3px solid #62a72e;
    border-bottom: 3px solid #62a72e;
    padding: 10px 0;
    background: #62a72e;
}

.wrapper .orderForm p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 10px;
}



@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.wrapper .orderForm .multiSteps {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 8px 20px #bdbdbd;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
}

.wrapper .orderForm .multiSteps form.multiStepData {
    /* display: flex;
width: 600%;
align-items: center; */
}

form.multiStepData {}

form.multiStepData .feedbackForm {}

form.multiStepData .feedbackForm.hide,
form.multiStepData .submited.hide {
    display: none;
}

form.multiStepData .singleStep.step1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
    gap: 1%;
    row-gap: 10px;
}

form.multiStepData .singleStep input[type="text"],
form.multiStepData .singleStep input[type="email"] {
    width: calc(49% - 3%);
    display: inline-block;
    padding: 12px 1.5%;
    margin-bottom: 8px;
    font-size: 14px;
    border: 1px solid #8ba2b7;
    border-radius: 3px;
}

form.multiStepData .singleStep.step1 input:focus,
form.multiStepData .step3 textarea:focus {
    border: 1px solid #21852a;
    box-shadow: 0px 0px 5px #21852a;
}

form.multiStepData .step2 h5,
form.multiStepData .step3 h5,
form.multiStepData .step4 h5,
form.multiStepData .step5 h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #62a72e;
}

form.multiStepData .step2 .options input[type="radio"],
form.multiStepData .step3 .options input[type="radio"] {
    display: none;
}

form.multiStepData .step2 .options label,
form.multiStepData .step3 .options label {
    display: block;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 14px;
}

form.multiStepData .step2 .options label span,
form.multiStepData .step3 .options label span {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px 8px 10px;
    border-radius: 3px;
    transition: .25s ease;
    border: 1px solid #ddd;
}

form.multiStepData .step2 .options label span:hover,
input[type="radio"]:checked+span,
form.multiStepData .step3 .options label span:hover,
input[type="radio"]:checked+span {
    background-color: #62a72e;
    color: #fff;
}

form.multiStepData .step2 .options label span:before,
form.multiStepData .step3 .options label span:before {
    content: "";
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    transition: .25s ease;
    box-shadow: inset 0 0 0 2px #62a72e;
    border: none;
}

form.multiStepData .step2 .options input[type="radio"]:checked+span:before,
form.multiStepData .step3 .options input[type="radio"]:checked+span:before {
    box-shadow: inset 0 0 0 10px #21852a;
    border: none;
}





form.multiStepData .step2 .blinds span {
    font-size: 14px;
}

form.multiStepData .step3 h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

form.multiStepData .step3 .nwremntnc {
    margin-bottom: 12px;
}

form.multiStepData .step3 .blinds {
    display: flex;
    align-items: center;
    border: 1px solid #8ba2b7;
    margin-right: 10px;
    cursor: pointer;
    padding: 5.5px 11px 5px 11px;
    border-radius: 2px;
    margin-bottom: 15px;
}

form.multiStepData .step3 .blinds.active {
    border: 1px solid #2196F3;
    background: #2196F3;
}

form.multiStepData .step3 .blinds.active span {
    color: #fff;
}

form.multiStepData .step3 .blinds input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

form.multiStepData .step3 .blinds span {
    font-size: 14px;
}



form.multiStepData .step3 .newBlinds .color h5 {
    margin-bottom: 5px;
}

form.multiStepData .step3 .newBlinds .describe h5,
form.multiStepData .step3 .repairBlinds .upimg h5,
form.multiStepData .step3 .repairBlinds .describe h5,
form.multiStepData .step4 .budget h5,
form.multiStepData .step4 .timeline h5 {
    margin-bottom: 10px;
}

form.multiStepData .step3 .newBlinds .describe textarea,
form.multiStepData .step3 .repairBlinds .describe textarea {
    border: 1px solid #8ba2b7;
    width: calc(100% - 4%);
    padding: 10px 2%;
    border-radius: 3px;
    height: 75px;
}



form.multiStepData .step5 input[type="submit"] {
    background: #62a72e;
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-family: poppins;
    border: none;
    width: 100%;
    margin-top: 10px;

}


form.multiStepData .submited {}

form.multiStepData .submited .wlcbox {
    margin: 10px auto 20px auto;
    width: 80px;
}

form.multiStepData .submited h4 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 10px;
}

form.multiStepData .submited p {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    font-weight: 600;
}

form.multiStepData .submited p a.home {
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

form.multiStepData .submited p a.home span.icon-arrow_back {
    margin-right: 10px;
}

/* Feedback end */
/* xxxxxx start */
/* xxxxxx end */