@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');

body {
    font-family: 'Nunito Sans';
    font-family: "Montserrat", sans-serif;
}

::selection {
    color: var(--light-color);
    background-color: var(--third-color);
}

:root {
    --primary-color: #e38e00;
    --secondary-color: #2e2e2e;
    --third-color: #008dd2;
    --dark-color: #000;
    --light-color: #fff;
}

a {
    text-decoration: none;
}

p {
    color: var(--dark-color);
}

ul {
    list-style: none;
}

.title-heading1 span {
    color: var(--light-color);
    background-color: #00b1ea;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.title-heading1 h4 {
    font-weight: 700;
    font-size: 35px;
    position: relative;
    z-index: -1;
        font-family: "Marmelad", sans-serif;
}

.title-heading1 h4::before {
    position: absolute;
    content: "";
    width: 3%;
    height: 3px;
    bottom: 18px;
    left: 310px;
    background: #00b1ea;
    z-index: 0;
}

.title-heading1 h4::after {
    position: absolute;
    content: "";
    width: 5%;
    height: 3px;
    bottom: 11px;
    left: 310px;
    background: #00b1ea;
    z-index: 0;
}

/* header */

.navbar-brand img {
    width: 63% !important;
}

.navbar-collapse.show {
    background-color: #fff;
    transition: all .3s;
}

.sticky-top {
    position: sticky;
    width: 100% !important;
}
.top-head {
    background: #333;
    padding: 8px 61px;
}
.top-head p {
    margin-bottom: 0px;
    color: #fff;
    font-family: "Marmelad", sans-serif;
}
ul.tphd {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 0px;
    gap: 38px;
    color: #fff;
    font-family: "Marmelad", sans-serif;
}

.fixed-header {
    background-color: var(--light-color);
    transition: all .3s;
}

.header {
    padding: 0px 50px;
}

.collapse .navbar-nav .nav-item {
    padding: 10px 23px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 17px;
    z-index: 0;
    margin: 0 10px;
    padding: 0 !important;
    position: relative;
    font-family: "Marmelad", sans-serif;
}

.navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 9;
    opacity: 0;
    transition: all 0.1s;
}

.navbar-nav .nav-item:hover .nav-link::before {
    opacity: 1;
    width: 100%;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--primary-color);
}

.header .dropdown-menu {
    box-shadow: 0px 0px 5px 0px rgb(200, 200, 200);
    padding: 0;
    border: 0;
    border-radius: 10px;
    position: absolute;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 9;
    overflow: hidden;
}

.header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.header .dropdown-item.active {
    background-color: #fff;
}

.navbar-nav .dropdown-divider {
    margin: 0 !important;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0 !important;
}

.dropdown-menu .dropdown-item {
    padding: 7px 15px;
    transition: all .3s;
    font-family: "Marmelad", sans-serif;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.navbar-toggler {
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 6px 20px;
}

.fixed-header .navbar-toggler {
    background: var(--primary-color);
}

.home-slider .arrow-left,
.home-slider .arrow-right {
    transition: all 0.2s ease-In;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--light-color);
    border: 1px solid var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 90%;
    transform: translatey(-50%);
    z-index: 1;
    box-shadow: 0px 4px 4px 0px #000000ad;
}

.home-slider .arrow-left {
    left: 5%;
}

.home-slider .arrow-right {
    right: 87%;
}

.theme-btn a {
    display: inline-block;
    color: var(--light-color);
    background: #ef7f1a;
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.theme-btn a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: var(--dark-color);
    z-index: -1;
    transition: all .5s;
}

.theme-btn a:hover::before {
    width: 100%;
    opacity: 1;
}

/* end header */

/* about */

.about-section {
    padding: 50px;
}

.about-section .about-img img {
    width: 100%;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
}

.about-section .about-text span {
    color: var(--light-color);
    background-color: #00b1ea;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.about-section .about-text h1 {
    color: var(--dark-color);
    font-size: 45px;
    font-weight: 700;
    font-family: "Marmelad", sans-serif;
}

.about-section .about-text h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.about-section .about-text ul li {
    position: relative;
    padding-left: 29px;
}

.about-section .about-text ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

/* end about */

/* feature */

