* {
    box-sizing: border-box;
}

:root {
    --primary-color: #F60E28;
    --white-color: #ffffff;
    --dark-color: #000000;
    --light-gray-color: #F4F6FA;
    --light-orange-color: #FFD4D4;
}


body {
    font-family: "Roboto", sans-serif;
    background-image: url(../images/body-bg.png);
    font-style: normal;
    font-weight: normal;
    visibility: visible;
}

.container-fluid {
    max-width: 1250px;
    width: 95%;
}

.box-shadow-none {
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

.text-shadow-none {
    text-shadow: none !important;
}

.primary-color {
    color: var(--primary-color);
}

.light-gray {
    background: var(--light-gray-color);
}

/***custom css***/
.padding-100 {
    padding: 100px 0;
}

.padding-80 {
    padding: 80px 0;
}

.padding-50 {
    padding: 50px 0;
}

.padding-top-20 {
    padding-top: 20px;
}

.margin-top-80 {
    margin-top: 80px;
}

.title-detail {
    font-size: 16px;
    color: #2c2c2c;
    opacity: 66%;
    margin-bottom: 4px;
    min-height: 100px;
}

/***custome title***/

.custom-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--dark-color);
}

    .custom-title span {
        position: relative;
        z-index: 9;
    }

        .custom-title span:after {
            position: absolute;
            content: "";
            background: var(--primary-color);
            width: 100%;
            height: 10px;
            bottom: 8px;
            left: 0;
            right: auto;
            top: auto;
            z-index: -1;
        }

.custom-subtitle {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2px;
}

    .custom-subtitle.subtitle-md {
        font-size: 20px;
        text-transform: capitalize;
        font-weight: 400;
        color: #331B3B;
        max-width: 425px;
        margin: 0 auto;
        line-height: 30px;
    }

/***custom banner***/

.custome-banner {
    /* background: var(--light-orange-color);
    margin-top: -100px;
    padding: 150px 0;
    border-radius: 0 0 50px 50px;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; */
    margin-top: -100px;
    padding: 150px 0;
    border-radius: 0 0 50px 50px;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

    .custome-banner:before {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: "";
        /* z-index: 3; */
        background-color: #ffd4d4;
        opacity: 0.9;
    }

/**button dark***/

.btn.btn-dark {
    padding: 10px 20px;
    font-size: 16px;
    background: #000000;
    transition: transform .3s ease-in-out;
}

.btn.btn-darkr:hover {
    transform: translateY(-0.15rem);
    box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
}

.btn.btn-danger {
    background: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-color: var(--primary-color);
    transition: transform .3s ease-in-out;
}

    .btn.btn-danger:hover {
        transform: translateY(-0.15rem);
        box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
    }

/* Main Styles */
.main-section {
    position: relative;
    z-index: 9;
    /* position: sticky;
    top: 0; */
}

    .main-section.active {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 99;
    }


.main-navbar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Header Styles */
header {
    background-color: transparent;
}

.logo {
    font-size: 1.5rem;
}

.nav-link {
    color: #000;
    /* font-size: 16px; */
    font-size: 14px;
    padding: 0 24px;
    font-weight: 500;
}

.navbar-expand .navbar-nav {
    flex-direction: row;
    gap: 5px;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 38px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border: 1.5px solid var(--dark-color);
    transform: rotate(20deg);
}

    .social-icon i {
        transform: rotate(-20deg);
    }

    .social-icon:hover {
        background-color: var(--dark-color);
        color: var(--white-color);
    }

/* Navbar Styling */
.navbar-nav .nav-link {
    position: relative;
    font-weight: bold;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 7px;
}

    /* Underline Effect */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease, left 0.3s ease;
    }

    /* On Hover - Expand Line */
    .navbar-nav .nav-link:hover::after {
        width: 100%;
        left: 0;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

    /* Active Link Styling */
    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

        .navbar-nav .nav-link.active::after {
            width: 100%;
            left: 0;
        }

.mobile-menu .nav-link {
    font-size: 20px;
    transition: all 0.5 ease-in-out;
}

    .mobile-menu .nav-link:hover {
        color: var(--primary-color);
    }

/* Banner Section */
.banner-section {
    position: relative;
}

    .banner-section:after {
        position: absolute;
        content: "";
        background-image: url(../images/b-right.png);
        width: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
        right: 0;
        /* top: -95px; */
        top: -118px;
        z-index: -1;
        min-height: 700px;
    }


.heading {
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4), 0px 0px 6px rgba(0, 0, 0, 0.1), 0px 6px 18px rgba(0, 0, 0, 0.1);
    /* font-size: 64px; */
    font-size: 58px;
    position: relative;
    color: var(--dark-color);
}

.banner-section p {
    font-size: 24px;
    color: #666666;
    opacity: 66%;
    margin-bottom: 10px;
}

.banner-section span.border-b {
    position: relative;
}

    .banner-section span.border-b:after {
        position: absolute;
        content: "";
        background: #F60E27;
        width: 100%;
        height: 10px;
        bottom: 9px;
        left: 0;
        right: auto;
        display: inline-block;
        top: auto;
        z-index: -2;
    }


