@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&amp;family=Roboto&amp;display=swap");

:root {
    --primary-color: #f8bc16;
    --second-primary-color: #234091;
    --text-gray-600: #6a6377;
    --text-white: #fff;
}

@font-face {
    font-family: "PlayfairDisplay";
    src: url("PlayfairDisplay-Bold.html");
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-gray-600);
    font-size: 16px;
}

.bg-primary {
    background: #F2F9ED !important;
}

.bg-patten {
    background-image: url(../../../Images/core/images/dotted-map-gray.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bg-yellow {
    background: #FBF8F0 !important;
}

.bg-blue {
    background: #EEF8FF !important;
}

.bg-green {
    background: #EFF6F1 !important;
}

.top-map .map-img {
    top: 75px;
    background: url(../../../Images/core/images/map-bg.png);
    border-radius: 20px;
    padding: 60px 0 50px;
    background-repeat: no-repeat;
}

.bg-dark-secprimary {
    background: var(--second-primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-second-primary {
    color: var(--second-primary-color) !important;
}

.btn {
    position: relative;
    padding: 10px 35px;
    font: 500 14px "Poppins", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

    .btn:active,
    .btn:focus {
        box-shadow: none;
    }

.btn-solid {
    color: var(--text-white) !important;
    box-shadow: 0 0 40px 40px var(--primary-color) inset;
    border: 1px solid transparent;
}

    .btn-solid:hover {
        border: 1px solid var(--text-white);
        background: transparent;
        color: var(--text-white);
        box-shadow: none;
        transition: 0.6s;
    }

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 30px;
    padding-left: 30px;
}

.form-control {
    font-size: 13px;
    border-radius: 8px;
    color: #86838d;
    padding: 1em 2rem 1em 4em;
    height: 58px;
    box-shadow: 0px 1px 11px #c5c5c5;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

a {
    color: #332f3b;
    text-decoration: none;
    transition: all 300ms ease;
    word-break: break-word;
}

.span-width {
    display: inline-block;
    width: calc(100% - 35px);
    line-height: 22px;
}

.v-align-top {
    vertical-align: top;
}

a:active,
a:hover,
a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

p {
    color: #554d63;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.8;
}

.section-title {
    display: flex;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin: 0 auto 50px;
}

    .section-title .subtitle {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        padding-left: 20px;
        line-height: 1.2;
    }

    .section-title h2 {
        font-size: 40px;
        color: #2E3D62;
        display: inline-block;
        margin: 0;
        line-height: 1.3;
        font-weight: bold;
    }

    .section-title p {
        margin-top: 15px;
        margin-bottom: 0;
        font-size: 20px;
    }

    .section-title.title-light h2 {
        color: var(--text-white);
    }

    .section-title.title-light p {
        color: #eaeaea;
    }

.social-link a {
    margin-right: 5px;
}

    .social-link a:hover img {
        opacity: 0.7;
        transform: translateY(-2px);
        transition: 1s;
    }

.cta-btn .btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.cta-btn:hover .btn-outline {
    color: var(--text-white) !important;
    background: var(--primary-color) !important;
}

.go-top i {
    font-size: 27px;
}

.header {
    padding: 1rem 0;
    margin: 0 auto;
    background: var(--text-white);
    transition: height 0.3s;
}

    .header.fixed {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 9;
        box-shadow: 0 0 10px #ccc;
    }

    .header .wrapper {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .header .menu > ul > li {
        display: inline-block;
        line-height: 3.125rem;
        margin-left: 1.5rem;
    }

        .header .menu > ul > li > a {
            position: relative;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.25;
            color: #121212;
        }

        .header .menu > ul > li .menu-subs {
            position: absolute;
            width: 100%;
            height: auto;
            margin-top: 1.75rem;
            padding: 1rem 2rem;
            border: none;
            outline: none;
            z-index: 500;
            opacity: 0;
            visibility: hidden;
            border-radius: 0.25rem;
            border-top: 3px solid var(--primary-color);
            background: #fafafa;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.5s ease-in-out;
        }

            .header .menu > ul > li .menu-subs > ul > li {
                line-height: 1;
            }

                .header .menu > ul > li .menu-subs > ul > li > a {
                    display: inline-block;
                    font-family: inherit;
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.25;
                    padding: 0.75rem 0;
                    color: #121212;
                }

            .header .menu > ul > li .menu-subs.menu-mega {
                left: 50%;
                transform: translateX(-50%);
            }

                .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
                    display: block;
                    line-height: 1;
                }

                    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                        display: inline-block;
                        font-family: inherit;
                        font-size: 16px;
                        line-height: 1;
                        padding: 0.7rem 0;
                        color: #121212;
                    }

            .header .menu > ul > li .menu-subs.menu-column-4,
            .header .menu > ul > li .menu-subs.menu-column-2,
            .header .menu > ul > li .menu-subs.menu-column-3 {
                display: flex;
                flex-wrap: wrap;
                max-width: 55rem;
                width: 100%;
                padding: 1.25rem 2rem;
            }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
                    -webkit-box-flex: 0;
                    flex: 0 0 25%;
                    padding: 0 1rem;
                }

                .header .menu > ul > li .menu-subs.menu-column-2 > .list-item {
                    -webkit-box-flex: 0;
                    flex: 0 0 50%;
                    padding: 0 1rem;
                }

                .header .menu > ul > li .menu-subs.menu-column-3 > .list-item {
                    -webkit-box-flex: 0;
                    flex: 0 0 33.33%;
                    padding: 0 1rem;
                }

                    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title,
                    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item .title,
                    .header .menu > ul > li .menu-subs.menu-column-3 > .list-item .title {
                        font-family: inherit;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 1;
                        padding: 0.75rem 0;
                        border: none;
                        outline: none;
                        color: var(--primary-color);
                        text-transform: uppercase;
                        text-rendering: optimizeLegibility;
                    }

                    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title,
                    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item.text-center .title,
                    .header .menu > ul > li .menu-subs.menu-column-3 > .list-item.text-center .title {
                        text-align: center;
                    }

                    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive,
                    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item img.responsive,
                    .header .menu > ul > li .menu-subs.menu-column-3 > .list-item img.responsive {
                        max-width: 100%;
                        width: 100%;
                        height: auto;
                        margin-top: 0.75rem;
                        vertical-align: middle;
                    }

                    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
                    .header .menu > ul > li .menu-subs > ul > li > a:hover,
                    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item ul li:hover:before,
                    .header .menu > ul > li .menu-subs.menu-column-3 > .list-item ul li:hover:before,
                    .header .menu > ul > li .menu-subs.menu-column-2 > .list-item ul li:hover a,
                    .header .menu > ul > li .menu-subs.menu-column-3 > .list-item ul li:hover a {
                        color: var(--primary-color);
                        cursor: pointer;
                    }

        .header-item-right a:hover,
        .header .menu > ul > li:hover > a {
            color: var(--primary-color);
        }

.menu-mobile-header,
.menu-mobile-trigger {
    display: none;
}

.menu-mega ul {
    padding-left: 0;
}

.header .menu > ul > li .menu-subs.menu-column-2 > .list-item ul li:before,
.header .menu > ul > li .menu-subs.menu-column-3 > .list-item ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    padding-right: 10px;
}

nav.menu ul li a i {
    font-size: 12px;
    padding-left: 5px;
}

header.sticky {
    position: fixed;
    line-height: 70px;
    height: 70px;
    width: 100%;
    background: var(--text-white);
    z-index: 999;
    box-shadow: 0 0 6px 0 #a5a4a4;
    padding: 0 0;
}

/*================================================
  Banner Area CSS
=================================================*/
.home-banner-area {
    position: relative;
    background-size: cover;
    z-index: 1;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

    .home-banner-area .banner-content h1 {
        color: #2E3D62;
        font-size: 37px;
        line-height: 1.3em;
        margin-bottom: 21px;
        font-weight: bold;
    }

    .home-banner-area .banner-content h4 {
        color: #2E3D62;
        font-weight: 500;
    }

    .home-banner-area .banner-content p {
        padding: 5px 0;
        color: #000000;
        opacity: 0.9;
        font-size: 20px;
        margin-bottom: 5px;
    }

.home-banner-area {
    background: var(--text-white);
    background: url(../../../Images/core/images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/*================================================
  Top Feature Area CSS
=================================================*/
.single-feature {
    position: relative;
    background: var(--text-white);
    border-radius: 0.5em;
    margin-bottom: 0;
    padding: 35px 35px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

    .single-feature .icons-img img:first-child,
    .single-feature:hover .icons-img img:last-child {
        display: block;
        width: 50px;
    }

    .single-feature:hover .icons-img img:first-child,
    .single-feature .icons-img img:last-child {
        display: none;
    }

    .single-feature::before {
        position: absolute;
        content: "";
        width: 200px;
        height: 200px;
        border-radius: 50%;
        top: -60px;
        right: -50px;
    }

    .single-feature::after {
        position: absolute;
        content: "";
        width: 200px;
        height: 200px;
        border-radius: 50%;
        bottom: -60px;
        left: -50px;
    }

    .single-feature:hover::before {
        position: absolute;
        content: "";
        width: 150px;
        height: 150px;
        border-radius: 50%;
        top: -55px;
        right: -22px;
    }

    .single-feature:hover::after {
        position: absolute;
        content: "";
        width: 200px;
        height: 200px;
        border-radius: 50%;
        bottom: -60px;
        left: -50px;
    }
    .single-feature:hover::before, .single-feature:hover::after {
        background: rgba(255, 255, 255, 0.8) !important;
        opacity: 0.1;
    }

    .single-feature .single-feature-content .titlesecond {
        font-size: 15px;
        text-transform: uppercase;
        margin: 30px 0 15px;
        color: var(--second-primary-color);
    }

    .single-feature:hover .single-feature-content .titlesecond,
    .single-feature:hover .single-feature-content p {
        color: var(--text-white);
    }

    .single-feature .single-feature-content h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 0;
        text-transform: capitalize;
    }

    .single-feature:hover {
        cursor: pointer;
    }

        .single-feature:hover h3 {
            color: var(--text-white);
        }

.top-feature-section .single-feature:hover .icons-img {
    transform: translateY(-5px);
    transition: all 1.5s;
}

.cta-btn .btn-solid:hover,
.cta-btn .btn-solid.active,
.cta-btn .btn-solid:focus,
.action-button:hover,
.action-button:active,
.action-button:focus,
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    background: var(--text-white) !important;
}

.quote-content .cta-btn .btn-solid {
    color: var(--text-white) !important;
}

.top-feature-section .single-feature::before {
    background: rgba(255, 255, 255, 0.8) !important;
    opacity: 0.1;
}

.top-feature-section .single-feature::after {
    background: rgba(255, 255, 255, 0.8) !important;
    opacity: 0.1;
}

.top-feature-section .single-feature .single-feature-content h3 {
    color: #363636;
}

.top-feature-section .single-feature {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--text-white)), to(var(--text-white)));
    background: linear-gradient(0deg, var(--text-white) 0%, var(--text-white) 100%);
}

    .top-feature-section .single-feature:hover {
        background: -webkit-gradient(linear, left bottom, left top, from(var(--second-primary-color)), to(var(--second-primary-color)));
        background: linear-gradient(0deg, var(--second-primary-color) 0%, var(--second-primary-color) 100%);
        color: var(--text-white);
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
        transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .top-feature-section .single-feature:hover h3 {
            color: var(--text-white);
        }

        .top-feature-section .single-feature:hover i {
            background: var(--text-white) !important;
        }

/*================================================
  success-story-section CSS
=================================================*/
.success-story-section .gallery-item .gallery-content h3 a {
    color: var(--text-white);
    line-height: 24px;
}

.success-story-section .gallery-item .gallery-content {
    opacity: 1;
    background: linear-gradient(0deg, var(--second-primary-color) 20%, var(--second-primary-color) 100%);
    position: absolute;
    height: 100%;
    top: 75%;
    padding: 10px 0;
    left: 0;
    padding-left: 15px;
    width: 70%;
}

    .success-story-section .gallery-item .gallery-content h3 {
        font-weight: 100;
        font-size: 16px;
    }

.gallery-slider .owl-prev {
    display: none;
}

.gallery-slider .owl-prev,
.gallery-slider .owl-next {
    position: absolute;
    top: 50%;
    background: #00000057 !important;
    height: 100%;
    top: 0;
    width: 35px;
}

    .gallery-slider .owl-prev span,
    .gallery-slider .owl-next span {
        color: var(--text-white);
    }

.gallery-slider .owl-next {
    right: 0;
}

/*================================================
  Service Area CSS
=================================================*/
.service-section-bg {
    background: #F0F6FF;
}

.service-section .item-single .icon {
    position: absolute;
    top: 0;
    left: 50%;
    font-weight: normal;
    color: var(--text-white)f;
    font-size: 2.3em;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .service-section .item-single .icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.service-section .item-single .item-content p {
    color: var(--text-gray-600);
    text-transform: uppercase;
    margin-bottom: 0;
}

.service-section .item-single:hover {
    box-shadow: 3px 0px 9px #c7c7c75c;
}

.service-section .item-single .item-content {
    padding-top: 3em;
}

    .service-section .item-single .item-content h6 {
        font-size: 23px;
        text-transform: capitalize;
        font-weight: 500;
    }

.service-section .circle:nth-child(odd) .item-single .item-content h6 a {
    color: var(--second-primary-color);
}

.service-section .circle:nth-child(odd) .item-single .item-content {
    border: 2px dashed var(--second-primary-color);
    border-radius: 50%;
}

.service-section .circle:nth-child(even) .item-single .item-content h6 a {
    color: var(--primary-color);
}

.service-section .circle:nth-child(even) .item-single .item-content {
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
}

.service-section .circle:nth-child(odd) .item-single .item-content,
.service-section .circle:nth-child(even) .item-single .item-content {
    height: 140px;
    width: 140px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.item-content p {
    font-size: 14px;
}

.service-section .circle:nth-child(even) {
    margin-top: 80px;
}

.service-section .circle .item-single {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    display: block;
    box-shadow: 0px 2px 7px 3px #edebeb8c;
    padding: 20px;
    margin: auto;
}

    .service-section .circle .item-single:hover {
        transform: translateY(-10px);
        transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
        box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
    }

.feature-section,
.top-feature-section {
    overflow: hidden;
}

    /*================================================
  Feature Area CSS
=================================================*/
    .feature-section,
    .top-feature-section .flex-card {
        display: flex;
        align-content: stretch;
    }

        .feature-section .item-single {
            position: relative;
            /*margin-bottom: 24px;*/
            padding: 1.5em;
            background-color: var(--text-white);
            border-radius: 0.5em;
            text-align: left;
            box-shadow: 0 2px 25px 0 rgb(106 99 119 / 10%);
            display: flex;
            flex-direction: column;
            transition: 0.5s ease-in-out;
            width: 100%;
        }

            .feature-section .item-single .btn {
                z-index: 8;
            }

            .feature-section .item-single .icon {
                font-weight: normal;
                color: var(--text-white)f;
                font-size: 2.3em;
            }

.btn-blue {
    color: var(--text-white);
    box-shadow: 0 0 40px 40px var(--second-primary-color) inset;
    border: 1px solid transparent;
}

.feature-section .item-single:hover .btn-blue {
    color: var(--second-primary-color);
    -webkit-box-shadow: 0 0 40px 40px var(--text-white) inset;
    box-shadow: 0 0 40px 40px var(--text-white) inset;
    border: 1px solid transparent;
}

.feature-section .feature-box {
    display: flex;
    align-content: stretch;
}

.feature-section .item-single .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.feature-section .item-single .item-content {
    padding-top: 0;
    flex: 1 1 auto;
}

    .feature-section .item-single .item-content h6 {
        margin-bottom: 12px;
        font-size: 20px;
        text-transform: capitalize;
        font-weight: bold;
        line-height: 27px;
    }

    .feature-section .item-single .item-content p {
        color: var(--text-gray-600);
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 25px;
        font-weight: 400;
    }

.text-secondprimary {
    color: var(--second-primary-color);
}

.three-steps {
    background: #f5f8f7;
}

    .three-steps ul.infoGraphic {
        font-size: 0.8em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .three-steps ul.infoGraphic li {
            max-width: 27em;
            transition: all 0.2s;
            list-style: none;
        }

            .three-steps ul.infoGraphic li .numberWrap {
                position: absolute;
            }

            .three-steps ul.infoGraphic li .number {
                font-family: "maven pro", sans-serif;
                font-size: 9.5em;
                font-weight: 900;
            }

                .three-steps ul.infoGraphic li .number.fontColor1 {
                    color: #3498db;
                }

                .three-steps ul.infoGraphic li .number.fontColor3 {
                    color: #9b59b6;
                }

            .three-steps ul.infoGraphic li .coverWrap {
                transform: rotate(130deg);
                position: absolute;
                width: 18em;
                height: 15em;
                left: -3em;
                top: -1em;
            }

                .three-steps ul.infoGraphic li .coverWrap .numberCover {
                    position: absolute;
                    background: #f5f8f7;
                    width: 18em;
                    height: 6em;
                    border-radius: 50% 50% 0 0;
                    border-bottom: 3px solid #f5f8f7;
                    transition: all 0.4s;
                }

                    .three-steps ul.infoGraphic li .coverWrap .numberCover::before {
                        position: absolute;
                        content: "";
                        bottom: 5px;
                        left: 4em;
                        right: 4em;
                        top: 5em;
                        box-shadow: 0 0 30px 17px #48668577;
                        border-radius: 100px/10px;
                        z-index: -1;
                    }

                    .three-steps ul.infoGraphic li .coverWrap .numberCover::after {
                        position: absolute;
                        bottom: 0;
                        content: "";
                        left: -10%;
                        width: 120%;
                        height: 150%;
                        background: radial-gradient(at bottom, #48668533, transparent, transparent);
                        z-index: 1;
                    }

            .three-steps ul.infoGraphic li .content {
                margin: 4em 3em 1em 7em;
                position: relative;
            }

            .three-steps ul.infoGraphic li:hover .coverWrap .numberCover {
                border-radius: 100%;
            }

/*================================================
  Client Area CSS
=================================================*/
.client-section .owl-carousel .slider-item {
    padding-right: 2em;
    display: flex;
}

    .client-section .owl-carousel .slider-item .inner-text p {
        font-size: 16px;
        font-weight: 500;
        color: #625d6a;
        line-height: 34px;
    }

    .client-section .owl-carousel .slider-item .qoute-icon {
        border-radius: 50%;
        height: 120px;
        position: absolute;
        width: 120px;
        color: var(--text-white)0;
        background: #00000012;
        z-index: 99;
        top: 40%;
        left: 50px;
    }

        .client-section .owl-carousel .slider-item .qoute-icon::before {
            content: "";
            margin-bottom: 0;
            position: absolute;
            transform: translateX(0);
            background-image: url(../../../Images/core/images/quote.png);
            height: 103px;
            width: 103px;
            top: 9px;
            left: 9px;
        }

    .client-section .owl-carousel .slider-item .client .client-img img {
        margin: auto;
        margin-bottom: 1em;
        width: 60%;
    }

    .client-section .owl-carousel .slider-item .inner-text h6 {
        font-size: 16px;
        font-weight: 500;
        color: var(--primary-color);
        margin-top: 30px;
    }

.client-section.testimonial .owl-dots,
.gallery-slider .owl-dots {
    display: none !important;
}

.client-section.testimonial .owl-nav,
.gallery-slider .owl-nav {
    display: block !important;
}

.client-slider.owl-carousel {
    position: relative;
}

    .client-slider.owl-carousel .owl-nav .owl-prev {
        position: absolute;
        font-size: 25px;
        right: 40px;
        bottom: 25px;
        color: var(--primary-color);
    }

    .client-slider.owl-carousel .owl-nav .owl-next {
        position: absolute;
        font-size: 25px;
        right: 0;
        bottom: 25px;
        color: var(--primary-color);
    }

        .client-slider.owl-carousel .owl-nav .owl-prev:hover,
        .client-slider.owl-carousel .owl-nav .owl-next:hover {
            color: #555;
        }

.client-img {
    position: relative;
}

/*================================================
  Partner Area CSS
=================================================*/
.partner-area .partner-item {
    display: grid;
    place-items: center;
}

    .partner-area .partner-item img {
        width: auto;
    }

        .partner-area .partner-item img:hover {
            transform: scale(1.1);
            transition: 0.6s;
            cursor: pointer;
        }

        .partner-area .partner-item img:last-child,
        .partner-area .partner-item:hover img:first-child {
            display: none;
        }

    .partner-area .partner-item:hover img:last-child {
        display: block;
    }

#contactForm {
    background: rgb(33 64 146 / 14%);
    padding: 50px 83px 50px 50px;
    position: relative;
    border-radius: 8px;
}

.newsletter-section .container {
    background: url(../../../Images/core/images/shape-1.png);
    background-repeat: no-repeat;
    background-size: 22%;
    background-position: top left;
}

    .newsletter-section .container .form-content::after {
        content: "";
        background: url(../../../Images/core/images/shape-1.png);
        background-repeat: no-repeat;
        background-size: 22%;
        background-position: top left;
    }

#contactForm .help-block ul li {
    font-size: 12px;
    color: red;
}

#contactForm .text-danger {
    font-size: 18px !important;
    margin-top: 16px;
}

/*================================================
  Footer Area CSS
=================================================*/
.footer-area .footer-widget {
    margin-bottom: 2em;
}

    .footer-area .footer-widget p {
        margin-bottom: 5px;
    }

    .footer-area .footer-widget .footer-quick-links {
        padding: 0;
        list-style-type: none;
        margin-bottom: 0;
    }

.footer-widget h5 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #393939;
}

.footer-area .footer-widget .footer-quick-links li {
    margin-bottom: 10px;
}

.footer-area .footer-widget .contact-info,
.contact-info {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

    .contact-info .item-single .item-content .contact-info h4 {
        color: #000 !important;
    }

.footer-area a .f-icon,
.f-icon {
    width: 20px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.social-link a img {
    width: 25px;
    height: 25px;
    border-radius: 20px;
}

.footer-area .footer-widget .footer-quick-links li:hover {
    transform: translateY(-1px);
    color: var(--primary-color);
    transition: all 1s;
}

.footer-area .footer-widget .contact-info img {
    margin-right: 15px;
}

.weblinks h6 {
    background: var(--second-primary-color);
    padding: 10px;
    color: var(--text-white);
    text-align: center;
    box-shadow: 2px 2px 5px #e4e3e3;
}

/*================================================
  Copy-right Area CSS
=================================================*/
.copy-right-area {
    background: var(--second-primary-color);
    padding: 1.9em 0;
    border-top: 1px solid rgba(25, 25, 25, 0.15);
}

    .copy-right-area .copy-right-content p {
        margin-bottom: 0;
        color: var(--text-white);
        font-weight: 100;
    }

    .copy-right-area .copy-right-content a {
        color: var(--text-white);
    }

/*================================================
  Go To Top Area CSS
=================================================*/
.go-top {
    position: fixed;
    right: 3%;
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-white);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background: var(--primary-color);
    border-radius: 5px;
    border: 0;
    padding: 10px;
    z-index: 100;
    transition: all 500ms ease-in-out;
    height: 50px;
    width: 50px;
}

    .go-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 30px;
    }

/*================================================
  Owl-carousel Area CSS
=================================================*/
.owl-carousel {
    position: relative;
}

.quote {
    width: 450px;
    margin: auto;
}

    .quote .img {
        width: 100%;
    }

.quote-content {
    align-items: flex-start;
    padding: 0 15px;
}

.quote-content {
    background: url(../../../Images/core/images/mid.png);
    background-size: 100%;
}

    .quote-content p {
        font-size: 16px !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
        text-align: left;
    }

span .btn.btn-solid {
    background: var(--primary-color);
    width: calc(100% - 50px);
    border-radius: 10px;
    padding: 8px;
    text-transform: uppercase;
    font-weight: 400;
    margin-right: 30px;
}

    span .btn.btn-solid:hover {
        border: 1px solid var(--primary-color);
        background-color: transparent;
        color: var(--primary-color) !important;
    }

.feature-section .item-single:hover {
    background-color: var(--second-primary-color);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

    .feature-section .item-single:hover .btn-text-only {
        background: var(--text-white);
        color: var(--second-primary-color);
    }

    .feature-section .item-single:hover p,
    .feature-section .item-single:hover h6 a,
    .feature-section .item-single:hover h4,
    .feature-section .item-single:hover h5 {
        color: var(--text-white) !important;
    }

.feature-section .item-single .icon-bg,
.themecard .item-single .icon-bg {
    background: url(../../../Images/core/images/icon_shape_b1.svg);
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-size: 100%;
    padding-left: 10px;
}

.item-single .icon-bg img,
.infoGraphic .icon img,
.satic-data img, .icon-bg-green img,
.technology-pencil img,
.themecard .icon.icon-bg-green img,
.java-logo img {
    width: 50px;
}

.feature-section .item-single:hover .icon-bg,
.themecard-hover .item-single:hover .icon-bg-green {
    background: url(../../../Images/core/images/icon_shape_b1_hover.svg);
    background-size: cover;
    background-size: 100%;
}

.item-single:hover .icon.icon-bg img {
    transform: rotateY(180deg);
    transition: all 1.5s;
}

/************Start Technology background color****************/
.dot-net .card-body {
    background: #d5f3ff !important;
}

.dot-net-core .card-body {
    background: #e9d8fb !important;
}

.angular-js .card-body {
    background: #ffccca !important;
}

.react-js .card-body {
    background: #d1f4fd !important;
}

.node-js .card-body {
    background: #e5fdde !important;
}

.java-bg .card-body {
    background: #ffebd9 !important;
}

.android .card-body {
    background: #f2f7da !important;
}

.apple .card-body {
    background: #ebebeb !important;
}

.ionic-bg .card-body {
    background: #dce9fd !important;
}

.apple .card-body {
    background: #e5e5e5 !important;
}

.xamrin-bg .card-body {
    background: #dcf1ff !important;
}

.nop-commerce-bg .card-body {
    background: #e0faff !important;
}

.volusion-bg .card-body {
    background: var(--text-white)7de !important;
}

.reactnative-bg .card-body {
    background: #e6fbff !important;
}

.woo-bg .card-body {
    background: #ffdff9 !important;
}

.technology-card .card {
    border: none;
    transition: 0.3s;
    display: inline-block;
    transform: translateY(0px);
    margin: 0px 8px 15px 8px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}

    .technology-card .card img {
        width: 75px;
    }

    .technology-card .card:hover {
        cursor: pointer;
    }

.technology-card.main-tech .card .card-body {
    position: relative;
    width: 170px;
    height: 170px;
    overflow: hidden;
    padding: 10px;
    border: none;
    border-radius: 8px;
}

.ionic-bg.glow-on-hover:after {
    background: #eaf2ff !important;
}

.apple.glow-on-hover:after {
    background: #ebebeb !important;
}

.technology-card.main-tech .card .card-body img {
    width: 1200px;
    max-width: inherit;
    position: absolute;
}

.technology-card .card .microsoftnet img {
    top: 25px;
    left: -72px;
}

.technology-card .card .dotnetcore img {
    top: 25px;
    left: -300px;
}

.technology-card .card .nodejs img {
    top: 25px;
    left: -520px;
}

.technology-card .card .agnular img {
    top: 10px;
    left: -744px;
}

.technology-card .card .reactjs img {
    top: 10px;
    left: -968px;
}

.technology-card .card .ionic img {
    top: -140px;
    left: -218px;
}

.technology-card .card .xamrin img {
    top: -160px;
    left: 0;
}

.technology-card .card .nopcommerce img {
    top: -140px;
    left: -445px;
}

.technology-card .card .volusion img {
    top: -140px;
    left: -655px;
}

.technology-card .card .react-native img {
    top: -130px;
    left: -670px;
}

.technology-card.main-tech .card .card-body img.android,
.technology-card.main-tech .card .card-body img.apple {
    width: 85px;
    position: initial;
    padding-top: 35px;
}

.android {
    background: #f2f7da !important;
}

.technology-card .card .java img {
    top: -145px;
    left: -890px;
}

.technology-card .card .woo img {
    top: -100px;
    left: -700px;
}

/************End Technology background color****************/
.themecard .item-single {
    box-shadow: 0 2px 15px #e7e7e7;
    padding: 35px;
    border-radius: 0.5em;
    margin-right: 0;
}

.themecard .item-content h6 {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
}

.themecard .item-single .icon {
    font-weight: normal;
    color: var(--text-white)f;
    font-size: 2.3em;
    position: relative;
}

.themecard .item-content h2 {
    font-size: 23px;
    color: var(--second-primary-color);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}

.themecard .item-content {
    margin-top: 30px;
}

    .themecard .item-content p {
        font-weight: 400;
        font-size: 16px;
        line-height: 29px;
    }

.themecard .item-single:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.newsletter-section .form-group .img-icon {
    position: absolute;
    top: 27%;
    left: 5%;
    width: 20px;
}
.contact-form .btn, #msform .btn {
    position: absolute;
    bottom: -4%;
    width: calc(100% - 118px);
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
}

#msform .form-control.borderred {
    color: #212529;
    background-color: #fff;
    border: 2px solid #fe8686;
    outline: 0;
    box-shadow: none;
}
#msform .form-control:focus {
    box-shadow: 0px 1px 11px #c5c5c5;
}

