@font-face {
    font-family: "Brooklyn";
    src: url("../font/brooklyn/Brooklyn\ Normal.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Brooklyn";
    src: url("../font/brooklyn/Brooklyn\ Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Brooklyn";
    src: url("../font/brooklyn/Brooklyn\ Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Brooklyn";
    src: url("../font/brooklyn/Brooklyn\ BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Brooklyn";
    src: url("../font/brooklyn/Brooklyn\ Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}


/* ------------------------Common------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "brooklyn";
}

body {
    position: relative;
    /* overflow: hidden; */
    height: 100vh;
    overflow-anchor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-dark {
    background-color: #0E1519 !important;
}

.mt-150 {
    margin-top: 150px;
}

.color-red {
    color: #D20A0A;
}

.color-dark {
    color: #0E1519;
}

.color-green {
    color: #dbff00;
}

.paragraph-18 {
    font-size: 18px;
    line-height: 28px;
}

.color-white {
    color: #fff;
}

.text-gradient {
    background: linear-gradient(90deg, #616161 -35.11%, #E6E7E8 55.02%, #616161 137.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.v-margin-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}


/* .text-gradient:after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--loc), transparent, #0e1519c9 60%);
    z-index: 2;
    transition: background 3s;
} */

.light-white {
    color: rgba(255, 255, 255, 0.151);
}

.wave-button {
    width: 250px;
    padding: 20px 30px;
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    /* border-radius: 50px; */
}

.wave-button span {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 15px;
    letter-spacing: 8px;
}

.wave {
    width: 250px;
    height: 250px;
    background: linear-gradient(90deg, #616161 -35.11%, #E6E7E8 55.02%, #616161 137.99%);
    box-shadow: inset 0 0 50px #0E1519;
    position: absolute;
    left: 0;
    top: -105px;
    transition: 0.4s;
}

.wave::after,
.wave::before {
    width: 200%;
    height: 200%;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.wave::before {
    border-radius: 45%;
    background-color: #0E1519;
    animation: wave 5s linear infinite;
}

.wave::after {
    border-radius: 40%;
    background-color: rgba(20, 20, 20, 0.5);
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

.swap-button {
    text-decoration: none !important;
    color: #fff;
    height: 50px;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 35px;
    border-radius: 30px;
}

.swap-button:hover,
.swap-button:focus,
.swap-button:active {
    color: #fff;
}

.sb-text-group {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    transform: translateY(-2px);
    transition: .3s all ease;
}

.sb-text {
    min-height: 24px;
    max-height: 24px;
    overflow: hidden;
}

.swap-button:hover .sb-text-group {
    transform: translateY(-32px);
    transition: .6s all ease;
}

.sub-title span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.35em;
    color: #fff;
    text-transform: uppercase;
}

.padding-vertical {
    padding: 100px 15px;
}

.padding-vertical-extra {
    padding: 200px 15px 150px 15px;
}

.b-margin-150 {
    margin-bottom: 150px;
}

.b-margin-100 {
    margin-bottom: 100px;
}

.b-margin-50 {
    margin-bottom: 50px;
}

.t-margin-150 {
    margin-top: 150px;
}

.t-margin-100 {
    margin-top: 100px;
}

.t-margin-50 {
    margin-top: 50px;
}

::selection {
    background: #dbff00;
    color: #0e1519;
}

.c-divider {
    background-color: #1E2435;
    opacity: 1;
}

.section-title h3 {
    font-weight: 900;
    font-size: 45px;
    line-height: 54px;
}

.title-35 {
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.para-18 {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 28px;
}


/* ------------------------Header------------------------- */

.navbar-brand img {
    max-width: 160px;
}

.navbar-toggler.menu-button {
    border: none;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    box-shadow: none !important;
}

.navbar-toggler.menu-button img {
    max-width: 26px;
    margin-left: 6px;
    transition: .3s linear;
}

.navbar-toggler.menu-button:hover img {
    transform: rotate(45deg);
}


/* .navbar {
    padding-left: 10px;
    padding-right: 10px;
} */

.hero-banner {
    padding: 90px 0px 90px 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1E2435;
}


/* .hero-banner::after {
    content: "";
    position: absolute;
    right: -220px;
    background-image: url(../img/banner-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
    width: 400px;
    height: 400px;
    animation: loading 10s linear infinite;
} */

.hero-banner h1 {
    font-size: 85px;
    font-weight: 900;
    line-height: 108px;
}

.darkHeader {
    backdrop-filter: blur(10px);
    background: #0e151980;
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* -----------------About Us------------- */

.about-title h3 {
    font-weight: 900;
    font-size: 35px;
    line-height: 42px;
}


/* .about-img img {
    max-width: 270px;
} */

.t-details h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 15px 0px;
}

.t-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}


/* -----------------Projects------------- */

.small-text span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #787878;
}

.t-main-text span {
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
}

.custom-tab.nav-pills .nav-link.active {
    color: #fff;
    background-color: #161D21;
}

.custom-tab.nav-pills.nav-pills .nav-link {
    border-radius: 0px;
    border: none;
    min-height: 100px;
    max-height: 100px;
    text-align: left;
    border-bottom: 1px solid #1E2435;
    position: relative;
    color: #fff;
}

.custom-tab.nav-pills.nav-pills .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #616161 -35.11%, #E6E7E8 55.02%, #616161 137.99%);
    top: 0px;
    left: 0px;
    transition: .3s linear;
}

.custom-tab.nav-pills.nav-pills .nav-link.active::after {
    width: 100%;
}

.project-img img {
    width: calc( 100% - 18px);
}


/* -----------------Project-Preview------------- */

.preview-content h4 {
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    transform: translateY(-75%);
    z-index: 3;
    left: 0;
    position: absolute;
}

#project_preview {
    position: relative;
}

#project_preview:before {
    position: absolute;
    left: 0;
    width: 80vw;
    background: #0e1519;
    content: "";
    height: 200px;
    z-index: 2;
    bottom: -100px;
}


/* -----------------Expert------------- */

.section-title-light h3 {
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
}

.paragraph-wrap p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
}

.action-wrap {
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-top: 45px;
}

.action-wrap img {
    margin-right: 20px;
}

.action-wrap a {
    color: #dbff00;
    display: inline-block;
}

.expert-img img {
    max-width: calc( 100% - 100px);
    text-align: right;
}


/* ---------------Numbers------------- */

.numbers-wrap {
    background: #161D21;
}

.outlined {
    -webkit-text-stroke: 1px #505B62;
    color: transparent;
    font-weight: 700;
    font-size: 130px;
    line-height: 130px;
}

.numbers span {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    display: flex;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translateY(-50%);
    text-align: left;
    width: 50%;
}

.client-detail img {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.client-detail h4 {
    font-weight: 900;
    font-size: 20px;
    line-height: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.client-detail span {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #dbff00;
    text-align: center;
}

.testimonilan-wrap {
    margin-top: 100px;
    display: flex;
    align-items: center;
}

.client-wrap {
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testi-item h4 {
    font-weight: 900;
    font-size: 24px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.testi-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.testi-content-wrap {
    padding: 0px 150px;
}

.testi-content-wrap .slick-prev {
    display: none !important;
}

.arrow-btn.slick-arrow {
    margin-top: 40px;
    display: inline-block;
}

.client-wrap:after {
    content: "";
    background-image: url(../img/line.svg);
    width: 32px;
    right: -80px;
    top: 0;
    background-repeat: no-repeat;
    bottom: 0;
    background-size: contain;
    position: absolute;
}


/* ---------------Contact------------- */

.contact-title h3 {
    font-size: 35px;
    font-weight: bold;
}

.contact-title p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    margin-top: 25px;
    padding-right: 100px;
}

.form-control.contact-input {
    border-radius: 0px;
    height: 50px;
    padding: 0;
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    box-shadow: none !important;
    transition: .3s linear;
}

textarea.form-control.contact-input {
    height: auto;
}

.form-control.contact-input:focus {
    border-color: #dbff00;
}

.still-banner img,
.about-pp .slick-slide img,
#project_preview .slick-slide img {
    height: 660px;
    width: 100%;
    object-fit: cover;
}


/* ---------------Footer------------- */

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.fn-left a {
    margin-right: 50px;
}

.fn-right a {
    margin-left: 50px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 20px 0px;
}

footer {
    border-top: 1px solid #1E2435;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0E1519;
    z-index: 9999;
}

.loading-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

.loading-text span {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
}

.loading-text span:nth-child(1) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0s infinite linear alternate;
    animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.2s infinite linear alternate;
    animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.4s infinite linear alternate;
    animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.6s infinite linear alternate;
    animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 0.8s infinite linear alternate;
    animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 1s infinite linear alternate;
    animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
    filter: blur(0px);
    -webkit-animation: blur-text 1.5s 1.2s infinite linear alternate;
    animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@-webkit-keyframes blur-text {
    0% {
        filter: blur(0px);
    }
    100% {
        filter: blur(4px);
    }
}

@keyframes blur-text {
    0% {
        filter: blur(0px);
    }
    100% {
        filter: blur(4px);
    }
}


/* Hide scrollbar for Chrome, Safari and Opera */

body::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar for IE, Edge and Firefox */

.body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.btn-close-custom {
    outline: none;
    border: none;
    color: #fff;
    background: transparent;
    font-size: 16px;
}

.offcanvas-end {
    width: 50vw;
    height: 100vh;
    background-color: #0E1519;
}

.offnav-ul {
    margin-bottom: 0px;
}

.offnav-ul li,
.social-wrap ul li {
    list-style: none;
    color: #fff;
    text-decoration: none;
}

.offnav-ul li a {
    font-weight: 900;
    font-size: 65px;
    line-height: 85px;
    text-decoration: none !important;
    position: relative;
    -webkit-transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1), 1.2s cubic-bezier(0.23, 1, 0.32, 1), 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

ul.offnav-ul li a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110%;
    height: 100%;
    background: -webkit-linear-gradient(right, #0E1519 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(right, #0E1519 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(270deg, #0E1519 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: -o-transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), -o-transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.offnav-ul:hover a:after {
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.offnav-ul a:hover:after {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
}

.offnav-ul a:hover {
    padding-left: 30px;
    -webkit-transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1), 1.2s cubic-bezier(0.23, 1, 0.32, 1), 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.offcanvas-body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-wrap ul li a,
.social-wrap ul li {
    font-weight: 400;
    font-size: 16px;
    text-decoration: none !important;
}

.social-wrap ul li a {
    line-height: 20px;
}

.social-wrap {
    margin-top: 40px;
}

.social-wrap ul li:first-child {
    margin-bottom: 18px;
}

.small-hero-banner {
    padding-top: calc( 90px + 100px);
}

.small-hero-banner h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 900;
}

.small-hero-banner h1 img {
    width: 55px;
}

.line-2 {
    float: right;
    margin-top: 50px;
}

.floating-images {
    margin-top: 100px;
}

.para-20 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 50px;
}

.down-col {
    margin-top: 80px;
}

.capa-list li {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    list-style: none;
    position: relative;
    margin-bottom: 20px;
}

.capa-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #DBFF00;
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translate(0px, -50%);
}

.para-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.mb-project {
    margin-bottom: 30px;
}

.about-pp::before {
    display: none;
}

.fix-col h4 {
    font-weight: 700;
    font-size: 35px;
    line-height: 55px;
    color: #fff;
}

.v-scroll-box h2 {
    font-weight: 900;
    font-size: 55px;
    line-height: 85px;
    color: #fff;
}

.v-scroll-margin {
    margin-bottom: 200px;
}

.fix-col span {
    display: inline-flex;
    flex-direction: column;
}

.bottom-line {
    background: #DBFF00;
    height: 2px;
    width: 0px;
}

.client-title h4 {
    font-weight: 600;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    color: #0E1519;
}

.client-logo-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
}

.client-logo-wrap:last-child {
    margin-bottom: 0px;
}

.logo-box {
    flex: 1;
    text-align: center;
}

.client-title {
    margin-bottom: 100px;
}

.logo-box:first-child {
    text-align: left;
}

#portfolio-flters {
    padding-left: 0px;
    display: flex;
    gap: 40px;
    color: #fff;
}

#portfolio-flters li {
    list-style: none;
    padding: 12px 0px;
    position: relative;
    cursor: pointer;
}

#portfolio-flters li:after {
    content: "";
    position: absolute;
    top: 0;
    height: 1px;
    left: 0;
    width: 0%;
    background: #FFFFFF;
    transition: .3s all ease;
}

#portfolio-flters li.filter-active:after {
    width: 100%;
}