.laptop-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Content Section */
.content-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        /* display: block;
    width: 90%;
    height: 100%;
    object-fit: cover;
    float: right;
    border-radius: 10px; */
        display: block;
        width: 600px;
        height: 460px;
        object-fit: scale-down;
        /* right: 0; */
        float: right;
        border-radius: 10px;
        overflow: hidden;
    }

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .banner-section {
        text-align: center;
    }

    /* .banner-section .btn {
        margin: 0 auto;
    } */

    .content-section {
        text-align: center;
    }

        .content-section .d-flex {
            justify-content: center;
        }

    .feature-icon {
        margin: 0 auto;
    }
}

/* Fix for button alignment on mobile */
@media (max-width: 767.98px) {
    .d-flex.flex-wrap.gap-2.mt-4 {
        justify-content: center;
    }
}

/***service section***/

.main-services-section .service-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
    height: 100%;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

    .main-services-section .service-card:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #000;
    }

.main-services-section .icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-orange-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.main-services-section .service-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.main-services-section .learn-more {
    font-weight: bold;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.5 ease-in-out;
}

    .main-services-section .learn-more svg {
        width: 18px;
    }

.main-services-section .service-card:hover .learn-more {
    text-decoration: none;
    color: var(--primary-color);
}

.main-services-section .discription {
    height: 140px;
}

/***service section End****/

/***INDUSTRIES we serve start***/

.custom-service-section {
    background-image: url('../images/weserve.png');
    background-position: left center;
    background-repeat: no-repeat;
}

    .custom-service-section .css-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .custom-service-section .card {
        border: 1px solid var(--dark-color);
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        cursor: pointer;
    }

        .custom-service-section .card:hover {
            border-color: var(--primary-color);
            box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
        }

    .custom-service-section .active-card {
        border: 1px solid var(--primary-color);
    }

    .custom-service-section .card-body {
        text-align: left;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .custom-service-section .card-title {
        font-size: 16px;
        font-weight: 600;
    }

    .custom-service-section .icon {
        font-size: 24px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .custom-service-section .icon-hotel {
        background-color: #FFDED4;
    }

    .custom-service-section .icon-property {
        background-color: #FFEED4;
    }

    .custom-service-section .icon-cannabis {
        background-color: #D4F0FF;
    }

    .custom-service-section .icon-office {
        background-color: #DDD4FF;
    }

    .custom-service-section .icon-school {
        background-color: #CEFFE1;
    }

    .custom-service-section .icon-airbnd {
        background-color: #607d8b30;
    }

    .custom-service-section .icon-dealerships {
        background-color: #8bc34a52;
    }

    .custom-service-section .icon-storageFacilities {
        background-color: #00968830;
    }

    .custom-service-section .learn-more {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }

    .custom-service-section .row.g-4 > div {
        display: flex;
    }

    .custom-service-section .learn-more svg {
        width: 18px;
    }


    .custom-service-section .icon-card-holder .icon-box {
        float: right;
        position: absolute;
        right: 15px;
    }

        .custom-service-section .icon-card-holder .icon-box img {
            width: 28px;
            height: 28px;
            /* background: #e5baba; */
            border-radius: 100px;
            padding: 5px;
            border: 1px solid;
        }

    .custom-service-section .title-detail {
        font-size: 16px;
        color: #4a4a4a;
        opacity: 90%;
        margin-bottom: 4px;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 100px;
        display: block;
        display: -webkit-box;
    }

.pd-img iframe.youtube-video {
    width: 98%;
}

.pd-img video {
    margin: 0;
    width: 100%;
}

/***INDUSTRIES we serve end***/

/**Qualified Vendors start***/


.qualified-vendors .qfv-card {
    max-width: 1000px;
    margin: 0 auto;
}

.qualified-vendors .logo-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .qualified-vendors .logo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .qualified-vendors .logo-card img {
        max-width: 100%;
        max-height: 160px;
        object-fit: contain;
    }

/**Qualified Vendors end***/

/***Trusted Partners start***/

.trusted-partners-section .custom-title span:after {
    display: none;
}

.trusted-partners-section .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid var(--dark-color);
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

    .trusted-partners-section .logo-box:hover {
        border-color: var(--primary-color);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .trusted-partners-section .logo-box img {
        /* max-width: 60%;
    max-height: 60%; */
        max-width: 70%;
        max-height: 70%;
        object-fit: contain;
        width: 100%;
        border-radius: 0;
    }

/***Trusted Partners end***/

/***Trusted client start***/

.trusted-client .custom-title span:after {
    display: none;
}

.trusted-client .logo-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-client .logo-box {
    /* width: 170px; */
    height: 96px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}



    .trusted-client .logo-box img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

.trusted-client .logo-slider img {
    width: 145px;
    max-height: 60px;
    object-fit: contain;
}

/***Trusted client End***/

/***cta start***/
.call-to-action .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-gray-color);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

    .call-to-action .banner:after {
        position: absolute;
        content: "";
        background-image: url(../images/cta-right.png);
        background-repeat: no-repeat;
        background-position: right top;
        right: -24px;
        top: -24px;
        width: 110px;
        height: 120px;
        background-size: contain;
    }

    .call-to-action .banner:before {
        position: absolute;
        content: "";
        background: #FFD4D4;
        left: -22px;
        bottom: -22px;
        width: 178px;
        height: 178px;
        background-size: contain;
        z-index: -9;
        border-radius: 15px;
    }

.call-to-action .left-content {
    max-width: 55%;
    z-index: 2;
}

    .call-to-action .left-content h2 {
        font-weight: bold;
        color: var(--dark-color);
        text-align: center;
        text-transform: uppercase;
    }

    .call-to-action .left-content p {
        font-size: 16px;
        color: #555;
    }

        .call-to-action .left-content p span {
            color: red;
            font-weight: bold;
        }

.call-to-action .right-content {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 2;
}

    .call-to-action .right-content a {
        background: var(--white-color);
        color: var(--dark-color);
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        border: none;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
    }

        .call-to-action .right-content a:hover {
            background: #ddd;
        }

.call-to-action .background-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    /* clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%); */
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 35% 100%, 22% 43%, 13% 0);
    border-radius: 0 15px 15px 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .call-to-action .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .call-to-action .left-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .call-to-action .right-content {
        width: 100%;
        height: auto;
        border-radius: 10px;
        justify-content: center;
    }

    .call-to-action .background-shape {
        width: 100%;
        height: 100%;
        clip-path: none;
        border-radius: 10px;
    }

    .call-to-action .left-content h2 {
        color: var(--white-color);
    }

    .call-to-action .custom-subtitle.subtitle-md {
        color: var(--white-color);
    }

    .call-to-action .primary-color {
        color: var(--dark-color);
    }
}