.contact-form:hover .btn {
    background-color: var(--text-white);
    color: var(--primary-color) !important;
}

.inputfile-2 + label {
    color: #d3394c;
    border: 2px solid currentColor;
}

    .inputfile-2:focus + label,
    .inputfile-2.has-focus + label,
    .inputfile-2 + label:hover {
        color: #722040;
    }

.form-group .box label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 400;
    border: 0;
    cursor: pointer;
}

.form-group .box {
    height: auto;
    padding-left: 2em;
}

    .form-group .box i {
        font-size: 30px;
        color: var(--second-primary-color);
    }

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.form-content {
    background: var(--second-primary-color);
    position: absolute;
    left: -10%;
    top: 5%;
    padding: 2rem 4rem;
    border-radius: 10px;
}

.form-con {
    position: relative;
}

.form-content .employee .em-name {
    color: var(--text-white);
    text-align: center;
    margin-top: 10px;
}

.form-content .employee img {
    border-radius: 6px;
}

    .form-content .employee img:hover {
        transform: translateY(-5px);
        transition: 0.6s;
        cursor: pointer;
    }

.satic-data .satic-name {
    margin-left: 20px;
}

    .satic-data .satic-name h4,
    .satic-data .satic-name p {
        color: var(--text-white);
        margin-bottom: 0;
        font-weight: 100;
    }

