:root {
    --primary: #AB7442;
    --light: #F5F5F5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.vide-cont{
    width: 100%;
    position: relative;
}
.vide-cont video{
    width: 100%;
}
.vide-cont h3{
position: absolute;
bottom: 50px;
right: 0px;
left: 0px;
margin: auto;
text-align: center;
letter-spacing: 1px ;
color: white;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        border-top: 1px solid #EEEEEE;
        background: white;
        margin-top: -10px;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;

    }
}

/* .navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
    margin-left: -9px;
} */

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/bant.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

/* .section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
} */

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.img-about {
    padding: 15px;
}

.banner-cont {
    width: 100%;
}

.banner-cont h1 {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.img-sec {
    margin-left: 526px;
}

.img-sec img {
    width: 50%;
    height: auto;
}

@media(max-width:767px) {
    .img-sec {
        width: 100%;
        margin-left: 0;
    }

    .img-sec img {
        width: 100%;
    }
}

.why-cont {
    width: 98%;
    display: flex;
    margin-left: 18px;
    margin-top: 25px;
}

@media(max-width:767px) {
    .why-cont {
        display: block;

    }
}

.box-cont {
    width: 25%;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 5px 7px 14px #f5f5f5;
    margin: 10px;
    padding: 20px 20px 20px 20px;
}

@media(max-width:767px) {
    .box-cont {
        width: 90%;
    }
}

.box-cont:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.box-cont img {
    width: 100%;
    /* padding: 5px;
    padding-top: 8px; */
}

.box-cont h3 {
    margin-top: 9px;
    margin-left: 5px;
}

.box-cont p {
    color: black;
    font-size: 15px;
    line-height: 26px;
    margin-top: 7px;
    margin-left: 5px;
}

.img-height {
    height: 186px;
}

.why-head {
    text-align: center;
}

.page-header2 {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/bant.jpeg) center center no-repeat;
    background-size: cover;
}

.service-img {
    width: 100%;
    height: 254px;
}

.tittle {
    width: 100%;
    margin-top: 25px;
}

.tittle h1 {
    text-align: center;
}

.table-border {
    border: 2px solid #ddd;
    background: #fff;
}

.data {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;

}

.data-cont {
    width: 80%;
    margin: 24px 104px 20px;
}

.data th {
    border-top: 0;
    vertical-align: middle;
    text-align: center;
    background: #337ab7;
    color: #fff;
    border:2px solid #000 ;
}

.data tr,
td {
    border: 2px solid black;
    border-collapse: collapse;
}

@media screen and (max-width:600px) {

    .data th,
    .data td {
        font-size: 12px;
        /* Reduce font size for smaller screens */
    }
}

@media(max-width:767px) {
    .data-cont {
        width: 100%;
        margin: 0;
    }
}

.before-footer-para-cont {
    width: 80%;
    height: 300px;
    margin-left: 47px;
    margin-top: 35px;
    margin-bottom: 15px;
    /* border: 2px solid black; */
}

.para-text {
    margin-left: 55px;
    padding-top: 18px;
}

.page-header3 {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/bant.jpeg) center center no-repeat;
    background-size: cover;
}

.main-cont {
    margin: 0 auto;
    padding: 3em 0;
}

.second-main-blog-cont {
    display: flex;
    width: 100%;
}

@media(max-width:767px) {
    .second-main-blog-cont {
        display: block;
    }
}

.blog-img {
    width: 50%;
    height: 400px;
    /* border: 2px solid #AB7442; */
    margin: 9px;
}

@media(max-width:767px) {
    .blog-img {
        width: 100%;
        margin-top: -1px;
        margin: 0;
        height: 369px;
    }

    #blog-para {
        margin-top: 106px;
    }

    #blog-para2 {
        margin-top: 115px;
    }

    #last-blog-img {
        width: 100%;
        margin-top: 52px;
        text-align: center;
        margin-bottom: -136px;
        margin-top: 174px;
    }

    .ml-51 {
        margin-left: 51px;
    }
}

.blog-img img {
    width: 100%;
    height: 300px;
}

