/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.fs-40 {
    font-size: 40px !important;
}

.hello h3 {
    font-size: 18px;
}

.bb {
    position: relative;
    background: linear-gradient(150deg, #10315a 0%, #153e6b 55%, #0d2748 100%) !important;
    background-size: cover !important;
    padding: 50px 0;
    overflow: hidden;
}

.bb::before,
.bb::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bb::before {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 174, 239, .22), transparent 70%);
}

.bb::after {
    width: 200px;
    height: 200px;
    bottom: -90px;
    left: 6%;
    border: 2px dashed rgba(255, 255, 255, .14);
}

.bb h1 {
    margin-bottom: 0px;
    color: white;
    text-align: center;
    font-family: "Oswald", "Inter", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    position: relative;
}

.bb .mx-crumb {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    margin: 12px 0 0;
    font-size: .9rem;
    position: relative;
}

.bb .mx-crumb a {
    color: #7fd6f7;
}

.bb .mx-crumb a:hover {
    color: #fff;
}

.section-title {
    position: relative;
    padding-top: 70px;
    /* Adjust spacing above title */
    display: inline-block;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
    /* Height of vertical line */
    width: 3px;
    background-color: #00AEEF;
    /* Blue line color */
}

.caps {
    text-transform: uppercase;
}


/* width */

::-webkit-scrollbar {
    width: 3px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #00AEEF;
}


/* Hotspot */

.hotspot-img {
    position: relative;
}

.hotspot-img img {
    opacity: .6;
}

.hotspot-img .hot-spot {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 5px;
    left: 5px;
    text-align: center;
    background-color: rgba(68, 170, 172, 0.8);
    border: 1px solid #FFF;
    border-radius: 100%;
    cursor: pointer;
    transition: transform .3s ease;
}

.hotspot-img .hot-spot .circle {
    display: block;
    position: absolute;
    top: 47%;
    left: 47%;
    width: 2em;
    height: 2em;
    margin: -1em auto auto -1em;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    border-radius: 50%;
    background: var(--cnvs-themecolor);
    opacity: 0;
    z-index: -1;
    -webkit-animation: pulsate 3.5s ease-out infinite;
    animation: pulsate 3.5s ease-out infinite;
}

.hotspot-img .hot-spot:nth-child(2) .circle {
    animation-delay: 2s;
}

.hotspot-img .hot-spot:nth-child(3) .circle {
    animation-delay: 3.5s;
}

.hotspot-img .hot-spot:nth-child(4) .circle {
    animation-delay: 5.2s;
}

.hotspot-img .hot-spot:nth-child(5) .circle {
    animation-delay: 6.4s;
}

.hotspot-img .hot-spot:nth-child(6) .circle {
    animation-delay: 8s;
}

.hotspot-img .hot-spot:nth-child(7) .circle {
    animation-delay: 9.2s;
}

.hotspot-img .hot-spot:nth-child(8) .circle {
    animation-delay: 11s;
}

.hotspot-img .hot-spot:nth-child(9) .circle {
    animation-delay: 13s;
}

.hotspot-img .hot-spot:nth-child(10) .circle {
    animation-delay: 15s;
}

.hotspot-img .hot-spot .tooltip {
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    opacity: 0;
    display: none;
    left: 0;
    padding: 8px 10px;
    position: absolute;
    top: 20px;
    width: auto;
    z-index: 999;
    box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1), 0 10px 50px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

