:root {
    /* Color */
    --theme-color: #CE2027;
    --theme-dark: #000000;
    --theme-light: #EBF6FA;
    --theme-light-2: #F4F7FA;
    --black: #000000;
    --black-70: #191919;
    --white: #ffffff;
    --border-color: #707070;
    --grey: #f5f5f5;

    --white-40: rgba(255, 255, 255, .4);

    /* Spacing */
    --space-xl: 2rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
    --space-sm: 0.5rem;

    --primary-family: "Poppins", sans-serif;
    --secondary-font: "Raleway", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-family);
    font-size: 1rem;
}

/* Basic Styles */
.container,
.container-fluid {
    padding: 0 0.7rem;
    margin: 0 auto;
    width: 100%;
}

.container {
    max-width: 650px;
}

.container-fluid {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: var(--secondary-font);
}

.row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -5px;
}

[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 100ms ease-in;
    color: var(--black);
}

a:hover {
    color: var(--theme-color);
}

ul {
    list-style: none;
}

img {
    vertical-align: middle;
}

.text-center {
    text-align: center !important;
}

.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 500;
}

.fw-semi-bold {
    font-weight: 600;
}

.fw-bold {
    font-weight: bold;
}

.text-upper {
    text-transform: uppercase;
}

picture {
    display: block;
}

.text-primary {
    color: var(--theme-color);
}

.text-dark {
    color: var(--theme-dark);
}

.text-black-70 {
    color: var(--black-70);
}

.text-black {
    color: var(--black);
}

