/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --bg_body: #6e7d161a;
    --bg_body_1: #f0f1e7;
    --txt-color: #000;
    --font-family: "Teachers", sans-serif;
    --font-family: "Assistant", sans-serif;
    --theme-clr: #c5ad7c;
    --theme-clr-dark: #3b2d2d;
    --border-color: #838383;
    --bg-dark: #404040;
}

.teachers {
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    /* background-color: var(--bg_body); */
    font-family: var(--font-family);
    font-weight: 500;
    text-transform: capitalize;
}

.border-theme-1 {
    border: 1px solid var(--theme-clr);
}

p {
    margin: 0;
    font-size: 17px;
    letter-spacing: .5px;
    line-height: 28px;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar-nav {
    li {
        a {
            font-size: 19px;
            font-size: 18px;
            letter-spacing: .5px;
            font-weight: 600;
        }
    }
}

header {
    /* width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center; */
    position: relative;
    z-index: 100;

    a.nav-link {
        color: var(--txt-color);
        border: 1px solid transparent;
        font-weight: 600;
    }

    a.nav-link.active,
    a.nav-link:hover,
    a.nav-link:focus {
        color: var(--txt-color) !important;
        border-bottom: 1px solid var(--txt-color);
    }

    ;
    width: 100%;

    .logo-dark {
        display: block;
    }

    .logo-white {
        display: none;
    }

    ul.dropdown-menu.show {
        background-color: #fff;
    }

    ul.dropdown-menu.show {
        background-color: rgb(255, 255, 255);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        font-weight: bold;
        color: #fff;

        .dropdown-item:hover {
            color: #ffffff;
            background-color: #c5ad7c;
        }
    }
}

.home {
    /* header {
        position: absolute;

        :not(.page-header.is-sticky) {
            a.nav-link {
                color: #fff;
                border: 1px solid transparent;
            }

            a.nav-link.active,
            a.nav-link:hover,
            a.nav-link:focus {
                color: #fff !important;
                border-bottom: 1px solid #fff;
            }

            a {
                color: #fff;
            }
        }

        .logo-white {
            display: block;
        }

        .logo-dark {
            display: none;
        }

        .page-header.is-sticky {
            .logo-white {
                display: none;
            }

            .logo-dark {
                display: block;
            }

            a.nav-link {
                color: var(--txt-color);
                border: 1px solid transparent;
            }

            a.nav-link.active,
            a.nav-link:hover,
            a.nav-link:focus {
                color: var(--txt-color) !important;
                border-bottom: 1px solid var(--txt-color);
            }

            a {
                color: var(--txt-color);
            }
        }
        
    } */
}


/* sticky header */
.page-header {
    /* box-shadow: 0 0px 20px #00000024; */
}

.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 0px 20px #00000024;
    /* background-color: var(--bg_body_1); */
    background-color: #fff;
    width: 100%;
    top: 0;
    z-index: 99;
    animation: slideDown 0.35s ease-out;
}

.w-fitcontent {
    width: fit-content;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* sticky header end */

button {
    text-transform: capitalize;
}


.topheresec {

    .swiper--tophero {
        width: 100%;
        padding: 0;
    }

    .swiper-slide {
        position: relative;
        width: 200px;
        height: 85vh;
        border-radius: 30px;
        overflow: hidden;
        transition: 1s;
        user-select: none;
        filter: brightness(.6);

        @media (max-width:768px) {
            height: 50vh;
        }
    }

    .swiper-slide::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00000059;
        z-index: 1;
    }

    .swiper-slide img {
        width: 100%;
        height: 85vh;
        object-fit: cover;
        transition: 1s;
    }

    @media (max-width:768px) {
        .swiper-slide img {
            height: 50vh;
        }
    }

    .swiper-slide-active {
        position: relative;
        width: 1440px;
        transition: 1s;
        filter: brightness(1);

        .heroimgcntnt {
            display: block;
            padding-top: 50px;
        }
    }

    .swiper-slide-active img {
        transform: scale(1.1);
        object-position: 50% 0%;
    }


    .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background-color: #fff;
        border-radius: 50%;
        transition: all 0.6s ease-in-out;
    }
}

