* {
    padding: 0;
    margin: 0;
    outline: none;
}

:root {
    --color-red: #4fb6d6;
    --color-darkRed: #8B0000;
    --color-darkRed2: #1f227d;
    --color-orange1: #ff7a41;
    --color-orange2: #f6c463;
    --color-orange3: #f9a41f;
    --color-orange4: #EC6326;
    --color-red1: #cc2131;
    --color-red2: #ef1552;
    --color-green: #00c057;
    --color-white: #ffffff;
    --color-yellowGreen: #cef54b;
    --color-black: #000000;
    --color-ironside-grey: #666666;
    --bg-color-9: #f6f8fb;
    --color-gray: #eef4f8;
    --color-main-grad: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%);
    /*RED*/
    /*  --color-red: #e03b3b;
    --color-darkRed:#8B0000;
    --color-darkRed2:#1f227d;
    --color-orange1:#ff7a41;
    --color-orange2:#f6c463;
    --color-orange3:#f9a41f;
    --color-orange4:#EC6326;
    --color-red1:#cc2131;
    --color-red2:#ef1552;
    --color-green:#00c057;
    --color-white:#ffffff;
    --color-yellowGreen:#cef54b;
    --color-black:#000000;
    --color-ironside-grey:#666666;
    --bg-color-9: #f6f8fb;
    --color-gray: #eef4f8;
    --color-main-grad: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%);*/
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

html::-webkit-scrollbar {
    height: 20px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

html::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

body {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 1.0rem;
    overflow-x: hidden;
    position: relative;
    color: #51555c;
    font-weight: 400;
    line-height: 1.5;
}

a, span, img {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

a, li {
    list-style: none;
    -webkit-text-decoration: none;
    text-decoration: none
}

a, button {
    -webkit-tap-highlight-color: rgba(249,249,251,.2)
}

a {
    transition: all 350ms;
    -webkit-transition: all 350ms;
    -ms-transition: all 350ms;
    text-decoration: none;
    outline: none;
}

    a:focus,
    a:active {
        outline: none;
    }

    a:hover {
        text-decoration: none;
    }


h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.butn, .btn {
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

header .navbar {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.navbar-brand img {
    max-width: 180px;
    width: 100%;
}

.custom-hem {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-grow: 1;
}

    .main-nav ul {
        display: flex;
        flex-direction: row;
        margin-left: auto;
    }

    .main-nav > ul > li {
        position: relative;
        padding: 10px 20px;
    }

        .main-nav > ul > li.subdropdown {
            position: static;
        }

        .main-nav > ul > li > a {
            font-size: 14px;
            color: #fff;
            margin: 0 5px;
            padding: 5px 0px;
            font-weight: 500;
            text-transform: uppercase;
            border-radius: 40px;
            position: relative;
        }

            .main-nav > ul > li > a.active::before {
                width: 100%;
                transform: scaleX(1);
            }

            .main-nav > ul > li > a::before {
                content: "";
                left: 0;
                top: auto;
                bottom: 0px;
                background: #fff;
                width: 100%;
                height: 1px;
                transform: scaleX(0);
                transform-origin: bottom right;
                position: absolute;
                transition: transform .3s ease-out;
            }

.subdropdown a span {
    margin-left: 5px;
}

.in-submenu {
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
}

    .in-submenu li a span {
        font-size: 18px;
        font-weight: 800;
        color: #000000;
        margin-left: 0px;
        display: block;
        margin-bottom: 6px;
    }

    .in-submenu li a div {
        color: #1d1d1d;
    }

.main-submenu {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0px;
    background: #fff;
    padding: 30px 0px;
    box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.main-nav ul > li:hover .main-submenu {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    top: 100%;
    z-index: 9;
}

.main-nav ul > li > a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-topheader {
    position: absolute;
    width: 100%;
    z-index: 3;
}

    .main-topheader::before {
        content: "";
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
        position: absolute;
        width: 100%;
        height: 186px;
        top: 0px;
        left: 0px;
    }

.hero-main {
    position: relative;
    overflow: hidden;
    background-color: var(--color-red);
    padding: 100px 0 30px;
}

    .hero-main::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 60%;
        background-image: url('../images/0011.png');
        background-size: 80%;
        background-repeat: repeat;
        background-position: bottom;
        opacity: 0.08;
        -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(1003%) contrast(103%);
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(1003%) contrast(103%);
    }

    .hero-main .main-img {
        position: absolute;
        right: 0;
        top: 130px;
        width: 55%;
        height: calc(100% - 200px);
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: right;
        object-position: right;
    }

        .hero-main .main-img .pattern {
            width: 100%;
            height: 100%;
            position: absolute;
            object-fit: contain;
            top: 0;
            right: 0;
        }

        .hero-main .main-img .circle {
            position: absolute;
            width: 36%;
            top: 13.5%;
            right: 30%;
            -webkit-animation: rotate-center 100s linear infinite both;
            animation: rotate-center 100s linear infinite both;
        }

.content.info h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

    .content.info h1 span {
        font-weight: 400;
        position: relative;
        font-style: italic;
    }

        .content.info h1 span::before {
            position: absolute;
            content: "";
            right: 0;
            top: 100%;
            width: 160px;
            height: 30px;
            background-image: url('../images/info_h1_line.png');
            background-size: 160px;
            background-repeat: no-repeat;
            background-position: left;
        }

.content.info h4 {
    color: #fffefe;
    font-size: 16px;
    font-weight: 600;
    margin-top: 80px;
    position: relative;
}

    .content.info h4::before {
        position: absolute;
        content: "";
        left: -65px;
        bottom: -10px;
        width: 50px;
        height: 100px;
        background-image: url('../images/head3_arrow.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.hero-content {
    padding: 100px 0;
}

.hero-main .main-img .logo_shap {
    max-width: 150px;
    position: absolute;
    top: 42%;
    right: 41%;
    width: 100%;
}

.form-hero {
    margin-top: 30px;
}

    .form-hero .form-group {
        position: relative;
    }

        .form-hero .form-group .form-control {
            font-size: 12px;
            border: 0;
            border-radius: 30px;
        }

            .form-hero .form-group .form-control:focus {
                outline: none;
                box-shadow: none;
            }

        .form-hero .form-group.input-with-icon .form-control {
            padding: 12px 20px 12px 40px;
        }

        .form-hero .form-group.input-with-icon .input-icon {
            position: absolute;
            left: 20px;
            bottom: 10px;
            color: #999;
        }

        .form-hero .form-group .form-select {
            padding: 12px 20px;
            font-size: 12px;
            border: 0;
            border-radius: 30px;
        }

            .form-hero .form-group .form-select:focus {
                outline: none;
                box-shadow: none;
            }

    .form-hero .btn.dark-butn {
        background: #000;
    }

        .form-hero .btn.dark-butn:hover {
            background: var(--color-darkRed);
            border-color: transparent !important;
        }

.btn.dark-butn span {
    color: #ffffff;
    font-size: 14px;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.section-head-title h2 {
    font-size: 1.6875rem;
    text-transform: capitalize;
}

    .section-head-title h2 span::after {
        position: absolute;
        content: "";
        background-image: url('../images/title_shap1.png');
        left: 0;
        bottom: -15px;
        width: calc(100% + 40px);
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .section-head-title h2 span {
        font-weight: 400;
        color: var(--color-red);
        font-style: italic;
        position: relative;
    }

.section-head-title h3 {
    font-size: 1.6875rem;
    text-transform: capitalize;
}

    .section-head-title h3 span::after {
        position: absolute;
        content: "";
        background-image: url('../images/title_shap1.png');
        left: 0;
        bottom: -15px;
        width: calc(100% + 40px);
        height: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .section-head-title h3 span {
        font-weight: 400;
        color: var(--color-red);
        font-style: italic;
        position: relative;
    }

.service-card-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    height: 100%;
}

.our-services {
    background-color: #f0eff5;
    padding: 80px 0px;
}

.service-card-box .icon {
    margin-bottom: 30px;
}

    .service-card-box .icon img {
        width: 75px;
        height: 75px;
        object-fit: contain;
    }

.service-card-box .info h5 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--color-black);
    font-family: "Lexend Deca", sans-serif;
}

.section-head-title {
    padding: 0px 0px 30px 0px;
}

.our-featured-project {
    background-color: #f0eff5;
    padding: 70px 0px 80px 0px;
    position: relative;
}

    .our-featured-project::before {
        content: "";
        background: url('../images/testi3_lines.png') no-repeat center;
        background-size: cover;
        max-width: 1296px;
        width: 100%;
        height: 22px;
        display: block;
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .our-featured-project .section-head-title {
        text-align: center;
    }

.project-card-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

    .project-card-box > a {
        max-height: 460px;
        min-height: 460px;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        background-color: #fff;
    }

    .project-card-box img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        min-height: 100%;
        min-width: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
    }

    .project-card-box .project-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background-color: #fff;
        border-radius: 15px;
        display: inline-block;
        padding: 20px 25px;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -webkit-transform: translateY(150%);
        -ms-transform: translateY(150%);
        transform: translateY(150%);
        opacity: 0;
        z-index: 5;
    }

.project-info h5 {
    margin-bottom: 0px;
}

    .project-info h5 a {
        font-weight: 700;
        color: #000000;
    }

.project-card-box:hover a img {
    -webkit-transform: scale(1.05) rotate(-5deg);
    -ms-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
}

.project-card-box:hover .project-info {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.common-btn {
    background: var(--color-red);
    color: #ffffff;
    margin-top: 30px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 25px;
    font-size: 1rem;
    border: 1px solid transparent;
    border-radius: 50rem;
}

.why-we-stand-out-main {
    padding: 80px 0px;
}

.why-we-card-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(219, 12, 90, 0.09);
    padding: 1.5rem;
    min-height: 318px;
    height: 100%;
}

.icon-boc {
    max-width: 70px;
    width: 100%;
    margin-bottom: 20px;
}

    .icon-boc img {
        width: 100%;
    }

.card-main-why {
    position: relative;
    margin-bottom: 40px;
}

.stand-out-title h4 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .stand-out-title h4 span {
        color: var(--color-red);
    }

.stand-out-title p {
    font-size: 1.125rem;
}

.stand-out-title {
    margin-bottom: 30px;
}

.why-we-card-box h5 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--color-black);
}

@media only screen and (min-width: 768px) {
    .why-we-card-box p {
        text-align: justify;
    }
}

.mission-and-vision-main {
    padding: 80px 0px;
}

.mission-left img {
    width: 100%;
    height: auto;
}

.mission-right {
    padding-left: 40px;
}

    .mission-right h2 {
        font-size: 1.625rem;
        text-transform: capitalize;
        margin-bottom: 30px;
    }

        .mission-right h2 span {
            font-weight: 400;
            color: var(--color-red);
            font-style: italic;
            position: relative;
        }

            .mission-right h2 span::after {
                position: absolute;
                content: "";
                background-image: url("../images/title_shap2.png");
                left: 0;
                bottom: -15px;
                width: calc(100% + 40px);
                height: 30px;
                background-size: contain;
                background-repeat: no-repeat;
            }

    .mission-right h5 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .mission-right h6 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

.mission-left {
    position: relative;
}

    .mission-left .info-circle {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -40%);
        -ms-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 230px;
        height: 230px;
        background-color: #4a00e1;
        color: #fff;
        border-radius: 50%;
        overflow: hidden;
        outline: 10px solid #fff;
    }

        .mission-left .info-circle:nth-of-type(2) {
            width: 200px;
            height: 200px;
            left: auto;
            right: 0;
            top: 50%;
            -webkit-transform: translate(-14%, -57%);
            -ms-transform: translate(-14%, -57%);
            transform: translate(-14%, -57%);
            z-index: 5;
        }

        .mission-left .info-circle:nth-of-type(3) {
            width: 150px;
            height: 150px;
            left: auto;
            right: 0;
            top: 50%;
            -webkit-transform: translate(-88%, 32%);
            -ms-transform: translate(-88%, 32%);
            transform: translate(-88%, 32%);
            background-color: #8d3dfa;
            z-index: 0;
        }

        .mission-left .info-circle:nth-of-type(4) {
            width: 180px;
            height: 180px;
            left: 0;
            top: 50%;
            -webkit-transform: translate(20%, -20%);
            -ms-transform: translate(20%, -20%);
            transform: translate(20%, -20%);
            background-color: #00bcf2;
            z-index: 0;
        }

.info-circle .cont h3 {
    font-size: 2.625rem;
    font-weight: bold;
    line-height: 1.1;
}

.info-circle .cont small {
    font-size: 0.625rem;
    font-weight: normal;
}


.technologie-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #dadada;
    margin-bottom: 1.5rem;
}

    .technologie-card h3 {
        font-size: 1.375rem;
        font-weight: bold;
        font-family: "Lexend Deca", sans-serif;
        margin-bottom: 10px;
    }

        .technologie-card h3 span {
            color: var(--color-red);
        }

    .technologie-card h4 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #51555c;
        font-family: "Lexend Deca", sans-serif;
        margin-bottom: 10px;
    }

    .technologie-card p {
        font-size: 0.875rem;
    }

        .technologie-card p a {
            color: var(--color-red);
        }