.hotspot-img .hot-spot.hotspot-tooltip-open .tooltip {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.hotspot-img .hot-spot .tooltip.ontop {
    top: auto;
    bottom: 35px;
}

.hotspot-img .hot-spot .tooltip p {
    font-size: 13px;
    line-height: 1.3rem !important;
    margin-bottom: 0;
    white-space: nowrap;
    color: #666 !important;
    text-transform: capitalize;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

.iconlist li:not(:first-child) {
    margin-top: 8px;
}

.iconlist li img {
    position: relative;
    margin-top: -2px;
    width: 16px;
    margin-right: 5px;
}

.iconlist a {
    font-size: 18px;
    color: #353738;
}

.dark .iconlist a {
    color: rgba(255, 255, 255, 0.75);
}

.iconlist a:hover {
    text-decoration: underline !important;
}

.text-muted {
    opacity: 0.5;
}

.pricing-price::after {
    content: none
}

.irs-single {
    top: -12px;
}

.irs-slider {
    background: var(--cnvs-themecolor);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    top: 13px;
}

.irs-slider::after {
    content: "\f337";
    font-family: 'FontAwesome';
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 11px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.price-compare {
    list-style-type: disc;
}

.price-compare.iconlist li:not(:first-child) {
    font-weight: 300;
    margin-top: 15px;
}

.testimonials-carousel .owl-item {
    opacity: 0.25;
    transform: scale(.9);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

.testimonials-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
}

.clients {
    max-height: 50px;
}


/* .owl-stage-outer::before,
.owl-stage-outer::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    z-index: 1;
    background: -moz-linear-gradient(left, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
    background: linear-gradient(to right, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#00f9f9f9', GradientType=1);
}

.owl-stage-outer::after {
    left: auto;
    right: 0;
    background: -moz-linear-gradient(right, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
    background: -webkit-linear-gradient(right, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
    background: linear-gradient(to left, rgba(249, 249, 249, 1) 52%, rgba(249, 249, 249, 0.06) 90%, rgba(249, 249, 249, 0) 100%);
} */

.bg-angle::after,
.section.bg-angle::before {
    content: '';
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: absolute;
    height: 70px;
    bottom: -70px;
    left: 0;
    transform-origin: 0;
    -webkit-transform-origin: 0;
    -webkit-transform: skewY(-1.5deg);
    -moz-transform: skewY(-1.5deg);
    -ms-transform: skewY(-1.5deg);
    -o-transform: skewY(-1.5deg);
    transform: skewY(-1.5deg);
    background-color: var(--cnvs-themecolor);
    z-index: 1;
}

.section.bg-angle::before {
    top: -30px;
}

.section.bg-angle::after,
.section.bg-angle::before {
    background-color: #FFF;
}

.color-2 {
    color: #153e6b;
}

.contact-home {
    background: #00aeef0d;
    box-shadow: 6px 6px 15px 5px #c4c4c430;
}


/* .twentytwenty-horizontal */

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    width: 4px;
    height: 9999px;
    left: 50%;
    margin-left: -2px;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    color: white;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 50%;
    margin-top: -19px;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px;
}

.twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.twentytwenty-container img {
    width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active:hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.twentytwenty-before-label {
    opacity: 0;
}

.twentytwenty-before-label:before {
    content: "Before";
}

.twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-after-label:before {
    content: "After";
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 10px;
}

.twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25;
}

.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1;
}

.twentytwenty-before {
    z-index: 20;
}

.twentytwenty-after {
    z-index: 10;
}

.twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 22px;
    -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 22px;
    -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
    border-right: 6px solid #999;
    left: 50%;
    margin-left: -17px;
}

.twentytwenty-right-arrow {
    border-left: 6px solid #999;
    right: 50%;
    margin-right: -17px;
}


/* twentytwenty-horizontal End */


/* .arrow-transparent */

.arrow-transparent .twentytwenty-handle {
    background-color: transparent;
}

.arrow-transparent .twentytwenty-left-arrow,
.twentytwenty-container[class*="bg-"] .twentytwenty-left-arrow {
    border-right-color: #FFF;
}

.arrow-transparent .twentytwenty-right-arrow,
.twentytwenty-container[class*="bg-"] .twentytwenty-right-arrow {
    border-left-color: #FFF;
}

.arrow-rounded .twentytwenty-handle {
    border-radius: 4px;
}


/* .arrow-rounded */

.arrow-square .twentytwenty-handle {
    border-radius: 0;
}


/* .arrow-square */


/* .arrow-diamond */

.arrow-diamond .twentytwenty-handle {
    border: 0;
    box-shadow: none;
    background-color: transparent;
}

.arrow-diamond .twentytwenty-handle span.twentytwenty-left-arrow:after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    left: 50%;
    top: 50%;
    border: 3px solid #FFF;
    z-index: -1;
    border-radius: 2px;
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    transform: translate(-22%, -50%) rotate(45deg);
}

.arrow-diamond:not(.arrow-transparent) .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: #FFF
}

.arrow-diamond .twentytwenty-handle:before {
    bottom: calc(50% + 3px);
}

.arrow-diamond .twentytwenty-handle:after {
    top: calc(50% + 3px);
}


/* bg-primary */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-primary .twentytwenty-handle,
.arrow-diamond.bg-primary .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--primary, #007bff);
}


/* bg-secondary */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-secondary .twentytwenty-handle,
.arrow-diamond.bg-secondary .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--secondary, #6c757d);
}


/* bg-warning */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-warning .twentytwenty-handle,
.arrow-diamond.bg-warning .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--warning, #ffc107);
}


/* bg-info */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-info .twentytwenty-handle,
.arrow-diamond.bg-info .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--info, #17a2b8);
}


/* bg-danger */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-danger .twentytwenty-handle,
.arrow-diamond.bg-danger .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--danger, #dc3545);
}


/* bg-success */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-success .twentytwenty-handle,
.arrow-diamond.bg-success .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--success, #28a745);
}


/* bg-dark */

