header.site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000036;
    backdrop-filter: blur(10px);
    z-index: -1;
}
header.site-header.navbar-fixed::after {
    background: #fff0;
}
@media (max-width: 767px) {
    header.site-header {
        position: relative;
    }

    header.site-header .blackLogo {
        display: block;
    }
    
    header.site-header .whiteLogo {
        display: none;
    }

    header.site-header::after {
        background: #fff;
        backdrop-filter: none;
    }
}

/****************************************** 
    Banner CSS Start 
******************************************/

.banner-sec {
    height: 100vh;
}

.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    width: 100%;
    height: 850px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    background: #0D1520;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), linear-gradient(135deg, #0A0B0F 0%, #0D1520 60%, #0f1e30 100%);
    z-index: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(253 214 121 / 8%) 1px, transparent 1px), linear-gradient(90deg, rgb(253 214 121 / 8%) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: var(--main-color);
    width: 35px;
    height: 35px;
    line-height: 24px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    color: #fff;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform:translateX(0);
    opacity:1;
    visibility:visible;
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform:translateX(50px);
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform:translateX(-50px);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background:#fff;
    transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:50px;
    max-width: 1200px;
    padding: 0 15px;
    display: table;
    margin: 0 auto;
    left: 50%;
    top:90%;
    transform: translateX(-50%);
}

.hero-style {
    transition:all .4s ease;
}

.bnr-txt {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.bnr-txt h1, .bnr-txt h2 {
    color: #fff;
    font-family: var(--h1HeadingFont);
    font-size: 68px;
    line-height: 88px;
    margin-bottom: 20px;
}

.bnr-txt h1 span, .bnr-txt h2 span {
    color: var(--txt-color);
}

.bnr-txt p {
    color: #fff;
    position: relative;
    margin-bottom: 50px;
    width: 80%;
}

.up-down {
    animation: upDown 4s ease-in-out infinite;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0);
    }
}

.bnr-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 55%;
    clip-path: polygon( 15.00% 0.00%, 100% 0.00%, 100% 100%, 0.00% 100% );
}

.bnr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 20%;
    width: 100%;
    background: linear-gradient(180deg, #10161f, #fff0);
    z-index: 2;
}

.slide-bg-image::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20%;
    width: 100%;
    background: linear-gradient(0deg, #10161f, #fff0);
    z-index: 2;
}

.bnr-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 55.2%;
    height: 100%;
    background: linear-gradient(180deg, #fff0, #fdd679, #fff0);
    clip-path: polygon( 15.00% 0.00%, 100% 0.00%, 100% 100%, 0.00% 100% );
    z-index: -1;
}

/******************************************
    Banner CSS End 
******************************************/

/****************************************** 
    Overview CSS Start 
******************************************/

.overview-btn {
    display: flex;
    justify-content: flex-end;
}

.overview-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.overview-top {
    padding-bottom: 60px;
    border-bottom: 1px solid #8D8D8D;
}

.count-item {
    width: 25%;
    padding: 60px 100px;
    position: relative;
    height: auto;
}

.count-item:first-child {
    padding-left: 0;
}

.count-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: #8D8D8D;
}

.count-item:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='14' viewBox='0 0 12 14' fill='none'%3E%3Cpath d='M0.5 12.9902L0.5 0.865234L11.001 6.92773L0.5 12.9902Z' stroke='%238D8D8D'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    display: block;
}

.count-item .main-count {
    font-size: 58px;
    line-height: 1.2;
    position: relative;
    font-family: 'myfirstfont-Regular';
    color: #000;
}

/******************************************
    Overview CSS End 
******************************************/

/****************************************** 
    Let's Connect CSS Start 
******************************************/

.connect-txt {
    padding: 40px 0;
    position: relative;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 92%;
    background: var(--main-color);
    z-index: 2;
}

.connect-btn {
    position: relative;
    font-family: 'mysecondfont-SemiBold';
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.connect-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 800px;
    height: 100%;
    background: #151c27;
    z-index: 0;
}

.connect-txt h3 {
    font-family: 'myfirstfont-Regular';
    color: #fff;
}

.connect-btn span {
    position: relative;
    z-index: 2;
    color: var(--txt-color);
    font-size: 32px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.connect-txt .heading {
    margin-bottom: 0;
}

/******************************************
    Let's Connect CSS End 
******************************************/

/****************************************** 
    Project CSS Start 
******************************************/

.project-sec::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(rgba(253, 214, 121, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 214, 121, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    inset: 0px;
}

.project-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.project-head {
    margin-bottom: 80px;
}

.bim-circle {
    position: relative;
    width: 220px;
    height: 220px;
    margin: auto;
    animation: float 4s ease-in-out infinite;
}

.bim-circle::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1C1C1C, transparent 30%);
    border-radius: 50%;
}