.technologie-listitems {
    display: flex;
    gap: 16px;
}

.tech-icon {
    text-align: center;
}

.te-icon {
    width: 60px;
    height: 60px;
    background-color: #eee;
    border: 2px solid #eee;
    border-radius: 100%;
    filter: grayscale(1);
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 4px;
}

    .te-icon i {
        font-size: 1.875rem;
        color: #bcb6b6;
    }

    .te-icon img {
        max-width: 47px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.technologie-card .technologie-listitems li p {
    font-size: 12px;
    margin-bottom: 0px;
    text-align: center;
}

.sticky-section {
    position: sticky;
    top: 1.375rem;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

.technologie-left h3 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .technologie-left h3 span {
        color: var(--color-red);
    }

.technologie-left p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 24px;
}

    .technologie-left p a {
        color: var(--color-red);
    }

.technologie-left .list-group ul a {
    background-color: transparent;
    border: none;
    border-left: 8px solid transparent;
    color: #666 !important;
    display: block;
    font-size: 1.125rem;
    padding: 20px;
}

    .technologie-left .list-group ul a:hover, .technologie-left .list-group ul a:focus {
        background: transparent;
    }

    .technologie-left .list-group ul a.active {
        background-color: transparent;
        border-left: 8px solid var(--color-red);
        color: var(--color-red) !important;
    }

.industries-desc {
    border-radius: 16px;
    background: var(--color-red);
    padding: 34px;
    min-height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.technologies-main {
    padding: 80px 0px;
}

.industries-we-serve-main {
    padding: 80px 0px;
}

.industries-box {
    padding: 24px 12px;
    border-radius: 12px;
    border: 1px solid #EAF3FF;
    background: var(--color-white);
    margin: 0 0 24px 0;
    transition: all .2s ease-in-out;
    height: calc(100% - 25px);
    color: var(--color-black);
    position: relative;
    cursor: pointer;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
}

    .industries-box img {
        margin-bottom: 5px;
    }

    .industries-box p {
        font-size: 1rem;
        margin-bottom: 0px;
    }

.industries-desc h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.industries-desc p {
    color: var(--color-white);
}

.build-your-dream-main {
    padding: 80px 0px;
}

.build-team-title {
    margin-bottom: 30px;
}

    .build-team-title h2 {
        font-size: 2rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-align: center;
    }

        .build-team-title h2 span {
            color: var(--color-red);
        }

.build-team-card {
    text-align: center;
}

.team-card-img {
    width: 220px;
    height: 220px;
    border: 2px solid #000000;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 24px;
}

    .team-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.team-card-description h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

.team-card-description p {
    font-size: 14px;
    line-height: 1.7;
}

.process-main {
    padding: 80px 0px;
    background: var(--bg-color-9);
}

.process-title {
    text-align: center;
    margin-bottom: 40px;
}

    .process-title h3 span {
        display: block;
        font-size: 1.25rem;
        text-transform: uppercase;
        font-weight: 300;
    }

    .process-title h3 {
        font-size: 1.875rem;
        color: var(--color-black);
    }

.process-card {
    background: var(--color-white);
    margin-top: 0;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    height: calc(100% - 30px);
}

    .process-card h5 {
        font-size: 3.4375rem;
        color: #d5dae1;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1;
    }

    .process-card h3 {
        font-size: 1.25rem;
        line-height: 30px;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .process-card p {
        font-size: 14px;
        line-height: 1.7;
    }

.we-deliver-main {
    padding: 80px 0px;
}

.we-deliver-left h2 span {
    display: block;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 300;
}

.we-deliver-left h2 {
    font-size: 1.875rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.we-deliver-left p {
    font-size: 1rem;
}

.we-deliver-main .right-desc {
    display: flex;
    flex-wrap: wrap;
}

.right-desc-box {
    display: inline-flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    width: calc(33.33% - 18px);
    margin: 0 9px 18px 9px;
    position: relative;
}

    .right-desc-box img {
        display: block;
    }

    .right-desc-box p {
        font-size: 0.875rem;
        margin-bottom: 0px;
    }

.testimonials-main {
    padding: 80px 0px;
    position: relative;
    background: #f0eff5;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.testimonial-title h3 {
    font-size: 1.625rem;
    text-transform: capitalize;
    margin-bottom: 30px;
}

    .testimonial-title h3 span {
        font-weight: 400;
        color: var(--color-red);
        font-style: italic;
        position: relative;
    }

        .testimonial-title h3 span::after {
            position: absolute;
            content: "";
            background-image: url("../images/title_shap1.png");
            left: 0;
            bottom: -15px;
            width: calc(100% + 40px);
            height: 30px;
            background-size: contain;
            background-repeat: no-repeat;
        }

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

    .testimonial-card q {
        display: block;
        margin-bottom: 20px;
    }

    .testimonial-card p.fw-bold {
        font-weight: bold;
        color: var(--color-red);
    }

    .testimonial-card p {
        margin: 0px;
        font-size: 14px;
    }

.testimonial-slider-main .swiper-button-next {
    top: -65px;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-white);
}

.testimonial-slider-main .swiper-button-prev {
    top: -65px;
    left: auto;
    right: 40px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-white);
}

.testimonial-slider-main .swiper-button-next::after {
    font-size: 12px;
    color: var(--color-red);
    font-weight: bold;
}

.testimonial-slider-main .swiper-button-prev::after {
    font-size: 12px;
    color: var(--color-red);
    font-weight: bold;
}

.testimonial-slider-main {
    position: relative;
}

.chat-banner {
    padding: 80px 0px;
    background-color: var(--color-red);
    position: relative;
}

    .chat-banner::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 60%;
        background-image: url('../images/0011.png');
        background-size: 80%;
        background-repeat: repeat;
        background-position: bottom;
        opacity: 0.08;
        -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(1003%) contrast(103%);
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(1003%) contrast(103%);
    }

.chat-left h2 {
    font-size: 1.6875rem;
    color: #fff;
    text-transform: capitalize;
}

    .chat-left h2 span {
        font-weight: 400;
        font-style: italic;
        position: relative;
    }

        .chat-left h2 span::after {
            position: absolute;
            content: "";
            left: 0;
            top: 100%;
            width: 240px;
            height: 35px;
            background-image: url('../images/info_h1_line1.png');
            background-size: 240px;
            background-repeat: no-repeat;
            background-position: left;
        }

.bttns .btn {
    background: var(--color-white);
    padding: 10px 25px;
    border-radius: 35px;
    font-size: 0.875rem;
    color: var(--color-black);
}

    .bttns .btn:hover {
        opacity: 0.8;
    }

.chat-banner .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding-top: 80px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer-left-1 h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-left-1 p {
    font-size: 0.75rem;
}

.footer-left-1 ul li a {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray);
    font-size: 0.9375rem;
    color: #666;
}

    .footer-left-1 ul li a:hover {
        background: var(--color-red);
        color: var(--color-white);
    }