.feature-section {
    padding: 50px;
    background-image: url(../images/why-bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.feature-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: #00000070;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.feature-heading {
    text-align: center;
}

.feature-heading span {
    color: #ffffff;
    background-color: #00b1ea;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 21px;
    border-radius: 5px;
   
}

.feature-heading h3 {
    color: var(--light-color);
    font-weight: 700;
    font-size: 45px;
font-family: "Marmelad", sans-serif;
}

.feature-heading p {
    color: var(--light-color);
}

.feature-section .feture-inner {
    background-color: #ffffffdb;
    text-align: center;
    padding: 2.1875rem 1.875rem;
    border-radius: 20px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.158);
    transition: all .5s;
    border: 5px solid #e0b187;
}

.feature-section .feture-inner img {
    width: 80px;
}

.feature-section .feture-inner h5 {
    color: #000000;
    font-weight: 600;
    margin: 25px 0px 0px 0px;
    font-family: "Marmelad", sans-serif;
}

.feature-section .feture-inner a {
    display: inline-block;
    margin-top: 20px;
    color: #01b1eb;
    background: #000000;
    width: 40px;
    height: 40px;
    line-height: 37px;
    border-radius: 23px;
}

.feature-section .feture-inner a svg {
    color: var(--dark-color);
}

.feature-section .feture-inner:hover {
    margin-top: -26px;
}

.feature-section .feture-inner:hover a svg {
    -webkit-animation: animate_icon_right 250ms ease forwards;
    animation: animate_icon_right 250ms ease forwards;
    color: var(--primary-color);
}


@keyframes animate_icon_right {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);

        opacity: 0;
    }

    51% {
        opacity: 1;
    }
}

/* end feature */

/* mission-vision */

.mission-vision {
    padding: 50px;
    background: #ccc;
    margin: 29px 100px 75px;
    border-radius: 59px;
}

.mission-vision .mission-vision-text h3 {
    color: var(--dark-color);
    font-size: 40px;
    font-weight: 700;
}

.mission-vision .mission-vision-text span {
    color: #040404;
    /* background-color: var(--primary-color); */
    /* text-transform: uppercase; */
    font-size: 31px;
    font-weight: 700;
    /* padding: 3px 8px; */
    /* border: 2px solid #ce1e1ecb; */
    border-radius: 5px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    /* z-index: -1; */
    font-family: "Marmelad", sans-serif;
}
.mission-vision-text p {
    font-family: "Marmelad", sans-serif;
    font-size: 17px;
}

.mission-vision .mission-vision-text span::before {
    position: absolute;
    content: "";
    width: 8%;
    height: 3px;
    bottom: 13px;
    right: -17px;
    background: #00b1ea;
    z-index: 0;
}

.mission-vision .mission-vision-text span::after {
    position: absolute;
    content: "";
    width: 15%;
    height: 3px;
    bottom: 7px;
    right: -27px;
    background: #00b1ea;
    z-index: 0;
}

.mission-vision .mission-vision-img img {
    width: 100%;
    max-width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 30px;
}

.mission-vision .mission-vision-text ul li {
    position: relative;
    padding-left: 29px;
}

.mission-vision .mission-vision-text ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

/* end mission-vision */

/* projects */

.projects {
    padding: 50px 0 25px 0;
}

.project-carousel {
    width: 100%;
    margin: 0px auto;
}

.projects .slick-slide {
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    padding: 0px 0px;
    margin: 0 10px;
}


.projects .slick-slide img {
    width: 100%;
    max-width: 100%;
    transition: all 0.4s ease-in-out;
}

.projects .slick-center {
    transform: scale(1);
}

.projects .slick-dots li button {
    display: none;
}

.projects .arrow-left,
.projects .arrow-right {
    transition: all 0.2s ease-In;
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--third-color);
    border: 1px solid var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: -85px;
    transform: translatey(-50%);
    z-index: 1;
    box-shadow: 0px 4px 4px 0px #000000ad;
}

.projects .arrow-left {
    left: 45%;
}

.projects .arrow-right {
    right: 45%;
}

.projects .inner img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-heading span {
    color: var(--light-color);
    background-color: #00b1ea;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
    
}

.project-heading h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
    font-family: "Marmelad", sans-serif;
}

.projects .inner {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    border: 1px solid #ccc;
}

.projects .inner img {

    overflow: hidden;
}

.projects .inner h3 {
    opacity: 0;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 44px;
    color: var(--light-color);
    font-size: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all .3s;
    margin: 0px auto;
}