.bim-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 2px solid #fff0;
    transition: all ease-in-out 0.4s;
}

.orbit {
    position: absolute;
    inset: -25px;
    border: 2px solid #fdd679a8;
    border-radius: 50%;
    animation: orbitRotate 12s linear infinite;
}

.plus {
    position: absolute;
    color: #fff;
    font-size: 50px;
    line-height: 1;
    font-family: 'mysecondfont-Thin';
    font-size: 40px;
}

.plus-left {
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
}

.plus-right {
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes float {
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}

@keyframes orbitRotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.project-box {
    text-align: center;
}

.project-box:hover .bim-circle img {
    border-color: var(--txt-color);
}

.project-box p {
    color: #fff;
    margin-top: 50px;
    font-family: 'mysecondfont-Regular';
}

.project-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-color);
    font-size: 22px;
    font-family: 'mysecondfont-Medium';
    gap: 10px;
    position: relative;
    z-index: 3;
}

.project-box-btn .bim-circle::after {
    background: transparent;
}

/******************************************
    Project CSS End 
******************************************/

/****************************************** 
    Delivery CSS Start 
******************************************/

.delivery-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.delivery-head {
    margin-bottom: 50px;
}

.process-chart {
    color: #000;
    counter-reset: item;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.delivery-box {
    padding: 20px;
}

.delivery-box h3 {
    font-size: 28px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.delivery-box p {
    color: #fff;
}

.delivery-num {
    position: relative;
    font-size: 20px;
    font-family: 'mysecondfont-Regular';
    color: #fff;
    margin-bottom: 30px;
    padding: 12px;
    width: fit-content;
}

.delivery-num::after {
    content: '';
    position: absolute;
    border: 2px dotted #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: orbitRotate 12s linear infinite;
    left: 0;
    bottom: 0;
}

.steps {
    display: inline-block;
    padding: 10px;
    vertical-align: middle;
    opacity: 0;
    width: 25%;
    position: relative;
}

.steps:nth-child(odd) {
    background: var(--main-color);
}

.steps:nth-child(even) {
    background: #000;
}

.steps::after {
    content: '';
    height: 100%;
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    z-index: 999;
    border-radius: 0 5px 5px 0;
}

.steps:nth-child(odd)::after {
    background: var(--main-color);
}

.steps:nth-child(even)::after {
    background: #000;
}

.step-1,
.step-2,
.step-3,
.step-4 {
    opacity: 0;
}

.process-chart.start-animation .step-1 {
    animation: fade-in-1 15s forwards ease-in-out;
    z-index: 99;
}

.process-chart.start-animation .step-2 {
    animation: fade-in-2 15s forwards ease-in-out;
    z-index: 98;
}

.process-chart.start-animation .step-3 {
    animation: fade-in-3 15s forwards ease-in-out;
    z-index: 97;
}

.process-chart.start-animation .step-4 {
    animation: fade-in-4 15s forwards ease-in-out;
    z-index: 96;
}

@keyframes fade-in-1 {

    0% {
        opacity: 0;
    }

    5%,
    100% {
        opacity: 1;
    }

}

@keyframes fade-in-2 {

    0%,
    5% {
        opacity: 0;
    }

    10%,
    100% {
        opacity: 1;
    }

}

@keyframes fade-in-3 {

    0%,
    10% {
        opacity: 0;
    }

    15%,
   100% {
        opacity: 1;
    }
}

@keyframes fade-in-4 {

    0%,
    15% {
        opacity: 0;
    }

    20%,
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-5 {

    0%,
    20% {
        opacity: 0;
    }

    25%,
    100% {
        opacity: 1;
    }
}

.delivery-sec .bg-img img {
    opacity: 0.4;
}

/******************************************
    Delivery CSS End 
******************************************/

/****************************************** 
    Global CSS Start 
******************************************/

.global-bg {
    width: 100%;
    height: auto;
}

.global-con {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

/******************************************
    Global CSS End 
******************************************/

/****************************************** 
    Feature CSS Start 
******************************************/

.content-wrap{
    position:relative;
}

.top-line{
    width:100%;
    height:1px;
    background:#cfcfcf;
    margin-bottom:35px;
}

.custom-pagination{
    display:flex;
    gap:15px;
    margin-bottom: 50px;
}

.custom-pagination .swiper-pagination-bullet{
    width:46px;
    height:46px;
    position:relative;
    background:none;
    opacity:1;
    margin:0 !important;
}

.progress-ring{
    position:absolute;
    inset:0;
    transform:rotate(-90deg);
}

.progress-ring circle{
    fill:none;
    stroke-width:1.5;
}

.progress-ring .bg{
    stroke:#d8d8d8;
}

.progress {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
}

.bg {
    fill: none;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 2;
}

.progress-ring .progress{
    stroke:#111;
    stroke-linecap:round;

    stroke-dasharray:126;
    stroke-dashoffset:126;
}

.num{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    color:#777;
}

.swiper-pagination-bullet-active .num{
    color:#111;
    font-weight:600;
}

.feature-txt h3 {
    font-family: 'mysecondfont-SemiBold';
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
}

.feature-txt p {
    color: #4B4B4B;
    margin-bottom: 20px;
    width: 90%;
}

.feature-txt li {
    font-family: 'mysecondfont-Medium';
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.feature-txt .learn-more {
    color: var(--main-color);
    font-family: 'mysecondfont-SemiBold';
    font-size: 16px;
    line-height: 26px;
}

.feature-box {
    padding: 0 50px;
}

.feature-img {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************************************
    Feature CSS End 
******************************************/

/****************************************** 
    Industry CSS Start 
******************************************/

.industry-sec .bg-img img {
    opacity: 0.4;
}

.industry-con {
    width: 85%;
}

.industry-con p {
    margin-bottom: 25px;
}

.industry-con ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.industry-con ul li {
    font-family: 'mysecondfont-Medium';
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    width: 50%;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.industry-con ul li a {
    color: #000;
    transition: all ease-in-out 0.4s;
}

.industry-con ul li a:hover {
    color: var(--main-color);
}

.industry-row {
    padding: 50px 0;
}

.industry-img-con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-img {
    width: 190px;
    height: 210px;
    background: #fff;
    margin: 6px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    margin-top: -48px;
    transition: all ease-in-out 0.4s;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-img:hover {
    transform: scale(1.04);
}

/* .zoom-animation {
    animation: zoomInOut 5s linear infinite;
    transform-origin: center center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
} */

/******************************************
    Industry CSS End 
******************************************/

/****************************************** 
    FAQs CSS Start 
******************************************/

/* .faq-sec::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(rgba(253, 214, 121, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 214, 121, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    inset: 0px;
} */

.faq-con .accordion-button {
    background: transparent;
    border-radius: 0 !important;
    box-shadow: none;
    color: #fff;
    font-family: 'mysecondfont-SemiBold';
    font-size: 22px;
    line-height: 32px;
    padding: 0px;
    padding-bottom: 25px;
}

.faq-con .accordion-item {
    background: transparent;
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid #cea83463;
    margin-bottom: 25px;
}

.faq-con .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-con .accordion-body p {
    color: #fff;
}

.faq-con .accordion-body {
    padding: 25px 0;
    padding-top: 0;
}

.faq-con .accordion-body p {
    width: 70%;
}

.faq-con .accordion-button::after {
    background-image: url(../images/plus.png);
    content: '';
    color: #fff;
}

.faq-con .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
    content: '';
    color: #fff;
}

.faq-con {
    background: transparent;
    padding: 0px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    clip-path: polygon(101.977% 0%, 0% 0%, 6.591% 100%, 101.977% 100%, 101.977% 0%);
    width: 50%;
    height: 100px;
    background: #F5FAFF;
}

.faq-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    filter: brightness(5);
    opacity: 0.5;
}

/******************************************
    FAQs CSS End 
******************************************/

/****************************************** 
    Blogs CSS Start 
******************************************/

.blog-box {
    display: block;
    background: #F3F3F3;
}

.blog-txt {
    padding: 20px;
}

.blog-txt h3 {
    font-size: 20px;
    line-height: 30px;
    font-family: 'mysecondfont-SemiBold';
    color: #000;
}

.blog-box-btm {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.date {
    font-size: 14px;
    font-family: 'mysecondfont-Regular';
    color: #000;
}

.blog-btm {
    font-size: 15px;
    font-family: 'mysecondfont-SemiBold';
    color: var(--main-color);
}

.blog-img {
    aspect-ratio: 5 / 4;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-side-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #F3F3F3;
}

.blog-side-img {
    width: 35%;
}

.blog-side-txt {
    width: 65%;
}

.blog-side-box:not(:last-child) {
    margin-bottom: 25px;
}

.blog-side-txt .date {
    margin-bottom: 30px;
}

/******************************************
    Blogs CSS End 
******************************************/

/******************************************
    Responsive Start 
******************************************/

@media (max-width: 1600px) {

    .hero-slider {
        height: 770px;
    }

}

@media (max-width: 1600px) {

    .hero-slider {
        height: 740px;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 58px;
        line-height: 78px;
    }

    .count-item .main-count {
        font-size: 50px;
    }

    .count-item {
        padding: 60px 80px;
    }

    .connect-btn span {
        font-size: 26px;
    }

    .delivery-box h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .feature-txt h3 {
        font-size: 27px;
        line-height: 37px;
    }

    .feature-txt li {
        margin-bottom: 10px;
    }
    
}

@media (max-width: 1440px) {

    .hero-slider {
        height: 650px;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 52px;
        line-height: 72px;
    }

    .count-item .main-count {
        font-size: 46px;
    }

    .connect-btn span {
        font-size: 22px;
    }

    .delivery-box h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .feature-txt h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .custom-pagination {
        margin-bottom: 20px;
    }

    .industry-img {
        width: 170px;
        height: 200px;
    }

    .faq-con .accordion-button {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-txt h3 {
        font-size: 18px;
        line-height: 28px;
    }

}

@media (max-width: 1399px) {

    .hero-slider {
        height: 600px;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 50px;
        line-height: 70px;
    }

    .count-item .main-count {
        font-size: 42px;
    }

    .count-item {
        padding: 60px 40px;
    }

}

@media (max-width: 1199px) {

    .hero-slider {
        height: 560px;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 40px;
        line-height: 60px;
    }

    .count-item .main-count {
        font-size: 36px;
    }

    .bim-circle {
        width: 170px;
        height: 170px;
    }

    .orbit {
        inset: -18px;
    }

    .connect-btn span {
        font-size: 18px;
    }

    .delivery-box h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .delivery-box {
        padding: 5px;
    }

    .feature-txt h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .industry-img {
        width: 130px;
        height: 160px;
        margin-top: -35px;
    }

}

@media (max-width: 991px) {
    
    .banner-sec {
        height: auto;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 33px;
        line-height: 43px;
    }

    .count-item .main-count {
        font-size: 30px;
    }

    .count-item {
        padding: 30px 15px;
    }

    .steps {
        width: 50%;
        margin-bottom: 10px;
    }

    .industry-con ul li, .feature-txt li {
        font-size: 14px;
        line-height: 24px;
    }

    .industry-row {
        flex-direction: column-reverse;
    }

    .industry-img {
        width: 180px;
        height: 200px;
        margin-top: -45px;
    }

    .industry-con {
        width: 100%;
    }

    .faq-con .accordion-button {
        font-size: 16px;
        line-height: 26px;
    }

    .feature-box {
        padding: 0 0;
    }

    .faq-con .accordion-body p {
        width: 100%;
    }

}

@media (max-width: 767px) {
    
    /* header.site-header {
        position: relative;
    }
    
    header.site-header .blackLogo {
        display: block;
    }
    
    header.site-header .whiteLogo {
        display: none;
    } */
    
    .navigationWrap {
        border-bottom: 1px solid #3d2f0300;
    }

    .bnr-image {
        position: relative;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        clip-path: none;
    }

    .bnr-line {
        background: transparent;
    }

    .slide-bg-image::after {
        background: transparent;
    }

    .bnr-txt {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        z-index: 2;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-slider {
        height: 100%;
    }

    .hero-slider .swiper-container {
        position: relative;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .count-flex {
        flex-wrap: wrap;
    }

    .count-item {
        width: 50%;
    }

    .count-item:nth-child(2)::after {
        background: transparent;
    }

    .count-item:nth-child(3)::before, .connect-btn::before {
        display: none;
    }

    .count-item {
        padding: 30px 30px !important;
    }

    .connect-btn::after {
        left: -150px;
        width: 850px;
    }

    .connect-btn span {
        font-size: 15px;
    }

    .connect-btn {
        padding: 25px 0;
    }

    .industry-img {
        width: 160px;
        height: 180px;
        margin-top: -40px;
    }

    .global-bg {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .global-txt .heading {
        margin-bottom: 40px;
    }

}

@media (max-width: 575px) {

    .bnr-txt {
        padding-bottom: 40px;
    }

    .bnr-txt h1, .bnr-txt h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .count-item {
        padding: 30px 12px !important;
    }

    .bim-circle {
        width: 150px;
        height: 150px;
    }

    .orbit {
        inset: -12px;
    }

    .plus-left {
        left: -10px;
        font-size: 30px;
    }

    .project-btn {
        font-size: 18px;
    }

    .delivery-box h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .industry-img {
        width: 100px;
        height: 120px;
        margin-top: -25px;
    }

    .blog-txt h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .steps {
        width: 100%;
        margin-bottom: 0px;
    }

    .delivery-num {
        margin-bottom: 20px;
    }

    .bnr-txt p br {
        display: none;
    }

    .bnr-txt p {
        margin-bottom: 30px;
        width: 85%;
    }

}