.footer-left-2 h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-left-2 p {
    font-size: 0.75rem;
    margin-bottom: 15px;
}

    .footer-left-2 p a {
        margin-bottom: 0px;
        color: #51555c;
    }

        .footer-left-2 p a:hover {
            color: var(--color-red);
        }

.footer-left-2 a {
    font-size: 0.75rem;
    margin-bottom: 15px;
    color: #51555c;
}

    .footer-left-2 a:hover {
        color: var(--color-red);
    }

.footer-left-3 h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-left-3 ul li {
    margin-bottom: 8px;
}

    .footer-left-3 ul li a {
        font-size: 0.75rem;
        color: #51555c;
    }

        .footer-left-3 ul li a:hover {
            color: var(--color-red);
        }

.footer-left-4 h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-left-4 ul li {
    margin-bottom: 8px;
}

    .footer-left-4 ul li a {
        font-size: 0.75rem;
        color: #51555c;
    }

        .footer-left-4 ul li a:hover {
            color: var(--color-red);
        }

.footer-main .contact_globe {
    position: absolute;
    height: 100%;
    max-height: none;
    width: 60%;
    top: 0%;
    left: 20%;
    opacity: 0.15;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.logo-footer img {
    max-width: 120px !important;
    width: 100%;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

.foot {
    padding: 35px 0 30px;
    position: relative;
    margin-top: 60px;
}

    .foot::before {
        content: "";
        background: url('../images/testi3_lines.png') no-repeat center;
        background-size: cover;
        max-width: 1296px;
        width: 100%;
        height: 22px;
        display: block;
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .foot p {
        text-align: right;
        margin: 0px;
        font-size: 0.875rem;
    }

        .foot p a {
            color: var(--color-black);
        }

            .foot p a:hover {
                color: var(--color-red);
            }

@media only screen and (min-width: 768px) {
    .mission-right p {
        text-align: justify;
    }

    .technologie-card p {
        text-align: justify;
    }

    .technologie-left p {
        text-align: justify;
    }

    .process-card p {
        text-align: justify;
    }

    .we-deliver-left p {
        text-align: justify;
    }

    .footer-left-1 p {
        text-align: justify;
    }
}

.progress-wrap {
    position: fixed;
    right: 15px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    background: var(--color-gray);
    -webkit-box-shadow: 0 5px 10px #0002;
    box-shadow: 0 5px 10px #0002;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

    .progress-wrap::before {
        position: absolute;
        font-family: "FontAwesome";
        content: "\f062";
        text-align: center;
        line-height: 46px;
        font-size: 18px;
        opacity: 0;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 2;
        transition: all 200ms linear;
    }

    .progress-wrap::after {
        position: absolute;
        font-family: "FontAwesome";
        content: "\f062";
        text-align: center;
        line-height: 46px;
        font-size: 18px;
        color: var(--color-red);
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 200ms linear;
    }

.progress-circle {
    width: 46px;
    height: 46px;
    position: relative;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 999;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-red);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.bttns .btn.sm-butn span {
    color: #000;
}

.allpage-hero-main {
    min-height: 700px;
    overflow: hidden;
    position: relative;
    padding-top: max(45px, 5.556vw);
    padding-bottom: max(45px, 5.556vw);
}

    .allpage-hero-main::before {
        content: "";
        background: rgba(0, 0, 0, 0.12);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 2;
    }

.tridentt-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tridentt-hero-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    transform: scale(1.2);
    width: 100%;
    animation: zoomout 5s linear 1s alternate forwards;
}

@keyframes zoomout {
    0% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.tridentt-pagetop-titles {
    position: absolute;
    bottom: 15%;
    left: 0px;
    width: 100%;
    z-index: 3;
}

.pagetop-titles h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 50px;
    margin-bottom: 20px;
}

.pagetop-titles h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: capitalize;
    line-height: 40px;
    margin-bottom: 20px;
}

.pagetop-titles p {
    font-size: 1rem;
    font-weight: normal;
    color: var(--color-white);
}

.careers-main {
    padding: 80px 0px;
    border-bottom: 2px solid #eee;
}

.career-title {
    margin-bottom: 40px;
}

    .career-title h2 {
        font-size: 1.75rem;
        text-transform: capitalize;
        line-height: 34px;
    }

        .career-title h2 span {
            font-weight: 400;
            color: var(--color-red);
            font-style: italic;
            position: relative;
        }

            .career-title h2 span::after {
                position: absolute;
                content: "";
                background-image: url('../images/title_shap1.png');
                left: 0;
                bottom: -15px;
                width: calc(100% + 40px);
                height: 30px;
                background-size: contain;
                background-repeat: no-repeat;
            }

.positions-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    color: var(--color-black);
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}

    .positions-card:hover {
        color: #000000;
    }

    .positions-card .shape {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .positions-card h3 {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .positions-card p {
        font-size: 1rem;
        font-weight: 300;
    }

    .positions-card .time {
        margin-top: 40px;
    }

.time span {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-form {
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-red);
}

.form-numbers-left h4 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 40px;
}

.career-numbers .mum-card .count-outer {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-white);
    line-height: 50px;
}

    .career-numbers .mum-card .count-outer span.odometer {
        margin-top: -7px;
    }

.mum-card p {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0px;
}

.career-numbers {
    /* max-width: 520px; */
}

    .career-numbers .mum-card {
        padding: 20px 0;
        margin-top: 0px;
        border-right: 1px solid #fff2;
    }

    .career-numbers .row .col-lg-3:last-child .mum-card {
        border-right: 0px;
    }

.career-form .container {
    position: relative;
    z-index: 2;
}

.career-form .map_img {
    position: absolute;
    left: 5%;
    top: 70px;
    pointer-events: none;
    opacity: 0.3;
    width: 50%;
}

.form-numbers-right {
    display: none;
}

    .form-numbers-right .form-group {
        position: relative;
        margin-bottom: 12px;
    }

        .form-numbers-right .form-group .form-control {
            background-color: #ffffff21;
            border-radius: 10px;
            min-height: 48px;
            border: 0;
            font-size: 1rem;
            font-weight: 300;
            color: #fff;
            padding-left: 40px;
        }

        .form-numbers-right .form-group textarea.form-control {
            padding-top: 12px;
            height: 130px;
        }

        .form-numbers-right .form-group .form-control::placeholder {
            color: var(--color-white);
        }

        .form-numbers-right .form-group .form-control::-moz-placeholder {
            color: var(--color-white);
        }

        .form-numbers-right .form-group .form-control:focus {
            outline: none;
            box-shadow: none;
        }

        .form-numbers-right .form-group .icon {
            position: absolute;
            top: 12px;
            left: 12px;
            color: #fff;
        }

    .form-numbers-right .btn {
        background: var(--color-white);
        color: var(--color-black);
        padding: 10px 25px;
        border-radius: 10px;
        font-size: 0.875rem;
    }

        .form-numbers-right .btn span i {
            margin-left: 10px;
        }

    .form-numbers-right .form-group.upload-card {
        position: relative;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background-color: #ffffff21;
        border-radius: 10px;
        color: var(--color-white);
        padding-left: 12px;
    }

        .form-numbers-right .form-group.upload-card .upload_input {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 5;
        }

        .form-numbers-right .form-group.upload-card span {
            font-size: 1rem;
        }

            .form-numbers-right .form-group.upload-card span i {
                margin-right: 4px;
            }

.technologie-main {
    padding: 80px 0px;
    border-bottom: 2px solid #eee;
}

.technologie-card-box h2 {
    font-size: 2.375rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 44px;
    margin-bottom: 24px;
}

.technologie-card-box p {
    font-size: 1rem;
    margin: 0px;
}

.technologie-card-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 0;
    padding: 0;
    width: 100%;
}

    .technologie-card-box ul li {
        padding: 30px 10px;
        position: relative;
        text-align: center;
        width: 14.28571%;
        background: #fff;
        box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.08);
        border-radius: 10px;
    }

        .technologie-card-box ul li .tech-item-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: transform 0.2s ease-in-out;
        }

        .technologie-card-box ul li:hover .tech-item-link .tech-img {
            transform: scale(1.1);
        }