/***cta End***/

/***social media section css start***/

.social-media-section {
    position: relative;
}

    .social-media-section::after {
        position: absolute;
        content: "";
        background-image: url(../images/socialmediadots.png);
        background-repeat: no-repeat;
        background-size: cover;
        right: 45px;
        bottom: 65px;
        background-position: right bottom;
        width: 175px;
        height: 80px;
        z-index: -1;
    }


    .social-media-section::before {
        position: absolute;
        content: "";
        background-image: url(../images/socialmediadots.png);
        background-repeat: no-repeat;
        background-size: cover;
        left: 45px;
        top: 65px;
        background-position: left top;
        width: 175px;
        height: 80px;
        z-index: -1;
    }


    .social-media-section h2.custom-title {
        text-align: center;
    }

    .social-media-section .sms {
        border: 1px solid #000;
        border-radius: 10px;
        padding: 25px;
        background-color: var(--white-color);
    }

    .social-media-section .card {
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: none;
    }

    .social-media-section .social-feed-card img {
        border-radius: 0;
        width: 100%;
        /* height: 160px; */
        height: 100%;
        object-fit: cover;
    }

    .social-media-section .social-feed-card iframe {
        border-radius: 0;
        width: 100%;
        /* height: 160px; */
        height: 100%;
        object-fit: cover;
    }

.sms-img iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.sms-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.social-media-section .social-m {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-media-section .news-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0 30px 0 0;
    margin-bottom: 0;
    text-align: left;
}

    .social-media-section .news-item span {
        color: #3C4563;
        font-size: 12.46px;
        font-weight: 500;
        margin-right: 5px;
    }

    .social-media-section .news-item h6 {
        text-align: left;
        color: #1B1C57;
        font-size: 14px;
        line-height: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 22em;
        line-height: 1.5;
    }

    .social-media-section .news-item p {
        margin-bottom: 0;
        font-size: 12px;
        color: #888B97;
    }

.social-media-section .news-img {
    width: 150px;
    /* height: 130px; */
    height: 105px;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}

.social-media-section .news-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.social-media-section .swiper-pagination-bullet-active {
    background: red;
}

.social-media-section .card .card-header {
    padding: 5px 10px;
    background: transparent;
    border: none;
    color: var(--dark-color);
}

    .social-media-section .card .card-header span {
        font-size: 12px;
        font-weight: 600;
        line-height: 15px;
        color: #000;
    }

.social-media-section .card-body span {
    font-size: 12px;
    color: #536471;
    padding-right: 10px;
}

.social-media-section .card-body h5 {
    font-size: 14px;
    padding: 4px 0 0px;
    margin-bottom: 0;
    color: var(--dark-color);
}

.social-media-section .card-body a {
    color: var(--primary-color);
    font-size: 14px;
}

.social-media-section .card-body p {
    font-size: 14px;
    margin-bottom: 4px;
    color: #0F1419;
}

.social-media-section .card .card-header span small {
    color: #536471;
}

.social-media-section .card .card-header img {
    width: 20px;
    height: 20px;
}

.social-media-section .card .card-header .fa {
    font-size: 12px;
}

.social-media-section .card-body {
    text-align: left;
    padding: 10px 10px;
}

    .social-media-section .card-body input {
        background: var(--light-gray-color);
        border: none;
        border-radius: 10px;
        font-size: 14px;
    }