.blog-text {
    width: 50%;
    height: 400px;
    /* border: 2px solid #AB7442; */
    /* margin-left: 25px; */

}

@media(max-width:767px) {
    .blog-text {
        width: 100%;
        margin-left: 0;
        margin-top: 39px;
    }

    .mt-69 {
        margin-top: -29px;
    }

    .mt-155 {
        margin-top: -155px;
    }

    .mt-22 {
        margin-top: -200px;
    }

}

.blog-text p {
    color: black;
    font-size: 15px;
}

.blog-img-set {
    width: 50%;
    height: 300px;
}

.w-50 {
    width: 50%;
}

.crousel-img-height {
    height: 600px;
}

/* .adress-title h1 {
    text-align: center;
    margin-bottom: 18px;
}

.branch-cont {
    display: flex;
    width: 80%;
}

@media(max-width:767px) {
    .branch-cont {
        display: block;
        width: 87%;
        margin-bottom: -189px;
    }

} */

.sec-cont {
    width: 33%;
    /* border: 2px solid black; */
    height: 300px;
    margin-left: 38px;
}

@media(max-width:767px) {
    .sec-cont {
        width: 100%;
        margin-bottom: -164px;
    }
}

.sec-cont h4 {
    margin-left: 15px;
}

@media(max-width:767px) {
    .sec-cont h4 {
        margin-left: 0;
    }
}

.sec-cont p {
    margin-left: 23px;
    color: black;
    font-size: 15px;
    font-weight: 700;
}

@media(max-width:767px) {
    .sec-cont p {
        margin-left: 0;
    }
}

.sec-cont p,
span {
    margin-right: 15px;
}

.page-header4 {
    background: url(../img/bant.jpeg) center center no-repeat;
    background-size: cover;
}

.cata-cont {
    display: flex;
    width: 80%;
    margin-left: 100px;
}

.cata-box {
    width: 50%;
    margin: 5px;

}

.cata-box img {
    width: 226px;
    height: 302px;
    box-shadow: 38px 9px 25px #e9e6e6;
}

.cata-box img:hover {
    scale: 0.9;
    background: #7f7c7c;
    box-shadow: inset 11px 11px 22px #bebebe,
        inset -11px -11px 22px #ffffff;
}

@media(max-width:767px) {
    .cata-cont {
        display: block;
        width: 50%;
        margin-left: 80px;
        margin-right: 0;
    }

    .cata-box {
        width: 100%;
    }
}

.blog-img2 img {
    width: 75%;
}

.main-cont {
    margin: 0 auto;
    padding: 3em 0;
}

.img-ml {
    margin-left: 86px;
}

.second-main-blog-cont2 {
    display: flex;
    width: 100%;
    height: 1200px;
}

@media(max-width:767px) {
    .second-main-blog-cont2 {
        display: block;
        width: 100%;
        height: 2214px;
    }

    .mt-5 {
        margin-top: 5px;
    }
}

.blog-text ul,
li {
    list-style: none;
}

.blog-text ul,
li,
span {
    margin: 5px;
}

.second-main-blog-cont3 {
    display: flex;
    width: 100%;
    height: 600px;
}

@media(max-width:767px) {
    .second-main-blog-cont3 {
        display: block;
        width: 100%;
        height: 1100px;
    }
}

.second-main-blog-cont4 {
    display: flex;
    width: 100%;
    height: 500px;
}

@media(max-width:767px) {
    .second-main-blog-cont4 {
        display: block;
        width: 100%;
        height: 930px;
    }
}

.why-cont {
    width: 98%;
    display: flex;
    margin-left: 18px;
    margin-top: 25px;
    justify-content: center;
}

@media(max-width:767px) {
    .why-cont {
        display: block;
        width: 95%;
    }
}

.box-cont2 {
    width: 25%;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 5px 7px 14px #f5f5f5;
    margin: 10px;
    padding: 20px 20px 20px 20px;
}

@media(max-width:767px) {
    .box-cont2 {
        width: 90%;
    }
}