.form-content .section-title.title-light p {
    font-size: 20px;
    margin-bottom: 20px;
}

.satic-data .satic-name p {
    font-size: 14px;
}

.glow-on-hover:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 14%);
    transform: translateY(-5px);
}

.about-img {
    width: 70%;
}

.footer-area {
    background-image: url(../../../Images/core/images/footer-bg.png);
    background-size: cover;
    padding-top: 200px !important;
}

/* button hover */
.cta {
    position: relative;
    margin: auto;
    padding: 16px 22px;
    transition: all 0.2s ease;
    font-weight: 600;
}

    .cta:hover {
        background-color: var(--primary-color);
        color: var(--text-white);
        border-radius: 28px;
    }

    .cta:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 28px;
        background: var(--primary-color);
        width: 56px;
        height: 56px;
        transition: all 0.3s ease;
    }

    .cta span {
        position: relative;
        font-size: 16px;
        line-height: 18px;
        text-transform: uppercase;
        vertical-align: middle;
    }

    .cta svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #111;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }

    .cta:hover svg {
        stroke: var(--text-white);
    }

    .cta:hover:before {
        width: 100%;
        background: var(--primary-color);
    }

    .cta:hover svg {
        transform: translateX(0);
    }

    .cta:active {
        transform: scale(0.96);
    }