/* .homehead header:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    filter: blur(30px);
    background-color: #00000082;
    top: -14%;
    z-index: -1;
} */

.sec_mar {
    margin-top: 100px;
    margin-bottom: 100px;
}
.sec_pad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.abtsecdiv {
    h2 {
        font-weight: 700;
        letter-spacing: .5px;
    }
}

h2 {
    font-weight: 700;
    letter-spacing: .5px;
}

.abtimgdiv {
    border-radius: 30px;
    overflow: hidden;
}

.max-h-100\/50 {
    max-height: calc(100% - 60%);
    height: 100%;
}

.max-h-100\/45 {
    max-height: calc(100% - 66%);
}

@media (min-width:767px) {
    .fabimgdiv {
        height: 500px;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: top;
        }
    }
}

.fabimgdiv {
    position: relative;
}




@media (min-width:1041px) {
    /* .bgshdow--cntnt{
        height: 0;
        transition: height .5s ease;
        .fabcont {
            opacity: 0;
            bottom: 0;
            transition: bottom .5s ease;
        }
    } */

    .fabimgdiv .bgshdow--cntnt {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        height: 100%;
        transition: height .5s ease;
        width: 100%;
        padding: 30px 15px 15px;
        background: linear-gradient(0deg, rgb(14 14 14), rgba(15, 41, 35, 0) 100%);

        .fabcont {
            position: absolute;
            bottom: 15px;
            opacity: 1;
            transition: bottom .5s ease;
        }

        h3 {
            color: #fff;
            font-weight: 700;
        }

        .viewprodbtn {
            background: white;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .5px;
            border-radius: 100px;
            padding: 9px 30px;
            margin-top: 15px;
        }

        p {
            color: #fff;
            margin-top: 15px;
        }
    }
}

.applicimg, .applicimgg0 {
    position: relative;
    width: fit-content;

    img {
        width: 100%;
        object-fit: cover;
        z-index: 1111;
        border-radius: 15px;
    }
}

.applicimgg0{
    img{
        width: 100px;
        height: 100px;
    }
}

.applicimg:before, .applicimgg0::before {
    /* content: ""; */
    /* position: absolute; */
    /* left: 10px; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: #47474733; */
    /* z-index: -1; */
    /* border-radius: 015px; */
    /* bottom: 10px; */
}

.applicimg:after, .applicimgg0::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    ;
    background-color: #c5ad7c59;
    z-index: -1;
    border-radius: 015px;
    transition: all .3s ease;
}

.applicimg:hover:after,
.applicimgg0:hover:after {
    top: 10px;
    right: 10px;
    transition: all .3s ease;
}

.btn-theme {
    background-color: var(--theme-clr);
    border: 1px solid var(--theme-clr);
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
    transition: all .5s ease;

    &:hover {
        background-color: transparent;
        color: var(--theme-clr);
        border: 1px solid var(--theme-clr);
        transition: all .5s ease;


    }
}
.btn-theme-dark {
    background-color: var(--theme-clr-dark);
    border: 1px solid var(--theme-clr-dark);
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
    transition: all .5s ease;

    &:hover {
        background-color: transparent;
        color: var(--theme-clr-dark);
        border: 1px solid var(--theme-clr-dark);
        transition: all .5s ease;


    }
}

.btn-theme-o {
    background-color: transparent;
    color: var(--theme-clr);
    border: 1px solid var(--theme-clr);

    padding: 8px 30px;
    font-size: 18px;

    font-weight: 600;
    border-radius: 100px;
    transition: all .5s ease;

    &:hover {
        background-color: var(--theme-clr);
        border: 1px solid var(--theme-clr);
        transition: all .5s ease;
        color: #fff;


    }
}

.btn-theme-ob {
    font-size: 18px;
    color: var(--theme-clr);
    font-weight: 600;
    border-radius: 0px;
    border-bottom: 1px solid var(--theme-clr);
    transition: all .5s ease;

    &:hover {
        border-bottom: 1px solid transparent;
        transition: all .5s ease;
    }
}

.infraimgdiv {
    position: relative;

    img {
        width: 100%;
    }
}