.projects .inner:hover h3 {
    opacity: 1;
    background-color: #02b1ea;
}


/* projects */

/* counter */

.counter-sec {
    padding: 50px;
}

.counter-section {
    padding: 70px;
    background-image: url(../images/counter-bg.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
}

.counter-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ec;
    z-index: -1;
}

.counter-section .inner-counter {
    text-align: center;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 20px;
    /* border-bottom: 3px solid #fff; */
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.counter-section .inner-counter::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2%;
    background-color: #fff;
    z-index: -1;
    transition: all .3s;
}

.counter-section .inner-counter:hover::before {
    height: 100%;
    opacity: 1;
}

.counter-section .title-heading1 h3 {
    color: var(--light-color);
    font-weight: 700;
    font-size: 45px;
}

.counter-section .inner-counter h2 {
    color: var(--light-color);
    transition: all .5s;
    font-weight: 800;
    font-size: 3.5rem;
    transition: all .3s;
}

.counter-section .inner-counter p {
    color: #fff;
    margin: 0;
    transition: all .3s;
    font-weight: 600;
    font-size: 20px;
    transition: all .3s;
}

.counter-section .inner-counter:hover h2 {
    color: var(--third-color);
}

.counter-section .inner-counter:hover p {
    color: var(--dark-color);
}

.counter-section .inner-counter img {
    transition: all .3s;
}

.counter-section .inner-counter:hover img {
    -webkit-filter: invert(40%) grayscale(100%) brightness(0%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(1);
    filter: grayscale(100%) brightness(0%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(1);
}

.counter-sec .theme-btn {
    float: right;
}

.counter-sec .theme-btn a {
    display: inline-block;
    color: var(--dark-color);
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .3s;
}

.counter-sec .theme-btn a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all .5s;
}

.counter-sec .theme-btn a:hover {
    color: var(--light-color);
}

.counter-sec .theme-btn a:hover::before {
    width: 100%;
    opacity: 1;
}

/* end counter */

/* blog */

.blog {
    padding: 50px;
}

.blog .theme-btn {
    float: right;
}

.blog .blog-inner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 27px #b1b1b178;
    padding: 15px 15px 30px 15px;
    margin-top: 15px;
}

.blog .blog-inner img {
    border-radius: 15px;
    transition: all .6s;
}

.blog .blog-inner:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.blog .blog-inner h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    font-family: "Marmelad", sans-serif;
}
.blog .blog-inner p {
    font-family: "Marmelad", sans-serif;
}

.blog .blog-btn a {
    display: inline-block;
    color: var(--light-color);
    background: #ef7f1a;
    padding: 10px 15px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    z-index: 0;
    overflow: hidden;
   
}

.blog .blog-btn a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: var(--dark-color);
    z-index: -1;
    transition: all .5s;
}

.blog .blog-inner:hover .blog-btn a::before {
    width: 100%;
    opacity: 1;
}

.blog .blog-btn a svg {
    padding-left: 8px;
}

.blog .inner-right {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 27px #b1b1b178;
    padding: 15px 15px 15px 15px;
    margin-top: 15px;
}

.right-blog {
    display: flex;
    margin-bottom: 15px;
}

.right-blog .img-sec img {
    border-radius: 6px;
    margin-right: 10px;
}

.right-blog .text h2 {
    font-size: 15px;
    font-weight: 700;
        font-family: "Marmelad", sans-serif;
}

.right-blog .text p {
    margin: 0;
    font-size: 13px;
        font-family: "Marmelad", sans-serif;
}

/* end blog */

/* footer */
.footer {
    background: rgb(237 237 237);
    padding: 70px 59px 21px 74px;
    background-image: url(../images/footer-bg.jpg);
    background-position: center;
        border-top: 2px solid #9d900b;
}
.footer-before {
    background: rgb(221 221 221);
    padding: 20px 50px 20px 50px;
}

.footer-before .inner h6 {
    font-weight: 700;
}

.footer-logo-sec img {
    width: 200px;
}

.footer-logo-sec p {
    color: #1c1c1c;
    margin-top: 15px;
    font-size: 14px;
}

.footer .social-icons a svg {
    color: #626262;
    font-size: 18px;
}


.footer .footer-links h4 {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 0;
    font-family: "Marmelad", sans-serif;
}