.mySwiper-vt {
    height: 432px;
    /* Adjust height as needed */
    overflow: hidden;
}

    .mySwiper-vt .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: start;
        height: 33.33%;
        /* Ensures equal height */
    }

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    /* top: 179px; */
    border: -49px;
    position: relative;
    margin-top: 30px;
}

/***social media section css end***/

/*-----------------
   Aboutus page css
 ----------------------*/

/*about banner css start**/

.who-we-are {
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
}

    .who-we-are .custom-subtitle {
        text-transform: initial;
        color: #4a4a4a;
        font-weight: 400;
        margin: 25px 0;
    }

@media (max-width: 768px) {
    .image-container {
        flex-direction: row;
        justify-content: center;
    }

        .image-container img {
            width: 45%;
        }
}

.image-section {
    text-align: right;
    position: relative;
    top: 75px;
}

.image-container:before {
    /* position: absolute;
    content: "";
    width: 178px;
    height: 150px;
    background-color: var(--primary-color);
    left: 85px;
    z-index: 1;
    top: -20px;
    border-radius: 10px; */
    position: absolute;
    content: "";
    width: 178px;
    height: 150px;
    background-color: var(--primary-color);
    left: 38px;
    z-index: 1;
    top: -75px;
    border-radius: 10px;
}

.image-container:after {
    /* position: absolute;
    content: "";
    background-image: url(../images/aboutdots.png);
    background-repeat: no-repeat;
    background-position: right top;
    right: 46px;
    top: auto;
    width: 110px;
    height: 120px;
    background-size: contain;
    bottom: -94px; */
    position: absolute;
    content: "";
    background-image: url(../images/aboutdots.png);
    background-repeat: no-repeat;
    background-position: right top;
    right: 38px;
    top: auto;
    width: 110px;
    height: 120px;
    background-size: contain;
    bottom: -328px;
}

.image-front {
    /* position: absolute;
    left: 60px;
    bottom: -257px;
    z-index: 9; */
    position: absolute;
    left: 16px;
    bottom: auto;
    z-index: 9;
    top: 128px;
}

.image-back {
    /* max-width: 350px;
    z-index: 2;
    position: relative; */
    max-width: 350px;
    z-index: 2;
    position: absolute;
    left: 55px;
    top: -55px;
}

.custom-service-section.vision-mission {
    background-image: none;
}

.vision-mission .title-detail {
    min-height: 88px;
}

/*about banner css end***/

/**Inqueary section css start***/

.section {
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px dashed var(--dark-color);
    overflow: hidden;
    margin: 0 auto;
    padding: 4px;
}

    .circle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-detail-s {
    max-width: 485px;
}

    .card-detail-s .contact-card {
        background: var(--white-color);
        border-radius: 10px;
        padding: 20px 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 30px 0;
        cursor: pointer;
    }

        .card-detail-s .contact-card svg {
            width: 38px;
            color: var(--dark-color);
        }

        .card-detail-s .contact-card h6 {
            font-weight: 400;
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 5px;
        }

        .card-detail-s .contact-card p {
            margin: 0;
            color: var(--dark-color);
            font-weight: 500;
        }

        .card-detail-s .contact-card a {
            text-decoration: none;
            color: var(--dark-color);
            width: 100%;
            display: block;
        }

            .card-detail-s .contact-card a:hover {
                color: var(--primary-color);
                cursor: pointer;
            }

        .card-detail-s .contact-card:hover a {
            color: var(--primary-color);
            cursor: pointer;
        }

/***Inqueary section css End***/


/*------------------
  Smartsensor page css
---------------------------*/

/***smartsensor banner css start***/

.smartsensor-banner {
    position: relative;
}

    .smartsensor-banner:after {
        position: absolute;
        content: "";
        background: var(--light-orange-color);
        width: calc(100% - 58%);
        height: 800px;
        border-radius: 0 0 0 50px;
        top: -100px;
        right: 0;
        z-index: -1;
    }

    .smartsensor-banner:after {
        position: absolute;
        content: "";
        background: var(--light-orange-color);
        height: calc(100% - -50px);
        border-radius: 0 0 0 100px;
    }

    .smartsensor-banner .who-we-are {
        box-shadow: none;
        align-items: center;
    }

.sm-setion ul {
    list-style: none;
    padding: 0;
    position: relative;
}

    .sm-setion ul li {
        /* display: flex; */
        margin: 10px 0;
        /* font-size: 24px; */
        font-size: 20px;
        padding-left: 50px;
    }

        .sm-setion ul li::before {
            position: absolute;
            content: "";
            margin-right: 10px;
            font-size: 18px;
            color: var(--primary-color);
            background-image: url(../images/hand.png);
            background-repeat: no-repeat;
            width: 40px;
            height: 40px;
            background-size: cover;
            left: 0;
        }

.video-container.vc-setion.smart-n {
    padding: 0;
}

    .video-container.vc-setion.smart-n img {
        border-radius: 10px;
        width: 100%;
    }