.tech-img {
    max-height: 50px;
    max-width: 50px;
    position: relative;
    transition: all .15s;
    transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
    z-index: 1;
}

.technologie-card-box ul li .tech-item-link p {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin: 15px 0 0;
    position: relative;
}

.st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #f90;
}

.technologie-card-box .technologie-items:first-child {
    margin-top: 0px;
}

.technologie-items {
    margin-top: 60px;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hire-dedicated-main {
    padding: 80px 0px;
}

.hire-dedicated-title {
    text-align: center;
    margin-bottom: 40px;
}

    .hire-dedicated-title h2 {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0px;
    }

        .hire-dedicated-title h2 span {
            color: var(--color-red);
        }

.hire-dedicated-toptabs ul {
    border-bottom: 2px solid var(--color-red);
}

    .hire-dedicated-toptabs ul li button {
        padding: 10px 24px;
        border-radius: 0px !important;
        border: none !important;
        color: var(--color-black);
    }

        .hire-dedicated-toptabs ul li button.active {
            background: var(--color-red) !important;
            color: var(--color-white) !important;
        }

        .hire-dedicated-toptabs ul li button:hover {
            background: var(--color-red) !important;
            color: var(--color-white) !important;
        }

.hire-dedicated-tabdetails {
    margin-top: 30px;
}

.hire-dedicated-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -8px;
}

    .hire-dedicated-list ul li {
        width: 25%;
        margin-bottom: 15px;
        padding: 0px 8px;
    }

        .hire-dedicated-list ul li a {
            border: 1px solid rgba(0, 0, 0, 0.1);
            display: block;
            padding: 20px;
            border-radius: 10px;
        }

.boxed-itm .svg-icon {
    display: block;
    margin-bottom: 8px;
}

.boxed-itm h3 {
    font-size: 1.125rem;
    color: var(--color-black);
}

.hire-dedicated-list ul li a:hover h3 {
    color: var(--color-red);
}

.hire-dedicated-list ul li a:hover {
    border-color: var(--color-red);
}

.dedicated-team-top {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 30px;
}

    .dedicated-team-top h3 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        color: var(--color-black);
    }

    .dedicated-team-top p {
        font-size: 0.875rem;
    }

.dedicated-team-item ul {
    display: flex;
    gap: 24px;
}

    .dedicated-team-item ul li {
        width: 33.33%;
    }

.dedicated-card {
    background: var(--color-red);
    text-align: center;
    border-radius: 10px;
    padding: 40px 10px;
}

    .dedicated-card h4 {
        color: var(--color-white);
    }

.dedicated-icon img {
    max-width: 48px;
    width: 100%;
    margin-bottom: 10px;
}

.hiring-process-main {
    padding: 80px 0px;
    background: #f9f9f9;
}

.hiring-process-title {
    text-align: center;
    margin-bottom: 30px;
}

    .hiring-process-title h4 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .hiring-process-title p {
        font-size: 1.25rem;
        margin-bottom: 0px;
    }

.hiring-process-card {
    background: var(--color-white);
    padding: 22px;
    min-height: 225px;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .hiring-process-card span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        font-family: "Lexend Deca", sans-serif;
        background: var(--color-red);
        color: var(--color-white);
        border-radius: 100%;
        margin-bottom: 15px;
    }

    .hiring-process-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .hiring-process-card p {
        font-size: 0.875rem;
    }

.why-choose-trident-main {
    padding: 80px 0px;
}

.why-choose-title {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 40px;
}

    .why-choose-title h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .why-choose-title p {
        margin-bottom: 0px;
    }

.why-choose-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-right ul li {
    font-size: 1.125rem;
    padding-left: 30px;
    margin-bottom: 20px;
    font-family: "Lexend Deca", sans-serif;
    position: relative;
}

    .why-choose-right ul li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 6px;
        top: 2px;
        color: var(--color-red);
    }

    .why-choose-right ul li strong {
        color: var(--color-black);
    }

.why-choose-right h6 {
    font-size: 1.125rem;
}

.schedule-a-developer-interview-main {
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-red);
}

.developer-interview-title {
    text-align: center;
    margin-bottom: 40px;
}

    .developer-interview-title h3 {
        font-size: 2rem;
        color: var(--color-white);
        margin-bottom: 20px;
    }

    .developer-interview-title p {
        color: var(--color-white);
    }

.bottom-lines {
    text-align: center;
}

.schedule-a-developer-interview-main .container {
    position: relative;
    z-index: 2;
}

.schedule-a-developer-interview-main .map_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.3;
    width: 50%;
}

.form-input-item .form-label {
    display: none;
}

.form-input-item .form-control {
    background-color: #ffffff21;
    border-radius: 10px;
    min-height: 48px;
    border: 0;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    padding: 10px 20px;
}

    .form-input-item .form-control:focus {
        outline: none;
        box-shadow: none;
    }

    .form-input-item .form-control::placeholder {
        color: var(--color-white);
    }

    .form-input-item .form-control::-moz-placeholder {
        color: var(--color-white);
    }

.form-input-item textarea.form-control {
    box-sizing: border-box;
    min-height: 160px;
}

.interview-form {
    display: none;
}

    .interview-form .btn {
        background: var(--color-white);
        color: var(--color-black);
        padding: 10px 25px;
        border-radius: 10px;
        font-size: 0.875rem;
        text-transform: uppercase;
    }

.line-emaillink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .line-emaillink i {
        font-size: 1.5rem;
        color: var(--color-white);
    }

    .line-emaillink a {
        font-size: 1.5rem;
        color: var(--color-white);
        font-weight: 600;
        text-decoration: underline;
        font-family: "Lexend Deca", sans-serif;
    }

.bottom-lines p {
    font-size: 1.25rem;
    color: var(--color-white);
}

.invalid-feedback {
    font-size: 0.875rem;
    color: var(--color-white);
}

.contact-main {
    padding: 80px 0px;
    border-bottom: 2px solid #eee;
}

.contact-form-in .invalid-feedback {
    color: var(--color-red);
    font-size: 0.875rem;
}

.contact-form-in {
    padding: 40px 30px;
    background: var(--color-white);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    display: block;
}

.contact-input-field {
    margin-bottom: 20px;
}

.contact-form-left h2 {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 20px;
    font-family: "Lexend Deca", sans-serif;
}

.contact-form-left {
    padding: 40px 30px;
    background: var(--color-white);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
}

    .contact-form-left .form-button .btn.btn-primary {
        background: var(--color-red);
        color: #ffffff;
        margin-top: 0px;
        font-weight: 500;
        line-height: 1.5;
        padding: 10px 25px;
        font-size: 1rem;
        width: 100%;
        border: 1px solid transparent;
        border-radius: 50rem;
    }

.contact-input-field .form-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 4px;
}

.contact-input-field .form-control {
    min-height: 48px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #eee;
}

    .contact-input-field .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.contact-input-field textarea.form-control {
    min-height: 130px;
}

.contact-form-left ul li {
    margin-bottom: 15px;
}

    .contact-form-left ul li i {
        font-size: 1.125rem;
        color: var(--color-black);
        margin-right: 10px;
    }

    .contact-form-left ul li a {
        font-size: 1.125rem;
        color: var(--color-black);
    }

        .contact-form-left ul li a:hover {
            color: var(--color-red);
        }



.contact-map-right h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
    font-family: "Lexend Deca", sans-serif;
}

.contact-map-right p {
    font-size: 1rem;
    font-weight: normal;
    color: var(--color-black);
}

.contact-map-right ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .contact-map-right ul li a {
        width: 40px;
        height: 40px;
        background: #eeeeee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-black);
        border-radius: 100%;
        font-size: 1.125rem;
    }

        .contact-map-right ul li a:hover {
            background: var(--color-red);
            color: var(--color-white);
        }

    .contact-map-right ul li a i {
        margin-right:0px;
    }

.contact-map {
    width: 100%;
    min-height: 500px;
    position: relative;
    margin-top: 15px;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        object-fit: cover;
    }

.contact-map-right {
    margin-bottom: 30px;
}

.our-portfolio-page-col-1 {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 0px;
}

.inner-page-card-wrapper {
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px 25px 35px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #E0E0E0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.portfolio-image-wraper {
    position: relative;
}

    .portfolio-image-wraper img {
        width: 100%;
        max-width: max-content;
        aspect-ratio: 5/3;
        object-fit: cover;
        border-radius: 8px;
        display: block;
        margin: 0 auto;
    }