.font-blue {
    color: var(--second-primary-color) !important;
}

/************* Start services **************/
.home-banner-area .banner-content p span,
.section-title h2 span {
    color: var(--primary-color);
}

.rounded-bg::before {
    content: "-";
    background-image: url(../../../Images/core/images/shape-2.png);
    color: transparent;
}

.feature-section ul li, ul.career-points li {
    position: relative;
    padding-left: 35px;
    line-height: 35px;
    display: flex;
    align-items: center;
}

.feature-section .item-single:hover ul li {
    color: var(--text-white);
}

.feature-section ul li::before {
    content: "-";
    color: transparent;
    background-image: url(../../../Images/core/images/arrow-check.png);
    height: 20px;
    width: 20px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 10px;
    background-size: contain;
}

.feature-section .item-single:hover ul li::before {
    content: "-";
    background-image: url(../../../Images/core/images/arrow-check-hover.png);
    height: 20px;
    width: 20px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    background-size: contain;
}

.feature-box .item-single:hover a.font-blue {
    color: var(--text-white) !important;
}

.themecard .item-single .icon-bg-green {
    background: url(../../../Images/core/images/icon_shape_b1-green.svg);
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-size: 100%;
    padding-left: 10px;
}

.themecard-hover .item-single:hover {
    background: #f8bc16 !important;
    color: var(--text-white);
}

    .themecard-hover .item-single:hover h5 a {
        color: var(--text-white);
    }