.video-container.vc-setion {
    position: relative;
    padding-top: 56%;
    /* 16:9 Aspect Ratio */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: visible;
    z-index: 2;
}

    .video-container.vc-setion iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .video-container.vc-setion:before {
        position: absolute;
        content: "";
        width: 178px;
        height: 150px;
        background-color: var(--primary-color);
        left: -13px;
        z-index: -1;
        top: -15px;
        border-radius: 10px;
    }

    .video-container.vc-setion:after {
        position: absolute;
        content: "";
        background-image: url(../images/aboutdots.png);
        background-repeat: no-repeat;
        background-position: right top;
        right: -10px;
        top: auto;
        width: 110px;
        height: 120px;
        background-size: contain;
        bottom: -41px;
        z-index: -2;
    }

/***smartsensor banner css End***/

/***problem solution css start***/
.ps-section {
    position: relative;
    z-index: 2;
}

    .ps-section img {
        width: 100%;
    }

    .ps-section:before {
        position: absolute;
        content: "";
        width: 177px;
        height: 121px;
        background-image: url(../images/aboutdots.png);
        background-repeat: no-repeat;
        left: -13px;
        z-index: -1;
        top: -15px;
        /* border-radius: 10px; */
        background-size: contain;
    }

    .ps-section::after {
        position: absolute;
        content: "";
        width: 177px;
        height: 121px;
        background-image: url(../images/aboutdots.png);
        background-repeat: no-repeat;
        right: -38px;
        z-index: -1;
        bottom: -5px;
        /* border-radius: 10px; */
        background-size: contain;
    }

.solution .ps-section:before {
    position: absolute;
    content: "";
    width: 177px;
    height: 121px;
    background-image: url(../images/aboutdots.png);
    background-repeat: no-repeat;
    right: -42px;
    z-index: -1;
    top: -15px;
    /* border-radius: 10px; */
    background-size: contain;
    left: auto;
}

.solution .ps-section::after {
    position: absolute;
    content: "";
    width: 177px;
    height: 121px;
    background-image: url(../images/aboutdots.png);
    background-repeat: no-repeat;
    z-index: -1;
    bottom: -15px;
    /* border-radius: 10px; */
    background-size: contain;
    left: -15px;
    right: auto;
}

/***problem solution css End***/

/*-------------------------
  Faq page 
  --------------------*/

/***accordation css start***/

.accordation-section .faq-section {
    margin: auto;
    text-align: center;
    padding: 50px 15px;
}

.accordation-section .faq-heading {
    font-size: 28px;
    font-weight: bold;
}

.accordation-section .faq-subheading {
    font-size: 16px;
    color: gray;
}

    .accordation-section .faq-subheading a {
        color: var(--primary-color);
        font-weight: bold;
        text-decoration: none;
    }

        .accordation-section .faq-subheading a:hover {
            text-decoration: underline;
        }

.accordation-section .accordion-button {
    font-weight: 500;
    font-size: 18px;
    color: #1B1139;
    gap: 25px;
    padding: 8px;
}

    .accordation-section .accordion-button:not(.collapsed) {
        background-color: var(--white-color);
        color: var(--primary-color);
        box-shadow: none;
        padding: 8px;
    }

    .accordation-section .accordion-button::after {
        display: none;
    }

.accordation-section .accordion-item {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 30px 0;
    padding: 23.3px 25px;
}

.accordation-section .accordion-body {
    text-align: left;
}

.accordation-section .accordion-button:focus {
    box-shadow: none;
}

.accordation-section .custom-subtitle.subtitle-md {
    max-width: 600px;
    font-weight: 400;
}

/***accordation css End***/

/*-----------------
   Media section
-----------------------*/

.media-section h6.custom-subtitle {
    max-width: 100%;
}

.media-section .gallery-container {
    max-width: 1100px;
    margin: auto;
}

.media-section .gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.media-section .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid #000;
}

    .media-section .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .media-section .gallery-item img {
        width: 100%;
        border-radius: 10px;
        padding-bottom: 15px;
    }

    .media-section .gallery-item a h5 {
        font-size: 18px;
        font-weight: bold;
        color: var(--dark-color);
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
    }

.media-section .gc-icon {
    width: 25px;
    height: 25px;
    background: var(--light-orange-color);
    text-align: center;
    border-radius: 100px;
    position: relative;
}

    .media-section .gc-icon svg {
        width: 20px;
        height: 20px;
        color: var(--primary-color);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 2px;
    }

.media-section .gallery-item a:hover h5 {
    color: var(--primary-color);
}

.media-section .gallery-item p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-right: 18px;
    margin-bottom: 0;
}

.media-section .btn-load-more {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 30px;
    border: none;
    transition: 0.3s;
}

    .media-section .btn-load-more:hover {
        background-color: darkred;
    }

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }
}


/*------------------
   contact us 
----------------------*/

.custome-banner.contactus .custom-subtitle {
    text-align: center;
    text-transform: capitalize;
    color: #666666;
    font-weight: 400;
    position: relative;
    z-index: 9;
}

.contctus-from-section .contact-form {
    margin: auto;
    background: var(--white-color);
    border-radius: 10px;
}