.portfolio-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .portfolio-content ul li {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.portfolio-content {
    padding-top: 30px;
}

    .portfolio-content h2 {
        font-size: 1.5rem;
        color: #222;
        margin-bottom: 20px;
    }

    .portfolio-content p {
        font-size: 0.9375rem;
        color: #444;
        display: -webkit-box;
        line-height: 1.4;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .portfolio-content ul li span {
        font-size: 0.9375rem;
        color: #444;
        line-height: 1.4;
    }

.our-portfolio-page-row {
    gap: 30px;
}

.inner-page-card-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.inner-page-card-wrapper::before {
    content: '';
    position: absolute;
    height: 190px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f14f4430;
    filter: blur(50px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear;
}

.our-portfolio-page-col-1:hover .inner-page-card-wrapper::before {
    opacity: 1;
    visibility: visible;
}

.comprehensive-main {
    padding: 80px 0px;
}

.software-development-services-title {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 40px;
}

    .software-development-services-title h2 {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

        .software-development-services-title h2 span {
            color: var(--color-red);
        }

    .software-development-services-title p {
        font-size: 0.875rem;
    }

.comore-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--color-red);
    transition: all .4s ease-in-out;
}

.comprehensive-card {
    margin-bottom: 30px;
}

    .comprehensive-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .comprehensive-card p {
        font-size: 0.875rem;
    }

    .comprehensive-card:hover .comore-icon svg path {
        fill: var(--color-white)
    }

.advantages-main {
    padding: 80px 0px;
    background: var(--color-red);
}

.advantages-title {
    text-align: center;
}

    .advantages-title h4 {
        font-size: 1.75rem;
        margin-bottom: 35px;
        color: var(--color-white);
    }

.advantages-card {
    margin-bottom: 30px;
}

    .advantages-card span {
        font-size: 1.75rem;
        font-weight: normal;
        color: var(--color-white);
        font-family: "Lexend Deca", sans-serif;
        margin-bottom: 10px;
    }

    .advantages-card h5 {
        font-size: 1.25rem;
        color: var(--color-white);
        font-family: "Lexend Deca", sans-serif;
        margin-bottom: 20px;
    }

    .advantages-card p {
        font-size: 0.875rem;
        color: var(--color-white);
    }

@media only screen and (min-width: 768px) {
    .comprehensive-card p {
        text-align: justify;
    }

    .advantages-card p {
        text-align: justify;
    }
}

.empower-your-team-main {
    padding: 80px 0px;
}

.empower-your-team-title {
    text-align: center;
    margin-bottom: 35px;
}

    .empower-your-team-title h4 {
        font-size: 1.75rem;
        color: var(--color-black);
    }

.empower-your-top {
    text-align: center;
    margin-bottom: 20px;
}

.empower-your .nav-tabs {
    display: inline-flex;
    justify-content: center;
    margin: 0px;
    border: none;
    gap: 10px;
    background: var(--color-red);
    border-radius: 10px;
    padding: 6px 8px;
    transition: all .3s ease-in-out;
    box-shadow: 0 0 1px 0 rgba(224, 59, 59, 0.15), 0 6px 12px 0 rgba(224, 59, 59, 0.15);
}

    .empower-your .nav-tabs .nav-link {
        border-radius: 10px;
        color: var(--color-white);
        transition: all .3s ease-in-out;
        border: none;
    }

        .empower-your .nav-tabs .nav-link:hover {
            background: var(--color-white);
            color: var(--color-black);
            transform: scale(102%);
        }

        .empower-your .nav-tabs .nav-link.active {
            color: var(--color-black);
            border-radius: 10px;
            margin-bottom: 0px;
            transform: scale(102%);
        }

.empower-desc .card {
    border: none;
}

.empower-main-tabin {
    padding: 30px 15px;
}

.empower-desc-left h4 {
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 14px;
    font-family: "Lexend Deca", sans-serif;
}

.empower-desc-left p {
    font-size: 0.875rem;
    font-family: "Lexend Deca", sans-serif;
}

.empower-desc-right {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

    .empower-desc-right ul {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .empower-desc-right ul li {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            border: 1px solid #d5dbe1;
        }

            .empower-desc-right ul li span {
                margin-bottom: 10px;
                display: block;
            }

                .empower-desc-right ul li span svg {
                    width: 50px;
                    height: 50px;
                }

            .empower-desc-right ul li p {
                margin: 0px;
                font-size: 0.875rem;
                font-family: "Lexend Deca", sans-serif;
            }

.team-extension-main {
    padding: 80px 0px;
}

.team-extension-title {
    text-align: center;
}

    .team-extension-title h2 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--color-black);
        text-transform: capitalize;
        margin-bottom: 20px;
    }

.extension-tabs-item .nav-pills {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

    .extension-tabs-item .nav-pills .nav-link {
        border-bottom: none;
        border-radius: 0px;
        padding: 40px 60px;
        position: relative;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--color-black);
        display: flex;
        align-items: center;
        -moz-column-gap: 20px;
        column-gap: 20px;
        text-align: left;
        border-radius: 20px 20px 0px 0px;
        transition: background-color .4s;
    }

    .extension-tabs-item .nav-pills .nav-item:first-child .nav-link, .extension-tabs-item .nav-pills .nav-item:last-child .nav-link {
        border: 1px solid #d5dbe1;
        border-bottom: 0px;
    }

    .extension-tabs-item .nav-pills .nav-item:nth-of-type(2) .nav-link {
        border-top: 1px solid #d5dbe1;
    }

.extension-desc {
    background: var(--color-red);
}

    .extension-desc .card {
        border: none;
        background: transparent;
    }

.extension-tabs-item .nav-pills .nav-link.active {
    background: var(--color-red);
    color: var(--color-white);
}

.extension-tabs-item .nav-pills .nav-link .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 10px;
}

.extension-tabs-item .nav-pills .nav-link.active .icon {
    background: var(--color-white);
}

.extension-tabs-item .nav-pills .nav-link:hover {
    background: var(--color-red);
    color: var(--color-white);
}

    .extension-tabs-item .nav-pills .nav-link:hover .icon {
        background: var(--color-white);
    }

.extension-inner-desc {
    padding: 80px 0px;
}

.extension-card-tabinbox h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Lexend Deca", sans-serif;
    color: var(--color-white);
}

.extension-card-tabinbox ul li {
    margin-bottom: 15px;
}

    .extension-card-tabinbox ul li span {
        border: 1px solid #ffffff;
        border-radius: 50px;
        color: var(--color-white);
        display: inline-flex;
        font-size: 15px;
        gap: 10px;
        line-height: 24px;
        padding: 6px 20px;
        width: -moz-fit-content;
        width: fit-content;
    }

        .extension-card-tabinbox ul li span svg path {
            fill: var(--color-white);
        }

.extension-card-tabinboxclientbox h5 {
    font-size: 1.5rem;
    color: var(--color-white);
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 20px;
}

.extension-card-tabinboxclientbox ul {
    margin: 0px;
    padding: 0px;
}

    .extension-card-tabinboxclientbox ul li {
        color: var(--color-white);
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
    }

        .extension-card-tabinboxclientbox ul li::before {
            content: "";
            background: var(--color-white);
            width: 8px;
            height: 8px;
            border-radius: 100%;
            position: absolute;
            left: 9px;
            top: 9px;
        }

.team-augmentation-main {
    padding: 80px 0px;
}

.team-augmentation-title {
    margin-bottom: 40px;
}

    .team-augmentation-title h2 {
        font-size: 1.75rem;
        color: var(--color-black);
    }

.team-augmentation-list ul li {
    position: relative;
    padding-bottom: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

    .team-augmentation-list ul li .progress-three-columns-item-line-wrap .animate-vertical-line path {
        animation: pregressDedicate-line-animate 100s linear infinite;
        transform-origin: center center;
        transition: all .5s
    }

@keyframes pregressDedicate-border-animate {
    to {
        stroke-dashoffset: -2000
    }
}

@keyframes pregressDedicate-line-animate {
    to {
        stroke-dashoffset: 2000
    }
}

.progress-three-columns-item-line-wrap {
    height: 100%;
    left: 37px;
    overflow: hidden;
    position: absolute;
    top: 80px;
    width: 6px;
}

.team-left {
    display: flex;
    align-items: center;
    width: 30%;
    gap: 20px;
}

.team-right {
    width: 70%;
}

.border-wrap-icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.progress-three-columns-border {
    stroke: #000;
    stroke-width: 4px;
    width: 80px;
    height: 80px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.team-left h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0px;
    font-family: "Lexend Deca", sans-serif;
    color: var(--color-black);
    width: calc(100% - 170px);
}

.weap-border--nosvg {
    max-width: 64px;
    max-height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    width: 100%;
    border-radius: 100%;
}

    .weap-border--nosvg svg path {
        fill: var(--color-white);
    }

.team-right p {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0px;
    color: var(--color-black);
    font-family: "Lexend Deca", sans-serif;
}

.border-wrap-icon::before, .border-wrap-icon::after {
    content: "";
    background-color: #fff;
    height: 10px;
    position: absolute;
    width: 100%;
}

.border-wrap-icon::before {
    top: -10px;
}

.border-wrap-icon::after {
    bottom: -10px;
}

.team-augmentation-list {
    position: relative;
    overflow: hidden;
}

    .team-augmentation-list ul li:last-child {
        padding-bottom: 0px;
    }

.page-icon {
    text-align: right;
}

    .page-icon img {
        max-width: 200px;
        width: 100%;
    }

.boost-your-product-main {
    padding: 80px 0px;
}

.boost-your-product-left h2 {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 20px;
}

.boost-your-product-left p strong {
    color: var(--color-black);
}

.boost-your-product-right-accordion .accordion-item {
    border: none;
    border-bottom: 2px solid #0e0e0e;
    margin-bottom: 0;
    background-color: initial;
    border-radius: initial;
}

.boost-your-product-right-accordion .accordion-button {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Lexend Deca", sans-serif;
    background-color: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
    color: #0e0e0e;
    padding: 28px 30px 28px 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    position: relative;
    padding: 24px 0;
}

.boost-your-product-right-accordion .accordion-item:first-of-type {
    border-top: 2px solid #0e0e0e;
}

.boost-your-product-right-accordion .accordion-body {
    padding: 0px;
    padding-bottom: 24px;
    margin: 0px;
}

.boost-your-desc {
    padding: 0 30px 30px 0;
}

    .boost-your-desc ul li {
        padding-bottom: 15px;
        position: relative;
    }

        .boost-your-desc ul li strong {
            font-family: "Lexend Deca", sans-serif;
        }

.boost-your-product-right-accordion .accordion-button::after {
    background-image: url('data:image/svg+xml,<svg width="24" height="4" viewBox="0 0 24 4" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 0.285156H0V3.71375H24V0.285156Z" fill="%230E0E0E"/></svg>');
    background-position: center;
}

.boost-your-product-right-accordion .accordion-button.collapsed::after {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_0_353)"><path d="M14.5714 9.85714C14.3348 9.85714 14.1429 9.66525 14.1429 9.42857V0H9.85714V9.42857C9.85714 9.66525 9.66525 9.85714 9.42857 9.85714H0V14.1429H9.42857C9.66525 14.1429 9.85714 14.3348 9.85714 14.5714V24H14.1429V14.5714C14.1429 14.3348 14.3348 14.1429 14.5714 14.1429H24V9.85714H14.5714Z" fill="%230E0E0E"/></g><defs><clipPath id="clip0_0_353"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
}

