@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.container {
    max-width: 1286px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: var(--font-primary);
    color: var(--color-secondary-dark);
}


/* Root */

:root {
    /* color */
    --color-primary: #62B159;
    --color-secondary: #000000;
    --color-text: #3A3A3A;
    --color-gray: #707070;
    --light-gray: #E4E4E4;
    --deep-gray: #262626;
    --dark-gray: #0C0C0C;
    --davys-gray: #cbcbcb;
    --mist-gray: #F0F0F0;
    --charcoal-gray: #212121;
    --color-white: #fff;
    --off-white: #FAFAFA;
    --color-yellow: #FF9E0C;
    /* font-family */
    --font-primary: "Poppins", sans-serif;
}


/* ================== Define Css Start Here ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: var(--color-secondary-dark);
}

h1 {
    font-size: 54px;
    line-height: 76px;
}

h2 {
    font-size: 37px;
    line-height: 78px;
}

h3 {
    font-size: 22px;
    line-height: 33px;
}

h4 {
    font-size: 19px;
    line-height: 29px;
    font-weight: 600;
}

h5 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
}

h6 {}

p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 25px;
    color: var(--color-text);
}

a {
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    font-family: var(--font-primary);
    outline: none;
    font-size: 16px;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

input,
button,
input::placeholder {
    font-family: var(--font-primary);
    outline: none;
}

span {
    display: inline-block;
}

.section-space {
    margin-top: 100px;
}


/* Margin */

.ctm-mt-10 {
    margin-top: 10px;
}

.ctm-mt-20 {
    margin-top: 20px;
}

.ctm-mt-30 {
    margin-top: 30px;
}

.ctm-mt-40 {
    margin-top: 40px;
}

.ctm-mt-50 {
    margin-top: 50px;
}

.ctm-mt-60 {
    margin-top: 60px;
}

.ctm-mt-70 {
    margin-top: 70px;
}

.ctm-mt-80 {
    margin-top: 80px;
}

.ctm-mt-90 {
    margin-top: 90px;
}

.ctm-mt-100 {
    margin-top: 100px;
}

.ctm-mb-100 {
    margin-bottom: 100px;
}

.common-button a {
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 16px 30px;
    line-height: 16px;
    font-size: 16px;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    font-family: var(--font-primary);
    cursor: pointer;
}

.common-button a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.without-bg-color-btn a {
    color: var(--color-primary);
    background-color: var(--color-white);
}

.without-bg-color-btn a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.without-bg-btn a {
    color: var(--dark-gray);
    background-color: var(--color-white);
    border: 1px solid var(--dark-gray);
}

.without-bg-btn a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}


/* flex */

.ctm-flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}


/* justify */

.ctm-justify-center {
    justify-content: center;
}

.ctm-justify-right {
    justify-content: right;
}

.ctm-justify-between {
    justify-content: space-between;
}


/* align */

.ctm-align-left {
    align-items: left;
}

.ctm-align-center {
    align-items: center;
}

.ctm-align-right {
    align-items: right;
}


/* width */

.top-header-col-left ul li a:hover,
.social-links li a:hover,
nav ul li a:hover,
.footer-menu ul li a:hover {
    color: var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.full-whdth {
    width: 100% !important;
}

.color-test-primary h1,
.color-test-primary h2,
.color-test-primary h3,
.color-test-primary h4,
.color-test-primary h5,
.color-test-primary h6,
.color-test-primary p {
    color: var(--color-primary);
}

.common-list li {
    width: calc(100%/2 - 12px);
    color: var(--dark-gray);
    font-size: 16px;
    display: flex;
    align-items: baseline;
}

.common-list {
    row-gap: 16px;
}

.common-list li i {
    color: var(--color-primary);
    margin-right: 12px;
}


/* ================== Define Css End Here ================== */


/* ================== Header Css Start Here ==================  */

.top-header-sec-bg {
    background-color: var(--color-secondary);
    padding: 13px 0;
}

.top-header-col-left ul li a {
    color: var(--light-gray);
}

.top-header-col-left ul li {
    display: inline-block;
}

.top-header-col-left ul li i {
    color: var(--color-primary);
    margin-right: 5px;
}

.top-header-col-left ul li+li {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--light-gray);
}

.social-links li {
    display: inline-block;
}

.social-links li+li {
    margin-left: 30px;
}

.social-links li a {
    color: var(--color-white);
}


/* header */