.box-cont2:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.box-cont2 img {
    width: 100%;
    height: 181px;
    /* padding: 5px;
    padding-top: 8px; */
}

.box-cont2 h3 {
    margin-top: 9px;
    margin-left: 5px;
}

.box-cont2 p {
    color: black;
    font-size: 15px;
    line-height: 26px;
    margin-top: 7px;
    margin-left: 5px;
}

.why-cont3 {
    width: 95%;
    display: flex;
    margin-left: 18px;
    margin-top: 25px;
    justify-content: center;
}

@media(max-width:767px) {
    .why-cont3 {
        display: block;

    }
}

.box-cont4 {
    width: 25%;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 5px 7px 14px #f5f5f5;
    margin: 10px;
    padding: 20px 20px 20px 20px;
}

@media(max-width:767px) {
    .box-cont4 {
        width: 90%;
    }
}

.box-cont4:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.box-cont4 img {
    width: 100%;
    height: 181px;
    /* padding: 5px;
    padding-top: 8px; */
}

.box-cont4 h3 {
    margin-top: 9px;
    margin-left: 5px;
}

.box-cont4 p {
    color: black;
    font-size: 15px;
    line-height: 26px;
    margin-top: 7px;
    margin-left: 5px;
}

.parts-cont {
    background-color: #ecf1f3;
    margin-top: -16px;
}

.first-cont {
    display: flex;
    width: 100%;
    margin-top: 15px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 25px;
    gap: 20px;
}

.img-box {
    width: 45%;
}

.img-box p,
span {
    margin-left: 119px;
}



@media(max-width:767px) {
    .sec-cont span {
        margin-left: 0;
    }
}

@media(max-width:767px) {
    #icon-span {
        margin-left: 10px;
    }

}

.for-img-text {
    width: 45%;
}

@media(max-width:767px) {
    .first-cont {
        display: block;
        width: 100%;
    }

    .for-img-text {
        width: 100%;
    }

    .img-box {
        width: 100%;
    }

    .img-box img {
        width: 100%;
    }
}

.why-cont6 {
    width: 98%;
    display: flex;
    margin-left: 18px;
    margin-top: 25px;
    justify-content: center;
}

@media(max-width:767px) {
    .why-cont6 {
        display: block;

    }
}

.navbar-collapse {
    background-color: white;
}