#portfolio-flters {
    padding-left: 0px;
    display: flex;
    gap: 40px;
    color: #fff;
    margin: 45px 0px;
}

.portfolio-heading {
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.portfolio-heading {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.portfolio-heading h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.pi-badge {
    font-size: 14px;
    border: 1px solid #fff;
    display: inline-flex;
    padding: 1px 12px;
    border-radius: 30px;
}

.para-14 {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-top: 15px;
}

.portfolio .portfolio-item {
    margin-bottom: 50px;
}

.preload-finish {
    opacity: 0;
    display: none;
    pointer-events: none;
    transition: .3s all ease;
}

.sticky-tabs {
    position: sticky;
    top: 0px;
    z-index: 50;
    background: #0e1519;
}

.font-24 {
    font-size: 24px !important;
}

.service-box {
    margin-bottom: 70px;
}

.cm-info h4 {
    font-weight: 900;
    font-size: 45px;
    line-height: 54px;
    color: #fff;
}

.cm-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #848484;
    min-height: 50px;
}

.cm-info a {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #DBFF00;
    margin-top: 50px;
    display: inline-block;
}

.contact-mail {
    padding: 110px 0px;
    border-top: 1px solid #1E2435;
}

.t-margin-100 {
    margin-top: 100px;
}

.scrollbar-track.scrollbar-track-x.show,
.scrollbar-track.scrollbar-track-y.show {
    display: none !important;
}


/* //////////////////////

-------New-Css-------

///////////////////// */

.small-hero-banner.project-detail-page h1 {
    font-size: 45px;
    line-height: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.label-4 {
    font-size: 22px;
    font-weight: 400;
}

.sub-title.pd-sub-title {
    margin-bottom: 22px;
}

.sub-title.pd-sub-title span {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.35em;
    color: #fff;
    text-transform: uppercase;
}

.capa-list.pdc-list li {
    font-size: 16px;
    margin-bottom: 10px;
}

.capa-list.pdc-list ul {
    margin-top: 15px;
}

.project-Preview-wrap {
    background: #f3f3f3;
    padding: 140px 0px;
    margin-bottom: 100px;
}


/* 

//////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
///////////////////////RESPONSIVE/////////////////////////// */

@media (max-width: 1199.98px) {
    .hero-banner h1 {
        font-size: 75px;
        line-height: 85px;
    }
    .about-title h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .t-details p {
        font-size: 14px;
    }
    .t-details h4 {
        margin: 15px 0px 10px 0px;
    }
    .t-main-text span {
        font-size: 18px;
        line-height: 28px;
    }
    .custom-tab.nav-pills.nav-pills .nav-link {
        min-height: 75px;
    }
    .small-text span {
        font-size: 14px;
    }
    .preview-content h4 {
        font-size: 35px;
        line-height: 45px;
        transform: translateY(-80%);
    }
    .padding-vertical-extra {
        padding: 100px 15px 100px 15px;
    }
    .section-title-light h3 {
        font-size: 32px;
    }
    .section-title-light.mb-5 {
        margin-bottom: 1rem !important;
    }
    .sub-title span {
        font-size: 14px;
        line-height: 16px;
    }
    .sub-title.pb-3 {
        padding-bottom: 0.5rem !important;
    }
    .paragraph-wrap p {
        font-size: 14px;
        line-height: 22px;
    }
    .outlined {
        font-size: 100px;
        line-height: 100px;
    }
    .client-wrap {
        min-width: 200px;
    }
    .testi-content-wrap {
        padding: 0px 0px 0px 120px;
    }
    .testi-item h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .v-scroll-section {
        display: none;
    }
    .about-pp.b-margin-150 {
        margin-bottom: 0px;
    }
}

@media (max-width: 991.98px) {
    .hero-banner h1 {
        font-size: 45px;
        line-height: 55px;
    }
    .sb-text-group {
        font-size: 14px;
    }
    .swap-button:hover .sb-text-group {
        transform: translateY(-25px);
    }
    .about-title h3 {
        font-size: 24px;
        line-height: 34px;
    }
    .paragraph-wrap.mt-4 {
        margin-top: 0.5rem !important;
    }
    .t-info-card {
        margin-bottom: 40px;
    }
    .hero-banner {
        padding: 150px 0px 40px 0px;
        min-height: 100%;
    }
    .section-title h3 {
        font-size: 35px;
        line-height: 45px;
    }
    .tab-content {
        margin-top: 30px;
    }
    .preview-content h4 {
        font-size: 28px;
        line-height: 38px;
    }
    .expert-img {
        text-align: center;
        margin-top: 50px;
    }
    .expert-img img {
        width: 100%;
    }
    .contact-details {
        margin-bottom: 30px;
    }
    .sb-text-group {
        transform: translateY(-1px);
    }
    .fn-left a {
        margin-right: 45px;
    }
    .offcanvas-end {
        width: 80vw;
    }
    .small-hero-banner h1 {
        font-size: 52px;
        line-height: 60px;
    }
    .small-hero-banner {
        padding-top: calc( 90px + 60px);
    }
    .v-margin-100 {
        margin-top: 70px;
        margin-bottom: 70px;
    }
    .para-14 br {
        display: none;
    }
    .service-box {
        margin-bottom: 40px;
    }
    .b-margin-100 {
        margin-bottom: 60px;
    }
    .b-margin-150 {
        margin-bottom: 100px;
    }
    .capa-list li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .capa-list li:before {
        top: 10px;
        transform: unset;
    }
    #project_preview:before {
        height: 140px;
        bottom: -55px;
    }
    .padding-vertical {
        padding: 70px 15px;
    }
}

@media (max-width: 767.98px) {
    .cm-info.cm-info-index {
        padding-top: 40px;
        padding-right: 0;
    }
    .offcanvas-end {
        width: 100vw;
        margin-right: 25px;
    }
    .offnav-ul li a {
        font-size: 45px;
        line-height: 74px;
    }
    .about-title h3 {
        font-size: 20px;
        line-height: 25px;
    }
    .text-end.all-project {
        text-align: left !important;
        margin-top: 25px;
    }
    .preview-content h4 {
        font-size: 16px;
        line-height: 25px;
        padding: 0px 18px 0px 15px;
    }
    #project_preview:before {
        height: 80px;
        bottom: -30px;
    }
    .custom-tab {
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }
    .project-img {
        text-align: center;
    }
    .expert-img img {
        max-width: calc( 100% - 0px);
    }
    .section-title-light h3 br {
        display: none;
    }
    .numbers span {
        left: 25%;
    }
    .testimonilan-wrap {
        padding-bottom: 70px;
        margin-top: 50px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .testi-content-wrap {
        padding: 0px 0px 0px 0px;
    }
    .client-wrap:after {
        display: none;
    }
    .client-wrap {
        width: 100%;
    }
    .client-detail img {
        width: 100px;
        height: 100px;
    }
    .arrow-btn.slick-arrow {
        margin-top: 40px;
        display: inline-block;
        position: absolute;
        bottom: -215px;
    }
    .content-center {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        margin-top: 30px;
    }
    .client-detail img {
        margin-bottom: 0px;
    }
    .client-info-wrap {
        margin-left: 15px;
    }
    a.arrow-btn.slick-arrow img {
        width: 50px;
        margin-left: 10px;
    }
    .contact-title p {
        padding-right: 0px;
    }
    #project_preview img {
        height: 500px;
        object-fit: cover;
    }
    .fn-left,
    .fn-right {
        display: flex;
        width: 50%;
        flex-direction: column;
        justify-content: flex-start;
    }
    .fn-left a,
    .fn-right a {
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .fn-left a:last-child,
    .fn-right a:last-child {
        margin-bottom: 0px;
    }
    .padding-vertical {
        padding: 50px 15px;
    }
    .mt-150 {
        margin-top: 75px;
    }
    .small-hero-banner h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .small-hero-banner {
        padding-top: calc( 90px + 35px);
    }
    .v-margin-100 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .para-20 {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    .para-14 {
        margin-top: 8px;
    }
    .down-col {
        margin-top: 0px;
    }
    .cm-info a {
        margin-top: 10px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .offcanvas-end {
        width: 100vw;
        margin-right: 0px;
    }
    .hero-banner h1 br {
        display: none;
    }
    .hero-banner h1 {
        font-size: 55px;
        line-height: 62px;
    }
    p br {
        display: none;
    }
    .hero-banner {
        padding: 100px 0px 0px 0px;
    }
    ul {
        padding: 0px;
    }
    .offnav-ul li a {
        font-size: 35px;
        line-height: 60px;
    }
    .small-hero-banner h1 {
        font-size: 24px;
        line-height: 34px;
    }
    .para-20 {
        font-size: 14px;
        line-height: 24px;
    }
    .small-hero-banner h1 img {
        display: none;
    }
    .image-box {
        margin-bottom: 20px;
    }
    .title-35 {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
    }
    .about-pp img {
        min-height: 600px;
        object-fit: cover;
    }
    .client-logo-wrap {
        display: grid;
        grid-template-columns: 50% 50%;
        margin-bottom: 30px;
    }
    .logo-box {
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.cm-info.cm-info-index {
    padding-top: 40px;
    padding-right: 25%;
}