.ctm-sticky {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    top: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header {
    padding: 17px 0;
    transition: all 0.3s ease-in-out;
    transition: opacity 0.5s ease, padding 0.5s ease, background-color 0.5s ease;
    transition: 0.3s ease-in-out;
}

nav ul li {
    display: inline-block;
}

nav ul li+li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-gray);
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
}

nav ul li a.active {
    color: var(--color-primary);
}

.logo-header a img {
    max-width: 250px;
}

.toggle-btn-mobile,
.book-appoinment-menu-mobile {
    display: none;
}


/* ================== Header Css End Here ==================  */


/* ================== Banner Css Start Here ==================  */

.banner-sec-bg {
    background: linear-gradient(to bottom, #F1F1F1, #FCFCFC);
}

.banner-sec-bg .container {
    max-width: calc(50vw - -630px);
    margin-left: auto;
    margin-right: 0;
    padding: 0 0 0 20px;
    overflow: hidden;
}

.inner-banner {
    gap: 50px;
}

.banner-col-left {
    padding: 10px 0;
}

.banner-col-left,
.banner-col-right {
    width: calc(100%/2 - 25px);
}

.banner-image img {
    width: 100%;
    height: 642px;
    border-radius: 0px 40px 40px 0px;
    object-fit: cover;
}

.banner-content {
    max-width: 700px;
}

.banner-content p {
    margin-top: 30px;
    color: var(--color-gray);
}


/* ================== Banner Css End Here ==================  */


/* ================== Main Css Start Here ==================  */


/* ==================== About Us Css Start Here ==================== */

.inner-about-us-sec {
    gap: 70px;
}

.about-us-col-left,
.about-us-col-right {
    width: calc(100%/2 - 35px);
}

.about-us-image {
    position: relative;
    padding: 30px 0 0 30px;
}

.about-us-image::after {
    content: "";
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.about-us-image img {
    width: 100%;
    object-fit: cover;
    height: 480px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.common-heading-content p {
    margin-top: 10px;
}

.common-heading-content p+p {
    margin-top: 30px;
}


/* ==================== About Us Css End Here ==================== */


/* ==================== OUR SERVICES Css Start Here ==================== */

.common-section-bg-color {
    background-color: var(--off-white);
    padding: 80px 0;
}

.inner-our-services {
    gap: 50px;
}

.our-services-col {
    box-shadow: 0px 3px 51px #0000000D;
    border-radius: 15px;
    background-color: var(--color-white);
    width: calc(100%/3 - 34px);
}

.our-services-image img {
    width: 100%;
    height: 272px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.our-services-contant {
    padding: 45px 30px;
}

.our-services-col:hover>.our-services-contant {
    background-color: var(--color-text);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 15px 15px;
}

.our-services-contant p {
    margin: 20px 0 30px 0;
}

.our-services-col:hover>.our-services-contant h4,
.our-services-col:hover>.our-services-contant p {
    color: #fff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-services-col:hover .without-bg-btn a {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==================== OUR SERVICES Css End Here ==================== */


/* ==================== Why Choose Us Css Start Here ==================== */

.inner-why-choose-us {
    gap: 50px;
}

.why-choose-us-col-left,
.why-choose-us-col-right {
    width: calc(100% / 2 - 25px);
}

.why-choose-image-left,
.why-choose-image-right {
    width: calc(100%/2 - 12px);
}

.why-choose-content1 {
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    padding: 30px 40px;
}

.why-choose-content1 p {
    margin-top: 15px;
}

.why-choose-image2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.why-choose-image-right img {
    height: 425px;
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.why-choose-image2 {
    margin-top: 25px;
}


/* ==================== Why Choose Us Css End Here ==================== */


/* ==================== Need Any Help Css Start Here ==================== */

.need-any-help-sec-bg {
    background-color: var(--color-primary);
    padding: 70px 0;
}

.inner-need-any-help h2,
.inner-need-any-help h5,
.inner-need-any-help p {
    color: var(--color-white);
}

.inner-need-any-help .without-bg-btn a {
    border: 1px solid transparent;
}

.inner-need-any-help .without-bg-btn a:hover {
    border: 1px solid var(--color-white);
}

.inner-need-any-help p {
    margin-top: 0;
}


/* ==================== Need Any Help Css End Here ==================== */


/* ==================== Recent Projects Css Start Here ==================== */

.recent-projects-sec-bg {
    overflow-x: hidden;
}

.recent-projects-col {
    /* margin: 0 17px; */
    position: relative;
}

.recent-projects-col.slick-center::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
   background-color: var(--color-secondary);
    opacity: .65;
    top: 0;
    left: 0;
    border-radius: 15px;
}

.recent-projects-image {
    position: relative;
}

.recent-projects-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 15px;
}

.recent-projects-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    display: none;
}

.slick-center .recent-projects-content {
    display: block;
}

.recent-projects-content p {
    color: var(--color-white);
}

.slick-center .recent-projects-image:after {
    position: absolute;
    border: 1px solid var(--color-white);
    width: 90%;
    height: 90%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    border-radius: 15px;
    z-index: 1;
}


/* dots */

.inner-recent-projects ul.slick-dots {
    display: flex;
    justify-content: center;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    gap: 16px;
    align-items: center;
}

.inner-recent-projects ul.slick-dots li {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-color: #AAAAAA;
}

.inner-recent-projects ul.slick-dots li.slick-active {
    background-color: var(--color-primary);
}

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


/* dots */

.inner-recent-projects .slick-list.draggable {
    padding-bottom: 64px !important;
    margin: 0 -100px;
}


/*  */


/* main slider container */

.inner-recent-projects {
    width: 100vw;
    /* pure viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    /* pull to full width */
    margin-right: -50vw;
}


/* slick list should show outside content */

.inner-recent-projects .slick-list {
    overflow: visible !important;
}


/* slick track */

.inner-recent-projects .slick-track {
    display: flex;
    align-items: center;
}


/* slides styling */

.inner-recent-projects .slick-slide {
    transition: all 0.4s ease-in-out;
    transform: scale(0.9);
    /* side slides smaller */
    opacity: 0.7;
    outline: none !important;
}


/* center slide bigger and focused */

.inner-recent-projects .slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

/* ===== Image Popup (Lightbox) ===== */.recent-projects-col a {		    text-decoration: none;    font-weight: 400;       display: block;    font-family: var(--font-primary);    outline: none;    font-size: 16px;}
/* ==================== Recent Projects Css End Here ==================== */


/* ================== Main Css End Here ==================  */


/* ================== Footer Css Start Here ==================  */

footer {
    background-color: var(--charcoal-gray);
    padding: 60px 0 35px 0;
}

.inner-footer-sec {
    gap: 46px;
}

.footer-col {
    width: calc(100%/4 - 35px);
}

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

.footer-menu ul li+li {
    margin-top: 10px;
}

.footer-content h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.footer-menu ul li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer-menu ul li a,
.footer-menu ul li {
    color: var(--color-white);
    font-weight: 400;
    font-size: 16px;
}

.footer-logo a img {
    max-width: 250px;
}


/* copyright */

.copy-right-sec {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid #ffffff4d;
}

.copy-right-col-left p {
    color: var(--color-white);
}


/* ================== Footer Css End Here ==================  */


/* ================== SERVICES Page Css Start Here ==================  */

.next-page-common-banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    background-position: center;
    position: relative;
}

.next-page-common-banner::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.6;
    top: 0;
    left: 0;
}

.inner-next-page-banner {
    position: relative;
    z-index: 1;
}

.inner-next-page-banner h1 {
    color: var(--color-white);
}


/* WHAT WE DO Start */

.what-we-do-col-left,
.what-we-do-col-right {
    width: calc(100%/2 - 12px);
}

.what-we-do-col-left h2 {
    line-height: 44px;
    margin-top: 10px;
    font-weight: 600;
}

.what-we-do-col-right {
    padding-left: 40px;
    border-left: 1px solid #acacac;
}

.services-area-sec {
    background: var(--color-primary);
    padding: 14px 30px;
    border-radius: 5px;
}

.services-area-sec ul li {
    display: inline-block;
}

.services-area-sec ul li+li {
    margin-right: 5px;
}

.services-area-sec {
    gap: 0;
    row-gap: 5px;
}

.services-area-content {
    width: max-content;
}

.services-area-content h4 {
    color: var(--color-white);
    font-weight: 600;
}

.services-area-lisl {
    width: 87%;
    margin-left: 14px;
}

.services-area-lisl li a {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-white);
}