.adress-cont {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.adress-box {
    width: 33%;
    /* height: 300px; */
    /* border: 2px solid black; */
    /* margin: auto; */
}

.ttile {
    text-align: center;
}

.adress-cont h4 {
    color: black;
}

.adress-box p,
span {
    margin-left: 0;
    margin-right: 3px;
}

.margin-right {
    margin-right: 3px;
}

.margin-bottom {
    margin-bottom: 35px;
}

.text-color {
    color: #d8b231 !important;
}

@media(max-width:767px) {
    .adress-cont {
        display: block;
    }

    .adress-box {
        width: 100%;
    }
}



@media(max-width:768px) {
    .pdl {
        padding-left: 0 !important;
    }
}

.float {
    position: fixed;
    width: 52px;
    height: 54px;
    bottom: 141px;
    right: 3px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float2 {
    position: fixed;
    width: 52px;
    height: 54px;
    bottom: 141px;
    left: 3px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.extra-cont {
    margin-top: 20px;
    margin-bottom: 35px;
}

.cont-tittle {
    text-align: center;
    color: black;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.mini-cont {
    width: 80%;
    margin: auto;
    justify-content: center;
}

.circle-border {
    border-radius: 50%;
    border: 2px solid red;
    height: 300px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Adjust as needed */
}

.circle-border img {
    max-width: 100%;
    max-height: 100%;
}

.circle-cont {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    gap: 100px;
}

#prod-name {
    font-size: 18px;
    font-weight: 300;
    color: red;
    text-align: center;
    padding: 8px;
}

.para-info {
    padding-top: 20px;
    padding-bottom: 34px;
    text-align: center;
    width: 80%;
    margin: auto;
}

@media(max-width:768px) {
    .circle-cont {
        display: block;
    }
}

.double-cont {
    padding: 30px;
    padding-bottom: 30px;
}

.title {
    text-align: center;
}

.flex-cont {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: center;
    margin-top: 32px;
    gap: 20px;
}

.img-box {
    width: 50%;
}

.img-box img {
    width: 100%;
}

.content-for-img {
    width: 50%;
}

@media(max-width:768px) {
    .flex-cont {
        display: block;
    }

    .content-for-img {
        width: 100%;
        padding-top: 23px;
    }

    .content-for-img img {
        width: 100%;
    }

    .img-box {
        width: 100%;
    }
}

.extra-banner {
    width: 100%;
    /* margin: auto    ; */
}

.extra-banner img {
    width: 100%;
}

.uniqe {
    width: 95%;
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 33px;
    padding-bottom: 10px;
    gap: 50px;
}

@media(max-width:768px) {
    .uniqe {
        display: block;
    }
}

.first-1 {
    width: 38%;
}

@media(max-width:768px) {
    .first-1 {
        width: 100%;
    }
}

.second-2 {
    width: 38%;
    /* border: 2px solid red; */
    text-align: center;
}

@media(max-width:768px) {
    .second-2 {
        width: 100%;
        margin-top: 10px;
    }

    .margin-rightunk {
        margin-right: 0 !important;
    }
}


.third-3 {
    width: 38%;
}

@media(max-width:767px) {
    .third-3 {
        width: 100%;
    }
}

.first h3 {
    text-align: center;
    color: red;
}

#para-unk {
    text-align: center;
    color: red;
}

.borderforproduct {
    position: relative;
    width: 300px;
    height: 300px;
    margin-top: 73px;
    margin-left: 39px;
}

.borderforproduct2 {
    position: relative;
    width: 300px;
    height: 300px;
    /* margin-top: 73px; */
    margin-bottom: 68px;
    margin-left: 39px;
}

.borderforproduct3 {
    position: relative;
    width: 300px;
    height: 300px;
    margin-top: 73px;
    margin-bottom: 68px;
    margin-left: 74px;
}

@media(max-width:768px) {

    .borderforproduct3,
    .borderforproduct2,
    .borderforproduct3 {
        margin-left: 0px;
    }
}

.circle {
    border-radius: 50%;
    border: 2px solid red;
    width: 100%;
    height: 100%;
}

.circle img {
    width: 100%;
}

.circle2 {
    border-radius: 50%;
    border: 2px solid red;
    width: 100%;
    height: 100%;
}

.circle3 {
    border-radius: 50%;
    border: 2px solid red;
    width: 100%;
    height: 100%;
}

.circle2 img {
    margin-top: 62px;
    width: 65%;
}

.circle3 img {
    margin-top: 62px;
    width: 65%;
    margin-left: 50px;
}

.line {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 50px;
    background-color: red;
}

.line2 {
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 50px;
    background-color: red;
}

.first-1 {
    text-align: center;
    margin: auto;
    align-items: center;
}

.info-content h3,
span {
    color: red;
}

@media(max-width:768px) {

    .info-content,
    .info-content2,
    .info-content3 {
        width: 80%;
    }

    .borderforproduct {
        margin-left: 0;
    }
}

.info-content h3 span {
    font-size: 14px;
    padding-top: 0;
}


.info-content2 h3,
span {
    color: red;
}

.info-content2 h3 span {
    font-size: 14px;
    padding-top: 0;
}

.info-content3 h3 span {
    font-size: 14px;
    padding-top: 0;
}

.info-content3 {
    text-align: center;
}

.info-content3 h3 span {
    font-size: 14px;
    padding-top: 0;
}

.margin-rightunk {
    margin-right: 65px;
}

.text-red {
    color: red !important;
}

.accessoriesbanner {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

@media(max-width:768px) {
    .accessoriesbanner img {
        width: 100%;
    }
}

.ndcircle-cont {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.mini-circle-cont {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    gap: 20px;
}

@media(max-width:767px) {
    .mini-circle-cont {
        display: block;
    }
}

.cimgwidth {
    width: 90% !important;
}

.someunk {
    width: 38%;
}

@media(max-width:767px) {
    .someunk {
        width: 100%;
    }
}

.someunk img {
    width: 100%;
}

#sgk {
    color: black;
    text-align: center;
    padding-top: 12px;
    font-weight: bold;
}

.arv {
    width: 38%;
}

@media(max-width:767px) {
    .arv {
        width: 100%;
    }
}

.textaligncenter {
    text-align: center !important;
}

.imgleft {
    margin-left: 22px !important;
}

.point-cont {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 50px;
}

.firstpoint {
    width: 50%;
}

.secondpoint {
    width: 40%;
}

@media(max-width:767px) {
    .point-cont {
        display: block;
    }

    .firstpoint {
        width: 100%;
    }

    .firstpoint img {
        width: 100%;

    }

    .secondpoint {
        width: 100%;
        padding-top: 23px;
        padding-bottom: 12px;
    }

    .secondpoint img {
        width: 100%;
    }
}

.structure {
    /* margin-top: 45px; */
    padding-top: 155px;
    padding-bottom: 103px;
}

.work-cont {
    width: 55%;
    margin: auto;

}

.bigcircle {
    width: 800px;
    height: 800px;
    border: 8px solid #3c75db;
    border-radius: 50%;
    position: relative;
}

.smallcircle {
    width: 200px;
    height: 200px;
    border: 4px solid #86e986;
    border-radius: 50%;
    position: absolute;
}

.top {
    top: -91px;
    left: 261px;
}

.tppppp {
    background-repeat: no-repeat;
    background-size: cover;
}

.bottom {
    bottom: -102px;
    left: 282px;
    background-repeat: no-repeat;
    background-size: cover;
}

#bottomelementtittle {
    text-align: center;
    /* padding-bottom: 35px; */
    margin-top: -43px;
    font-size: 15px;
}

#autoelementtittle {
    margin-top: 191px;
    text-align: center;
    margin-left: 12px;
    font-size: 15px;
}

.lefttt2 {
    width: 100px;
    height: 100px;
    right: 10px;
    top: 543px;
    background-color: #25d366;
}

.mtc {
    margin-top: 197px;
}


.left {
    top: 307px;
    left: -94px;
}

.lefttttxyz {
    height: 100px;
    width: 100px;
    left: -53px;
    background-color: #25d366;
}

.left2 {
    left: -7px;
    top: 45px;
    background-repeat: no-repeat;
    background-size: cover;
}

.right {
    top: 278px;
    right: -80px;
}

.right2 {
    top: 45px;
    right: 17px;
    background-repeat: no-repeat;
    background-size: cover;
}

.tttp {
    top: 548px;

}

.undercircle {
    width: 300px;
    height: 300px;
    border: 4px solid #86e986;
    border-radius: 50%;
    position: absolute;
    top: 245px;
    /* Adjust as needed */
    left: 215px;
    /* Adjust as needed */
    margin: auto;
    background-repeat: no-repeat;
    object-fit: contain;
    background-size: contain;
}

.brdr {
    border: 4px solid #337ab7;
    background-repeat: no-repeat;
    background-size: cover;
}

#brdrelementtittle {
    margin-top: -38px;
    text-align: center;
    margin-left: 27px;
    /* font-size: large; */
    font-size: 15px;
}