/************* Start Process style ***********/
.ps-timeline-sec {
    position: relative;
}

    .ps-timeline-sec .container-fluid {
        position: relative;
    }

.ps-bot h5,
.ps-top h5 {
    color: #000000;
    font-size: 18px !important;
}

.ps-timeline-sec ol.ps-timeline {
    margin: 300px 0;
    padding: 0;
    border-top: 5px solid var(--second-primary-color);
    list-style: none;
}

    .ps-timeline-sec ol.ps-timeline li {
        float: left;
        width: 16%;
        position: relative;
    }

        .ps-timeline-sec ol.ps-timeline li span {
            font-size: 6em;
            font-style: normal;
            position: relative;
            top: -105px;
            left: 40%;
            color: #E9E9E9;
            font-weight: bold;
            font-family: "PlayfairDisplay";
        }

            .ps-timeline-sec ol.ps-timeline li span::after {
                content: "";
                width: 28px;
                height: 28px;
                margin-left: -25px;
                background: var(--primary-color);
                border: 5px solid var(--text-white);
                border-radius: 50%;
                box-shadow: 0px 0px 6px 2px #c9c9c9;
                text-align: center;
                line-height: 50px -10;
                position: absolute;
                top: 40px;
                left: 70%;
            }

        .ps-timeline-sec ol.ps-timeline li .img-handler-bot {
            position: absolute;
            margin-top: 60px;
            width: 100%;
        }

        .ps-timeline-sec ol.ps-timeline li p {
            font-size: 14px;
            line-height: 22px;
        }

        .ps-timeline-sec ol.ps-timeline li .ps-top {
            bottom: 0;
            margin-bottom: 220px;
            width: 120%;
        }

        .ps-timeline-sec ol.ps-timeline li .ps-bot {
            left: 15%;
            width: 140%;
            top: 30%;
        }

/************* End Process style ***********/
.item-single .bg-absolute {
    background: url(../../../Images/core/images/shape12.png);
    right: 0;
    top: 0;
    width: 150px;
    height: 127px;
}

.t-primary,
.price .bg-hover-none:hover h4 {
    color: #4D7A2A !important;
}

    .t-primary p {
        line-height: 31px !important;
        font-size: 18px !important;
    }

.blog-content {
    bottom: 0;
    background: #0000009e;
    border-radius: 45px 10px;
    width: 100%;
}

.blog-div img {
    border-radius: 45px 10px;
}

.blog-content p {
    line-height: 22px;
}

.feature-section .bg-hover-none:hover, .bg-hover-none:hover {
    background-color: transparent !important;
}

    .feature-section .bg-hover-none:hover p {
        color: var(--text-gray-600) !important;
    }

    .feature-section .bg-hover-none:hover .position-absolute p {
        color: var(--text-white) !important;
    }

