/* Root css */
* {
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol,
li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {f
    font-family: 'Eurostile';
}

@font-face {
    font-family: 'Eurostile';
    src: url('../font/eurostile/Eurostile-DemiOblique.woff2') format('woff2'),
        url('../font/eurostile/Eurostile-DemiOblique.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../font/lato/Lato-Medium.woff2') format('woff2'),
        url('../font/lato/Lato-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../font/lato/Lato-MediumItalic.woff2') format('woff2'),
        url('../font/lato/Lato-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../font/lato/Lato-Semibold.woff2') format('woff2'),
        url('../font/lato/Lato-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../font/lato/Lato-SemiboldItalic.woff2') format('woff2'),
        url('../font/lato/Lato-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
body{
    overflow-x: hidden;
}
section{
    overflow: hidden;
}
a {
    text-decoration: none;
    cursor: pointer;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}

:root {
    --dark-blue: #003840;
    --lime-green: #E1EA2F;
    --blue-black: #212121;
    --green-grey: #52777C;
    --grey: #7E8988;
    --light-grey: #D9D9D9;
    --black: #000;
    --white: #fff;
    --fs-80: 80px;
    --lh-80: 80px;
    --fs-16: 16px;
    --lh-20: 20px;
    --fs-45: 45px;
    --lh-50: 50px;
    --fs-20: 20px;
    --lh-26: 26px;
    --fs-30: 30px;
    --lh-30: 30px;
    --fs-40: 40px;
    --fs-18: 18px;
    --lh-32: 32px;
    --lh-29: 29px;
    --fs-22: 22px;
    --lh-28: 28px;
    --fs-14: 14px;
    --lh-21: 21px;
    --lh-50: 50px;
}

.default-p {
    font-size: var(--fs-20);
    line-height: var(--lh-26);
    color: black;
    font-weight: 400;
    margin: 0;
}

.white-p-text {
    color: var(--white);
}

.br-0 {
    border-radius: 0;
}

/* Header start */
header.custom-header {
    height: 100px;
    position: sticky;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 9999999;
    background: white;
    top: 0;
}

.toggle-menu {
    display: none;
}

span.toogle-butn i {
    font-size: 20px;
}

.header-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navbar .navigation {
    display: flex;
    align-items: center;
    /* padding: 20px 0; */
}

.our-menu ul.menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 20px 15px 0;
    border-right: 1px solid black;
}

ul.menu-list li a {
    font-size: var(--fs-20);
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
    padding-bottom: 4px;
    position: relative;
}

.icon-block {
    padding-left: 20px;
    display: flex;
    gap: 14px;
}

.current-menu-item a {
    position: relative;
}

li.menu-item.current-menu-item a::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 57px;
    background-color: var(--dark-blue);
}

.menu-item a::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 0px;
    background-color: var(--dark-blue);
    transition: 0.3s ease-in;
}

.menu-item a:hover::after {
    width: 57px;
}

.header-blue-box {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    max-width: 508px;
    width: 100%;
    height: 100%;
    background-size: cover;
}

span.close-header {
    position: absolute;
    right: 0;
    top: 13px;
    font-size: 15px;
    padding-right: 29px;
}

span.close-header svg {
    height: 16px;
    width: 16px;
}

/* footer */
.footer-content {
    display: flex;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 72px;
    padding-bottom: 32px;
}