.lastbi {
    background-repeat: no-repeat;
    background-size: cover;
}

#lastcontainofcircle {
    margin-top: 197px;
    margin-right: 35px;
    font-size: 15px;
}

/* circle structure responsive */

@media(max-width:768px) {
    .work-cont {
        width: 100%;
        padding-left: 25px;
        margin: auto;
    }

    .bigcircle {
        height: 300px;
        width: 300px;
    }

    .smallcircle {
        width: 50px;
        height: 50px;
    }

    .undercircle {
        width: 100px;
        height: 100px;
        top: 95px;
        left: 89px;
    }

    .right2 {
        top: 8px;
        right: 35px;
    }


    .right {
        top: 181px;
        right: -7px;
    }

    .bottom {
        bottom: 3px;
        left: 34px;
    }

    .lefttt2 {
        right: -22px;
        top: 75px;
    }

    #filterpipeline {
        margin-top: 54px;
        font-size: 7px;
        margin-left: -6px;
    }

    .top {
        top: -28px;
        left: 116px;
    }

    #waterballs {
        font-size: 7px;
        margin-top: 48px;
    }

    #autoelementtittle {
        margin-top: 47px;
        margin-left: 12px;
        font-size: 7px;
    }

    #bottomelementtittle {
        margin-left: 36px;
        /* text-align: center; */
        /* padding-bottom: 35px; */
        margin-top: -23px;
        font-size: 7px;
    }

    #lastcontainofcircle {
        margin-left: -78px;
        margin-top: 30px;
        /* margin-right: -6px; */
        font-size: 7px;
    }

    .lefttttxyz {
        left: -27px;
        top: 143px;
    }

    @media (max-width: 768px) {
        .smallcircle {
            width: 50px;
            height: 50px;
        }
    }

    .brdr {
        border: 4px solid #337ab7;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .tttp {
        top: 264px;
        left: 115px;
    }

    #brdrelementtittle {
        margin-top: -32px;
        /* text-align: center; */
        margin-left: -9px;
        /* font-size: large; */
        font-size: 7px;
    }
}