/************* End services **************/
/************* Start Why Techaidus **************/
.why-banner-area {
    background: url(../../../Images/core/images/why-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;
}

.banner-states .circle:nth-child(even) {
    margin-top: 0;
}

.banner-states .circle .item-single {
    box-shadow: 0px 2px 7px 3px #0000008c;
    padding: 18px;
    height: 180px;
    width: 180px;
}

.banner-states .circle:nth-child(odd) .item-single .item-content,
.banner-states .circle:nth-child(even) .item-single .item-content {
    height: 145px;
    width: 145px;
}

.banner-states .primary-circles .item-single .item-content {
    border: 2px dashed var(--primary-color) !important;
}

.banner-states .item-single .item-content {
    border: 2px dashed var(--second-primary-color) !important;
}

    .banner-states .item-single .item-content p {
        font-size: 14px;
        line-height: 21px;
    }

.banner-states .circle .margin-third {
    margin: 0 0 auto auto;
}

.speech-card .single-feature {
    background: #efefef;
}

    .speech-card .single-feature::before {
        content: "";
        background: url(../../../Images/core/images/double-quotes.png) !important;
        left: 0;
        background-size: 50% !important;
        background-repeat: no-repeat !important;
        border-radius: 0;
        opacity: 1 !important;
        top: -60px;
        right: -50px;
        height: 200px;
        width: 200px;
    }

    .speech-card .single-feature::after {
        content: "";
        background: url(../../../Images/core/images/microsoftteams.png) !important;
        background-size: cover !important;
        right: 0;
        left: 95%;
        background-repeat: no-repeat !important;
        height: 130px;
        width: 130px;
        bottom: 0;
        box-shadow: 2px 0px 10px #ddd6d6;
        line-height: 130px;
        opacity: 1 !important;
    }

.core-val .single-feature::before {
    content: "";
    background: url(../../../Images/core/images/double-quotes-primary.png) !important;
    left: 0;
    background-size: 50% !important;
    background-repeat: no-repeat !important;
    border-radius: 0;
    top: -60px;
    right: -50px;
    height: 200px;
    width: 200px;
}

.core-val .single-feature::after {
    content: "";
    background: url(../../../Images/core/images/keshu-keshala.png) !important;
    right: 0;
    left: 95%;
    background-repeat: no-repeat !important;
    height: 130px;
    width: 130px;
    bottom: 0;
    box-shadow: 2px 0px 10px #ddd6d6;
}

.core-values .section-title p,
.hire-now .section-title p {
    font-size: 16px !important;
}

.alexander img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 60px;
}

/************* End Why Techaidus **************/

/************* Start java Alcaion **************/
.hire-now .section-title {
    align-items: flex-start !important;
}

.hire-now .img-fluid {
    border-radius: 50px 0 0 0;
}

.bg-hire {
    background: url(../../../Images/core/images/java/hirenow-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
}

    .bg-hire::after {
        content: "";
        background: url(../../../Images/core/images/ellipse17.png);
        height: 200px;
        width: 200px;
        bottom: -85px;
        right: -45px;
        position: absolute;
        background-repeat: no-repeat;
        z-index: -1;
    }

.bg-greendot::after {
    content: "";
    background: url(../../../Images/core/images/shape-2.png);
    height: 300px;
    width: 300px;
    top: -40px;
    right: 0;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 0;
}

.pencil h5 {
    color: var(--text-white);
    font-weight: 100;
    height: 60px;
    font-size: 16px;
    background-color: var(--second-primary-color);
    display: inline-block;
    position: relative;
    padding: 20px;
}

.pencil {
    display: flex;
    align-items: center;
}

    .pencil h5::after {
        content: '';
        border-left: 50px solid var(--second-primary-color);
        display: inline-block;
        position: absolute;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        right: -51px;
        top: 0;
    }

.technology .logo {
    color: var(--text-white);
    font-weight: 100;
    font-size: 16px;
    background-color: #e4e4e4;
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 20px;
    box-shadow: 0 2px 5px #a7a7a7;
    margin-left: -24px;
    z-index: 0;
}

.technology {
    display: flex;
    align-items: center;
}

    .technology h5 {
        padding: 5px 15px;
        background: var(--second-primary-color);
        color: var(--text-white);
        font-size: 16px;
        z-index: 8;
        text-transform: uppercase;
        width: 250px;
        height: 70px;
        display: flex;
        align-items: center;
    }

        .technology h5::before {
            content: '';
            border-left: 25px solid transparent;
            display: inline-block;
            position: absolute;
            border-top: 0 solid transparent;
            border-bottom: 70px solid var(--second-primary-color);
            left: -25px;
            top: 0;
        }

.technology-pencil .technology::before {
    content: '';
    border: 3px solid transparent;
    display: inline-block;
    top: 0;
    z-index: 8;
    border-radius: 5px;
    box-shadow: 6px 0 6px 0px #c8c8c8;
    position: relative;
    left: 103px;
}

.technology .logo::after {
    content: '';
    border-left: 25px solid #e4e4e4;
    display: inline-block;
    position: absolute;
    border-top: 40px solid transparent;
    border-bottom: 44px solid transparent;
    right: -25px;
    top: 0;
}

.technology::before {
    content: '';
}

.technology > div::before {
    content: '';
    border-left: 25px solid #c3c3c3;
    display: inline-block;
    position: absolute;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    left: 0px;
    top: 0;
}

.border-pencil {
    border-bottom: 1px solid #D1D1D1;
    padding-bottom: 20px;
}

    .border-pencil .java-logo {
        background: #F8F8F8;
        padding: 15px;
        border-radius: 5px;
    }

/************* End java Alcaion **************/
/************* Start Case Studies **************/
.case-content {
    bottom: 40px;
    padding: 25px;
    background: white;
    width: 95%;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

    .case-content h5 {
        line-height: 1.5;
    }

.case-img,
.case-content {
    cursor: pointer !important;
}

.bg-case {
    background: url(../../../Images/core/images/bg3.png);
    background-size: cover;
}

.bg-case-detail {
    background: url(../../../Images/core/images/bg4.png);
    background-size: cover;
}

.item-single:hover .read-more-trigger {
    color: var(--text-white);
}

.read-more-state {
    display: none;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
    content: 'Read more';
    cursor: pointer;
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: 'Read less';
    cursor: pointer;
}

.accordion-flush .accordion-item .accordion-button {
    background: hsl(224deg 61% 35% / 7%);
    box-shadow: inset 0 0 0 rgb(0 0 0 / 13%);
}

.accordion-button:not(.collapsed) {
    color: #373737
}

.accordion-flush .accordion-item {
    border: 0;
    margin-top: 10px;
}

.case-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 0px;
}

.case-content h5 {
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 60px;
}

/************* End Case Studies **************/
/************* Start Contact  **************/
.contact .form-group img {
    position: absolute;
    align-items: center;
    left: 15px;
    top: 20px;
    width: 20px;
}

.contact .form-group {
    display: flex;
    align-items: flex-start;
}

    .contact .form-group .form-control {
        box-shadow: 0px 1px 8px #e6e6e6;
        border: 0;
        background: #fafafa;
    }

    .contact .form-group textarea {
        height: auto;
        padding-top: 20px;
    }

img.img-fluid-contact {
    max-width: 100%;
    height: auto;
    width: 100px;
    height: 130px;
    background: var(--text-white);
    padding: 8px;
}

.pt-140 {
    padding-top: 140px !important;
}

.icon-center .item-single {
    margin-top: 100px !important;
    padding-bottom: 0 !important;
}

    .icon-center .item-single img {
        top: -115px;
    }

.icon-center .item-content {
    top: -40px;
}

.social-link img.img-fluid.me-3 {
    width: 25px;
    height: 25px;
    border-radius: 20px;
}

/************* End Contact  **************/
/************* Start Blog  **************/
.carousel-caption {
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto;
}

.list ul li {
    cursor: pointer;
}

.list ul li,
.list h2,
.list .social-link {
    padding: 0 30px;
    background: #f6f6f6;
    border-bottom: 1px solid #eee;
}

.case-sitemap {
    overflow-y: scroll;
    height: 912px;
}

.sitemap .list h2 {
    font-size: 23px;
}

.sitemap .list ul.list-group li.list-group-item {
    font-size: 15px;
}

.list ul.list-group li.list-group-item {
    padding: 13px 45px 13px 30px !important;
}

.case-content ul.list-group li.list-group-item {
    padding: 13px 50px 13px 30px !important;
    border: 0;
    border-top: 1px dashed rgba(0, 0, 0, .125);
    background: #f6f6f6;
}

.list ul.list-group li.list-group-item:hover {
    background: var(--second-primary-color);
    color: var(--text-white) !important;
    border-radius: 0 40px 40px 0;
    width: 97%;
}

    .list ul.list-group li.list-group-item:hover a {
        color: var(--text-white) !important;
    }

    .list ul.list-group li.list-group-item::after {
        content: "";
        background: url(../../../Images/core/images/blog/list-icon.png);
        height: 17px;
        width: 10px;
        position: absolute;
        background-repeat: no-repeat;
        right: 30px;
        top: 18px;
        background-size: contain;
    }

.list ul.list-group li.list-group-item:hover::after {
    content: "";
    background: url(../../../Images/core/images/blog/list-icon-hover.png);
    height: 17px;
    width: 15px;
    position: absolute;
    background-repeat: no-repeat;
    right: 14px;
    top: 18px;
    background-size: contain;
}

.sitemap .list {
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.content-after ul.list-group li.list-group-item::after {
    display: none;
}

.content-after ul.list-group li.list-group-item {
    padding: 13px 20px 13px 30px !important;
}

.btn-second-primary {
    -webkit-box-shadow: 0 0 40px 40px var(--second-primary-color) inset;
    box-shadow: 0 0 40px 40px var(--second-primary-color) inset;
}

.cta-btn .btn-second-primary:hover,
.cta-btn .btn-second-primary.active,
.cta-btn .btn-second-primary:focus {
    color: var(--second-primary-color) !important;
    border: 1px solid var(--second-primary-color) !important;
}

.list-group-flush {
    background: #f6f6f6 !important;
}

/************* End Blog  **************/

/************* Start Faq  **************/
.accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    background: #ecf0f7;
}

.faq-section .accordion-button {
    background-color: var(--second-primary-color);
    color: var(--text-white);
}

.faq-section .accordion-item {
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url(../images/white-arrow.html);
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/down-white-arrow.html);
}