/* WHAT WE DO End */


/* ================== SERVICES Page Css End Here ==================  */


/* ================== Top Clients Reviews Page Css Start Here ==================  */

.inner-clients-reviews {
    gap: 50px;
    row-gap: 30px;
}

.clients-reviews-col {
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    padding: 30px 40px;
    width: calc(100%/2 - 25px);
	display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.review-and-content {
    padding: 40px 0 0 0;
    margin-top: 30px;
    border-top: 1px solid var(--davys-gray);
}

.review-five-star li {
    display: inline-block;
    color: var(--color-yellow);
    font-size: 14px;
}

.review-and-content p {
    margin-top: 14px;
}


/* pagi */

.pagination-controls-reviews {
    text-align: center;
    margin-top: 92px;
}

.pagination-controls-reviews button {
    min-width: 50px;
    min-height: 40px;
}

.pagination-controls-reviews button:hover {
    background-color: #444444 !important;
    color: var(--color-white) !important;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ================== Top Clients Reviews Page Css End Here ==================  */


/* ================== GALLERY Page Css Start Here ==================  */

img.fslightbox-source {
    width: 70vw !important;
    height: 70vh !important;
    object-fit: contain;
    border-radius: 10px;
    object-position: center;
}


/*  */

.inner-gallery-sec {
    gap: 0;
    row-gap: 30px;
}

.gallery-tabs-left {
    width: 25%;
}

.gallery-tabs-main {
    width: calc(75% - 30px);
    margin-left: 30px;
}

.gallery-tabs-left ul li {
    background-color: var(--mist-gray);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 400;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.gallery-tabs-left ul li.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-tabs-left ul li:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-tabs-left ul li+li {
    margin-top: 14px;
}

.gallery-main-box {
    gap: 14px;
}

.gallery-col {
    width: calc(100%/3 - 10px);
    position: relative;
}

.gallery-col a {
    width: 100%;
}

.gallery-col img {
    width: 100%;
    height: 244px;
    border-radius: 5px;
    object-fit: cover;
}

.image-search-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #00000059;
    border-radius: 5px;
}

.gallery-col:hover .image-search-icon {
    display: flex;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-search-icon i {
    font-size: 30px;
    color: var(--color-white);
}


/* ================== GALLERY Page Css End Here ==================  */


/* ================== Media Css Start Here ==================  */

@media (max-width:1244px) {
    .inner-footer-sec {
        gap: 30px;
    }
    .footer-logo a img {
        max-width: 210px;
    }
    nav ul li+li {
        margin-left: 20px;
    }
    .common-button a {
        padding: 14px 20px;
    }
    .banner-image img {
        height: 530px;
    }
    .about-us-image img {
        height: 400px;
    }
    .inner-our-services {
        gap: 30px;
    }
    .our-services-col {
        width: calc(100% / 3 - 20px);
    }
    .our-services-contant {
        padding: 20px 20px;
    }
    .services-area-lisl li a {
        font-size: 14px;
        line-height: 20px;
    }
    .services-area-lisl,
    .services-area-content {
        width: 100%;
        margin: 0;
    }
    .gallery-col img {
        height: 200px;
    }
}

@media (max-width:1024px) {
    .section-space {
        margin-top: 70px;
    }
    .ctm-mb-100 {
        margin-bottom: 70px;
    }
    h1 {
        font-size: 40px;
        line-height: 50px;
    }
    h2 {
        font-size: 30px;
        line-height: 46px;
    }
    h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .footer-col {
        width: calc(100% / 3 - 20px);
    }
    .book-appoinment-menu-mobile {
        display: block;
    }
    /* mobile-toggle */
    header.close-buttton-icon {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 3;
        background: var(--color-white);
        overflow: auto;
        height: 100%;
    }
    .logo-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    .toggle-btn-mobile {
        width: 100%;
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: 46px;
        height: 46px;
    }
    .toggle-btn-mobile a {
        color: var(--color-primary);
        font-size: 30px;
    }
    .open-icon {
        display: block;
    }
    .close-buttton-icon .open-icon {
        display: none;
    }
    .close-buttton-icon .xmark-icon {
        display: block;
    }
    .xmark-icon {
        display: none;
    }
    nav {
        text-align: start;
        display: none;
    }
    .navigation-bar {
        width: 100%;
    }
    .close-buttton-icon nav {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    nav ul li {
        display: block;
        margin: 0 !important;
    }
    nav ul li a {
        width: 100%;
        border-bottom: 1px solid var(--dark-gray);
        padding: 10px 0;
    }
    .header-button {
        display: none;
    }
    .inner-header {
        row-gap: 0;
    }
    header {
        padding: 10px 0;
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .logo-header a img,
    .footer-logo a img {
        max-width: 200px;
    }
    /* mobile-toggle */
    .inner-about-us-sec,
    .inner-banner,
    .inner-why-choose-us {
        gap: 30px;
    }
    .about-us-col-left,
    .about-us-col-right {
        width: calc(100% / 2 - 15px);
    }
    .banner-col-left,
    .banner-col-right {
        width: calc(100% / 2 - 15px);
    }
    .our-services-image img {
        height: 200px;
    }
    .why-choose-image-right img {
        height: 330px;
    }
    .why-choose-content1 {
        padding: 20px;
    }
    .why-choose-image2 img {
        height: 165px;
    }
    .recent-projects-image img {
        height: 300px;
    }
    .social-links li+li {
        margin-left: 14px;
    }
    .inner-clients-reviews {
        gap: 30px;
    }
    .clients-reviews-col {
        padding: 30px 20px;
        width: calc(100% / 2 - 15px);
    }
    .review-and-content {
        padding: 20px 0 0 0;
        margin-top: 14px;
    }
    .pagination-controls-reviews {
        margin-top: 50px;
    }
}

@media (max-width:991px) {
    .ctm-mt-40 {
        margin-top: 30px;
    }
    .footer-col {
        width: calc(100% / 2 - 15px);
    }
    .need-any-help-sec-bg,
    .common-section-bg-color {
        padding: 50px 0;
    }
    .ctm-mt-60 {
        margin-top: 50px;
    }
    .why-choose-us-col-left,
    .why-choose-us-col-right {
        width: 100%;
    }
    .why-choose-us-col-right {
        text-align: center;
    }
    .gallery-col {
        width: calc(100%/2 - 7px);
    }
}

@media (max-width:767px) {
    .section-space {
        margin-top: 50px;
    }
    .ctm-mb-100 {
        margin-bottom: 50px;
    }
    h1 {
        font-size: 30px;
        line-height: 36px;
    }
    h2 {
        font-size: 26px;
        line-height: 36px;
    }
    .footer-col {
        width: 100%;
    }
    .copy-right-sec {
        margin-top: 30px;
        gap: 14px;
        padding-top: 20px;
    }
    .inner-recent-projects {
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    .inner-recent-projects .slick-slide {
        transform: scale(1);
        opacity: 1;
    }
    footer {
        padding: 40px 0 20px 0;
    }
    .about-us-col-left,
    .about-us-col-right,
    .banner-col-left,
    .banner-col-right {
        width: 100%;
        text-align: center;
    }
    .our-services-col {
        width: calc(100% / 2 - 15px);
    }
    .banner-col-left {
        padding: 30px 20px 0 0;
    }
    .banner-image img {
        height: 400px;
    }
    .about-us-image {
        padding: 20px 0 0 20px;
    }
    .about-us-image::after {
        width: 70%;
    }
    .common-heading-content p+p {
        margin-top: 20px;
    }
    .inner-our-services {
        margin-top: 30px;
    }
    .all-services-button.ctm-mt-60 {
        margin-top: 40px;
    }
    .inner-need-any-help h2 {
        margin: 14px 0;
    }
    .inner-recent-projects .slick-list.draggable {
        margin: 0;
    }
    .inner-recent-projects .slick-list.draggable {
        padding-bottom: 50px !important;
    }
    .what-we-do-col-left,
    .what-we-do-col-right {
        width: 100%;
        text-align: center
    }
    .what-we-do-col-right {
        padding-left: 0;
        border-left: 0;
    }
    .services-area-sec {
        margin-top: 30px;
    }
    .services-area-sec {
        padding: 14px;
    }
    .gallery-col img {
        height: 150px;
    }
    .gallery-tabs-main {
        width: calc(60% - 20px);
        margin-left: 20px;
    }
    .gallery-tabs-left {
        width: 40%;
    }
    img.fslightbox-source {
        width: 80vw !important;
    }
    .ctm-mt-50 {
        margin-top: 30px;
    }
    .logo-header a img,
    .footer-logo a img {
        max-width: 170px;
    }
}

@media (max-width:639px) {
    .top-header-col-left,
    .top-header-col-right {
        width: 100%;
        text-align: center;
    }
    .inner-top-header {
        gap: 14px;
    }
}

@media (max-width:575px) {
    .copy-right-col-right,
    .copy-right-col-left,
    .our-services-col {
        width: 100%;
        text-align: center;
    }
    .banner-image img,
    .about-us-image img {
        height: 330px;
    }
    .why-choose-image-left,
    .why-choose-image-right {
        width: 100%;
        text-align: center;
    }
    .why-choose-image-right img {
        height: 165px;
    }
    .common-list li {
        width: max-content;
    }
    .recent-projects-image img {
        height: 250px;
    }
    .clients-reviews-col {
        width: 100%;
    }
}

@media (max-width:499px) {
    .top-header-col-left ul li+li {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    .gallery-tabs-left ul li {
        padding: 10px;
        font-size: 14px;
    }
    .gallery-col {
        width: 100%;
    }
}


/* ================== Media Css End Here ==================  */