@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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: var(--primary-color);
    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;
}

.title-heading1 h4::before {
    position: absolute;
    content: "";
    width: 3%;
    height: 3px;
    bottom: 18px;
    left: 310px;
    background: var(--primary-color);
    z-index: 0;
}

.title-heading1 h4::after {
    position: absolute;
    content: "";
    width: 5%;
    height: 3px;
    bottom: 11px;
    left: 310px;
    background: var(--primary-color);
    z-index: 0;
}

/* header */

/* .navbar-brand img {
    width: 300px !important;
} */

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

.sticky-top {
    position: fixed;
    width: 100% !important;
}

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

.header {
    /* padding: 0px 50px; */
}

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

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1rem;
    z-index: 0;
    margin: 0 10px;
    padding: 0 !important;
    position: relative;
}

.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; */
}

/* @media (min-width: 992px) {

    .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: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;
}

.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: var(--primary-color);
    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: var(--primary-color);
    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: 40px;
    font-weight: 700;
}

.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/1.jpg);
    background-position: bottom 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: #2d2e2bda;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.feature-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;
}

.feature-heading h3 {
    color: var(--light-color);
    font-weight: 700;
    font-size: 45px;
}

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

.feature-section .feture-inner {
    background-color: #ffffff;
    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;
}

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

.feature-section .feture-inner h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin: 25px 0px 0px 0px;
}

.feature-section .feture-inner a {
    display: inline-block;
    margin-top: 20px;
}

.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;
}

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

.mission-vision .mission-vision-text span {
    color: var(--dark-color);
    /* background-color: var(--primary-color); */
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    /* padding: 3px 8px; */
    /* border: 2px solid #ce1e1ecb; */
    border-radius: 5px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: -1;
}

.mission-vision .mission-vision-text span::before {
    position: absolute;
    content: "";
    width: 8%;
    height: 3px;
    bottom: 13px;
    right: -17px;
    background: var(--primary-color);
    z-index: 0;
}

.mission-vision .mission-vision-text span::after {
    position: absolute;
    content: "";
    width: 15%;
    height: 3px;
    bottom: 7px;
    right: -27px;
    background: var(--primary-color);
    z-index: 0;
}

.mission-vision .mission-vision-img img {
    width: 100%;
    max-width: 100%;
    height: 600px;
    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 120px 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: 350px;
    object-fit: cover;
}

.project-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;
}

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

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

.projects .inner img {

    overflow: hidden;
}

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

.projects .inner:hover h3 {
    opacity: 1;
    background-color: var(--primary-color);
}


/* 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;
}

.blog .blog-btn a {
    display: inline-block;
    color: var(--light-color);
    background: var(--primary-color);
    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;
}

.right-blog .text p {
    margin: 0;
    font-size: 13px;
}

/* end blog */

/* footer */

.footer {
    background: rgb(237 237 237);
    padding: 70px 50px 20px 50px;
}

.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: #1c1c1c;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 0;
}

.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: var(--dark-color);
    text-transform: capitalize;
    font-size: 14px;
}

.footer .contact-info .cont-inner {
    position: relative;
    padding-left: 25px;
    margin-top: 20px;
}

.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: #e38e00;
    font-size: 11px;
    padding: 6px;
    border-radius: 8px;
    height: 23px;
    width: 23px;
}

.footer .contact-info .cont-inner p,
.footer-before .inner p {
    font-size: 14px;
}

.footer-copyright {
    padding-top: 20px;
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #d5d5d5;
}

.footer-copyright p {
    color: var(--dark-color);
    margin: 0;
}

#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(247, 247, 247) 36%, rgba(255, 255, 255, 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: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    border-radius: 5px;
}

.contact-sec h3,
.contact-form-wrapper h3 {
    font-weight: 700;
    font-size: 35px;
}

.info-section .contact-sec .add-box {
    position: relative;
    padding-left: 80px;
    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;
}