/************* End Faq  **************/

.techbology-list .container {
    padding: 0;
}

.blog .sitemap .list {
    position: sticky;
    overflow: auto;
    top: 20px;
    max-height: calc(100vh - 50px);
}

.blog-section .btn-blue:hover {
    background-color: transparent;
    border: 1px solid var(--second-primary-color);
    color: var(--second-primary-color);
    box-shadow: 0 0 40px 40px transparent inset;
    transition: 0.6s;
}
/************ Start Career page **************/

.career-card .item-content h6 {
    font-size: 16px;
    line-height: 24px;
}

.hover-color:hover {
    color: var(--primary-color);
}

.career-card .item-content h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    /* min-height: 50px;*/
}

ul.career-points li::before {
    content: "-";
    color: transparent;
    background-image: url(../../../Images/core/images/arrow-check-primary.png);
    height: 20px;
    width: 20px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    top: 8px;
    background-size: contain;
}

.contact-info2 .list-group-item span {
    display: inline-block;
    width: calc(100% - 35px);
    line-height: 22px;
}
/************ End Career page **************/

/************ Employees Review page start **************/
.testimonial-section {
    position: relative;
    padding-bottom: 210px;
    overflow: hidden;
}

    .testimonial-section:before {
        position: absolute;
        left: -200px;
        top: 22%;
        background-image: url(../../../../t.commonsupport.com/adro/images/icons/ring-circle.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 701px;
        height: 756px;
        content: "";
        -webkit-animation: fa-spin 25s infinite alternate;
        animation: fa-spin 25s infinite alternate;
    }

    .testimonial-section .testimonial-carousel {
        position: relative;
        max-width: 1100px;
        margin: 0 -50px;
    }

.testimonial-block .inner-box {
    padding: 80px 105px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
}

.testimonial-block .info-box {
    position: relative;
    padding-left: 100px;
    padding-top: 10px;
}

    .testimonial-block .info-box .thumb {
        position: absolute;
        left: 0;
        top: 0;
        height: 82px;
        width: 82px;
    }

        .testimonial-block .info-box .thumb img {
            border: 6px solid #e5e6fa;
            border-radius: 50%;
            overflow: hidden;
            display: block;
            height: 80px;
            width: 80px;
            box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
        }

    .testimonial-block .info-box .name {
        position: relative;
        display: block;
        font-size: 21px;
        line-height: 1.2em;
        color: #382c4d;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .testimonial-block .info-box .designation {
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 24px;
        color: #8053f7;
        font-weight: 400;
    }

.testimonial-carousel .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
}

.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all 300ms ease;
}

.arrow-right,
.arrow-left {
    position: relative;
    display: inline-block;
    height: 30px;
    width: 43px;
    background-image: url(../../../Images/core/images/employee-reviews/leftarrow.html);
    background-repeat: no-repeat;
    background-position: center;
}

.arrow-right {
    background-image: url(../../../Images/core/images/employee-reviews/rightarrow.html);
}

.testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;
}

    .testimonial-section .thumb-layer .image {
        position: relative;
        margin-right: 0;
    }

        .testimonial-section .thumb-layer .image img {
            display: inline-block;
            max-width: 100%;
            height: auto;
        }

.review-bar div:last-child img {  
    width: 30px;
}
/************ Employees Review page end **************/


/************ how we work page starts **************/
.bullets .list-style-none i {
    border-radius: 50%;
    background: #f8bc16;
    padding: 15px;
    color: #fff !important;
    top: 0;
    left: -15px;
}

.bullets .list-style-none li {
    background: #7bc2452e;
    border-radius: 40px;
    padding-left: 0;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.li-disc-inline {
    padding-right: 15px;
}

.li-disc-inline {
    display: inline-block;
    padding-left: 8px;
    width: calc(100% - 40px);
}

.bullets li {
    padding: 5px 0px;
    font-size: 16px;
    line-height: 1.8rem;
}
/* .identifiy-wrapper {
    background-image: url(../images/how-we-work/identification-bg.png);
    background-size: cover;
    background-position: center;
} */
ul.identify-ul li {
    list-style: none;
}

.identify-img {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 50%;
    border: 5px solid #214291;
    z-index: 8;
}

.unit-wrapper img {
    width: 80%;
    margin: 0 auto;
    display: table;
}

.identify-img img {
    width: 100px;
    padding: 21px;
}

ul.identify-ul li h6 {
    color: var(--second-primary-color);
    font-weight: 600;
}

ul.identify-ul li:nth-child(even) {
    margin-top: 160px;
}

.identify-ul li:before {
    content: "";
    width: 278px;
    height: 3px;
    border-top: 3px dashed #f8bc16;
    display: block;
    position: absolute;
    top: 34%;
    right: -222px;
    z-index: -1;
}

.identify-ul li.team:after, .identify-ul li.Vision:after {
    content: "";
    width: 78px;
    height: 3px;
    border-top: 3px dashed #f8bc16;
    display: block;
    position: absolute;
    top: 46%;
    right: -263px;
    z-index: -1;
    transform: rotate(90deg);
}

.identify-ul li.Customer:after, .identify-ul li.Scope:after {
    content: "";
    width: 57px;
    height: 3px;
    border-top: 3px dashed #f8bc16;
    display: block;
    position: absolute;
    top: 17%;
    right: -252px;
    z-index: -1;
    transform: rotate(90deg);
}

ul.identify-ul li:last-child:before {
    display: none;
}
/************how we work page ends*************/

/************ Start Stepper Form *************/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

    #msform fieldset {
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative
    }

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform .action-button-submit {
}


