﻿.text-center {
    text-align: center!important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}

.text-black {
    color: #000;
}

@media (min-width: 768px) {
    .title_level_2 {
        font-size: 32px;
    }
}
.title_level_2 {
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: "Roboto Slab","Noto Sans","Noto Sans JP","Noto Sans KR","Noto Sans SC Sliced",serif;
}
@media only screen and (max-width: 768px) {
    .title_level_2 {
        line-height: 40px;
    }
}

.sub-title {
    font-size: 16px;
    color: #323232;
}



.action-boxes {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -8px;
    margin-right: -8px;
}

@media (min-width: 768px) {
    .space-before {
        margin-top: 40px;
    }
}
.action-box, .action-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .action-boxes {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 100px;
    }
}



.img-container {
    overflow: hidden;
  /*  width: auto;*/
    background-repeat: no-repeat;
    font-size: 20px;
    position: relative;
    height: 320px;
}

.img-container, .location-box {
    background-size: cover;
    background-position: center;
}




.overlay-box {
    position: relative;
    background-color: #000;
    contain: content;
}

.action-box:first-child {
    background-color: #292929;
}

@media (min-width: 768px) {
    .action-box {
        width: 50%;
        padding: 32px;
    }
}
.action-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 28px 8px 28px;
    padding: 24px 16px;
    height: auto;
    contain: content;
    transition: transform 0.5s ease-in-out;
    background-color: #292929;
}

@media (min-width: 768px) {
    .action-box:last-child {
        margin-top: 0;
    }
}

.action-box:last-child {
    background-color: #292929;
}


    .action-box:hover {
        transform: scale( 1.05)!important; /* Scaling up by 10% on hover */
    }

    .action-box, .action-box:active, .action-box:focus, .action-box:hover {
        color: #fff;
        text-decoration: none;
    }


.overlay-box:not(.overlay-box--onlyHover)::before {
    opacity: .6;
}

.overlay-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit;
    pointer-events: none;
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
    will-change: opacity;
    contain: strick;
}

.action-box__icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40%;
    margin: 0 auto;
    font-size: 40px;
}

.action-box__content {
    position: relative;
    width: 90%;
    font-size: 16px;
}

.action-box__icon:after, .action-box__icon:before {
    width: 20%;
    height: 2px;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    content: "";
    background-color: currentColor;
    opacity: .7;
}

.action-box__icon svg {
    margin: 0 4px;
}

svg:not(:root) {
    overflow: hidden;
}

.le-icon {
    width: 1em;
    height: 1em;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    fill: currentColor;
    paint-order: stroke fill;
    contain: content;
    fill-rule: evenodd;
    color: #dfc1a3;
}

.le-icon, .nd-icon {
    clip-rule: evenodd;
    shape-rendering: geometricprecision;
}

.action-box__icon:after, .action-box__icon:before {
    width: 20%;
    height: 2px;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    content: "";
    background-color: currentColor;
    opacity: .7;
}

.action-box__title {
    font-weight: 700;
    margin: 16px 0;
    font-size: 20px;
}
.action-box__text {
    opacity: 1;
    font-weight: 600;
}
.action-box__cta {
    display: block;
    margin: 24px 0 0;
    font-size: 16px;
    
}




.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left
    }

        .carousel-inner > .item > a > img, .carousel-inner > .item > img {
            display: block;
            max-width: 100%;
            height: auto;
            line-height: 1
        }

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: -webkit-transform .6s ease-in-out;
        -o-transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

        .carousel-inner > .item.active.right, .carousel-inner > .item.next {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            left: 0
        }

        .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            left: 0
        }

            .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
                -webkit-transform: translate3d(0,0,0);
                transform: translate3d(0,0,0);
                left: 0
            }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

    .carousel-inner > .next.left, .carousel-inner > .prev.right {
        left: 0
    }

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

/*.carousel-control {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0,0,0,0);
    filter: alpha(opacity=50);
    opacity: .5
}*/

    .carousel-control.left {
        background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
        background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
        background-repeat: repeat-x
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
        background-repeat: repeat-x
    }

    .carousel-control:focus, .carousel-control:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        filter: alpha(opacity=90);
        opacity: .9
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        left: 50%;
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        right: 50%;
        margin-right: -10px
    }

    .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 20px;
        height: 20px;
        font-family: serif;
        line-height: 1
    }

        .carousel-control .icon-prev:before {
            content: "‹"
        }

        .carousel-control .icon-next:before {
            content: "›"
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    text-align: center
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000\9;
        background-color: rgba(0,0,0,0);
        border: 1px solid #fff;
        border-radius: 10px
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff
}

    .carousel-caption .btn {
        text-shadow: none
    }

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.carousel-text--home {
    padding-bottom: 8px
}

    .carousel-text--home.img-container {
        height: auto;
        background-color: #000;
        contain: content
    }