.footer .footer-links h4::before {
    position: absolute;
    content: "";
    width: 30%;
    height: 2px;
    background: var(--dark-color);
    background: linear-gradient(90deg, #e38e00 50%, #1c1c1c 50%);
    left: 0;
    bottom: -8px;
    z-index: -1;
}

.footer .footer-links ul {
    margin-top: 15px;
}

.footer .footer-links ul li {
    padding: 2px 0;
}

.footer .footer-links ul li a {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 15px;
    font-family: "Marmelad", sans-serif;
}
.footer .contact-info .cont-inner {
    position: relative;
    padding-left: 0px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
}
.footer-before .inner {
    position: relative;
    padding-left: 45px;
}

.footer-before .inner.first,
.footer-before .inner.second {
    border-right: 1px solid #eeeeee;
}


.footer .contact-info .cont-inner svg {
    position: absolute;
    left: 0;
}

.footer-before .inner svg {
    position: absolute;
    left: 0;
    color: #fff;
    background: var(--third-color);
    font-size: 11px;
    padding: 6px;
    border-radius: 8px;
    height: 23px;
    width: 23px;
}

.footer .contact-info .cont-inner p, .footer-before .inner p {
    font-size: 15px;
    font-family: "Marmelad", sans-serif;
    color: #fff;
}
.footer-copyright {
    padding-top: 20px;
    text-align: center;
    margin-top: 55px;
    border-top: 1px solid #d5d5d5;
}
.social-icons {
    margin-left: 48px;
}

.social-icons a.px-2 {
    color: #fff;
    font-size: 17px;
}

.footer-copyright p {
    color: #fff;
    margin: 0;
    font-family: "Marmelad", sans-serif;
}

#seo-links {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #d5d5d5;
}
#seo-links a {
    color: var(--dark-color);
}

/* end footer */


/* contact page */

.inner-banner.contact-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/contact-inner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.inner-banner::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(96 91 91 / 0%) 36%, rgb(66 61 61 / 0%) 100%);
    z-index: -1;
}

/*
.inner-banner::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #008cd22a;
    --webkit-clip-path: polygon(32% 70%, 80% 76%, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(32% 70%, 80% 76%, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}
*/

.inner-banner .banner-content h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
}

.inner-banner .banner-content ul {
    display: flex;
}

.inner-banner .banner-content ul li {
    padding: 0 3px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.inner-banner .banner-content ul li a {
    color: var(--primary-color);
}

.address {
    padding: 70px 50px 50px 50px;
    text-align: center;
}

.address .address-inner {
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0px 0px 28px 0px rgb(207 207 207);
}

.address .address-inner svg {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 10px;
}

.address .address-inner .text h6 {
    font-weight: 700;
}

.info-section {
    padding: 50px 50px 150px 50px;
    /* background: #f1f1f1; */
}

.contact-sec span, .contact-form-wrapper span {
    color: var(--light-color);
    background-color: #00b1ea;
    /* text-transform: uppercase; */
    font-size: 14px;
    font-weight: 500;
    padding: 3px 5px;
    border-radius: 5px;
    font-family: "Marmelad", sans-serif;
}

.contact-sec h3, .contact-form-wrapper h3 {
    font-weight: 700;
    font-size: 28px;
    font-family: "Marmelad", sans-serif;
}

.contact-sec p {
    font-family: "Marmelad", sans-serif;
}

.info-section .contact-sec .add-box {
    position: relative;
    padding-left: 67px;
    margin-bottom: 30px;
}

.info-section .contact-sec .add-box .icon-box {
    position: absolute;
    left: 0;
}

.info-section .contact-sec .add-box h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Marmelad", sans-serif;
}

.info-section .contact-sec .text {
    font-weight: 500;
    font-family: "Marmelad", sans-serif;
}

.contact-form-wrapper p {
    font-family: "Marmelad", sans-serif;
}

form.contact-form .form-control {
    display: block;
    width: 100%;
    padding: 0.875rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid #aaadaf;
    border-radius: 20px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: "Marmelad", sans-serif;
}

.info-section .contact-sec .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #e38e00;
    margin-right: 10px;
    border-radius: 50px;
}

.info-section .contact-sec .social-icons a svg {
    color: #ffffff;
    font-size: 20px;
}

form .form-btn {
    display: inline-block;
    color: var(--light-color);
    background: #00b1ea;
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    z-index: 0;
    overflow: hidden;
    font-family: "Marmelad", sans-serif;
}
.map {
    background-color: #fff9ee;
    padding: 0 50px 0px 50px;
}