.text-left {
    text-align: left !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-5rm {
    padding: 5rem 0 !important;
}

.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pt-5rem {
    padding-top: 5rem !important;
}

.pb-5rem {
    padding-bottom: 5rem !important;
}

.mx-width-100 {
    max-width: 100% !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-2 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 2rem !important;
}

.pb-6 {
    padding-bottom: 3rem !important;
}

.p-2 {
    padding: 1rem !important;
}

.br-1 {
    border-radius: 0.5rem !important;
}

.opacity-50 {
    opacity: 0.5;
}

section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt--4rem {
    margin-top: -4rem !important;
}

.mt--5rem {
    margin-top: -5rem !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute;
}

.absolute-bc {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.absolute-bl {
    left: 0;
    bottom: 0;
}

.align-items-center {
    align-items: center !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-theme-dark {
    background-color: var(--theme-dark);
}

.bg-black {
    background-color: var(--black);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-black-70 {
    background-color: var(--black-70);
}

.bg-white {
    background-color: var(--white);
}

.bg-primary {
    background-color: var(--theme-color) !important;
}

.bg-primary-light {
    background-color: var(--theme-light) !important;
}

.bg-primary-light-2 {
    background-color: var(--theme-light-2) !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.rounded-2 {
    border-radius: 1rem !important;
}

.justify-space-between {
    justify-content: space-between !important;
}

.d-flex {
    display: flex !important;
}

.align-items-start {
    align-items: start !important;
}

.no-wrap {
    white-space: nowrap !important;
}

.gap-1 {
    gap: 0.5rem !important;
}

.gap-2 {
    gap: 1rem !important;
}

p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.w-100 {
    width: 100% !important;
}

.section-title-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.section-title-card picture {
    margin-left: -6rem;
    margin-top: -2rem;
    max-width: calc(100% + 6rem);
}

.section-title {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.section-page-title.overlapped {
    padding-top: 60px;
    padding-bottom: 100px;
}

.bg-filled-circle {
    background-image:
        radial-gradient(ellipse, var(--bg) 0%, var(--bg) 30%, transparent 34%);
    background-size: var(--size) var(--size);
    background-repeat: repeat;
    width: calc(var(--columns) * var(--size));
    height: calc(var(--rows) * var(--size));
}

.btn {
    padding: var(--space-md) 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 0;
    background-color: transparent;
    transition: 0.3s ease-in;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--theme-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--theme-color);
}

.btn-white:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-dark-border {
    border: 2px solid var(--black-70);
    color: var(--white);
}

.btn-dark-border:hover {
    border: 2px solid var(--black-70);
    color: var(--white);
    background-color: var(--black-70);
}

.btn-primary-wt-icon {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header CSS Start */
header {
    padding: 1rem 0;
    overflow: hidden;
    transition: 0.2s ease-in;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header::after {
    content: "";
    clear: both;
    display: block;
}

header.is-scrolled {
    box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.2);
}

header.is-scrolled .logo img {
    max-width: 110px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    transition: 0.3s all;
}


.menu-toggler {
    background: transparent;
    border: 0;
    position: absolute;
    top: -1rem;
    right: 0rem;
    cursor: pointer;
    height: 2.2rem;
    width: 2.2rem;
    z-index: 999;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    background: var(--black);
    height: 2px;
    width: 2rem;
    border-radius: 3px;
    transition: all ease-in-out 500ms;
}

.hamburger {
    width: 1.2rem;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(8px);
}

[aria-expanded=true] .hamburger:before {
    width: 0;
}

[aria-expanded=true] .hamburger {
    transform: rotate(45deg);
    width: 2rem;
}

[aria-expanded=true] .hamburger:after {
    transform: translateY(-3px) rotate(-90deg);
}

nav {
    margin-left: auto;
    position: relative;
}

.main-navigation {
    position: fixed;
    top: 85px;
    left: -100%;
    z-index: 99;
    height: calc(100vh - 85px);
    width: 100%;
    background: var(--white);
    padding: 2rem 0;
    overflow-y: auto;
    transition: 0.3s all ease-in;
}

header.is-scrolled .main-navigation {
    top: 85px;
    height: calc(100vh - 85px);
}

.main-navigation[data-state="opened"] {
    left: 0;
}

.main-navigation li {
    text-align: center;
}

.main-navigation li a:not(.btn) {
    color: var(--black);
    width: 100%;
    padding: var(--space-md);
    font-size: 1rem;
}

.main-navigation li a.btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
}

.main-navigation li a:not(.btn):hover {
    color: var(--theme-color);
}

/* Hero Section CSS Start */
.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
}

.bg-banner,
.overlay,
.hero-banner {
    min-height: calc(100vh - 85px);
}

.bg-banner {
    inset: 0;
    z-index: -2;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.overlay {
    opacity: 0.55;
    z-index: -1;
    inset: 0;
}



.hero {
    overflow: hidden;
    position: relative;
    padding: 0;
}

.hero-wrapper-center {
    padding: 0 1rem;
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: 1.9rem;
    margin-bottom: var(--space-md);
    font-family: var(--secondary-font);
    font-weight: 300;
    line-height: 1.5;
    max-width: 65rem;
    margin: 0 auto 1rem;
}

.hero-desc {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--secondary-font);
    font-weight: 200;
    line-height: 1.4;
}

.hero-wrapper-right {
    margin: 0 -0.7rem;
}

/* Section Title CSS Start */
.section-title .section-desc {

    max-width: 900px;
    margin: 0 auto;
    color: var(--theme-dark);
}

/* Services CSS Start */
.section-title h2 {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.section-title .section-desc {
    max-width: 900px;
    margin: 0 auto;
    color: var(--theme-dark);
}

.card {
    &.card-solutions {
        position: relative;
        margin-bottom: 2rem;

        .card-content {
            position: absolute;
            inset: 0;
            padding: 3rem 2rem;

            backdrop-filter: blur(2px);

            .title {
                font-weight: 400;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .desc {
                font-size: 0.875rem;
                font-weight: 400;
                line-height: 1.5;
                max-width: 30rem;
            }
        }
    }
}

/* Why Us Css Start */
.flex-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.flex-card-inner-top {
    background: var(--white);
    padding: 3rem 1rem;
    /* aspect-ratio: 1; */
    height: clamp(15rem, 1vh, 15rem);
    margin-bottom: 1rem;
}

.flex-card-inner-top .title {
    font-weight: 400;
}

.flex-card-wrapper picture {
    display: block;
    overflow: hidden;
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 1rem;
}

.flex-card-wrapper picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Highlight CSS Starts */
section.highlight {
    padding-bottom: 0;
}

.article-highlight {
    text-align: center;
}

.article-highlight-content {
    .title {
        font-size: clamp(2rem, 3vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .desc {
        font-size: clamp(1rem, 1vw, 1.5rem);
    }
}

/* Section Highlight CSS Ends */

/* Contact Us Page CSS Start */
.contact-us--form-wrapper-subheading {
    font-size: 1.1rem;
    font-weight: 200;
    max-width: 450px;
}

.map-wrapper iframe {
    height: 100%;
    width: 100%;
    border: 0;
    min-height: 250px;
}

address {
    font-style: normal;
    display: inline-block;
    margin-top: 1rem;
}

.contact-form-wrapper-inner {
    padding: 3rem 1rem;
}

.contact-form-wrapper-inner .input-group {
    padding: 0;
}


/* Services Slider CSS Start */
.insight .swiper {
    padding-bottom: 100px;
}

.insight .inightSlider .swiper-pagination {
    bottom: 0px;
}

.insight .inightSlider .swiper-pagination .swiper-pagination-bullet {
    transition: 0.3s all ease-in;
}

.insight .inightSlider .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 40px;
    background-color: var(--theme-dark);
}

.inightSlider .swiper-slide {
    filter: opacity(0.6);
    transition: 0.3 all ease-in-out;
}

.inightSlider .swiper-slide.swiper-slide-active {
    filter: opacity(01);
}

.inightSlider .swiper-slide article {
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}


.inightSlider .swiper-slide article .testimonial-bottom {
    text-align: center;
}

.inightSlider .swiper-slide article .testimonial-bottom picture {
    height: 100px;
    max-width: 10rem;
    width: 100%;
    margin: 0 auto 1rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.inightSlider .swiper-slide article .testimonial-bottom picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.inightSlider .swiper-slide .designation {
    font-weight: 300;
    font-size: 0.75rem;
}


.inightSlider .swiper-slide .title {
    line-height: 1.5;
    margin-bottom: 0;
}


.swiper-navigation-wrapper {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    top: 0;
    transform: none;
    bottom: 0;
    height: 50px;
    width: 50px;
    border: 2px solid #999999;
    border-radius: 50%;
    padding: 0px 6px;
    color: #999999;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.swiper-button-next {
    right: 0px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}



/* Form Element CSS Start */

.form-control {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid transparent;
    border-radius: 0;
    margin-bottom: var(--space-md);
    font-weight: 500;
    color: var(--border-color);
    font-family: "Poppins", sans-serif;
    transition: 100ms ease-in;
    outline: none;
    background-color: var(--white);
}

.form-control .form-control-bd-white-40 {
    background-color: transparent;
    border: 2px solid var(--white-40);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control-bd-white-40::placeholder {
    font-weight: 600;
}

.form-control:focus-visible,
.form-control:focus-visible,
.form-control:focus-visible,
.form-control:focus-visible {
    border-color: var(--theme-color);
    box-shadow: none;
}

.form-control::placeholder,
.form-control::placeholder,
.form-control::placeholder,
.form-control::placeholder {
    color: #878686;
}

/* Footer CSS Start */

.footer-top {
    max-width: 850px;
    line-height: 1.5;
}

.cpyrght-text {
    text-align: center;
    font-size: 0.8rem;
}


/* Swiper Basic CSS Start */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fixed Icon Bar Right CSS Start */
.fixed-icon-bar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9;
}

.fixed-icon-bar-right li>a {
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 0;
    padding: 0.7rem;
}

.fixed-icon-bar-right li.contact>a {
    background-color: #00B7C6;
}

.fixed-icon-bar-right li.whatsapp>a {
    background: linear-gradient(180deg, #59D263 0%, #28B73D 100%);
}

.fixed-icon-bar-right li>a>img {
    width: 30px;
}

/* Media Queries Start */
@media(min-width: 425px) {
    .form-wrapper-top-title {
        font-size: 1.6rem;
    }
}

@media(min-width: 576px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .fixed-icon-bar-right li>a {
        height: 50px;
        width: 50px;
        padding: 0.8rem;
    }
}

@media(min-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 5%;
    }

    .btn-group {
        flex-direction: row;
    }

}

@media(min-width: 991px) {

    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin: 0 -15px;
    }

    .col-md-2 {
        max-width: 16.66%;
    }

    .col-md-3 {
        max-width: 25%;
    }

    .col-md-4 {
        max-width: 33.33%;
    }

    .col-md-5 {
        max-width: 41.66%;
    }

    .col-md-6 {
        max-width: 50%;
    }

    .col-md-7 {
        max-width: 50%;
    }

    .col-md-8 {
        max-width: 66.66%;
    }

    .col-md-9 {
        max-width: 75%;
    }

    .mt-md--5rem {
        margin-top: -5rem !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .flex-row-wrap {
        flex-flow: row wrap !important;
    }

    .flex-md-row-reverse {
        flex-flow: row-reverse !important;
    }

    .text-md-lg {
        font-size: 3rem !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }

    /* Section Highlight CSS Starts */
    .article-highlight {
        text-align: left;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;

        .article-highlight-content {
            max-width: 700px;
        }
    }

    /* Section Highlight CSS Ends */

    .card {
        &.card-solutions {

            .card-content {
                padding: 3rem 2rem 3rem 3rem;

                backdrop-filter: blur(0px);



                .desc {
                    max-width: 25rem;
                    font-size: 0.95rem;
                }
            }
        }
    }

}

@media(min-width: 1199px) {
    .menu-toggler {
        display: none;
    }

    nav {
        flex-grow: 1;
    }

    .main-navigation {
        left: 0;
        padding: 0;
        height: auto;
        top: 0;
        background: transparent;
        position: static;
        text-align: left;
        display: flex;
        justify-content: flex-end;
    }

    header.is-scrolled .main-navigation {
        height: auto;
    }

    .main-navigation li {
        display: inline-block;
    }

    .main-navigation li:first-child {
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.9em;
    }

}