.twentytwenty-container:not(.arrow-transparent):not(.arrow-diamond).bg-dark .twentytwenty-handle,
.arrow-diamond.bg-dark .twentytwenty-handle span.twentytwenty-left-arrow:after {
    background-color: var(--dark, #343a40);
}

.project-details {
    list-style: none;
    margin: 7px 0 0;
    padding: 0;
}

.project-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
    gap: 20px;
}

.project-details li:last-child {
    border-bottom: none;
}

.project-details .label {
    font-weight: 600;
    color: #153e6b;
    min-width: 180px;
}

.project-details .value {
    color: #666;
    text-align: right;
    flex: 1;
}

.multiboard-features .feature-box {
    padding: 20px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.multiboard-features .feature-box:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); */
}

.feature-image-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.feature-icon,
.feature-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: all 0.4s ease;
}


/* Default State */

.feature-icon {
    opacity: 1;
    transform: scale(1);
}

.feature-hover-img {
    opacity: 0;
    transform: scale(0.8);
}


/* Hover State */

.feature-box:hover .feature-icon {
    opacity: 0;
    transform: scale(0.8);
}

.feature-box:hover .feature-hover-img {
    opacity: 1;
    transform: scale(1);
}

.feature-box h5,
.feature-box .h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.multiboard-features .feature-box {
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .65);
    flex-direction: column;
}


/* Tablet */

@media (max-width: 991px) {
    .feature-image-wrap {
        width: 75px;
        height: 75px;
    }
    .feature-icon,
    .feature-hover-img {
        width: 75px;
        height: 75px;
    }
    .feature-box h5,
    .feature-box .h5 {
        font-size: 16px;
    }
}


/* Mobile */

@media (max-width: 575px) {
    .multiboard-features .feature-box {
        padding: 15px 10px;
    }
    .feature-image-wrap {
        width: 65px;
        height: 65px;
    }
    .feature-icon,
    .feature-hover-img {
        width: 65px;
        height: 65px;
    }
    .feature-box h5,
    .feature-box .h5 {
        font-size: 14px;
        line-height: 1.4;
    }
}


/*=========================================
  Premium Section Background
=========================================*/

.project-overview-section {
    position: relative;
    padding: 25px 25px;
    margin: 0;
    overflow: hidden;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 45%, #eef5ff 100%);
    border: 1px solid rgba(18, 57, 109, .10);
    box-shadow: 0 10px 40px rgba(17, 48, 94, .05), 0 25px 80px rgba(17, 48, 94, .08);
}


/* Top Glow */

.project-overview-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -140px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 98, 254, .15), transparent 70%);
}


/* Bottom Glow */

.project-overview-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 174, 255, .12), transparent 70%);
}


/* Decorative Border */

.project-overview-section .container {
    position: relative;
    z-index: 2;
}

.project-overview-section .container::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    border: 1px dashed rgba(15, 98, 254, .10);
    pointer-events: none;
}


/* MOBILE CAROUSEL ONLY */

@media (max-width: 991.98px) {
    /* Mobile carousel container */
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none {
        display: block !important;
        overflow: hidden;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    /* Horizontal slider */
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none::-webkit-scrollbar {
        display: none;
    }
    /* One image per slide */
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none>.mx-reveal {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        max-width: 100%;
        flex: none;
        white-space: normal;
        scroll-snap-align: start;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none .progress-item {
        width: 100%;
    }
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none .project-gallery {
        display: block;
        width: 100%;
    }
    .project-case-study .row.g-4.position-relative.d-block.d-lg-none .project-gallery img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.desktop {
    margin-top: 93px;
}

@media (max-width: 575px) {
    .desktop {
        margin-top: 17px;
    }
}


/* =========================================
   GLightbox - Show Previous / Next on Mobile
   ========================================= */

.glightbox-container .gprev,
.glightbox-container .gnext {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    z-index: 999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* Previous button */

.glightbox-container .gprev {
    left: 12px !important;
}


/* Next button */

.glightbox-container .gnext {
    right: 12px !important;
}


/* SVG/Icon inside buttons */

.glightbox-container .gprev svg,
.glightbox-container .gnext svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
}


/* Make sure buttons remain visible on mobile */

@media (max-width: 767px) {
    .glightbox-container .gprev,
    .glightbox-container .gnext {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .glightbox-container .gprev {
        left: 8px !important;
    }
    .glightbox-container .gnext {
        right: 8px !important;
    }
}

@media (max-width: 767px) {
    .glightbox-container .gprev,
    .glightbox-container .gnext {
        width: 38px !important;
        height: 38px !important;
        background: rgba(0, 0, 0, 0.55) !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 999999 !important;
    }
    .glightbox-container .gprev {
        left: 8px !important;
    }
    .glightbox-container .gnext {
        right: 8px !important;
    }
    .glightbox-container .gprev svg,
    .glightbox-container .gnext svg {
        width: 20px !important;
        height: 20px !important;
    }
}