.map-inner {
    overflow: hidden;
    border-radius: 50px;
    top: -100px;
    display: block;
    position: relative;
    box-shadow: 0px 0px 17px 0px #cdcdcd;
}



/* end contact page */



/* about us */

.inner-banner.about-ban {
    padding: 215px 50px;
    background-image: url(../images/1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}


.inner-banner.product-ban {
    padding: 247px 50px;
    background-image: url(../images/3.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}
.after-about {
    padding: 20px 50px 50px 50px;
}

.after-about-heading span {
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.after-about-heading h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 45px;
    text-transform: capitalize;
}

.after-about .inner {
    /* border-radius: 25px; */
    background-color: #e6e6e6;
    padding: 15px;
    /* box-shadow: 0px 0px 28px 0px rgb(207 207 207); */
    position: relative;
    z-index: 0;
    display: flex;
}

.after-about .inner::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 3%;
    height: 0;
    background-color: var(--third-color);
    z-index: -1;
    transition: all .5s;
}

.after-about .inner:hover::before {
    height: 100%;
}

.after-about .inner h6 {
    font-weight: 700;
    font-size: 18px;
    margin: 13px 0 0 0;
    padding-left: 20px;
}

.why-us {
    padding: 50px;
}

.why-us .inner-why {
    text-align: center;
    background-color: #efebea;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 2px 27px #b1b1b178;
    border: 2px solid #52c7ed;
    height: 311px;
}

.why-us .title-heading1 h3 {
        color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
    font-family: "Marmelad", sans-serif;
}

.why-us .inner-why h4 {
    color: #000000;
    font-weight: 600;
    margin: 25px 0px 0px 0px;
    font-family: "Marmelad", sans-serif;
    font-size: 1.25rem;
}
.why-us .inner-why img {
    width: 80px;
}

.why-us .inner-why p {
    margin: 12px 0px;
    font-family: "Marmelad", sans-serif;
}


/* end about us */


/* quality */

.quality {
    padding: 50px;
}

.inner-banner.quality-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/quality.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.quality .quality-heading div {
    display: inline-block;
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.quality .quality-heading h1 {
    color: var(--dark-color);
    font-size: 46px;
    font-weight: 800;
    text-transform: capitalize;
}

.quality .quality-heading h1 span {
    color: var(--third-color);
    text-transform: uppercase;
}

.quality .quality-content {
    padding: 20px 0px 20px 40px;
}

.quality .quality-content ul li {
    position: relative;
    padding-left: 29px;
}

.quality .quality-content ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

.after-quality {
    background-image: url(../images/quality-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 500px;
    padding: 0px 50px 50px 50px;
}

.after-quality .after-quality-content {
    background-color: #ffffffc7;
    padding: 50px 20px;
    text-align: center;
}

.after-quality .after-quality-content span {
    display: inline-block;
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.after-quality .after-quality-content h1 {
    color: var(--dark-color);
    font-size: 33px;
    font-weight: 800;
    text-transform: capitalize;
}

.after-quality .after-quality-content h1 strong {
    color: var(--third-color);
}

/* end quality */


/* certificate */

.certificate {
    padding: 50px;
}

.inner-banner.certificate-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/certificate.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.certificate .certificate-text span {
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.certificate .certificate-text h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
}

.certificate-img {
    box-shadow: 0px 3px 12px 0px rgb(94 94 94 / 51%);
}

/* end certificate */

/* gallery */

.gallery {
    padding: 50px;
}

.inner-banner.gallery-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/gallery-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.gallery .gallery-text span {
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.gallery .gallery-text h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
}

.gallery-img {
    box-shadow: 0px 3px 12px 0px rgb(94 94 94 / 51%);
}

/* end gallery */

/* client */

.client {
    padding: 50px;
}

.inner-banner.client-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/client.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.client .client-text span {
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.client .client-text h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.client .client-inner {
    position: relative;
    z-index: 9;
    background-color: var(--light-color);
    display: flex;
}

.client .client-inner .text::before {
    content: "";
    position: absolute;
    width: 1%;
    height: 100%;
    left: 0px;
    top: 0;
    background-color: var(--primary-color);
    z-index: 0;
}

.client .client-inner svg {
    /* position: absolute; */
    /* left: 0; */
    color: var(--light-color);
    background-color: var(--primary-color);
    height: 20px;
    width: 20px;
    padding: 10px;
    border-radius: 30px;
    z-index: -1;
    margin-right: 10px;
}

.client .client-inner .text {
    position: relative;
    z-index: 0;
    padding-left: 20px;
    background-color: var(--light-color);
    transition: all .3s;
}

.client .client-inner:hover .text {
    margin-left: 10px;
}

.client .client-inner .text h6 {
    font-weight: 700;
}

/* end client */


/* service */

.inner-banner.service-ban {
    padding: 170px 50px 130px 50px;
    background-image: url(../images/service-banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    --webkit-clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 100% 79%, 74% 100%, 0 81%);
}

.services {
    padding: 50px;
}

.service-heading div {
    display: inline-block;
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.service-heading h1 {
    color: var(--dark-color);
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.service-heading h1 span {
    color: var(--third-color);
    text-transform: uppercase;
}

.services .year {
    text-align: right;
}

.services .year h6 {
    color: var(--third-color);
    font-weight: 600;
    font-size: 50px;
}

.services .year p {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.services .service-img {
    position: relative;
    z-index: 0;
}

.services .service-img::before {
    position: absolute;
    content: "";
    width: 80%;
    height: 50%;
    right: 12%;
    top: 10%;
    border-radius: 50px;
    border: 2px solid var(--third-color);
    z-index: -1;
}

.services .service-content ul li {
    position: relative;
    padding-left: 29px;
}

.services .service-content ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

.discover-services {
    padding: 50px;
}

.discover-services .service-box {
    padding: 20px;
    transition: all 0.3s;
    border-radius: 30px;
    transition: all 0.3s;
}

.discover-services .service-box.active {
    background: var(--third-color);
    background: linear-gradient(180deg, #008dd2 0%, #5eb5e1 100%);
    /* text-align: center; */
    border-radius: 30px;
    box-shadow: 0px 0px 15px 0px rgb(204, 204, 204);
}

.discover-services .service-box.active h5 {
    color: var(--light-color);
}

.discover-services .service-box.active p {
    color: var(--light-color);
}

.discover-services .service-box.active img {
    background-color: var(--light-color);
}

.discover-services .service-box img {
    background-color: var(--third-color);
    border-radius: 50%;
    margin-bottom: 20px;
    width: 80px;
}

.discover-services .service-box.active:hover {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transition: all 0.3s;
}

.discover-services .service-box.active:hover h5,
.discover-services .service-box.active:hover p {
    color: var(--dark-color);
}

.discover-services .service-box:hover h5,
.discover-services .service-box:hover p {
    color: var(--light-color);
}

.discover-services .service-box.active a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--third-color);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.discover-services .service-box a {
    display: inline-block;
    background-color: var(--third-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.discover-services .service-box:hover {
    background: linear-gradient(180deg, #008dd2 0%, #5eb5e1 100%);
    box-shadow: 0px 0px 15px 0px rgb(204, 204, 204);
    transition: all 0.3s;
}

.flip-card {
    height: 100px;
    width: 100px;
}

.flip-card-inner {
    position: relative;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    z-index: 0;
}

.flip-card-back {
    z-index: -1;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.discover-services .service-box.active .flip-card-back {
    background-color: #0192ac;
    transform: rotateY(180deg);
}

.discover-services .service-box .flip-card-back {
    background-color: #0192ac;
    transform: rotateY(180deg);
}

.service-box:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.discover-services .service-box.active .flip-card-back img {
    background: var(--third-color);
}

.discover-services .service-box .flip-card-back img {
    background-color: var(--light-color);
}

.discover-services .service-box h5 {
    font-size: 16px;
    font-weight: 800;
}

.discover-services .service-box p {
    margin: 0;
}

.sectors {
    padding: 50px;
}

.sectors-heading span {
    display: inline-block;
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.sectors-heading h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

.sectors .sector-box-1,
.sectors .sector-box-2,
.sectors .sector-box-3,
.sectors .sector-box-4,
.sectors .sector-box-5 {
    height: 100px;
}

.sectors .sector-box {
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0px 2px 14px 0px #c3c3c3;
    border-radius: 12px;
    overflow: hidden;
}

.sectors .sector-box.sector-1 {
    background-image: url(../images/plants/2.jpg);
    width: 100%;
    max-width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectors .sector-box.sector-2 {
    background-image: url(../images/plants/1.jpg);
    width: 100%;
    max-width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectors .sector-box.sector-3 {
    background-image: url(../images/plants/3.jpg);
    width: 100%;
    max-width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectors .sector-box.sector-4 {
    background-image: url(../images/plants/4.jpg);
    width: 100%;
    max-width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectors .sector-box.sector-5 {
    background-image: url(../images/plants/5.jpg);
    width: 100%;
    max-width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectors .sector-box h5 {
    width: 100%;
    text-align-last: center;
    background: #fff;
    margin: 0;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 800;
}


/* end service */



/* project page */

.description-section {
    padding: 50px;
}

.description-section .decs-img img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.description-section .decs-content span {
    color: var(--light-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.description-section .decs-content h1 {
    color: var(--dark-color);
    font-size: 40px;
    font-weight: 700;
}

.description-section .decs-content h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.description-section .decs-content ul li {
    position: relative;
    padding-left: 29px;
}

.description-section .decs-content ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}



tbody,
td,
tfoot,
th,
thead,
tr {
    padding: 3px !important;
}

th,
thead {
    font-size: 14px;
}

td {
    font-size: 13px;
}

/* end project page */


#chat-icon {
    bottom: 25px;
    left: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #00000026;
}

section.feature {
    position: relative;
    padding: 49px 0px 0px;
}

section.feature ul {
    display: flex;
    gap: 7px;
    background: #e9e9e9;
    padding: 33px 43px 33px;
    height: 198px;
    border-radius: 64px;
    margin-top: 0px;
    box-shadow: 0px 0px 10px #757070;
}
section.feature ul li {
    display: grid;
    margin: 0px auto;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #000;
    font-weight: 500;
    font-family: "Marmelad", sans-serif;
}
section.feature ul li::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 116px;
    background: #ccc8c4;
    right: -39px;
    top: 12px;
}
section.feature ul li:last-child::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 100px;
    background: #333;
    right: -28px;
    top: 0px;
}

section.feature p {
    padding: 0px 185px;
    font-family: "Marmelad", sans-serif;
}



section.feature ul li img {
    margin: 0px auto;
    width: 67px;
}
.pdimg {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding-bottom: 18px;
}
.pdimg p {
    text-align: center;
    font-family: "Marmelad", sans-serif;
    font-weight: 600;
}
.pdimg img.img-fluid {
    padding: 9px;
    border-radius: 24px;
}

.pdimg span {
    display: block;
    text-align: center;
    width: 133px;
    padding: 7px;
    margin: 0px auto;
    background: #ef7f1a;
    color: #fff;
    font-family: "Marmelad", sans-serif;
    border-radius: 32px;
}

.pdimg span:hover{background: #000;
color: #fff;
cursor: pointer;}

.product {
    padding: 50px 52px 20px;
}
.product-page {
    padding: 35px 52px 70px;
}

.row.row-pd {
    margin-top: 27px;
}

.stripsection{background-size: cover;
        background-position: top;}



/* strip */


.stripsection {
    padding: 50px;
}
.stripsection.about-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
}

.stripsection .about-text span {
    color: var(--light-color);
    background-color: #00b1ea;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.stripsection .about-text h1 {
    color: var(--dark-color);
    font-size: 42px;
    font-weight: 700;
    font-family: "Marmelad", sans-serif;
}
.about-text p {
    font-family: "Marmelad", sans-serif;
}

.stripsection .about-text h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.stripsection .about-text ul li {
    position: relative;
    padding-left: 29px;
}

.stripsection .about-text ul li svg {
    color: #fff;
    background: var(--primary-color);
    padding: 4px;
    font-size: 8px;
    border-radius: 30px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

/* end strip */


.about-text {
    position: relative;
}
.about-text img.img-fluid {
    width: 238px;
    position: absolute;
    bottom: -122px;
    right: 0px;
    rotate: -130deg;
}

.info-section .contact-sec .add-box .icon-box i.fa {
    font-size: 24px;
    background: #00b1ea;
    width: 47px;
    height: 47px;
    /* text-align: center; */
    padding: 25px;
    color: #fff;
    border-radius: 30px;
    /* padding: 21px; */
    display: flex;
    align-items: center;
    justify-content: center;
}


.map-iframe{margin-top: 23px;}