.our-angular-development-main {
    padding: 80px 0px;
    background: #f9f9f9;
}

.angular-development-left {
    margin-bottom: 40px;
}

    .angular-development-left h3 {
        font-size: 2rem;
        color: var(--color-black);
        margin-bottom: 20px;
    }

    .angular-development-left ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .angular-development-left ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 6px;
            top: 0px;
            color: var(--color-red);
        }

.angular-development-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    min-height: 228px;
}

    .angular-development-card h4 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .angular-development-card p {
        font-size: 1rem;
        margin-bottom: 0px;
    }

.technical-expertise-main {
    padding: 80px 0px;
}

    .technical-expertise-main .container {
        max-width: 1500px;
    }

.technical-expertise-title {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 40px;
}

    .technical-expertise-title h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .technical-expertise-title p {
        margin-bottom: 0px;
    }

.technical-expertise-list ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: var(--color-white);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}

.te-title {
    background: var(--color-red);
    padding: 20px;
    max-width: 280px;
    width: 100%;
}

    .te-title h5 {
        color: var(--color-white);
        margin: 0px;
        font-size: 1.125rem;
        font-family: "Lexend Deca", sans-serif;
    }

.te-list {
    width: 80%;
    padding: 20px;
}

    .te-list span {
        font-size: 0.875rem;
        font-family: "Lexend Deca", sans-serif;
        display: inline-block;
        padding: 0px 15px;
        border-right: 1px solid #d5d5d5;
    }

        .te-list span:first-child {
            padding-left: 0px;
        }

        .te-list span:last-child {
            padding-right: 0px;
            border-right: none;
        }

.page-icon svg {
    max-width: 200px;
    width: 100%;
}

.no-accordion-card {
    padding: 24px;
    border: 1px solid rgba(14, 14, 14, 0.2);
}

    .no-accordion-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

    .no-accordion-card ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .no-accordion-card ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 6px;
            top: 0px;
            color: var(--color-red);
        }

        .no-accordion-card ul li strong {
            color: var(--color-black);
            font-family: "Lexend Deca", sans-serif;
        }

.react-box.angular-development-card {
    min-height: 165px;
}

.hiring-process-title.laravel {
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
}

    .hiring-process-title.laravel p {
        font-size: 1rem;
    }

.object-oriented-main {
    padding: 80px 0px;
    background: #f9f9f9;
}

.object-oriented-title {
    text-align: center;
    margin-bottom: 25px;
}

    .object-oriented-title h4 {
        font-size: 1.75rem;
        color: var(--color-black);
    }

.object-oriented-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
}

    .object-oriented-card ul {
        display: flex;
        flex-wrap: wrap;
    }

        .object-oriented-card ul li {
            line-height: 2;
            width: 100%;
            font-size: 1rem;
            font-weight: 500;
            padding: 0px 10px;
        }

@media only screen and (min-width: 768px) {
    .object-oriented-card ul li {
        width: 33.33%;
    }

    .angular-development-card p {
        text-align: justify;
    }

    .hiring-process-card p {
        text-align: justify;
    }
}

.unlock-the-potential-main {
    padding: 80px 0px;
    background: #fff;
}

.unlock-the-potential-title {
    margin-bottom: 30px;
}

    .unlock-the-potential-title h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
        color: var(--color-black);
    }

.unlock-left ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

    .unlock-left ul li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 6px;
        top: 0px;
        color: var(--color-red);
    }

.why-choose-right.net-list h5 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
}

.why-choose-right.net-list ul li {
    font-size: 1.0rem;
    margin-bottom: 10px;
}

.erp-services-main {
    padding: 80px 0px;
}

.erp-service-title {
    text-align: center;
    margin-bottom: 20px;
}

    .erp-service-title h2 {
        font-size: 1.75rem;
        color: var(--color-black);
    }

.erp-card {
    padding: 12px;
    border: 1px solid #00000026;
    border-radius: 12px;
    min-height: 268px;
}

.erp-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 12px;
    margin-bottom: 10px;
}

    .erp-icon i {
        font-size: 1.625rem;
        color: var(--color-white);
    }

.erp-card h3 {
    font-size: 1.25rem;
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 10px;
    color: var(--color-black);
}

.erp-card p {
    font-size: 0.875rem;
}

.erp-height {
    margin-bottom: 30px;
}

.erp-service-title.key {
    margin-top: 30px;
}

.key-list-main ul {
    display: flex;
    flex-wrap: wrap;
}

    .key-list-main ul li {
        width: 20%;
        text-align: center;
        margin-bottom: 30px;
    }

.key-icon {
    width: 72px;
    height: 72px;
    display: flex;
    margin: 0 auto;
    margin-bottom: 8px;
    align-items: center;
    border: 1px solid #e8e8e8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

    .key-icon img {
        max-width: 36px;
        width: 100%;
        margin: 0 auto;
        border-radius: 6px;
        display: block;
    }

.key-content h4 {
    font-size: 1rem;
    font-family: "Lexend Deca", sans-serif;
    color: var(--color-black);
}

.key-list-main ul li:hover .key-icon {
    -webkit-box-shadow: 0 0 40px inset;
    box-shadow: 0 0 40px var(--color-red) inset;
}

.erp-service-title.erp {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .erp-service-title.erp h2 {
        margin-bottom: 20px;
    }

.epr-card-box {
    padding: 20px;
    border: 1px solid #00000026;
    border-radius: 12px;
    min-height: 320px;
    margin-bottom: 30px;
}

.epr-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-red);
    background: var(--color-red);
    border-radius: 50%;
    margin-bottom: 10px;
}

    .epr-card-icon i {
        font-size: 1.625rem;
        color: var(--color-white);
    }

.epr-card-content h4 {
    font-size: 1rem;
    font-family: "Lexend Deca", sans-serif;
    color: var(--color-black);
    margin-bottom: 10px;
}

.epr-card-content p {
    font-size: 0.875rem;
}

@media only screen and (min-width: 768px) {
    .epr-card-content p {
        text-align: justify;
    }
}

.boost-your-product-left.ios-dev {
    margin-bottom: 40px;
}

.boost-your-product-left img {
    width: 100%;
}

.careers-role-main {
    padding: 80px 0px;
    border-bottom: 2px solid #eee;
}

.email-cont {
    padding-top: 20px;
}

    .email-cont span {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-black);
    }

    .email-cont a {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-black);
    }

        .email-cont a:hover {
            color: var(--color-red);
        }

.careers-role-left h4 {
    font-size: 1.25rem;
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-black);
}

.careers-role-left ul {
    margin-bottom: 20px;
}

    .careers-role-left ul li {
        line-height: 2.2;
        padding-left: 36px;
        position: relative;
    }

        .careers-role-left ul li::before {
            content: "\f26a";
            font-family: bootstrap-icons !important;
            position: absolute;
            left: 0px;
            top: 7px;
            font-size: 1.25rem;
            line-height: 1.25rem;
            color: var(--color-red);
        }

.careers-summary-right {
    padding: 20px;
    border: 1px solid #00000026;
    border-radius: 14px;
}

    .careers-summary-right h5 {
        font-size: 1.25rem;
        font-family: "Lexend Deca", sans-serif;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--color-black);
    }

    .careers-summary-right ul {
        margin-bottom: 20px;
    }

        .careers-summary-right ul li {
            line-height: 2.2;
        }

            .careers-summary-right ul li span {
                color: var(--color-black);
                font-weight: 500;
                font-family: "Lexend Deca", sans-serif;
            }

    .careers-summary-right a {
        background: var(--color-red);
        color: #ffffff;
        font-weight: 500;
        line-height: 1.5;
        padding: 10px 25px;
        text-align: center;
        width: 100%;
        font-size: 1rem;
        border: 1px solid transparent;
        border-radius: 50rem;
    }