.logo-block .address p {
    font-size: var(--fs-18);
    line-height: var(--lh-30);
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

.quick-links h3 {
    color: var(--white);
    font-size: var(--fs-18);
    line-height: var(--lh-32);
    font-weight: 500;
}

ul.footer-list li a {
    color: var(--white);
    font-size: var(--fs-18);
    line-height: var(--lh-29);
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
}

li.menu-item span {
    padding-right: 20px;
}

ul.footer-list.contact-link li {
    padding-bottom: 13px;
    ;
}

.footer-social-links {
    padding-top: 25px;
}

.copyright p {
    color: var(--white);
    font-size: var(--fs-18);
    line-height: var(--lh-28);
    font-weight: 400;
    margin: 0;
}

.copyright p a {
    color: var(--white);
}

.copyright {
    text-align: center;
    border-top: 1px solid white;
    padding: 25px 0;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.swiper-slide.banner-slides {
    position: relative;
    height: 850px;
    background-size: cover;
}

.slider-content {
    position: absolute;
    top: 47%;
    z-index: 3;
    max-width: 728px;
    width: 100%;
    padding: 40px 0 40px 30px;
    transform: translateY(-47%);
    border-left: 10px solid var(--lime-green);
    margin-left: 88px;
}

.slider-content h1 {
    font-size: var(--fs-80);
    line-height: var(--lh-80);
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    animation: focus-in-expand 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;

        filter: blur(12px);
        opacity: 0;
    }

    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

a.discover-butn {
    font-size: var(--fs-16);
    line-height: var(--lh-20);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    padding: 20px;
    background-color: var(--lime-green);
    display: block;
    max-width: fit-content;
    margin-top: 50px;
    transition-duration: 700ms;
    border-radius: 5px;
    text-align: center;
}

a.discover-butn:hover {
    background-color: var(--green-grey);
    color: var(--white);
}

.overlay-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

span.close-header img.img-fluid {
    height: 20px;
    width: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.section-image {
    width: 50%;
}

.abouts-us-info {
    width: 50%;
}

section.about-us-section {
    background-color: var(--dark-blue);
    position: relative;
}

.second-mian-heading {
    font-size: var(--fs-45);
    line-height: var(--lh-50);
    font-weight: 500;
    color: var(--white);
    position: relative;
    max-width: fit-content;
    width: 100%;
    margin: 0;
    padding-bottom: 14px;
}

.second-mian-heading:after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 111px;
    height: 2px;
    background-color: var(--lime-green);
}

.abouts-us-info .content p {
    color: var(--white);
    font-size: var(--fs-20);
    line-height: var(--lh-28);
    font-weight: 400;
    padding-top: 20px;
    word-wrap: break-word;
}

.abouts-us-info .content {
    max-width: 527px;
    width: 100%;
    margin-left: 146px;
}

.abouts-us-info .content a.discover-butn {
    margin-top: 40px;
    max-width: 200px;
    text-align: center;
    background-color: var(--white);
}

.abouts-us-info .content a.discover-butn:hover {
    background-color: var(--lime-green);
    color: black;
}

.section-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.union-png {
    position: absolute;
    bottom: 0;
    right: 0;
}

.second-mian-heading.dark {
    color: var(--dark-blue);
}

section.who-we-are .services-content {
    max-width: 1426px;
    width: 100%;
    margin: 0 auto;
}

.services-grid {
    gap: 46px;
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-service {
    max-width: 445px;
    width: 100%;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 50px;
    border-radius: 22px;
    transition-duration: 700ms;
    /* cursor: pointer; */
    background-color: var(--white);
    height: 100%;
}

/* .single-service:hover {
    background-color: var(--green-grey);
    color: white;
    transition: 0.5s ease-in;
}

.single-service:hover .three-main-heading {
    color: var(--white);
}

.single-service:hover .service-content p {
    color: var(--white);
} */

.single-service .image {
    max-width: fit-content;
    margin: 0 auto;
}

.service-content {
    padding-top: 40px;
    text-align: center;
}

.three-main-heading {
    font-size: var(--fs-30);
    line-height: var(--lh-30);
    font-weight: 500;
    color: var(--dark-blue);
    position: relative;
    max-width: fit-content;
    margin: 0 auto;
    padding-bottom: 10px;
}

.three-main-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 60px;
    background-color: var(--lime-green);
    position: relative;
}

.service-content p {
    font-size: var(--fs-20);
    line-height: var(--lh-26);
    color: black;
    font-weight: 400;
    padding-top: 40px;
}

section.who-we-are {
    padding: 95px 0;
    position: relative;
}

.second-mian-heading.center {
    margin: 0 auto;
    max-width: fit-content;
}

img.img-fluid.white-img {
    display: none;
}

img.img-fluid.black-img {
    display: block;
}

/* .single-service:hover img.img-fluid.black-img {
    display: none;
} */

/* .single-service:hover img.img-fluid.white-img {
    display: block;
} */

.build-pattern1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.build-pattern2 {
    position: absolute;
    bottom: -206px;
    top: auto;
    right: 0;
    z-index: -1;
}

section.build-process-section {
    background-color: var(--dark-blue);
    padding-top: 80px;
    padding-bottom: 73px;
    position: relative;
}

.main-content {
    text-align: center;
}

section.build-process-section .main-content .paragraph {
    padding: 39px 0 44px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

a.animate-butn {
    background-color: var(--white);
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    transition-duration: 700ms;
}

a.animate-butn:hover.build-process-section {
    border: 10px solid var(--lime-green);
}

/* .animate-butn:hover .build-process-section{
    border: 10px solid black;
} */
a.animate-butn:hover {
    background-color: var(--lime-green);
    color: black;
}

.main-projects-grid {
    gap: 16px;
    padding-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* section.latest-projects-section {
    margin: 0 14px;
    padding-top: 54px;
} */
section.latest-projects-section {
    margin: 0 14px;
    padding-top: 54px;
}

.single-category-info {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 15px;
    display: none;
}

.category-content {
    background: #0000006e;
    width: 100%;
    height: 100%;
    padding: 23px;
    animation: scaling 0.8s ease-in;
}

@keyframes scaling {
    0% {
        scale: 0;
    }

    100% {
        scale: 1;
    }
}

.project-category {
    position: relative;
    transition-duration: 700ms;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.category-block {
    border: 1px solid white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.project-category:hover .single-category-info {
    display: block;
}

.category-block h3 {
    font-size: var(--fs-45);
    line-height: var(--lh-50);
    font-weight: 500;
    color: var(--white);
    width: fit-content;
    margin: 0 auto;
    text-transform: capitalize;
}

.project-category img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.video-section .video-content {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* section.video-section .video-content .heading-block {
    max-width: 650px;
    width: 100%;
    position: relative;
    margin: 50px 0;
    padding: 130px 0;
} */
section.video-section .video-content .heading-block {
    max-width: 650px;
    width: 100%;
    position: relative;
    margin: 50px 0;
    padding: 130px 0;
}
.camera-union {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-block .video-div {
    position: relative;
}

.play-pause-div {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 25px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.70);
    transform: translate(-50%, -50%);
}

section.video-section {
    padding: 134px 0;
}
/* 
.heading-block a.discover-butn {
    max-width: 226px;
    width: 100%;
    background-color: var(--dark-blue);
    text-align: center;
    color: var(--white);
    transition-duration: 700ms;
} */
.heading-block a.discover-butn {
    max-width: 226px;
    width: 100%;
    background-color: var(--dark-blue);
    text-align: center;
    color: var(--white);
    transition-duration: 700ms;
    margin: 0 auto;
}

section.video-section .video-content .block-butn{
    margin-top: 30px;
}
.heading-block a.discover-butn:hover {
    background-color: var(--lime-green);
    color: black;
}

section.my-opinion {
    background-color: var(--lime-green);
    padding: 114px 0 146px 0;
    overflow: hidden;
}

section.my-opinion .content {
    display: flex;
    position: relative;
    margin-left: 87px;
}

section.my-opinion .content .image-content-block {
    max-width: 888px;
    width: 100%;
}

.form-section {
    background-color: var(--dark-blue);
    width: 100%;
    position: absolute;
    top: 86px;
    right: 0;
    padding: 58px 174px 58px 74px;
    max-width: 814px;
    z-index: 9;
    border: 9px solid var(--lime-green);
}

.form-section .form-block {
    max-width: 566px;
    width: 100%;
    padding-top: 40px;
}

.form-parent {
    width: calc(100% - 888px);
}

form .input-parent label {
    color: var(--white);
    font-size: var(--fs-14);
    line-height: var(--lh-21);
    font-family: 'Lato';
}

form .input-parent input.form-control {
    background-color: transparent;
    border-radius: 0;
    color: white;
    font-size: var(--fs-14);
    line-height: var(--lh-21);
    color: var(--white);
}

form .input-parent input.form-control:focus {
    border-color: var(--lime-green);
}

form input.discover-butn.form-btn {
    background-color: var(--white);
    border-radius: 0;
    width: 196px;
    padding: 13px 64px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 14px;
    font-weight: 500;
    border: 1px solid white;
    transition-duration: 700ms;
}

form input.discover-butn.form-btn:hover {
    background-color: var(--lime-green);
    border-color: var(--lime-green);
}

section.my-opinion .content .image-content-block p {
    max-width: 635px;
    width: 100%;
    padding-top: 40px;
}

.input-parent {
    padding-bottom: 16px;
}

section.my-opinion .content .image-content-block .image {
    height: 475px;
}

section.my-opinion .content .image-content-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-pattern {
    position: absolute;
    top: auto;
    right: -139px;
    bottom: 0;
    z-index: 10;
    width: fit-content;
}

.inverted-comos {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    padding: 33px 0 25px;
}

.testimonial-swiper-slider .slide-content p {
    line-height: 34px;
    margin: 0;
    padding-bottom: 22px;
}

.testimonial-swiper-slider .slide-content {
    display: grid;
    height: 100%;
    cursor: pointer;
}

.testimonial-slider {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.feedbacker-name h4 span {
    font-size: var(--fs-22);
    line-height: normal;
    font-weight: 500;
    color: black;
}

section.our-testimonials {
    padding: 111px 0;
}

.form-subscribe {
    max-width: 589px;
    width: 100%;
    margin-left: auto;
}

.form-subscribe .form-control {
    background-color: transparent;
    padding: 15px 19px;
    border: 1px solid var(--dark-blue);
    border-radius: 0;
    font-size: 16px;
    line-height: 21px;
}

.form-subscribe .form-control::placeholder {
    color: var(--dark-blue);
}

.form-subscribe .form-control.focus,
.form-subscribe .form-control:focus {
    z-index: 2;
    background-color: hsla(0, 0%, 100%, .8);
    box-shadow: none;
}

.form-subscribe .btn {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    height: 53px;
    width: 196px;
    border-radius: 0;
    font-size: var(--fs-16);
    line-height: normal;
    color: var(--lime-green);
    text-transform: uppercase;
}

section.our-newsletter {
    background-color: var(--lime-green);
    padding: 37px 0;
}

.newsletter-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 1245px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
}

.newsletter-content .newletter-heading h2 {
    font-size: var(--fs-45);
    line-height: var(--lh-50);
    font-weight: 500;
    margin: 0;
}

.newsletter-input {
    width: 50%;
}

.newsletter-content .newletter-heading {
    width: 50%;
}

.image-popup {
    /* position: fixed; */
    top: 0px;
    left: 0;
    display: none;
    height: 100%;
    width: 100%;
    /* background-color: #0000006e; */
    opacity: 1;
    display: none;
    z-index: 9999999;
}

.image-popup.active-popup {
    /* display: block; */
    animation: animte-drop-down 0.9s ease-in;
}

@keyframes animte-drop-down {
    0% {
        opacity: 0;
        -webkit-clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }

    100% {
        opacity: 1;
        -webkit-clip-path: polygon(0 0, 50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
        clip-path: polygon(0 0, 50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
    }
}

.modal-body {
    display: grid;
    height: 98%;
    align-items: center;
    padding: 2.5rem;
    overflow: hidden;
}

/* .modal-body.map-img {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
} */

.relative {
    position: relative;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    display: grid;
    height: 30px;
    width: 30px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    --tw-bg-opacity: 1;
    background-color: #e1ea2f8f;
    --tw-text-opacity: 1;
    color: black;
    opacity: 0.7;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    font-size: 20px;
}

.close-btn:hover {
    background-color: var(--lime-green);
}

    /* .popup-video {
        width: 100%;
        height: calc(100vh - 100px);
    } */

.popup-video video#video {
    height: 100%;
    width: 100%;
}


/* About Us */
section.inner-banner {
    /* height: 400px; */
    height: 500px;
    background-size: cover;
    display: grid;
    align-items: center;
}
/* h1.inner-banner-heading.aos-init.aos-animate {
    text-shadow: 5px 5px black;
} */
.inner-banner-heading {
    color: var(--white);
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 12px;
    font-size: var(--fs-45);
    line-height: var(--lh-50);
}

.inner-banner-heading:after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 111px;
    height: 2px;
    background-color: var(--lime-green);
}

section.why-cadco {
    background-color: var(--grey);
    padding: 61px 0;
}

section.why-cadco p {
    color: var(--white);
    text-align: center;
    padding: 24px 0 36px;
    margin: 0;
    line-height: var(--lh-30);
}

section.why-cadco a.discover-butn {
    background-color: var(--white);
    max-width: 246px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

section.why-cadco a.discover-butn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.cadco-content {
    max-width: 1038px;
    width: 100%;
    margin: 0 auto;
}

.single-partner-parent {
    background-color: var(--light-grey);
    max-width: 1660px;
    width: 100%;
    padding: 19px 0 41px;
    margin-bottom: 40px;
}

.single-partner-content {
    display: flex;
    gap: 95px;
    max-width: 1360px;
    margin-left: auto;
    align-items: center;
}

.single-partner-content .partner-info {
    max-width: 717px;
    width: 100%;
}

h3.heading3 {
    font-size: var(--fs-40);
    font-weight: 500;
    line-height: normal;
    margin: 0;
    position: relative;
    width: fit-content;
    padding-bottom: 10px;
    text-transform: capitalize;
}

h3.heading3:after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 127px;
    background-color: var(--lime-green);
}

.single-partner-content .partner-info p {
    line-height: var(--lh-30);
    padding-top: 29px;
}

.single-partner-content .image {
    max-width: 526px;
    width: 100%;
    height: 388px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.single-partner-content .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.single-partner-content .image:after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: -23px;
    width: 273px;
    height: 273px;
    background-color: var(--green-grey);
    border-radius: 10px;
    z-index: -1;
}

.partner-content {
    padding-top: 84px;
}

section.total-partners {
    padding: 112px 0 128px;
}

.single-partner-parent.left-parent {
    margin-left: auto;
}

.single-partner-content.reverse-info {
    flex-direction: row-reverse;
}

.single-partner-content.reverse-info .image:after {
    right: -23px;
    left: auto;
}

.single-partner-parent.white-parent {
    background: var(--white);
}

.single-partner-content.margin-bw {
    margin: 0;
}

.abouts-us-info a.discover-butn.w-250 {
    max-width: 250px;
}

.abouts-us-info .content.about-page {
    max-width: 704px;
}

h2.second-mian-heading.change-after:after {
    right: 45%;
}

section.my-opinion .content.charities {
    flex-direction: row-reverse;
    margin-left: 0;
    max-width: 1660px;
    margin: 0 auto;
}

.form-section.charities {
    left: 0;
    top: 65px;
    right: auto;
    background-color: var(--grey);
    border: 9px solid var(--green-grey);
    max-width: 847px;
    padding: 105px 67px 105px 70px;
    background-repeat: no-repeat;
    background-position: -31%;
}

section.my-opinion.charities {
    background-color: var(--white);
}

.form-section.charities .form-block {
    max-width: 670px;
    padding-top: 15px;
}

.form-section.charities .form-block .default-p {
    color: var(--white);
    line-height: var(--lh-28);
}

.form-section.charities .form-block a.discover-butn {
    max-width: 196px;
    margin-top: 40px;
    text-align: center;
    background-color: var(--white);
}

.form-section.charities .form-block a.discover-butn:hover {
    background-color: var(--lime-green);
    color: black;
}

.some-logos {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    padding-top: 42px;
}

.form-section.charities .second-mian-heading::after {
    right: 68%;
}

.single-partner-parent:last-child {
    margin-bottom: 0;
}

section.my-opinion .content.charities .box-pattern {
    left: -95px;
    bottom: -27px;
}

.abouts-us-info .content.community {
    max-width: 577px;
    margin-left: 83px;
}

.abouts-us-info .content.community p {
    padding-top: 0;
}


.link-info-grid {
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.links-info-content {
    max-width: 1400px;
    margin: 0 auto;
}

.link-info-grid .single-external-link {
    background-color: var(--green-grey);
    padding: 48px 33px;
    align-items: center;
    height: 100%;
}

h3.heading3.clr-white {
    color: var(--white);
}

.single-external-link h3.heading3.clr-white {
    text-align: center;
}

.single-external-link p {
    text-align: center;
    line-height: var(--lh-30);
    padding: 14px 0 27px;
}

p.see-off-link {
    padding-top: 40px;
    padding-bottom: 0;
    margin: 0;
}

p.see-off-link a {
    font-size: var(--fs-16);
    line-height: var(--lh-20);
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    transition-duration: 500ms;
    padding-bottom: 30px;
}

p.see-off-link a:hover {
    color: var(--lime-green);
    text-decoration: underline;
}

a.discover-butn.animate-butn.w-auto {
    max-width: fit-content;
    margin-top: 0;
}

section.several-link-section {
    padding: 150px 0 125px;
    position: relative;
    overflow: hidden;
}

.build-pattern1.build-pattern.connunity {
    top: -30%;
    left: -12%;
}

.build-pattern2.build-pattern.connunity {
    right: -5%;
    bottom: -18%;
}

section.my-opinion.main-form-section {
    background-color: var(--white);
}

section.my-opinion.main-form-section .form-section.form {
    position: relative;
}

.default-p.p-with {
    color: var(--white);
    line-height: var(--lh-30);
    padding-top: 20px;
    max-width: 1086px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

section.main-form-section .form-page {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

input.discover-butn.form-btn.blue-btn {
    background-color: var(--dark-blue);
    color: var(--white);
    max-width: fit-content;
    margin: 0 auto;
}

input.discover-butn.form-btn.blue-btn:hover {
    color: var(--black);
}

.input-parent.dark input.form-control {
    border: 1px solid var(--black);
}

.input-parent.dark label.form-label {
    color: var(--black);
}

section.main-form-section .form-page .forms-btn {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
}

section.main-form-section .form-page .form-block {
    padding-top: 37px;
}

section.main-form-section {
    padding: 64px 0;
}

.second-mian-heading.dark.center.form:after {
    width: 196px;
}

section.inner-banner.process-banner p {
    max-width: 1400px;
}

.all-process-steps {
    max-width: 855px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    height: 1509px;
    display: grid;
    align-items: center;
}

.steps.content {
    max-width: 618px;
    width: 100%;
    padding: 0;
}

section.our-process-start {
    background-color: var(--light-grey);
    padding: 38px 0 67px;
    position: relative;
}

.dashed-border-image {
    position: absolute;
    top: 0;
    z-index: -1;
}

.all-process-steps .our-steps:nth-child(odd) .steps.content {
    right: -7%;
}

.all-process-steps .our-steps:nth-child(even) .steps.content {
    left: -6%;
    flex-direction: row-reverse;
}

.all-process-steps .our-steps:nth-child(odd) .steps.content .steps-info h3 {
    margin-left: auto;
}

.all-process-steps .our-steps:nth-child(odd) .steps.content .steps-info p {
    text-align: right;
}

section.our-work-tabs {
    background-color: var(--dark-blue);
}

section.our-work-tabs a.discover-butn {
    margin-top: 0;
}

.tabs-button {
    display: flex;
    gap: 30px;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    padding: 36px 0;
}

li.block-butn.active a {
    background-color: var(--lime-green);
}

a.w-180-btn {
    background: white;
    padding: 20px 0px;
    display: block;
    width: 180px;
    text-align: center;
    font-size: var(--fs-22);
    line-height: var(--lh-28);
    margin: 0;
    color: black;
    font-weight: 500;
    transition-duration: 700ms;
}

a.w-180-btn:hover {
    background-color: var(--lime-green);
}

.tabs-parent {
    padding: 36px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 14px;
}

.gallery-grid .single-gallery-image {
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-grid .single-gallery-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-grid .single-gallery-image:nth-child(3) {
    grid-column: 1 / span 2
}

#lightbox {
    position: fixed;
    top: 50% !important;
    width: 100%;
    margin: 0 auto !important;
    text-align: center;
    left: 50% !important;
    transform: translate(-50%, -50%);
    max-width: fit-content !important;
}
.lb-data .lb-number {
    display: none !important;
}
.lb-nav a.lb-next {
    background-image: url(https://web.ogrelogicsolutions.com/cadco/wp-content/uploads/2025/01/next.png);
}
.lb-nav a.lb-prev {
    background-image: url(https://web.ogrelogicsolutions.com/cadco/wp-content/uploads/2025/01/prev.png);
}
.lb-closeContainer {
    position: fixed;
    top: -25px;
    right: -20px;
    background: rgba(151, 0, 0, 0.781);
    padding: 10px;
    border-radius: 50%;
    z-index: 11111 !important;
}
.lb-data .lb-close {
    background-image: url(https://web.ogrelogicsolutions.com/cadco/wp-content/uploads/2025/01/close-1.png) !important;
    width: 20px !important;
    height: 20px !important;
    background-size: contain !important;
}

/* .popup-video.popup-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.popup-video.popup-image {
    position: relative;
    transition-duration: 700ms;
    cursor: pointer;
    height: 100%;
    width: 100%;
} */

.popup-video.popup-image .single-category-info {
    display: block;
}

.gallery-img-heading h2 {
    color: var(--white);
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

a.discover-butn.w-232 {
    max-width: 232px;
    margin: 0px auto;
}

.commercial-content .default-p {
    line-height: var(--lh-30);
    padding: 20px 0 53px;
    text-align: center;
}

.commercial-content {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

section.commercial-projects {
    padding: 76px 0 105px;
}

section.inner-banner .block-butn {
    margin-top: 40px;
}

section.inner-banner.chnge-position.case-study h1:after {
    right: 20%;
}

section.our-work-tabs.case-studies {
    background-color: var(--white);
    padding-top: 10px;
}



.our-steps {
    height: 100%;
    width: 100%;
    display: grid;
    align-items: center;
    position: relative;
}

.steps.content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.steps.content {
    position: absolute;
}

.steps-image {
    width: 100%;
    max-width: 135px;
    height: 135px;
}

.steps-info p {
    padding-top: 20px;
}

.bulb-image {
    max-width: 855px;
    width: 100%;
    margin: 0 auto;
}

.bulb-image-block {
    max-width: fit-content;
    width: 100%;
    margin-left: auto;
    margin-right: -6%;
    margin-bottom: 12px;
}

.bulb-image-block.energy-center {
    margin-left: -6%;
    margin-right: 0;
    margin-bottom: 0;
}

.process-parent .block-butn {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
}

.process-parent .block-butn a.discover-butn {
    margin-top: 0;
}

.process-parent .block-butn {
    padding-top: 128px;
}

/* .on-bulb {
    display: none;
} */

.commercial-content.construction p {
    padding-bottom: 0;
}

section.commercial-projects.other-services {
    padding: 65px 0;
}

ul.footer-list li a.active {
    color: var(--lime-green);
}

ul.footer-list li a:hover {
    color: var(--lime-green);
}

a.animate-butn:hover .build-process-section {
    border: 10px solid var(--lime-green);
}

section.build-process-section {
    border: 10px solid #ff000000;
    transition: 0.3s ease-in;
}
.gallery-grid .single-gallery-image h2{
   position: absolute;
   opacity: 0;
}
.process-png {
    position: absolute;
}
.process-camera.process-png {
    right: -13%;
    bottom: -10%;
    top: auto;
}
.process-block.process-png{
    top: 0;
    left: 0;
}
form .input-parent.diff-fs label.form-label{
    font-size: var(--fs-16);
    line-height: normal;
}
.input-parent.dark.diff-fs {
    padding-bottom: 30px;
}

section.video-section .video-content .heading-block h2:after{
right: 5%;
}

section.build-process-section .block-butn a.discover-butn.animate-butn{
    margin-top: 0 !important;
}
.our-camera-union{
    max-width: fit-content;
    width: 100%;
    position: absolute;
    opacity: 0;
}
.our-camera-union.bottom {
    bottom: 0;
    top: auto;
    right: 0;
    opacity: 0;
}

.our-camera-union.top-camera-union {
    top: 0;
    left: 0;
}
.our-steps.step2 {
    position: relative;
    bottom: 20%;
}
.our-steps.step3 {
    position: relative;
    bottom: 30%;
}

.our-steps.step4 {
    position: relative;
    bottom: 21%;
}

.our-steps.step5 {
    position: relative;
    bottom: 30%;
}

.our-steps.step6 {
    position: relative;
    bottom: 26%;
}


.bulb-image-block{
    position: relative;
}
.on-bulb {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}
img.off-bulb{
    animation: onbulb-animate 2s ease-in-out infinite  alternate;
}
@keyframes onbulb-animate{
    0%{
      opacity: 1;
       
    }

    100%{
       opacity: 0;
    }
}
img.on-bulb{
    animation: offbulb-animate 2s ease-in-out infinite alternate ;
}
@keyframes offbulb-animate{
    0%{
      opacity: 0;
       
    }

    100%{
       opacity: 1;
    }
}










.our-steps.step1 .steps.content {
    max-width: 633px;
   }
   .our-steps.step3 .steps.content {
    max-width: 700px;
   }
   .our-steps.step5 .steps.content {
    max-width: 850px;
   }
   .our-steps.step6 .steps.content {
    max-width: 758px;
   }
   .our-steps.step4 .steps.content {
    max-width: 775px;
}
.single-external-link h3.heading3.clr-white::after {
    left: 50%;
    transform: translateX(-50%);
}
.gallery-image-content {
    width: 100%;
    height: 520px;
}
.myGallerySlider .swiper-wrapper .swiper-slide img{
    width:100%;
}
.myGallerySlider .swiper-wrapper{
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
}
.myGallerySlider .swiper-btns{
    color: white;
    z-index: 9999;
}
.myGallerySlider .swiper-btns:after{
  font-size: 25px;
}
.image-popup.active-popup{
    /* background-color: #000000a3; */
    z-index: 999999999;
    cursor: pointer;
}

.myGallerySlider .swiper-wrapper .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.image-popup.gallery{
    left: 0;
}
form .input-parent.dark.diff-fs input.form-control{
    color: black;
}
.top-up {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 100;
    background-color: var(--dark-blue);
    padding: 10px 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid var(--lime-green);
}
.top-up i{
    color: var(--lime-green);
}