/*@media (max-width: 767px) {
    .carousel-text--home.img-container {
        background-image: none !important
    }
}
*/
.carousel-text {
    height: 288px
}

@media (min-width: 768px) {
    .carousel-text--home {
        padding-top: 64px;
        padding-bottom: 64px
    }

        .carousel-text--home.img-container {
            background-image: url(/bundles/app/images/home/lq/slider~c01fc8a1.jpg);
            -webkit-transition: background-image .2s linear;
            -o-transition: background-image .2s linear;
            transition: background-image .2s linear
        }

    .carousel-text {
        height: 320px
    }
}

.carousel-text .carousel-indicators {
    bottom: 8px;
    margin-bottom: 0
}

.carousel-text .carousel-inner {
    background-color: rgba(0,0,0,.6);
    height: 100%
}

.carousel-text .item {
    text-align: center;
    height: 100%;
    color: #fff;
    padding: 32px 0
}

.carousel-text .carousel-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.5em;
    height: 100%
}

.carousel-text .carousel-control {
    display: none
}

 @media (min-width: 768px) {
            .carousel-text .item {
                padding:32px 8.3333333333%
            }

            .carousel-text .carousel-content {
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                text-align: center
            }

            .carousel-text .carousel-control {
                display: initial;
                width: 8.3333333333%
            }

            .carousel-text .carousel-control>.le-icon {
                position: relative;
                font-size: 36px
            }

            .carousel-text .title_level_2 {
                font-size: 40px;
                margin-bottom: 40px;
                line-height: 1.1
            }
  }

.carousel-control {
    top: auto!important;
    bottom: 50%!important;
    font-size: 56px;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}


.foldable-image {
    position: relative;
    width: 500px; /* Set your desired width */
    height: 417px; /* Set your desired height */
    perspective: 1250px;
    /*overflow: hidden;*/
}

@media only screen and (max-width:1100px) {
    .foldable-image {
        max-width: 100%
    }
}

.top-half-container,
.bottom-half-container {
    position: absolute;
    width: 100%;
    height: 50%;
    overflow: hidden;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

@media only screen and (max-width: 991px) {
    .top-half-container {
        height: 100%;
    }


    .bottom-half-container {
        display: none;
    }
}


.top-half {
    border-radius: 10px 10px 0 0;
}

.bottom-half {
    border-radius: 0 0 10px 10px;
    background-position: 0% 100%;
    transform: rotateX(180deg);
}



/*/proccess section*/



.fourSteps {
    counter-reset: workNumber;
    position: relative;
}

.pb-120 {
    padding-bottom: 120px;
}
.block-title {
    margin-bottom: 50px;
}
@media (min-width: 992px) {
    .fourSteps .row {
        background-image: url(../images/fourSteps-1-1.png);
        background-repeat: no-repeat;
        background-position: center 10%;
    }
}
.fourSteps__item {
    counter-increment: workNumber;
    text-align: center;
    transition: transform .5s ease;
}

    .fourSteps__item:hover {
        transform: scale(1.05);
    }

    .fourSteps-icon {
        width: 150px;
        height: 150px;
        background-color: #ddd;
        border: 1px solid var(--thm-border-color);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        color: #dfc1a3;
        position: relative;
        transition: all 500ms ease;
    }
    .fourSteps-icon i {
        font-size: 61px;
    }

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fourSteps-icon::after {
    content: counters(workNumber, ".", decimal-leading-zero);
    width: 40px;
    height: 40px;
    background-color: #dfc1a3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.5s ease;
}
.fourSteps-title {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--thm-black);
    margin-top: 26px;
    margin-bottom: 17px;
}
    .fourSteps-title a {
        color: inherit;
        transition: all 500ms ease;
    }
.fourSteps-text {
    margin: 0;
    max-width: 202px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: justify;
    font-weight: 600;
}
.thm-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--thm-font);
    padding: 23px 60px;
    transition: 500ms;
    line-height: 1;
    background-color: var(--thm-base);
    color: #fff;
}