.main-cont {
    padding-top: 60px;
    padding-bottom: 50px;
}

.heading {
    text-align: center;
}

.customer-cont {
    padding: 15px;
    width: 100%;
}

.industry-cont {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
    gap: 7px;
}

.tittle {
    text-align: center;
   
}

#arp {
    margin: 5px;
    color: black;
    font-weight: bold;
}

.firstIndustrycont {
    width: 33%;
    text-align: center;
}

.firstIndustrycont img {
    width: 100%;
    height: 267px;
    padding: 10px;
}

@media(max-width:768px) {
    .industry-cont {
        display: block;
    }

    .tittle {
        width: 100%;
        text-align: initial;
    }

    .firstIndustrycont {
        width: 100%;
    }

}

.lowerbanner {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
}

@media(max-width:767px) {
    .lowerbanner {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item img {

        height: 300px !important;
    }
}

@media(max-width:767px) {

    .header-carousel .owl-nav {
        display: none;
    }

    .header-carousel .owl-dots {
        display: none;
    }

    .responsive {
        height: 300px;
    }
}
.ab-count{
    width: 85%;
    margin: auto;
   
}
.abt-cont{
    width:85%;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}
.abt-img{
    width: 48%;
    margin-bottom: 40px;
}
.abt-img img{
    width: 100%;
}
.about-text{
    width: 48%;
}
.ab-count ol li{
list-style: auto;
}
@media(max-width:768px){
    .abt-cont{
        display: block;
    }
    .abt-img{
        width: 100%;
    }
    .about-text{
        width:100%;
    }
}
.abt-cont img{
    width: 100%;
}
.abt-cont h3{
    text-align: center;
}
.header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }
  .fakeimg img{
    width: 100%;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {   
    float: left;
    width: 75%;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
  }
  
  /* Fake image */
  .fakeimg {
    background-color:#f4f4f4;
    width: 100%;
    padding: 20px;
  }
  
  /* Add a card effect for articles */
  .card {
     background-color: white;
     padding: 20px;
     margin-top: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }}
    .fixing{
        text-align: left;
    }
    .cust-cont{
        width: 85%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cust-box{
        width: 32%;
        border: 4px solid rgb(107, 107, 242);
        margin-bottom: 25px;
        overflow: hidden;
        cursor: pointer;
    }
    .cust-box img{
        width: 100%;
        transition: all 1s ease;
    }
    main h3{
        text-align: center;
    }
    main p{
        text-align: center;
    }
    .cust-box:hover img{
        transform: scale(1.2);
    }
    .data-ul li{
        list-style:circle;
    }
    .ene{
        color: #f36523
    }
    .mai{
        color: #0000fe;
    }
    .pur{
        color: #898989;
    }
    .ener{
        color: #45f30a;
    }