.contctus-from-section .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
}

    .contctus-from-section .form-control:focus {
        border-color: var(--primary-color);
        outline: none;
    }

.contctus-from-section .btn-submit {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 30px;
    border: none;
    transition: 0.3s;
}

    .contctus-from-section .btn-submit:hover {
        background-color: darkred;
    }

.contctus-from-section label {
    font-weight: 500;
    margin-bottom: 5px;
}

/*--------------
request a demo
--------------------*/

.contact-form.cfs-section {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px;
}

    .contact-form.cfs-section .custom-title {
        font-size: 34px;
        padding-bottom: 25px;
    }

/*--------------
  custome popup modal
  ----------------------*/


.custommodal .modal-header {
    padding: 18px 22px;
}

.custommodal .modal-body {
    padding: 25px 30px;
}

.custommodal .card-title {
    padding-bottom: 5px;
    font-weight: 400;
    line-height: 28px;
    font-size: 19px;
}

.custommodal h6.card-title {
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0 13px 0;
    color: var(--primary-color);
}

.custommodal .sm-setion ul {
    padding-left: 25px;
}

    .custommodal .sm-setion ul li {
        margin: 8px 0;
        font-size: 16px;
        padding-left: 32px;
    }

        .custommodal .sm-setion ul li::before {
            width: 24px;
            height: 24px;
            left: 24px;
        }

.industries-s {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
}

/*.pd-img {
    margin-top: 30px;
}*/

/*.modal .sm-setion {
    width: 450px;
}*/

.modal .sm-setion {
    /* flex: auto; */
    width: 65%;
}

.pd-img {
    margin-top: 30px;
    width: 45%;
}

    .pd-img img {
        width: 175px;
        height: 175px;
        object-fit: cover;
        border-radius: 10px;
        overflow: hidden;
    }

/***client review section start***/
.review-section {
    text-align: center;
    padding: 60px 20px;
}

.review-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0 auto;
    position: relative;
}

.review-section .review {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}

.review-section .review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.review-section .carousel-controls {
    margin-top: 20px;
}

    .review-section .carousel-controls button {
        background: var(--primary-color);
        color: var(--white-color);
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        margin: 0 5px;
        border-radius: 5px;
    }

        .review-section .carousel-controls button:hover {
            background: var(--primary-color);
            color: var(--white-color);
        }

.review-section .custom-subtitle.subtitle-md {
    max-width: 500px;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .review-section {
        padding: 40px 10px;
    }

        .review-section .carousel-controls button {
            padding: 8px 15px;
        }
}


/****client review section end***/


/***Footer css start***/
.footer {
    background-color: #000;
    color: #fff;
}

    .footer p {
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    .footer .fts-one {
        padding-right: 50px;
        line-height: 23px;
    }

    .footer h5 {
        font-size: 16px;
        margin-bottom: 0;
        padding-bottom: 25px;
    }

    .footer a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

        .footer a:hover {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.8s ease-in-out;
        }

.footer-logo img {
    max-width: 180px;
}

.footer-social {
    padding-top: 15px;
}

    .footer-social a {
        color: #fff;
        font-size: 20px;
        margin-right: 10px;
    }

.footer .contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer .newsletter input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    height: 52px;
}

.footer .newsletter .join-btn {
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    padding: 8px 22px;
    border-radius: 0;
    transition: all 0.6s ease-in-out;
    height: 52px;
}

    .footer .newsletter .join-btn:hover {
        background-color: var(--primary-color);
    }

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
}

    .footer-bottom p {
        margin-bottom: 0;
    }

.footer svg {
    width: 18px;
    position: absolute;
    color: var(--primary-color);
    left: 0;
    top: 2px;
}

.footer .fts {
    padding-left: 25px;
    position: relative;
    transition: all 0.8s ease-in-out;
}

/**Footer css End***/

/****responsive css start***/