@media (min-width: 992px) {
    [class*=col-]:nth-child(2) .fourSteps__item {
        margin-top: 100px;
    }
}
@media (min-width: 992px) {
    [class*=col-]:nth-child(3) .fourSteps__item {
        margin-top: 50px;
    }
}
.draw-border {
    color: #ff0100;
    transition: color 0.25s 0.0833333333s;
}

    .draw-border::before, .draw-border::after {
        border: 0 solid transparent;
        box-sizing: border-box;
        content: "";
        pointer-events: none;
        position: absolute;
        width: 0;
        height: 0;
        bottom: 0;
        right: 0;
    }

    .draw-border::before {
        border-bottom-width: 1px;
        border-left-width: 1px;
    }

    .draw-border::after {
        border-top-width: 1px;
        border-right-width: 1px;
    }

    .draw-border:hover {
        color: #000;
    }

        .draw-border:hover::before, .draw-border:hover::after {
            border-color: #000;
            transition: border-color 0s, width 0.25s, height 0.25s;
            width: 100%;
            height: 100%;
        }

        .draw-border:hover::before {
            transition-delay: 0s, 0s, 0.25s;
        }

        .draw-border:hover::after {
            transition-delay: 0s, 0.25s, 0s;
        }


.testimBtn {
    padding: 3px 15px;
    border-radius: 10px;
    border: none;
    background: inherit;
    position: relative;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
   /* bottom: -30px;*/
    right: -70px;
    font-size: 15px;
}


@media only screen and (max-width: 991px) {
    .testimBtn {
        padding-bottom: 20px;
    }
}






.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

    .site-heading h2 span {
        color: #00a01d;
    }

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

    .site-heading h4::before {
        background: #00a01d none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 2px;
        left: 50%;
        margin-left: -25px;
        position: absolute;
        width: 50px;
    }

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #00a01d none repeat scroll 0 0;
    border-color: #00a01d;
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #00a01d;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 300px;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
   
}

    .we-offer-area.text-center .item i {
        background: #00a01d none repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        color: #ffffff;
        font-size: 40px;
        height: 80px;
        line-height: 80px;
        position: relative;
        text-align: center;
        width: 80px;
        z-index: 1;
        transition: all 0.35s ease-in-out;
        -webkit-transition: all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        margin-bottom: 25px;
    }

        .we-offer-area.text-center .item i::after {
            border: 2px solid #00a01d;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            content: "";
            height: 90px;
            left: -5px;
            position: absolute;
            top: -5px;
            width: 90px;
            z-index: -1;
            transition: all 0.35s ease-in-out;
            -webkit-transition: all 0.35s ease-in-out;
            -moz-transition: all 0.35s ease-in-out;
            -ms-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
        }

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
    font-family: "Poppins",sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #00a01d none repeat scroll 0 0;
}

    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
    .we-offer-area.center-active .single-item:nth-child(2n) .item i,
    .we-offer-area.center-active .single-item:nth-child(2n) .item h4,
    .we-offer-area.center-active .single-item:nth-child(2n) .item p {
        color: #ffffff;
    }

.we-offer-area .item i {
    color: #00a01d;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: #00a01d none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #00a01d !important;
}

.we-offer-area.text-left .item i {
    background: #00a01d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

    .we-offer-area.text-left .item i::after {
        border: 2px solid #00a01d;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        content: "";
        height: 120px;
        left: -10px;
        position: absolute;
        top: -10px;
        width: 120px;
    }




.parallax-section {
    position: relative;
    height: 800px; /* Adjust the height as needed */
    overflow: hidden;
    background-image: url('/images/Slider/10.jpeg'); /* Adjust the image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
    .parallax-section h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 300;
        position: relative;
        top: 600px;
        background: #ff0100cf;
        width: 30%;
        padding: 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

.parallax-image {
   
    display: flex;
    justify-content: center;
}


.parallax-section2 {
    position: relative;
    height: 600px; /* Adjust the height as needed */
    overflow: hidden;
    background-image: url('/images/Slider/9X.jpg'); /* Adjust the image path */
    background-size: cover;
    background-position: center;
/*    background-attachment: fixed;*/
}

.parallax-image2 {
    display: flex;
    justify-content: center;
}

.parallax-section2 h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    position: relative;
    top: 430px;
    background: #000000cf;
    width: 30%;
    padding: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.fourSteps-block-title {
    line-height: 1.5;
}


@media only screen and (min-width: 1071px) {
    .offdesk {
        display: none;
    }
}
.offdesk a i {
    display: block!important;
    transform: none!important;
    left: 0!important;
    position: relative!important;
}

.custom-form.customContactForm label{
    float: left;
    position: relative;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 12px;
    z-index: 10;
    margin-bottom: 5px;
    margin-top: 20px;
}