.info-section .contact-sec .text {
    font-weight: 500;
}

.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: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.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: 170px 50px 130px 50px;
    background-image: url(../images/about-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%);
}

.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: var(--light-color);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 2px 27px #b1b1b178;
}

.why-us .title-heading1 h3 {
    color: var(--dark-color);
    font-size: 40px;
    font-weight: 700;
}

.why-us .inner-why h4 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 22px;
    margin: 25px 0px 0px 0px;
}

.why-us .inner-why p {
    margin: 0;
}


/* 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;
}

.exhibition-tbl {
    border: 1px solid #bfbfbf;
    text-align: center;
    margin-top: 35px;
    -webkit-box-shadow: 6px 7px 13px -14px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 6px 7px 13px -14px rgba(0,0,0,0.75);
    box-shadow: 6px 7px 13px -14px rgba(0, 0, 0, 0.75);
    width: 70%;
}
.exhb-tr {
    background: #e6e7e8;
    color: black;
    font-weight: 500;
}
.exhibition-tbl.table thead > tr > th, .exhibition-tbl.table tbody > tr > th, .exhibition-tbl.table tfoot > tr > th, .exhibition-tbl.table thead > tr > td, .exhibition-tbl.table tbody > tr > td, .exhibition-tbl.table tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border: 1px solid #dddddd;
    text-align: left;
        padding: 12px ! important;
}



/* =========================================================
   CABLE TRAY SUB MENU
   UNIQUE CLASSES ONLY
========================================================= */

.ct-submenu-item {
    position: relative !important;
}


/* Cable Tray row */
.ct-submenu-row {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}


/* Cable Tray title */
.ct-submenu-title {
    flex: 1 !important;
    padding-right: 40px !important;
    cursor: default !important;
}


/* Arrow button */
.ct-submenu-trigger {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;

    width: 42px !important;
    height: 100% !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;

    z-index: 20 !important;
}


/* Arrow */
.ct-submenu-arrow {
    width: 8px !important;
    height: 8px !important;

    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;

    transform: rotate(-45deg);

    transition: transform 0.25s ease;
}


/* Arrow open */
.ct-submenu-item.ct-submenu-open
.ct-submenu-arrow {
    transform: rotate(45deg);
}


/* =========================================================
   DESKTOP SUB MENU
========================================================= */

@media (min-width: 992px) {

    /*
       Override the parent's overflow:hidden
       ONLY for this Products dropdown.
    */

    .ct-submenu-item {
        overflow: visible !important;
    }


    .ct-submenu-list {
        position: absolute !important;

        top: 0 !important;
        left: calc(100% + 1px) !important;

        width: 270px !important;
        min-width: 270px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: none !important;

        list-style: none !important;

        background: #ffffff !important;

        border: 0 !important;
        border-radius: 0 8px 8px 8px !important;

        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;

        z-index: 999999 !important;

        overflow: visible !important;
    }


    /* OPEN SUBMENU */
    .ct-submenu-item.ct-submenu-open
    > .ct-submenu-list {
        display: block !important;
    }


    /* Submenu links */
    .ct-submenu-link {
        display: block !important;

        width: 100% !important;

        padding: 10px 15px !important;

        white-space: normal !important;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991.98px) {

    .ct-submenu-item {
        position: relative !important;
        width: 100% !important;
    }


    .ct-submenu-row {
        width: 100% !important;
    }


    .ct-submenu-list {
        position: static !important;

        width: 100% !important;
        min-width: 100% !important;

        margin: 0 !important;
        padding: 0 0 0 15px !important;

        display: none !important;

        list-style: none !important;

        background: transparent !important;

        border: 0 !important;
        box-shadow: none !important;
    }


    /* OPEN */
    .ct-submenu-item.ct-submenu-open
    > .ct-submenu-list {
        display: block !important;
    }


    .ct-submenu-link {
        padding: 9px 15px !important;
        white-space: normal !important;
    }

}