#msform .action-button {
    bottom: -2%;
    right: 5%;
    transform: translateX(5%);
    width: 43% !important;
}


#msform .action-button-previous {
    left: 10%;
    transform: translateX(-10%);
    bottom: -2%;
    width: 43% !important;
}

#msform .action-first {
    width: 90% !important;
    left: -50px;
    right: 0;
    transform: translateX(16%);
}

.stepper .card {
    z-index: 0;
    border: none;
    position: relative
}


.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    color: lightgrey;
    box-shadow: 2px 2px 5px #d5d5d5;
}

    #progressbar .active {
        color: var(--second-primary-color);
    }

    #progressbar li {
        list-style-type: none;
        font-size: 16px;
        position: relative;
        font-weight: 400;
        display: flex;
        align-items: center;
        margin-bottom: 100px;
    }

        #progressbar li::before {
            content: "";
            border-left: 5px dashed;
        }

        #progressbar li .li-content {
            text-align: left;
        }

        #progressbar li p:nth-child(3)::before {
            content: "";
            color: transparent;
            background-image: url(../../../Images/core/images/arrow-check-primary.png);
            height: 15px;
            width: 15px;
            position: absolute;
            background-repeat: no-repeat;
            right: -30px;
            top: 6px;
            background-size: contain;
        }

    #progressbar #account:before {
        content: "01"
    }

    #progressbar #personal:before {
        content: "02"
    }

    #progressbar #payment:before {
        content: "03"
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: var(--second-primary-color);
        border: 2px solid var(--second-primary-color);
        border-radius: 50%;
        padding: 2px;
        font-weight: bold;
        margin-right: 25px;
        background: #fff;
    }

        #progressbar li:before:before {
            content: "";
            border: 2px solid var(--second-primary-color);
        }
    /*  #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1;
        transform: rotate(90deg);
    }*/
    #progressbar li.active:before,
    #progressbar li.active:after {
        background: var(--second-primary-color);
        color: #fff;
    }

    #progressbar li .li-content .completed {
        opacity: 0;
    }

    #progressbar li.active .li-content .completed {
        opacity: 1;
    }

    #progressbar li:first-child::after {
        content: "";
        left: 24px;
        border-left: 2px dashed;
        position: absolute;
        height: 380px;
        z-index: -1;
        top: 25px;
    }
.progress {
    height: 20px
}

.progress-bar {
    background-color: #673AB7
}

.fit-image {
    width: 100%;
    object-fit: cover
}
/************ End Stepper form *********/
/*************Start Book a call popup********************/
.modal-open .modal, .modal-open {
    padding-right: 0 !important;
    overflow: auto !important;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.fade {
    transition: opacity .15s linear;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    pointer-events: auto;
}
.modal-dialog {
    max-width: 600px !important;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
}
.modal-body {
    padding: 1rem 1rem 0 1rem;
}
.quickform-holder {
    position: fixed;
    top: 7%;
    right: 3%;
    left: 3%;
    margin: 0 auto;
    z-index: 999999;
    padding: 0;
    width: 93%;
}
    .quickform-holder .big-girl {
        position: absolute;
        left: 7%;
        top: -60px;
        z-index: 1;
        width: 245px;
    }
    .quickform-holder .quickform .s-f-left {
        background: #12ec90;
        background: linear-gradient(135deg, rgb(123 194 69) 30%, rgb(17 41 110) 100%);
    }
        .quickform-holder .quickform .s-f-left .calender {
            background: url(../../../Images/core/images/bookacall/s-f-left-date.png) no-repeat 0 0;
            padding: 143px 20px 63px 20px;
        }
            .quickform-holder .quickform .s-f-left .calender .text {
                z-index: 1;
                position: relative;
                top: 65px;
            }
.slice2 {
    position: relative;
    width: 206px;
    height: 40px;
    overflow: hidden;
    margin: 100px auto 0;
}
.quickform-holder .quickform .s-f-left .calender .text1 {
    z-index: 1;
    position: relative;
    margin: 0 auto;
    display: block;
    padding: 100px 0 7px;
    width: auto;
}
.quickform-holder .quickform .s-f-right {
    float: none;
    width: 100%;
    background-color: #fff;
    position: relative;
    padding-bottom: 15px;
}
    .quickform-holder .quickform .s-f-right h2 {
        color: #325153;
        font-size: 32px;
        line-height: 40px;
        font-weight: 500;
        background: url(../../../Images/core/images/bookacall/s-f-right-arrow.png) no-repeat 200px 31px #fff;
        padding: 20px 0 20px 20px;
        background-size: 31px;
    }
.modal .close {
    color: #000;
    top: 15px;
    position: absolute;
    right: 15px;
}
.modal .close {
    color: #000;
    top: 15px;
    position: absolute;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 24px;
}
.quickform-holder .quickform .o-contact-form .o-contact-form--white-bg {
    padding: 0 20px 7px 20px;
    background-color: #fff;
}
#contact-form .form-control {
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.quickform-holder .quickform .s-f-right .s-f-right-bottom {
    display: block;
}
.s-f-right ul {
    list-style: none;
}
.quickform-holder .quickform .s-f-right .s-f-right-bottom ul li {
    float: left;
    width: 50%;
    min-height: 70px;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 14px;
    margin-left: 0;
}
.s-f-icon {
    position: relative;
    width: 31px;
    height: 31px;
    overflow: hidden;
    margin-bottom: 5px;
}
    .s-f-icon img {
        position: absolute !important;
        padding: 0 !important;
        width: 452px !important;
        top: -37px;
        left: -128px;
    }
.s-f-icon4 {
    position: relative;
    height: 27px;
    width: 28px;
    overflow: hidden;
    margin-bottom: 5px;
}
    .s-f-icon4 img {
        position: absolute;
        padding: 0 !important;
        width: 452px !important;
        top: -32px;
        left: -188px;
    }
.tranparent-bg {
    background: rgb(219 140 140 / 50%);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    display: none;
}
.quickform-holder .quickform {
    overflow: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 6px 0 rgb(51 51 51 / 50%);
    box-shadow: 0 0 6px 0 rgb(51 51 51 / 50%);
    position: relative;
    bottom: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.slice2 img {
    position: absolute !important;
    padding: 0 !important;
    width: 452px !important;
    top: -155px;
    left: -137px;
}
/*************End Book a call popup**********************/
.modal-open .modal.hireform {
    overflow: hidden !important;
}
    .modal-open .modal.hireform .modal-body {
        overflow-y: scroll;
        height: 400px;
    }
    .modal-open .modal.hireform .form-control {
        padding: 1em;
    }