.infraimgdiv:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: height .5s ease;
}

.infraimgdiv:hover:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: height .5s ease;
}

.infraimgdiv:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: width .5s ease;
}

.infraimgdiv:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: #25252533;
    border-radius: 30px;
    transition: width .5s ease;
}

.infradesc {
    padding: 30px;
    border-radius: 30px;
    background-color: #47474733;
}

/* swiper starts */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.ourclntdivv--00 {
    /* background-color: #45454587; */
    border-radius: 20px;
    margin-top: 20px;
}

.ourclntdivv--00 img {
    border-radius: 10px;
}

/* swiper ends */

.sustaindivcontent {
    /* max-width: 760px; */
    /* margin: auto; */
    font-size: 17px;
    line-height: 35px;
    padding: 20px;
    border: 1px solid #343333;
    border-radius: 10px;
    height: 100%;
}

footer {
    li {
        margin-top: 15px;
    }

    a,
    p {
        color: #000;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

#menumodal {
    .modal-content {
        background: #f0f1e7;
    }
}



@media (max-width:991px) {
    .thumbnail .item {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        position: relative;
    }

    .carousel .list .item .content {
        padding-right: 5%;
    }

    .thumbnail {
        bottom: 15px;
        left: 12%;
    }

    .sec_mar {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .sec_pad {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}


@media (max-width:767px) {
    .carousel {
        height: 81vh;
    }

    .fabimgdiv {
        height: 315px;
    }
}

@media (max-width:1040px) {
    .bgshdow--cntnt {
        height: 100%;
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        transition: height .5s ease;
        width: 100%;
        padding: 30px 15px 15px;
        background: linear-gradient(0deg, rgb(14 14 14), rgba(15, 41, 35, 0) 100%);

        h3 {
            color: #fff;
            font-weight: 700;
        }

        .viewprodbtn {
            background: white;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .5px;
            border-radius: 100px;
            padding: 9px 30px;
            margin-top: 15px;
        }

        p {
            color: #fff;
            margin-top: 15px;
        }
    }

    .fabcont {
        position: absolute;
        padding: 10px;
        bottom: 15px;
    }

    .fabimgdiv img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* @media (max-width:575px) {
    .applicimg:before {
        left: 30px;
        width: 110px;
        height: 110px;
    }

    .applicimg:after {
        top: -42px;
        right: 50px;
        width: 110px;
        height: 110px;

    }
} */

.appltitle {
    @media (max-width: 768px) {
        h5 {
            font-size: 17px;
            line-height: 25px;
        }

    }
}

@media (max-width:360px) {
    .thumbnail {
        left: 9%;
    }
}

.fabdivmiun {
    max-width: 1700px;
}

.breadcrumbsdiv {
    background-image: url(../images/breadcrumb-abt.jpg);
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.line-wrapper {
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}


.card-style-three {
    padding-left: 100px;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

@media (min-width:991px) {
    .card-style-three {
        border-left: 1px dashed var(--border-color);
        border-bottom: 1px dashed var(--border-color);
    }

    .card-style-three:last-child {
        border-bottom: none;
    }
}

@media (max-width:991px) {
    .card-style-three {
        border-top: 1px dashed var(--border-color);
    }

    .card-style-three:last-child {
        border-bottom: none;
    }
}



.redmorbtn {
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

.swprbtn {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translatey(-50%);
    font-size: 20px;
    width: 45px;
    height: 45px;
    color: var(--theme-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 3px 6px #00000040;
}

.swiper-button-nextt {
    right: 15px;
}

.swiper-button-prevv {
    left: 15px;
}

@media (min-width:991px) {
    .whywediff--title {
        max-width: 300px;
        margin: auto;
    }
}

.card-style-two .applicimg:after {
    top: 0;
    right: 20px;
    z-index: 0;
}

.whydiff--card {
    padding: 30px;
    height: 100%;
    border-radius: 30px;
    background-color: #fff;
}

.whywediff--slider .swprbtn {

    top: 25px;

    background-color: transparent;

    box-shadow: none;

    color: #000;

    border: 1px solid #000;

    font-size: 28px;
}

.card-style-two .applicimg:before {
    z-index: 0;
}

.card-style-two .applicimg img {
    z-index: 9;
    position: relative
}


@media (min-width:575px) {
    .container-fluuid {
        padding-left: 15px;
    }
}

.applicationpgsec {

    .masonry {
        /* Masonry container */
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1em;
        -moz-column-gap: 1em;
        column-gap: 1em;
        /* margin: 1.5em; */
        padding: 0;
        -moz-column-gap: 1.5em;
        -webkit-column-gap: 1.5em;
        column-gap: 1.5em;
        font-size: .85em;
    }

    .item {
        display: inline-block;
        width: 100%;
        -webkit-transition: 1s ease all;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;

    }

    .item img {
        max-width: 100%;
    }

    @media only screen and (max-width: 320px) {
        .masonry {
            -moz-column-count: 1;
            -webkit-column-count: 1;
            column-count: 1;
        }
    }

    @media only screen and (min-width: 321px) and (max-width: 768px) {
        .masonry {
            -moz-column-count: 2;
            -webkit-column-count: 2;
            column-count: 2;
        }
    }

    @media only screen and (min-width: 769px) and (max-width: 1200px) {
        .masonry {
            -moz-column-count: 3;
            -webkit-column-count: 3;
            column-count: 3;
        }
    }

    @media only screen and (min-width: 1201px) {
        .masonry {
            -moz-column-count: 3;
            -webkit-column-count: 3;
            column-count: 3;
        }
    }
}

.infrastucsec {
    .masonry {
        /* Masonry container */
        column-count: 4;
        /* column-gap: 1em; */
        padding: 0;
        font-size: .85em;
    }

    .item {
        /* display: inline-block; */
        width: 100%;
        transition: 1s ease all;
        box-sizing: border-box;
        border-radius: 25px;
        overflow: hidden;
        border: 1px solid var(--theme-clr-dark);
    }

    .item img {
        max-width: 100%;
        width: 100%;
        /* Ensure images take up full width of the container */
        height: auto;
        display: block;
    }

    @media only screen and (max-width: 320px) {
        .masonry {
            column-count: 1;
        }
    }

    @media only screen and (min-width: 321px) and (max-width: 768px) {
        .masonry {
            column-count: 2;
        }
    }

    @media only screen and (min-width: 769px) and (max-width: 1200px) {
        .masonry {
            column-count: 3;
        }
    }

    @media only screen and (min-width: 1201px) {
        .masonry {
            column-count: 4;
        }
    }
}


.ourprod--card {
    border: 1px solid var(--border-color);
    border-top: none;
}

.sendinq {
    color: var(--theme-clr);
    font-size: 17px;
    padding: 8px 30px;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
    border: 1px solid var(--theme-clr);

    &:hover {
        border-color: var(--theme-clr);
        color: #fff;
    }

    &:before {
        position: absolute;
        width: 100%;
        height: 0%;
        content: "";
        background-color: var(--theme-clr);
        top: 0;
        left: 0;
        z-index: -1;
        transition: .5s ease all;

    }

    &:hover:before {
        height: 100%;
        transition: .5s ease all;
    }
}

.ourprod--img {
    max-height: 300px;
    overflow: hidden;
}

.infratopvideodiv iframe {
    width: 100%;
}

.infraimg {
    height: 100%;
    border: 1px solid var(--txt-color);

    img {
        height: 100%;
        width: 100%;
    }
}

#menumodal {
    height: 100% !important;
    background-color: #f0f1e7;
    .navbar-nav .dropdown-menu {
        position: unset !important;
        transform: none !important;
    }
}

.jobimgdiv {
    max-height: 200px;
    min-height: 200px;
    overflow: hidden;
}

.conticon {
    width: 80px;
    height: 80px;
    background: var(--theme-clr);
}

.con--form {
    border-radius: 30px;
    margin-top: 5rem;
    border: 1px solid;
}

.title-one h1.fw-bold {
    font-size: 48px;
    /* color: var(--theme-clr); */
}

.input-group-meta input {
    border: 1px solid var(--theme-clr);
    height: 47px;
    border-radius: 5px;
    padding-left: 15px;

    &:focus {
        outline: none;
        border: 1px solid var(--theme-clr);
    }
}

.input-group-meta textarea {
    border: 1px solid var(--theme-clr);
    border-radius: 5px;
    padding: 15px;

    &:focus {
        outline: none;
        border: 1px solid var(--theme-clr);
    }
}

.top--viddiv {
    height: 86vh;
    margin-top: 0;
    overflow: hidden;

    iframe {
        height: 100%;
    }
}

.zq_choose-item {
    border: 1px dashed var(--border-color);
    border-radius: 5px;
}

.bg-gray {
    background-color: var(--bg-dark);
}

.border-theme-dark {
    border: 1px solid var(--bg-dark);
}

.linkedslide {
    &:hover img {
        transform: scale(1.1);
        transition: all .5s ease;
    }

    img {
        transform: scale(1);
        transition: all .5s ease;
    }
}

.bg-theme {
    background-color: var(--theme-clr);
}

.text-theme {
    color: var(--theme-clr);
}

.text-theme-dark {
    color: var(--bg-dark);
}

.searchdivmain {
    /* border: 1px solid  var(--theme-clr-dark); */
    border-radius: 100px;
    overflow: hidden;
    /* input {
        background-color: transparent;
    border: 0;
    padding: 10px 10px 10px 15px;
    color: #fff;

     
        &:focus {
            border: none;
    outline: 0}
    } */
    ;

    .searchbtn {
        background-color: var(--theme-clr);
        height: 100%;
        padding: 10px;
        border-radius: 100px;
        color: #fff;
    }
}

/* slider linkedin */
.our_client_sec {
    .swiper-slide {
        transition: transform 0.3s, width 0.3s, height 0.3s;
    }

    .swiper-slide.swiper-slide-active {
        transform: scale(1.1);
        /* Adjust the scale as needed */
        z-index: 1;
    }
}

.career {
    .careerjobsec {
        .careercard {
            p {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }
        }
    }
}

div#jobmodal,
#jobmodalform {
    .modal-dialog.modal-dialog-centered {
        max-width: 840px;
    }

    .uploaddiv {
        border: 1px dashed var(--theme-clr);
        position: relative;
        border-radius: 7px;
        height: 48px;

        input {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
            opacity: 0;
        }

        ;
        text-align: center;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;

        h5 {
            margin: 0
        }
    }
}



@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 30px;

    }


}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 850px;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 40px;
    text-transform: capitalize;
    transition: all .4s ease;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #2b3b95;
    color: #fff;
}

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.slider__btn {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* slider top end */

.clientsprocess--sec {
    .clients {
        .sldr--btn {
            left: 0;
            transform: translateY(-50%);
        }

        .clientsicon {
            border-radius: 30px;
            overflow: hidden;
        }
    }
}

.maxw-768 {
    max-width: 768px;
}

.bg-theme-0{
    background-color: #c5ad7c6b;
}
 
.bulkinqsec{
    background-image: url(../images/slider_images/bgparallax.png);
}
.bulkinqsec:before {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: #c5ad7ceb;
    /* z-index: 1; */
}
.abtherosec:before {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: #c5ad7c73;
    /* z-index: 1; */
}

form{
    input{
        border-color: var(--theme-clr);
    }
}

.blkrowdiv{
    .mrgin-nin{

        @media (min-width:992px) {
            margin: 0 -50px;
            .blkimgdiv0{
                box-shadow: -10px 0px 20px #0000004a;
            }
        }
        @media (max-width:991px) { 
            .bgimgblkdiv{
                background-image: url(../images/slider_images/bgparallax1.png);
                padding: 30px; 
            }
            .blkimgdiv0{
                box-shadow: 0px 0px 20px #0000004a;
            }
        }
    }
}

.abtherosec{
    max-height: 40vh;
}

.abt_crd_immgg{
        content: "";
                right: 0;
        width: fit-content;
        height: calc(100% + 10px);
        background-color: #c5ad7c59;
        z-index: -1;
        border-radius: 015px;
        padding: 10px;
}