.category-items {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 400;
    flex-wrap: wrap;
    color: var(--color-white);
    font-family: "Lexend Deca", sans-serif;
}

    .category-items span {
        display: block;
        font-weight: 600;
        margin-right: 8px;
        width: 100%;
    }

.allpage-hero-main .tridentt-hero-image {
    background: var(--color-red);
}

.challange-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 620px;
}

    .challange-card img {
        max-width: 100%;
        max-height: 100%;
        min-height: 100%;
        min-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
    }

.challanges-main {
    padding: 60px 0px;
}

.challanges-slider {
    position: relative;
    padding: 0px 80px;
    margin-bottom: 60px;
}

.chall-arrowcard .arrow-cha {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 2;
}

    .chall-arrowcard .arrow-cha.swiper-next, .chall-arrowcard .arrow-cha.swiper-prev {
        font-size: 1.75rem;
        color: var(--color-white);
    }

    .chall-arrowcard .arrow-cha.swiper-next {
        right: 0px;
    }

    .chall-arrowcard .arrow-cha.swiper-prev {
        left: 0px;
    }

.challanges-slider .swiper-pagination {
    bottom: -24px;
}

    .challanges-slider .swiper-pagination .swiper-pagination-bullet {
        width: 28px;
        height: 5px;
        border-radius: 14px;
    }

        .challanges-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--color-red);
        }

.allpage-hero-main.portfolio {
    min-height: 520px;
}

.challanges-items {
    padding: 24px;
    background: #f9f9f9;
    margin-bottom: 28px;
    border-radius: 12px;
    display: flex;
}

.chal-left-title {
    width: 25%;
}

.chal-right-desc {
    width: 75%;
}

.chal-left-title h2 {
    font-size: 1.75rem;
    color: var(--color-black);
    font-family: "Lexend Deca", sans-serif;
}

    .chal-left-title h2 span {
        color: var(--color-red);
    }

.chal-right-desc p {
    font-size: 1rem;
}

.chal-right-desc ul li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
}

    .chal-right-desc ul li::before {
        content: "\f633";
        font-family: bootstrap-icons !important;
        position: absolute;
        left: 0px;
        top: 2px;
        color: var(--color-red);
    }

    .chal-right-desc ul li strong {
        color: var(--color-black);
        font-family: "Lexend Deca", sans-serif;
    }

.stacks-main {
    padding: 80px 0px;
    background: #f8f9fa;
}

.stacks-item h2 {
    font-size: 1.75rem;
    color: var(--color-black);
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 30px;
}

    .stacks-item h2 span {
        color: var(--color-red);
    }

.stacks-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

    .stacks-item ul li {
        background: var(--color-white);
        width: 24%;
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 1.125rem;
    }

        .stacks-item ul li strong {
            display: block;
            color: var(--color-black);
            font-family: "Lexend Deca", sans-serif;
        }

.chal-right-desc ul li span {
    display: block;
}

.why-trident-main {
    margin-top: 30px;
    padding: 50px 0px;
    background: #f8f9fa;
}

.why-trident-title h3 {
    font-size: 1.75rem;
    color: var(--color-black);
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 30px;
}

    .why-trident-title h3 span {
        color: var(--color-red);
    }

.off-canvas {
    padding: 60px 20px 30px;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0px, 0px);
    -webkit-transform: translate3d(100%, 0px, 0px);
    transition: transform .7s ease 0s;
    -webkit-transition: transform .7s ease 0s;
    background: #ffffff;
}

.is-open .off-canvas {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    transition: transform .5s cubic-bezier(.34,.95,.27,.98) 0s;
}

.closebtn.mobilemenu {
    position: absolute;
    top: 15px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: transparent;
}

.menu_mobile .closebtn::before, .menu_mobile .closebtn::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 18px;
    width: 30px;
    height: 2px;
    transform: rotate(45deg);
    background: var(--color-red);
}

.menu_mobile .closebtn::after {
    transform: rotate(-45deg);
}

.mobile-logo {
    text-align: center;
}

    .mobile-logo a img {
        max-width: 150px !important;
        margin: 0 auto;
        text-align: center;
    }

.navbar-nav-top-mobile li {
    padding: 10px 0px;
    position: relative;
}

.navbar-nav-top-mobile > li > a {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

    .navbar-nav-top-mobile > li > a:hover {
        color: var(--color-red);
    }

.main-submenu .in-submenu li a:hover span {
    color: var(--color-red);
}

.main-submenu .in-submenu li a:hover div {
    color: var(--color-red);
}

.main-submenu-mobile .submenu-list li a:hover {
    color: var(--color-red);
}

.navbar-nav-top-mobile .subdropdown a > span {
    display: none;
}



.menu_mobile .navbar-list-mobile ul > li .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 2px;
    right: 0px;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
    z-index: 2;
}

.menu_mobile .navbar-list-mobile ul > li .main-submenu-mobile {
    display: none;
    padding-left: 10px;
    margin-bottom: 10px;
}

.main-submenu-mobile .submenu-list {
    flex-wrap: wrap;
}

    .main-submenu-mobile .submenu-list li {
        width: 100%;
    }

.menu_mobile .navbar-list-mobile ul > li .mobile-menu-toggle::before {
    content: "";
    margin-left: -7px;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 19px;
    left: 50%;
    background: var(--color-red);
}

.menu_mobile .navbar-list-mobile ul > li .mobile-menu-toggle::after {
    content: "";
    width: 2px;
    height: 16px;
    position: absolute;
    top: 12px;
    left: 50%;
    transition: all 350ms;
    -webkit-transition: all 350ms;
    background: var(--color-red);
}

.menu_mobile .navbar-list-mobile ul > li .mobile-menu-toggle.is-active::after {
    transform: rotate(90deg);
}

.main-submenu-mobile .submenu-list li a {
    font-size: 0.875rem;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    font-family: "Lexend Deca", sans-serif;
}

    .main-submenu-mobile .submenu-list li a .title-primary-link__subTitle {
        margin-top: 8px;
        font-weight: 300;
    }

    .main-submenu-mobile .submenu-list li a:hover {
        color: var(--color-red);
    }

    .main-submenu-mobile .submenu-list li a .title-primary-link__subTitle:hover {
        color: var(--color-red);
    }




.pricing-container {
    width: 100%;
    max-width: 1270px;
}

.pricing-container {
    margin: 0em auto;
}

    .pricing-container.full-width {
        width: 100%;
        max-width: none;
    }

.pricing-switcher {
    text-align: center;
}

    .pricing-switcher .fieldset {
        display: inline-block;
        position: relative;
        padding: 2px;
        border-radius: 50em;
        border: 2px solid #2d3e50;
    }

    .pricing-switcher input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .pricing-switcher label {
        position: relative;
        z-index: 1;
        display: inline-block;
        float: left;
        width: 90px;
        height: 40px;
        line-height: 40px;
        cursor: pointer;
        font-size: 1.4rem;
        color: #ffffff;
    }

    .pricing-switcher .switch {
        position: absolute;
        top: 2px;
        left: 2px;
        height: 40px;
        width: 90px;
        background-color: #2d3e50;
        border-radius: 50em;
        -webkit-transition: -webkit-transform 0.5s;
        -moz-transition: -moz-transform 0.5s;
        transition: transform 0.5s;
    }

    .pricing-switcher input[type="radio"]:checked + label + .switch,
    .pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
        -webkit-transform: translateX(90px);
        -moz-transform: translateX(90px);
        -ms-transform: translateX(90px);
        -o-transform: translateX(90px);
        transform: translateX(90px);
    }

.no-js .pricing-switcher {
    display: none;
}

.pricing-list {
    margin: 2em 0 0;
}

    .pricing-list > li {
        position: relative;
        margin-bottom: 1em;
    }

@media only screen and (min-width: 768px) {
    .pricing-list {
        margin: 1.5em 0 0;
    }

        .pricing-list:after {
            content: "";
            display: table;
            clear: both;
        }

        .pricing-list > li {
            width: 33.3333333333%;
            float: left;
            padding-left: 15px;
            padding-right: 15px;
        }

    .has-margins .pricing-list > li {
        width: 32.3333333333%;
        float: left;
        margin-right: 1.5%;
    }

        .has-margins .pricing-list > li:last-of-type {
            margin-right: 0;
        }
}

.pricing-wrapper {
    min-height: 340px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 16px 0px;
}

.touch .pricing-wrapper {
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: rotate 0.5s;
    -moz-animation: rotate 0.5s;
    animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse 0.5s;
    -moz-animation: rotate-inverse 0.5s;
    animation: rotate-inverse 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
    opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: rotate-back 0.5s;
    -moz-animation: rotate-back 0.5s;
    animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse-back 0.5s;
    -moz-animation: rotate-inverse-back 0.5s;
    animation: rotate-inverse-back 0.5s;
    opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
}

.pricing-wrapper > li {
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
}

    .pricing-wrapper > li::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 50px;
        pointer-events: none;
        background: -webkit-linear-gradient( right, #ffffff, rgba(255, 255, 255, 0));
        background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
    }

    .pricing-wrapper > li.is-ended::after {
        display: none;
    }