@media screen and (max-width: 767px) {

    /***custme css***/

    .container-fluid {
        max-width: 1250px;
        width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .padding-80 {
        padding: 60px 0;
    }

    .margin-top-80 {
        margin-top: 40px;
    }

    .padding-50 {
        padding: 25px 0;
    }

    .custom-title {
        font-size: 30px;
    }

    .custom-subtitle {
        font-size: 18px;
    }

        .custom-subtitle.subtitle-md {
            font-size: 18px;
        }

    /***custme css end***/

    .main-section {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 9;
    }

        .main-section .py-4 {
            padding: 15px 0 !important;
        }

    .main-navbar img {
        width: 105px;
    }

    .banner-section:after {
        background-image: none;
        background-color: var(--light-orange-color);
        min-height: 100%;
        top: 0;
    }

    .heading {
        font-size: 34px;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
    }

    .margin-top-80.main-services-section {
        margin-top: 0;
    }

    .main-services-section .discription {
        height: auto;
    }

    .title-detail {
        min-height: auto;
        margin-bottom: 10px;
    }

    .custom-service-section .css-inner {
        max-width: 1100px;
        margin: 0 auto !important;
    }

    .trusted-client .mt-5 {
        margin-top: 20px !important;
    }

    .social-media-section .sms {
        margin-bottom: 20px;
        padding: 15px;
    }

    .social-media-section .news-img {
        width: 100px;
        height: 80px;
    }

    .social-media-section .news-item h6 {
        font-size: 12px;
        line-height: 16px;
    }

    .social-media-section .news-user {
        width: 30px;
        height: 30px;
    }

    /***about us page css***/

    .about-banner {
        margin-top: 20px;
    }

    .who-we-are {
        padding: 30px 15px;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .image-section {
        top: 0;
    }

    .image-container {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

        .image-container:before,
        .image-container:after {
            display: none;
        }

        .image-container img {
            width: 100%;
        }

    .image-back {
        max-width: 100%;
        left: 0;
        position: relative;
        top: 0;
    }

    .image-front {
        position: relative;
        left: 0;
        bottom: 0;
        top: 0;
    }

    .circle-image {
        width: 100%;
        height: 100%;
    }

    .card-detail-s .contact-card h6 {
        font-size: 20px;
    }

    .card-detail-s {
        max-width: 100%;
    }

    .call-to-action .banner:after,
    .call-to-action .banner:before {
        display: none;
    }

    .call-to-action {
        padding-top: 0;
    }

        .call-to-action .mt-5 {
            margin-top: 0 !important;
        }

    /***smart sensor***/

    .smartsensor-banner {
        margin-top: 20px;
    }

    .sm-setion ul li {
        font-size: 18px;
    }

    .problem-solution .row {
        gap: 15px;
    }

    .problem-solution .ps-5 {
        padding-left: 25px !important;
    }

    .problem-solution .pe-5 {
        padding-right: 25px !important;
    }

    /***faq page***/

    .custome-banner {
        margin-top: 0;
        padding: 90px 0;
    }

    /***media page**/

    .media-section .gallery-grid {
        column-count: 1;
    }
    /***contact us***/
    .contctus-from-section {
        padding: 15px 15px;
    }

    /***request demo***/
    .contact-form.cfs-section {
        padding: 15px;
    }

        .contact-form.cfs-section .custom-title {
            font-size: 20px;
        }

    .contctus-from-section.request-demo {
        padding: 60px 5px;
    }

    /***modal**/
    .industries-s {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-top: 15px;
    }

    .custommodal .modal-dialog {
        max-width: 95%;
    }

    .modal .sm-setion {
        width: 100%;
    }

    .pd-img {
        width:100%;
    }
    /**footer**/
    .footer .fts-one {
        padding-right: 0;
    }

    .footer h5 {
        padding-bottom: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {

    /***custme css***/

    body {
        overflow-x: hidden;
    }

    .padding-80 {
        padding: 60px 0;
    }

    .margin-top-80 {
        margin-top: 40px;
    }

    .custom-title {
        font-size: 30px;
    }

    .custom-subtitle {
        font-size: 18px;
    }

        .custom-subtitle.subtitle-md {
            font-size: 18px;
        }

    /***custme css end***/

    .main-section {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 9;
    }

        .main-section .py-4 {
            padding: 15px 0 !important;
        }

    .main-navbar img {
        width: 105px;
    }

    .qualified-vendors .logo-card {
        height: 125px;
    }

    .banner-section:after {
        background-image: none;
        background-color: var(--light-orange-color);
        min-height: 100%;
        top: 0;
    }

    .heading {
        font-size: 34px;
    }

        .heading span {
            font-size: 34px;
        }

    .banner-section .swiper-slide img {
        width: 100%;
    }


    .margin-top-80.main-services-section {
        margin-top: 0;
    }

    .main-services-section .discription {
        height: auto;
    }

    .title-detail {
        min-height: auto;
        margin-bottom: 10px;
    }

    .custom-service-section .css-inner {
        max-width: 1100px;
        margin: 0 auto !important;
    }

    .trusted-client .mt-5 {
        margin-top: 20px !important;
    }

    .social-media-section .sms {
        margin-bottom: 20px;
        padding: 15px;
    }

    .social-media-section .news-img {
        width: 100px;
        height: 80px;
    }

    /* .social-media-section .news-item h6 {
        font-size: 12px;
        line-height:16px;
    } */

    .social-media-section .news-user {
        width: 30px;
        height: 30px;
    }

    .social-media-section .social-feed-card img {
        border-radius: 0;
        width: 100%;
    }


    /***about us page css***/

    .about-banner {
        margin-top: 20px;
    }

    .who-we-are {
        padding: 30px 20px;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .image-section {
        top: 0;
    }

    .image-container {
        display: flex;
        flex-direction: row;
        gap: 22px;
    }

        .image-container:before,
        .image-container:after {
            display: none;
        }

    .image-back {
        max-width: 100%;
        z-index: 2;
        position: relative;
        left: 0;
        top: 0;
        height: 100%;
    }

    .image-front {
        position: relative;
        left: 0;
        bottom: 0;
        z-index: 2;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .circle-image {
        width: 310px;
        height: 310px
    }

    .card-detail-s .contact-card h6 {
        font-size: 20px;
    }

    /***smart sensor***/

    .smartsensor-banner {
        margin-top: 20px;
    }

    .sm-setion ul li {
        font-size: 18px;
    }

    .problem-solution .row {
        gap: 15px;
    }

    .problem-solution .ps-5 {
        padding-left: 25px !important;
    }


    /***faq***/

    .custome-banner {
        margin-top: 0;
        padding: 90px 0;
    }

    /***media page**/

    .media-section .gallery-grid {
        column-count: 2;
    }

    /***modal**/

    .custommodal .modal-dialog {
        max-width: 95%;
    }

    /**footer**/

    .footer-logo img {
        max-width: 130px;
    }

    .footer .fts-one {
        padding-right: 0;
    }

    .footer h5 {
        padding-bottom: 15px;
    }

    .footer-social a {
        margin-right: 3px;
    }

        .footer-social a img {
            width: 25px;
        }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {

    /***custme css***/

    body {
        overflow-x: hidden;
    }

    .padding-80 {
        padding: 60px 0;
    }

    .margin-top-80 {
        margin-top: 40px;
    }

    .custom-title {
        font-size: 30px;
    }

    .custom-subtitle {
        font-size: 18px;
    }

        .custom-subtitle.subtitle-md {
            font-size: 18px;
        }

    /***custme css end***/

    .main-section {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 9;
    }

        .main-section .py-4 {
            padding: 15px 0 !important;
        }

    .main-navbar img {
        width: 105px;
    }

    .qualified-vendors .logo-card {
        height: 125px;
    }

    .banner-section:after {
        background-image: none;
        background-color: var(--light-orange-color);
        min-height: 100%;
        top: 0;
    }

    .heading {
        font-size: 34px;
    }

        .heading span {
            font-size: 34px;
        }

    .banner-section .swiper-slide img {
        width: 100%;
    }


    .margin-top-80.main-services-section {
        margin-top: 0;
    }

    .main-services-section .discription {
        height: auto;
    }

    .title-detail {
        min-height: auto;
        margin-bottom: 10px;
    }

    .custom-service-section .css-inner {
        max-width: 1100px;
        margin: 0 auto !important;
    }

    .trusted-client .mt-5 {
        margin-top: 20px !important;
    }

    .social-media-section .sms {
        margin-bottom: 20px;
        padding: 15px;
    }

    .social-media-section .news-img {
        width: 100px;
        height: 80px;
    }

    /* .social-media-section .news-item h6 {
        font-size: 12px;
        line-height:16px;
    } */

    .social-media-section .news-user {
        width: 30px;
        height: 30px;
    }

    .social-media-section .social-feed-card img {
        border-radius: 0;
        width: 100%;
    }


    /***about us page css***/

    .about-banner {
        margin-top: 20px;
    }

    .who-we-are {
        padding: 30px 20px;
    }

    .image-back {
        max-width: 320px;
    }

    .image-front {
        bottom: -190px;
        z-index: 9;
        width: 250px;
    }

    /* .image-section {
        top: 0;
    } */
    /* .image-container {
        display: flex;
        flex-direction: row;
        gap: 22px;
    } */

    /* .image-container:before{
        left:-10px;
        top: -10px;
    }

    .image-container:after {
        right: -10px;
        bottom: -40px;
    } */

    /* .image-container img {
        width: 100%;
    }
    .image-back {
        max-width: 100%;
    }
    .image-front {
        position: relative;
        left: 0;
        bottom: 0;
        z-index: 2;
    } */


    .circle-image {
        width: 310px;
        height: 310px
    }

    .card-detail-s .contact-card h6 {
        font-size: 20px;
    }

    /***smart sensor***/

    .smartsensor-banner .who-we-are {
        padding: 30px 15px;
    }

    .sm-setion ul li {
        font-size: 18px;
    }


    /**footer**/

    .footer-logo img {
        max-width: 130px;
    }

    .footer .fts-one {
        padding-right: 0;
    }

    .footer h5 {
        padding-bottom: 15px;
    }

    .footer-social a {
        margin-right: 3px;
    }

        .footer-social a img {
            width: 25px;
        }
}

@media screen and (min-width: 1025px) and (max-width:1260px) {

    .custom-title {
        font-size: 30px;
    }

    .social-media-section h2.custom-title {
        font-size: 30px;
    }

    .heading {
        font-size: 44px;
    }

        .heading span {
            font-size: 44px;
        }

    .main-navbar .btn.btn-dark {
        font-size: 10px;
    }

    .nav-link {
        font-size: 15px;
    }

    .who-we-are .custom-subtitle {
        font-size: 20px;
    }

    /***smart sensor***/

    .smartsensor-banner .who-we-are {
        padding: 30px 15px;
    }

    .sm-setion ul li {
        font-size: 18px;
    }
}

.a-logo img {
    width: 150px;
}

.sensor-logo img {
    width: 3;
    width: 315px;
    /* margin-bottom: 34px; */
    margin: 0 auto 27px auto;
    display: block;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}

.offcanvas-header img {
    width: 150px;
}