.pricing-wrapper .is-visible {
    position: relative;
    z-index: 5;
}

.pricing-wrapper .is-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
    z-index: 3 !important;
}

@media only screen and (min-width: 768px) {
    .pricing-wrapper > li::before {
        content: '';
        position: absolute;
        z-index: 6;
        left: -1px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 50%;
        width: 1px;
        background-color: #b1d6e8;
    }

    .pricing-wrapper > li::after {
        display: none;
    }
    /* .exclusive .pricing-wrapper > li {
    box-shadow: inset 0 0 0 3px #2d3e50;
  } */
    .has-margins .pricing-wrapper > li,
    .has-margins .exclusive .pricing-wrapper > li {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    :nth-of-type(1) > .pricing-wrapper > li::before {
        display: none;
    }

    .has-margins .pricing-wrapper > li {
        border-radius: 4px 4px 6px 6px;
    }

        .has-margins .pricing-wrapper > li::before {
            display: none;
        }
}

@media only screen and (min-width: 1500px) {
    .full-width .pricing-wrapper > li {
        padding: 2.5em 0;
    }
}

.no-js .pricing-wrapper .is-hidden {
    position: relative;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    margin-top: 1em;
}

@media only screen and (min-width: 768px) {
    .exclusive .pricing-wrapper > li::before {
        display: none;
    }

    .exclusive + li .pricing-wrapper > li::before {
        display: none;
    }
}

.pricing-header h2 {
    padding: 0.6em 0.6em 0.4em;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
    text-transform: capitalize;
    text-align: left;
    font-family: "Lexend Deca", sans-serif;
}

.pricing-header {
    height: auto;
    padding: 0.9em 0 0.9em;
    pointer-events: auto;
    text-align: left;
    color: var(--color-black);
    background-color: transparent;
    border-top: 6px solid var(--color-black);
}

.exclusive .pricing-header {
    color: var(--color-red);
    background-color: transparent;
    border-top: 6px solid var(--color-red);
}

.pricing-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0px;
}

.pricing-header .price {
    padding: 0px 15px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.price-cont {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 18px;
    font-family: "Lexend Deca", sans-serif;
}

.of-price {
    margin-left: 10px;
}

    .of-price span {
        color: var(--color-black);
    }


.currency,
.value {
    font-size: 3rem;
    font-weight: 300;
}

.duration {
    font-weight: 700;
    font-size: 1.3rem;
    color: #8dc8e4;
    text-transform: uppercase;
}

.exclusive .duration {
    color: #f3b6ab;
}

.duration::before {
    content: '/';
    margin-right: 2px;
}

.value {
    font-size: 3rem;
    font-weight: 600;
    font-family: "Lexend Deca", sans-serif;
}

.currency,
.duration {
    color: var(--color-red);
}

.exclusive .currency,
.exclusive .duration {
    color: #2d3e50;
}

.currency {
    display: inline-block;
    margin-top: 12px;
    vertical-align: top;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: "Lexend Deca", sans-serif;
}

.of-price sup {
    font-size: 20px;
}

.of-price span {
    background: url('../images/red_highlight_04.svg') no-repeat center;
    background-size: contain;
}



.duration {
    font-size: 1.4rem;
}

.pricing-body {
    min-height: 160px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.is-switched .pricing-body {
    overflow: hidden;
}

.pricing-body {
    overflow-x: visible;
}

.pricing-features {
    width: 600px;
}

    .pricing-features:after {
        content: "";
        display: table;
        clear: both;
    }

    .pricing-features li {
        width: 100px;
        float: left;
        padding: 1.6em 1em;
        font-size: 16px;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pricing-features em {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

.pricing-features {
    width: auto;
    padding: 0px 15px;
}

    .pricing-features li {
        float: none;
        width: auto;
        padding: 0em;
        margin-bottom: 8px;
    }

    .pricing-features em {
        display: inline-block;
        margin-bottom: 0;
    }

.has-margins .exclusive .pricing-features li {
    margin: 0;
}

.pricing-footer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
}

.pricing-footer {
    position: relative;
    height: auto;
    padding: 1.8em 0;
    text-align: center;
}

    .pricing-footer::after {
        display: none;
    }

.has-margins .pricing-footer {
    padding-bottom: 0;
}

.select {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
}

.select {
    position: static;
    display: inline-block;
    height: auto;
    padding: 0.6em 0.5em;
    color: var(--color-red);
    border-radius: 8px;
    border: 2px solid var(--color-red);
    font-size: 1.1rem;
    text-indent: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .6s;
    width: 80%;
}

    .select:hover {
        background: var(--color-red);
        color: var(--color-white);
    }

.no-touch .select:hover {
    background: var(--color-red);
    color: #ffffff;
}

.exclusive .select {
    background: var(--color-red);
    color: #ffffff;
}

.no-touch .exclusive .select:hover {
    background-color: #24e0ba;
}

.secondary-theme .exclusive .select {
    background: var(--color-red);
}

.no-touch .secondary-theme .exclusive .select:hover {
    background-color: #112e3c;
}

.has-margins .select {
    display: block;
    padding: 1.7em 0;
    border-radius: 0 0 4px 4px;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: perspective(2000px) rotateY(0);
    }

    70% {
        -moz-transform: perspective(2000px) rotateY(200deg);
    }

    100% {
        -moz-transform: perspective(2000px) rotateY(180deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(200deg);
        -moz-transform: perspective(2000px) rotateY(200deg);
        -ms-transform: perspective(2000px) rotateY(200deg);
        -o-transform: perspective(2000px) rotateY(200deg);
        transform: perspective(2000px) rotateY(200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        -moz-transform: perspective(2000px) rotateY(180deg);
        -ms-transform: perspective(2000px) rotateY(180deg);
        -o-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }
}

@-webkit-keyframes rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
}

@-moz-keyframes rotate-inverse {
    0% {
        -moz-transform: perspective(2000px) rotateY(-180deg);
    }

    70% {
        -moz-transform: perspective(2000px) rotateY(20deg);
    }

    100% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
}

@keyframes rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        -moz-transform: perspective(2000px) rotateY(-180deg);
        -ms-transform: perspective(2000px) rotateY(-180deg);
        -o-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(20deg);
        -moz-transform: perspective(2000px) rotateY(20deg);
        -ms-transform: perspective(2000px) rotateY(20deg);
        -o-transform: perspective(2000px) rotateY(20deg);
        transform: perspective(2000px) rotateY(20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

@-webkit-keyframes rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
}

@-moz-keyframes rotate-back {
    0% {
        -moz-transform: perspective(2000px) rotateY(0);
    }

    70% {
        -moz-transform: perspective(2000px) rotateY(-200deg);
    }

    100% {
        -moz-transform: perspective(2000px) rotateY(-180deg);
    }
}

@keyframes rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-200deg);
        -moz-transform: perspective(2000px) rotateY(-200deg);
        -ms-transform: perspective(2000px) rotateY(-200deg);
        -o-transform: perspective(2000px) rotateY(-200deg);
        transform: perspective(2000px) rotateY(-200deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        -moz-transform: perspective(2000px) rotateY(-180deg);
        -ms-transform: perspective(2000px) rotateY(-180deg);
        -o-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }
}

@-webkit-keyframes rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
}

@-moz-keyframes rotate-inverse-back {
    0% {
        -moz-transform: perspective(2000px) rotateY(180deg);
    }

    70% {
        -moz-transform: perspective(2000px) rotateY(-20deg);
    }

    100% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
}

@keyframes rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        -moz-transform: perspective(2000px) rotateY(180deg);
        -ms-transform: perspective(2000px) rotateY(180deg);
        -o-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }

    70% {
        -webkit-transform: perspective(2000px) rotateY(-20deg);
        -moz-transform: perspective(2000px) rotateY(-20deg);
        -ms-transform: perspective(2000px) rotateY(-20deg);
        -o-transform: perspective(2000px) rotateY(-20deg);
        transform: perspective(2000px) rotateY(-20deg);
    }

    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}

.hiring-process-main.pricing .empower-desc .card {
    background: transparent;
}

.certified-inner {
    text-align: center;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

    .certified-inner h3 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        color: var(--color-black);
    }

.certified-main {
    padding-bottom: 80px;
}

.footer-up-odoo {
    margin-top: 30px;
}

    .footer-up-odoo ul {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .footer-up-odoo ul li a img {
            width: 124px;
            height: auto;
        }

.certificed-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .certificed-list li {
        width: 28.33%;
    }

.certified-logo img {
    width: 100%;
    height: auto;
}




.client-main {
    padding: 70px 0px;
}

.client-inner {
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
}

    .client-inner h3 {
        font-size: 1.75rem;
        color: var(--color-black);
        font-weight: 600;
        margin-bottom: 20px;
        font-family: "Lexend Deca", sans-serif;
    }

    .client-inner p {
        font-size: 0.9375rem;
        color: #444;
        display: -webkit-box;
        line-height: 1.4;
    }

        .client-inner p strong {
            color: var(--color-black);
        }


.new-case-study-title {
    margin-bottom: 40px;
}

    .new-case-study-title h2 {
        font-size: 1.6875rem;
        text-transform: capitalize;
        color: var(--color-black);
    }
