/*
Theme Name: NGS
Theme URI: https://nextgensoft.io
Author: the WordPress team
Author URI: https://nextgensoft.io
Description: Custom theme
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: NGS
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/
/* @font-face{
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf") format("truetype");
} */
@font-face {
    font-family: "Karla";
    src: url("fonts/Karla-Regular.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "SoraBold";
    src: url("fonts/Sora-ExtraBold.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Sora";
    src: url("fonts/Sora-Regular.ttf") format("truetype");
    font-display: swap;
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }
}
@keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(110%);
        -moz-transform: translateY(110%);
        -ms-transform: translateY(110%);
        -o-transform: translateY(110%);
        transform: translateY(110%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        -ms-transform: translateY(10%);
        -o-transform: translateY(10%);
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
a {
    color:#F1582A;
}
.words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}
.words-wrapper b {
    opacity: 0;
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    font-weight: 600;
    top: 0;
}
.words-wrapper .is-hidden-text {
    -webkit-animation: push-out .6s;
    -moz-animation: push-out .6s;
    animation: push-out .6s;
}
.words-wrapper .is-visible-text {
    position: relative;
    opacity: 1;
    -webkit-animation: push-in .6s;
    -moz-animation: push-in .6s;
    animation: push-in .6s;
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
.banner-background.banner-background-gradiant {
    background-image: linear-gradient(115deg,
            hsl(0deg 0% 99%) 1%,
            hsl(13deg 51% 97%) 38%,
            hsl(13deg 64% 95%) 46%,
            hsl(13deg 71% 94%) 49%,
            hsl(13deg 71% 94%) 51%,
            hsl(13deg 64% 95%) 51%,
            hsl(13deg 51% 97%) 51%,
            hsl(0deg 0% 99%) 50%,
            hsl(13deg 51% 97%) 49%,
            hsl(13deg 64% 95%) 49%,
            hsl(13deg 71% 94%) 49%,
            hsl(13deg 71% 94%) 51%,
            hsl(13deg 64% 95%) 54%,
            hsl(13deg 51% 97%) 62%,
            hsl(0deg 0% 99%) 99%);
    background-size: 200% 200%;
    -webkit-animation: Animation 10s ease infinite;
    -moz-animation: Animation 10s ease infinite;
    animation: Animation 10s ease infinite;
}
.banner-background {
    background: #fff;
}
@-webkit-keyframes Animation {
    0% {
        background-position: 10% 0%
    }
    50% {
        background-position: 91% 100%
    }
    100% {
        background-position: 10% 0%
    }
}
@-moz-keyframes Animation {
    0% {
        background-position: 10% 0%
    }
    50% {
        background-position: 91% 100%
    }
    100% {
        background-position: 10% 0%
    }
}
@keyframes Animation {
    0% {
        background-position: 10% 0%
    }
    50% {
        background-position: 91% 100%
    }
    100% {
        background-position: 10% 0%
    }
}
.black-sticky {
    display: none;
}
h2,
h2 * {
    font-family: "Sora" !important;
    line-height: 1.2;
}
h1,
h1 * {
    font-family: "SoraBold" !important;
}
h3,
h4,
h5,
h6,
div,
span,
button,
input,
p,
a {
    font-family: 'Karla';
}
p {
    font-size: 1.25rem;
    line-height: 1.4;
}
strong {
    font-weight: 600;
}
header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}
img {
    height: auto;
    max-width: 100%;
}
.lightwhite {
    background: #000;
}
.lightwhite.sticky {
    background: #f1f1f1;
}
#lines div {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
}
nav ul a {
    font-size: 1.2rem;
    color: #fff;
}
nav ul a:hover {
    color: #F1582A;
}
nav.sticky ul a {
    color: #000;
}
.footer-column a,
.footer-column li div {
    font-size: 1.2rem;
}
nav a.btn {
    background: #fff;
    color: #F1582A;
    border-radius: 5px;
    border: 1px solid #F1582A;
    height: 40px;
    line-height: 39px;
    font-size: 1.1rem;
    font-weight: bold;
}
nav a.btn:hover {
    background: #F1582A;
    color: #fff;
}
nav a.btn.active {
    background: #F1582A;
    color: #fff;
    border-radius: 5px;
}
nav a.btn.active:hover {
    background: #fff;
    color: #F1582A;
}
.btn.btn-link-blue {
    background: #F1582A;
    color: #fff;
    border-radius: 5px;
    padding: 8px 22px;
    height: auto;
    width: auto;
    font-size: 1.1rem;
    text-transform: none;
    z-index: 0;
    line-height: 1.5;
    box-shadow: none;
    border: 1px solid #F1582A;
}
nav .brand-logo {
    position: absolute;
    color: #fff;
    display: inline-block;
    float: left;
    height: 100%;
    padding: 9px 0;
    z-index: 1;
}
nav a.btn {
    box-shadow: none !important;
}
nav ul li {
    position: relative;
    outline: none;
}
nav ul li a {
    outline: none;
}
nav ul .dropdown-content a {
    color: #000;
    margin: 0;
    padding: 0;
    height: auto;
    line-height: 1.5;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
nav ul .dropdown-content a b {
    font-size: 1.2rem;
}
nav ul .dropdown-content div a:first-child {
    margin-bottom: 15px;
}
nav ul .dropdown-content .col {
    position: relative;
}
nav ul .dropdown-content .col:after {
    width: 100%;
    height: 1px;
    background: #d6d6d6;
    content: " ";
    display: block;
    position: absolute;
    left: 10px;
    max-width: 200px;
}
.solution-image {
    margin-top: 20px;
}
nav ul li.active {
    background-color: transparent;
}
nav ul .dropdown-content .single-submenu b:after {
    display: none;
}
nav ul .dropdown-content .single-submenu a {
    margin: 10px 0 !important;
}
.process-details {
    width: calc(100% - 70px);
}
.process-image {
    margin-right: 20px;
    float: left;
    width: 64px;
}
a.dropdown-trigger.single-submenu {
    margin-top: 8px;
}
nav .menu>ul>li:not(:first-child):after {
    content: "|";
    position: relative;
    top: 0;
    right: 0;
    color: #fff;
}
nav .menu>ul>li:nth-child(2):after {
    content: "";
}
.menu>ul>li a.btn {
    margin-right: 0;
}
.dropdown-content {
    width: 600px !important;
    max-width: 600px !important;
    padding: 15px 20px;
    left: -100px !important;
}
.dropdown-content li a {
    white-space: nowrap;
    color: #000;
    outline: none;
}
nav.sticky .menu>ul>li:not(:first-child):after {
    color: #000;
}

nav ul a:hover {
    color: #F1582A;
    background: transparent;
}
.fullscreen {
    height: calc(100vh - 64px);
}
.container {
    width: 100%;
    max-width: 1400px;
}
/* .banner-background {
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%) 0% 0% no-repeat padding-box;
} */
nav {
    z-index: 1;
    position: relative;
}
h1,
h3,
h4,
h5,
h5,
p {
    color: #000;
}
h1 span,
h2 {
    color: #000;
}
h1 span {
    color: #F1582A;
}
h3.counter-title {
    margin: 1rem 0 1rem 0;
}
.banner-background p {
    font-size: 2rem;
}
.banner-background a {
    background: #F1582A;
    border: 2px solid #F1582A;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    display: flex;
    font-size: 1.2rem;
    line-height: 2;
    align-items: center;
    max-width: 250px;
    margin-bottom: 25px;
}
.btn.btn-link-blue:hover,
.btn.btn-link-blue:focus {
    background: #fff;
    color: #F1582A;
}
.banner-background a img {
    width: 46px;
    border-radius: 5px;
    margin-right: 10px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.waves-effect.waves-blue .waves-ripple {
    background-color: rgba(0, 78, 154, 0.65);
}
.padding_top_half {
    padding-top: 30px !important;
}
.padding_top {
    padding-top: 90px;
}
.padding_bottom {
    padding-bottom: 90px !important;
}
.padding_bottom_half {
    padding-bottom: 45px !important;
}
.client-list img {
    display: inline-block;
    filter: grayscale(100%);
    max-width: 120px;
}
.client-list img:not(:last-child) {
    margin-right: 50px;
}
.counter-section .black-text {
    margin-top: 1.1rem;
}
span.counter.zero-counter {
    font-size: 3.8rem;
    position: relative;
    display: block;
    margin: 0 auto;
    color: #F1582A;
    line-height: 1.2;
    text-align: left;
    font-weight: bold;
    font-family: "SoraBold";
}
span.counter.zero-counter span {
    font-family: "SoraBold";
}
.counter-holder {
    padding: 25px 50px 25px 20px;
    border-left: 1px solid #D6D6D6;
}
.margin_bottom {
    margin-bottom: 90px;
}
.margin_bottom_half {
    margin-bottom: 45px;
}
.teal_font {
    color: #000;
}
.service-container {
    float: left;
    width: 100%;
    padding: 30px 20px 25px 20px;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    height: 100%;
}
.service-container:hover {
    border-color: #F1582A;
}
.card .card-content.grey-new {
    background-color: #F1F1F1;
    box-shadow: none;
    border-radius: 10px;
    max-width: 484px;
    width: 100%;
}
.card.horizontal {
    box-shadow: none;
}
.card .grey-new img {
    width: 60px;
}
.card .card-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.card-content h2 {
    margin: 10px 0 20px;
    color: #000;
}
.industry-holder {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
}
.industry-holder:not(.padding_bottom_half) {
    margin-bottom: 20px;
}
.industry-holder img {
    margin-right: 30px;
}
.industry-holder h3 {
    margin: 15px;
}
.tech_card_inner {
    position: relative;
    padding: 30px 150px 30px 60px;
    display: block;
    border-bottom: 1px solid #D6D6D6;
}
.tech_card_inner:hover {
    background-color: rgba(255, 201, 193, 0.2);
}
.tech_card_inner h3 {
    padding: 0;
    margin: 0;
}
.tech_card_inner .head4 img {
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateY(10%);
    transition: all 1s cubic-bezier(.19, 1, .22, 1);
    max-width: 35px;
}
.tech_card_inner:hover .head4 img {
    left: 10px;
}
.tech_card_inner .tech_para {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    padding-top: 20px;
    display: inline-block;
}
.tech_card_inner:after {
    position: absolute;
    content: "";
    top: 30px;
    right: 0;
    background: url("images/right.png") no-repeat;
    width: 10px;
    height: 17px;
    transition: all 1s cubic-bezier(.19, 1, .22, 1);
}
.tech_card_inner:hover:after {
    right: 12px;
}
.industry-holder.center-align {
    padding: 20px 0 10px 0;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    width: 100%;
}
.casestudy-holder,
.resource-container {
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-out;
    width: 100%;
    float: left;
}
.casestudy-holder>a img,
.resource-container img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.casestudy-holder a img {
    transition: all 0.5s ease-out;
}
.casestudy-details,
.resource-details {
    padding: 20px 30px 30px 30px;
    float: left;
}
.casestudy-details h3 {
    padding: 0 !important;
    line-height: 1.5;
    margin-top: 0 !important;
    height: 60px;
}
.casestudy-holder a {
    float: left;
}
.casestudy-holder:hover img,
.casestudy-holder a:hover img {
    transform: scale(1.1);
}
.casestudy-details a:hover h3,
.service-container:hover h3,
.resource-details a:hover h3 {
    color: #F1582A;
}
/* .casestudy-details a {
    border: 1px solid #F1582A;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    max-width: 250px;
    color:#F1582A;
}
.casestudy-details a img {
    margin-left: 15px;
} */
.gray-background {
    background-color: #F6F6F6;
}
.resource-container h3 {
    margin-top: 0 !important;
    list-style: 1.5;
}
ul.collapsible {
    border: 0 none;
    box-shadow: none;
    column-count: 2;
    column-gap: 20px;
}
.faq-indicator {
    margin-left: auto;
    margin-right: -35px;
    float: right;
}
.collapsible .faq-indicator:before {
    height: 22px;
    width: 22px;
    content: url(images/icn-down.png);
    margin-right: 20px;
    transition: all 0.5s ease-out;
    font-size: 28px;
    color: #F1582A;
    line-height: 0.8;
}
.collapsible .active .faq-indicator {
    transform: rotatex(180deg);
    filter: brightness(0) saturate(100%) invert(46%) sepia(67%) saturate(3784%) hue-rotate(346deg) brightness(98%) contrast(93%);
}
.collapsible h3 {
    padding: 0;
    margin: 0;
    line-height: 1.3;
    width: calc(100% - 30px);
    display: flex;
    align-items: start;
    font-size: 1.2rem;
}
.collapsible .active h3 {
    color: #F1582A;
}
.collapsible-body span {
    font-size: 1.25rem;
}
.collapsible-header,
.collapsible-body {
    border: 0 none;
    background: transparent;
}
.collapsible-body {
    padding: 0.5rem 1rem 1rem 1rem;
}
.collapsible li {
    /* border-bottom: 1px solid #D6D6D6; */
    background: #F5F5F5;
    border-radius: 10px;
    margin-bottom: 10px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}
.footer-column {
    padding: 60px 0 0px 0;
}
.footer-column h3 {
    margin: 0;
}
.footer-column .row {
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 25px;
}
.footer-column a,
.footer-column li div {
    color: #000;
    display: flex;
    align-items: start;
}
.footer-column li img {
    width: 21px;
    margin-top: 3px;
    margin-right: 10px;
}
.site-info {
    padding-bottom: 15px;
}
.sticky-sectoion-container {
    position: relative;
}
input.half-width {
    width: 48% !important;
    float: left;
    margin-bottom: 30px !important;
    border-bottom: 1px solid #D6D6D6 !important;
}
input.half-width.left {
    width: 48%;
    margin-right: 4%;
    border-bottom: 1px solid #D6D6D6 !important;
}
textarea {
    width: 100%;
    height: 6rem;
    background-color: transparent;
    border-bottom: 1px solid #D6D6D6 !important;
    border: 0 none;
    margin-bottom: 30px;
}
.blue-head {
    color: #000;
}
.footer-column li {
    margin-bottom: 10px;
}
.contact-section a {
    color: #000;
    display: flex;
    align-items: start;
    font-size: 1.2rem;
}
.contact-section a img {
    width: 21px;
    margin-top: 2px;
    margin-right: 10px;
}
.icon-conatainer {
    height: 64px;
    margin: 0 1px 1px 0;
    position: relative;
    width: 110px;
    float: left;
    margin-bottom: 20px;
}
.icon-folder {
    width: 100%;
    background-color: #F5F5F5;
    border-radius: 10px;
    float: left;
    padding: 10px 10px 0 10px;
    position: relative;
    margin-bottom: 30px;
}
.icon-conatainer a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 8px 12px;
    position: relative;
    width: 100%;
}
.icon-conatainer a img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.hidden-icons1,
.hidden-icons2 {
    display: none;
}
.expand-icon1,
.expand-icon2 {
    width: 40px;
    float: right;
    padding: 0;
    background-color: #C1DDF8;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    text-align: center;
    padding-left: 11px;
    cursor: pointer;
}
.expand-icon1:after,
.expand-icon2:after {
    content: url(images/right.png);
    transform: rotate(90deg);
    position: relative;
    display: block;
    transition: all 0.5s ease-out;
}
.expand-icon1.active:after,
.expand-icon2.active:after {
    transform: rotate(-90deg);
}
a.expand-icon1.active,
.expand-icon2.active {
    padding-left: 15px;
}
.no-margin {
    margin: 0;
}
.button-pulse {
    animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
    box-shadow: 0 0 0 0 #F1582A;
}
.margin-left-0 {
    margin-left: 0;
}
.company-aims-section {
    /*background: url(images/img-vision-mission.png);
    padding: 120px 0 140px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    padding: 25px 0 0px;
}
.company-details-head img {
    margin-left: 10px;
}
.company-section {
    display: flex;
    align-items: start;
}
.company-section h3 {
    width: auto;
    min-width: 130px;
    font-family: 'Sora';
    margin-top: 10px;
}
.company-section-container {
    background: #F1F1F1;
    border-radius: 10px;
    padding: 50px !important;
}
.company-details {
    padding: 10px 30px;
}
.company-numbers b {
    font-size: 2.5rem;
    width: 100%;
    display: block;
    font-family: "SoraBold";
    color: #000;
}
.company-details p {
    margin-top: 0;
}
ul.company-numbers {
    padding-left: 30px;
}
.company-numbers li {
    padding: 30px 0 30px 40px;
    border-left: 6px solid #F1f1f1;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
}
.company-numbers li:before {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #F1582A;
    display: block;
    content: "";
    left: -13px;
    top: 45px;
    border-radius: 50%;
}
ul.tabs {
    margin: 0;
    float: left;
    list-style: none;
    background-color: transparent;
    height: auto;
    padding-right: 10px;
}
ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 12px 20px;
    height: auto;
    line-height: 31px;
    border-left: 1px solid #000;
    position: relative;
    width: 100%;
    color: #000;
    font-size: 1.25rem;
    opacity: 0.7;
}
.tab-head-container {
    width: 25%;
    float: left;
}
ul.tabs li:hover {
    color: #000;
    border-left: 3px solid #000;
    opacity: 0.7;
}
ul.tabs li.active {
    color: #F1582A;
    border-left: 3px solid #F1582A;
    display: block;
    opacity: 1;
}
.tab_container {
    float: left;
    width: 75%;
}
.tab_content {
    padding: 20px;
    display: none;
}
.technologies-content-body-information-items {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 20px;
}
.service-tabs .technologies-content-body-information-items {
    grid-template-columns: 50% 50%;
}
.service-tabs,
.platform-tabs {
    width: 100%;
    float: left;
}
.bc-tech {
    display: flex;
    flex-direction: row;
    min-height: 100%;
    border-bottom: 1px solid #d6d6d6;
    filter: grayscale(100%) !important;
}
.row.benefits-row {
    border-bottom: 1px solid #d6d6d6;
}
.benefits-row p {
    border-left: 1px solid #d6d6d6;
    padding-left: 18px;
    margin-bottom: 2rem;
}
.benefits-row span {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    color: #F1582A;
    display: block;
    position: relative;
}
.benefits-row.for-process h3 {
    margin-top: 0;
}
.benefits-row i {
    font-size: 1rem;
    margin-right: 5px;
}
.service-tabs .bc-tech {
    filter: grayscale(0%) !important;
}
.bc-tech:hover {
    filter: grayscale(0%) !important;
    background: rgba(255, 201, 193, 0.2);
}
.bc-tech-text {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 16px 20px;
    flex-grow: 1;
}
.bc-tech-text-title {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 12px;
    opacity: 0.7;
    font-weight: bold;
    margin-top: 0;
}
.bc-tech-text-description {
    font-family: 'Karla', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #000;
    overflow: hidden;
    opacity: 0.7;
    /*min-height: calc(1.5rem* 4);
    height: calc(1.5rem* 4);*/
    overflow: hidden;
    transition: all 1s ease-in-out;
}
.bc-tech:hover .bc-tech-text-title,
.bc-tech:hover .bc-tech-text-description {
    opacity: 1;
}
.bc-tech-addition-icon img {
    max-width: 50px;
    height: auto;
}
.bc-tech:hover .bc-tech-text-description {
    height: auto;
    overflow: visible;
}
.bc-tech-addition {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    width: 100%;
    max-width: 70px;
    min-width: 70px;
    transition: all 0.5s ease-out;
}
.bc-tech:hover .bc-tech-addition {
    padding-left: 10px;
}
.tab_drawer_heading {
    display: none;
}
.tab_content h3 {
    margin-top: 0;
    font-size: 1.5rem;
}
.gap-5 {
    gap: max(20px, 1.042vw);
}
.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid {
    display: grid;
}
.side-case-study .case-box-1,
.side-case-study .case-box-2,
.side-case-study .case-box-3 {
    grid-column: 1 / -1;
}
.side-case-study .gray-background>div:first-child {
    position: relative;
}
.side-case-study .gray-background>div:first-child:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 63, 71, 0.8);
}
.side-case-study img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.case-study-detail {
    padding: max(23px, 1.458vw) !important;
    margin-bottom: auto;
}
.case-study-detail div span {
    color: #fff;
    font-size: 1.2rem;
    background: #F1582A;
    padding: 4px 16px;
    border-radius: 5px;
}
.case-study-detail a {
    color: #F1582A;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.case-study-detail span.bg-rightarrowLineBlack:after {
    content: url('images/arrow-orange.png');
    width: 30px;
    height: 30px;
    display: inline-block;
}
.case-study-detail span.bg-rightarrowLineBlack {
    margin-top: 10px;
    margin-left: 10px;
}
.why-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    padding: 1rem 0 0;
}
.why-card_wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.why-card_wrapper:nth-child(even) {
    margin-top: 60px;
}
.why-card_wrapper p,
.benefits-row p,
.cards p,
.service-container p {
    /*height: calc(1.8rem* 4);
    overflow: hidden;
    min-height: calc(1.8rem* 4);*/
}
.why-card_wrapper:hover p,
.benefits-row:hover p,
.cards:hover p,
.service-container:hover p {
    height: auto;
}
.flex.services {
    gap: 20px 0;
}
.why-card_wrapper:before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    border-top: 1px solid #ddd;
}
.why-card_wrapper:hover {
    background: rgba(255, 201, 193, 0.2);
}
.card-service-box {
    padding: 10px 0 0;
    position: relative;
    padding-left: 60px;
}
.card_number {
    color: #F1582A;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 20px;
    font-weight: 400;
    position: absolute;
    left: 0;
    transition: all 0.5s ease-in-out;
}
.why-card_wrapper:hover .card_number {
    left: 10px;
}
h3.card_head {
    margin-top: 0;
}
.why-card_wrapper:nth-child(even) .card-service-box {
    padding-top: 40px;
}
.contact-form form.wpcf7-form.init {
    padding-top: 20px;
}
.contact-page-form h3 {
    margin-bottom: 0;
}
.process-steps {
    display: flex;
    align-items: start;
    padding-bottom: 75px;
    position: relative;
}
.process-steps h3 {
    margin-top: 0;
    margin-bottom: 0;
}
.process-image {
    margin-right: 20px;
}
.process-steps:not(:last-child):before {
    width: 6px;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 28px;
    background: #EEEEEE;
    z-index: -1;
}
.service-benefits {
    border-bottom: 2px solid #F1582A;
}
.process-wrap {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}
.process h3 {
    font-size: 1.7rem;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    margin-top: 0;
}
.process p {
    color: #434343;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
}
.process {
    position: relative;
    width: 25%;
    padding: 0 20px;
}
.process span {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #F1582A;
    margin-bottom: 20px;
    display: block;
    position: relative;
}
.process span:after {
    content: '';
    position: absolute;
    bottom: 35px;
    height: 2px;
    width: 100%;
    border-bottom: 2px dashed #ccc;
    left: 50px;
}
.process:last-child span:after {
    display: none;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.uacf7-row {
    float: left;
    width: 100%;
}
form.wpcf7-form {
    background: #F6F6F6;
    padding: 0 30px;
    float: left;
    border-radius: 10px;
}
form.wpcf7-form input.wpcf7-form-control,
textarea.wpcf7-form-control.wpcf7-textarea,
select.wpcf7-form-control.wpcf7-select {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    padding: 0 10px;
    border-radius: 5px;
    box-sizing: border-box;
}
.uacf7-col-6,
.uacf7-col-12 {
    margin-bottom: 15px;
    color: #000;
}
.uacf7-col-12 {
    margin-bottom: 20px;
}
textarea.wpcf7-form-control.wpcf7-textarea,
input.wpcf7-form-control.wpcf7-file {
    padding: 10px !important;
    margin-bottom: 0;
}
.blog-contact-form #uacf7_country_select .country-select .wpcf7-uacf7_country_dropdown,
.blog-contact-form #uacf7_country_select .country-select {
    margin-left: 4px;
}
#arithmetic_input_holder {
    width: 100%;
    display: flex;
    align-items: center;
}
div#arithmetic_input_holder,
.wpcf7-response-output {
    float: left;
}
div#arithmathic_result {
    float: left;
    width: 100%;
}
#arithmathic_refresh {
    margin-right: 10px;
}
#arithmetic_input_holder input {
    width: 50%;
    background: #fff;
    padding: 10px;
    line-height: 1;
    font-size: 1rem;
    height: auto;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
}
form.wpcf7-form input.wpcf7-form-control.wpcf7-submit {
    width: auto !important;
    background: #F1582A;
    border-radius: 5px;
    BORDER: 0 none;
    padding: 15px 40px;
    color: #fff;
}
.contact-section .process-details {
    padding-top: 20px;
}
.contact-section .valign-wrapper {
    align-items: start;
}
.cards {
    width: 100%;
    margin: 10px 0;
    padding: 20px;
    border: 1px solid #d6d6d6;
    border-bottom: 2px solid #F1582A;
    text-align: Left;
    float: left;
}
.cards i {
    color: #F1582A;
    font-size: 24px;
    margin-right: 10px;
    float: left;
}
.cards h3 {
    margin-bottom: 5px;
    width: calc(100% - 30px);
    float: left;
    margin-top: 6px;
}
.cards p {
    float: left;
}
.team-member {
    text-align: left;
    padding: 20px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
}
.about-cta .card .card-content.grey-new {
    max-width: 100%;
}
img.linkedin_icon {
    max-width: 40px;
    height: auto;
}
.team-member p:nth-child(5) {
    min-height: calc(1.75rem* 5);
    height: calc(1.75rem* 5);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.team-member:hover p:nth-child(4) {
    height: auto;
}
.engagement-model-section ul.collapsible {
    column-count: auto;
}
.common-page h1 {
    font-size: 3rem;
}
.common-page h2,
.content-area h2 {
    font-size: 2.5rem;
}
.common-page h3,
.content-area h3 {
    font-size: 2rem;
}
.common-page h4,
.content-area h4 {
    font-size: 1.5rem;
}
.common-page ul li {
    font-size: 1.25rem;
    list-style-type: disc;
    list-style-position: inside;
}
.consultation-section h2 {
    margin-top: 0;
}
.consultation-section a {
    color: #F1582A;
}
.post-thumbnail img {
    max-height: calc(100vh - 100px);
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.post-thumbnail {
    margin: 30px 0;
}
.content-area h1 {
    font-size: 36px;
    font-size: 2.4rem;
    margin-top: 10px;
}
.blog-more-details {
    display: flex;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.blog-more-details {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    float: left;
    width: 100%;
}
.blog-details {
    float: left;
}
.blog-share {
    float: right;
}
.blog-content ul>li {
    font-size: 1.2rem;
    list-style-type: disc;
}
.blog-content ol>li {
    font-size: 1.2rem;
}
.blog-content ul {
    list-style-type: disc;
    padding-left: 40px;
}
.blog-content td,
.blog-content td span {
    font-size: 1.2rem;
}
.blog-content a {
    color: #F1582A;
}
.card.blog-card {
    margin-top: 20px;
}
.blog-card h3 {
    margin-top: 5px;
    font-size: 2rem;
}
.blog-card li {
    font-size: 1.2rem;
    margin-bottom: 0px;
    padding: 10px 0;
    border-bottom: 1px solid #D0D0D0;
}
.blog-card li:last-child {
    border-bottom: 0 none;
}
.blog-card li a {
    color: #000;
}
.blog-share img {
    width: 23px;
    margin: 0;
}
.blog-details {
    float: left;
    font-size: 1.2rem;
}
.blog-details a.author {
    color: #F1582A;
    margin-right: 20px;
}
.blog-details .blog_date {
    color: #7D7D7D;
}
.category-details a {
    color: #000;
    margin-right: 15px;
}
.blog-share {
    color: #7D7D7D;
    font-size: 1.2rem;
    display: flex;
    line-height: 1.2;
}
.blog-share a:first-child {
    margin-left: 10px;
}
.related_blog img {
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.related_blog .blog-details {
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #F1F1F1;
}
.related_blog .blog-details .blog_date {
    color: #7D7D7D;
    float: right;
}
.related_blog .category-details {
    float: left;
    margin-bottom: 8px;
    width: 100%;
}
.related_blog .category-details a {
    font-size: 1.2rem
}
.related_blog h3 {
    font-size: 1.8rem;
    height: calc(2rem* 3);
}
.related_blog:not(.first_blog) h3 {
    overflow: hidden;
    float: left;
    margin: 0;
}
.related_blog.first_blog h3 {
    height: auto;
}
.related_blog p {
    height: calc(1.8rem* 5);
    overflow: hidden;
    float: left;
}
.related_blog h1 {
    font-size: 2.5rem;
}
.mkdf-grid-row.mkdf-grid-small-gutter {
    float: left;
}
.blog-contact-form {
    margin-top: 10px;
    padding-bottom: 20px;
}
.blog-contact-form .uacf7-col-12 {
    margin-bottom: 15px
}
.wpcf7-form-control-wrap {
    float: left;
    width: 100%;
}
.blog-contact-form span#uacf7_country_select {
    width: 100%;
    margin-bottom: 8px;
}
.card-content .card-heading {
    font-size: 2.1rem;
    font-weight: 600;
    margin: 10px 0 20px;
    color: #000;
    line-height: 1.2;
    font-family: "Sora" !important;
    line-height: 1.2;
    width: 100%;
    float: left;
}
.card-content .btn.btn-link-blue {
    float: left;
}
.wpcf7-form p small {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.author-details {
    width: 100%;
    float: left;
    padding: 20px;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 45px;
}
.author-details img {
    width: 150px;
    margin-right: 10px;
    float: left;
}
.author-details a.author {
    float: left;
    width: calc(100% - 160px);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #F1582A;
}
.author-details p {
    float: left;
    width: calc(100% - 160px);
    margin-top: 0;
}
.case-study-container {
    width: 100%;
    background: #FFF4F3;
    border-radius: 10px;
    float: left;
}
.case-study-container img {
    width: 100%;
    height: 250px;
    float: left;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}
.case-study-details {
    width: 100%;
    float: left;
    padding: 25px 20px;
}
.case-study-details h2 {
    margin: 0;
    font-size: 1.46rem;
    height: calc(1.7rem* 3);
    overflow: hidden;
}
.case-study-details a {
    color: #F1582A;
    font-size: 1.2rem;
    margin-top: 0;
}
.points-section-content {
    margin-left: -50px;
    background: #fff;
    box-shadow: 0px 0px 20px #0000000F;
    padding: 40px 80px;
    margin-top: 0;
}
.points-section-content h3 {
    margin-top: 0;
}
.case-study-row h2 {
    margin-left: 14px;
    margin-bottom: 0;
    margin-top: 10px;
}
.terms-holder {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 20px;
}
.term-single {
    width: auto;
    float: left;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-right: 15px;
}
.term-single img {
    width: 25px;
    margin-right: 5px;
}
.row.case-study-row {
    background-color: #F8F8F8;
    width: calc(100% - 50px);
    margin-left: 50px;
    align-items: center;
    position: relative;
}
nav ul li.active a {
    color: #F1582A;
}
.case-study-row ul li {
    list-style: disc;
}
.case-study-row ul li,
.case-study-row ol li {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.case-study-row .points-section-content>ol {
    padding-left: 0;
}
.points-section-content p {
    margin-left: -10px !important;
}
.case-study-row div:not(.points-section-content)>p {
    margin-left: 14px;
}
.case-study-row:not(:last-child):after {
    content: " ";
    width: 5px;
    height: 90px;
    background: #F1582A;
    bottom: -90px;
    position: absolute;
    left: 35px;
    z-index: -2;
}
.uacf7-row b {
    float: left;
}
.blog-content h4 {
    font-size: 1.25rem;
}
.contact-page-form .uacf7-col-6,
.contact-page-form .uacf7-col-12 {
    margin-bottom: 7px;
}
.consultation-section ul li {
    list-style: disc;
    list-style-position: outside;
    margin-left: 17px;
    font-size: 1.2rem;
}
.site-footer .blog-share img {
    width: 27px;
}
.footer-column li img.country {
    width: 30px;
}
.no-padding-left {
    padding-left: 0 !important;
}
.menu>ul>li>ul>li>a:after {
    position: absolute;
    width: 100%;
    content: "";
    height: 1px;
    left: 0;
    bottom: -11px;
    background: #cacaca;
}
/* menu */
.menu a.logo {
    display: inline-block;
    padding: 1.5em 3em;
    width: 19%;
    float: left;
}
.menu img {
    max-width: 100%;
}
.menu-mobile {
    display: none;
    padding: 20px;
}
.menu-mobile:after {
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}
.menu-dropdown-icon:before {
    content: ">";
    transform: rotate(90deg);
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    color: #000;
}
.menu>ul {
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    float: right;
}
.menu>ul:before,
.menu>ul:after {
    content: "";
    display: table;
}
.menu>ul:after {
    clear: both;
}
.menu>ul>li {
    float: right;
    padding: 0;
    margin: 0;
    position: initial;
}
.menu>ul>li a {
    text-decoration: none;
    display: inline-block;
}
.menu>ul>li>ul {
    display: none;
    width: 100%;
    background: #F8F8F8;
    padding: 30px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    column-count: 4;
    column-gap: 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.menu>ul>li>ul:before,
.menu>ul>li>ul:after {
    content: "";
    display: table;
}
.menu>ul>li>ul:after {
    clear: both;
}
.menu>ul>li>ul>li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 40px;
}
.menu>ul>li>ul>li a {
    color: #000;
    width: 95%;
    display: block;
    line-height: 1.3;
    position: relative;
}
.menu>ul>li>ul>li a:hover {
    color: #F1582A;
}
.menu>ul>li>ul>li>ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    margin-top: 15px;
}
.menu>ul>li>ul>li>ul:before,
.menu>ul>li>ul>li>ul:after {
    content: "";
    display: table;
}
.menu>ul>li>ul>li>ul:after {
    clear: both;
}
.menu>ul>li>ul>li>ul>li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8rem;
}
.menu>ul>li>ul>li>ul>li a {
    border: 0;
    font-size: 1.19rem;
}
.menu>ul>li>ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}
.menu>ul>li>ul.normal-sub>li {
    width: 100%;
}
.menu>ul>li>ul.normal-sub>li a {
    border: 0;
    padding: 1em 0;
}
/* menu */
.table-of-contents {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 20px 10px;
    background: #F6F6F6;
    border-radius: 10px;
}
.main-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.table-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}
.table-of-contents.case-tables {
    max-height: 100vh;
    overflow-y: auto;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 0 15px;
    margin-top: 40px;
}
.layout-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.table-of-contents.case-tables h3 {
    margin-top: 25px;
}
.row.testimonial-body {
    margin-top: 50px;
}
.testimonial-in-details ul {
    margin-bottom: 10px;
    list-style: disc;
    padding-left: 17px;
}
.testimonial-in-details li {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 8px;
    list-style: disc !important;
}
.testimonial-in-details li::marker {
    background: #F1582A;
    color: #F1582A;
}
.team-container {
    column-count: 2;
    gap: 20px;
    margin-top: 35px;
}
.team-column {
    break-inside: avoid;
}
.team-column h3 {
    margin-top: 0;
}
.table-of-contents a {
    color: #000;
}
.table-of-contents a:hover,
.table-of-contents a:active {
    color: #F1582A;
}
nav .menu li ul li a i,
nav .menu li ul li ul li a i {
    line-height: normal;
    display: flex;
    align-items: center;
    height: auto;
    visibility: hidden;
}
nav .menu li ul li a,
nav .menu li ul li ul li a {
    display: flex;
    align-items: center;
}
nav .menu li ul li a:hover i,
nav .menu li ul li ul li a:hover i {
    color: #F1582A;
    visibility: visible;
}

@-webkit-keyframes myfirst {
    from {
        background-position: bottom center;
        background-size: cover;
    }
    to {
        background-position: top center;
        background-size: cover;
    }
}
/*Testimonial css*/
.testimonial-slider {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}
.testimonial-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.testimonial-image {
    position: relative;
    flex: 1;
}
.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 315px;
    width: auto;
    margin: 0 auto;
}
.testimonial-client-details img {
    width: 200px;
    height: auto;
    border-radius: 50%;
}
.testimonial-text {
    flex: 1;
}
.testimonial-details {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.testimonial-in-details .intro {
    margin-top: 0;
}
.testimonial-name {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0;
}
p.testimonial-designation {
    margin: 0px 0 10px;
}
.testimonial-button-wrap {
    float: left;
    width: 100%;
}
.testimonial-button {
    color: #ff5722;
    font-weight: bold;
    text-decoration: none;
    border-top: 1px solid #ff5722;
    padding-top: 6px;
    float: left;
}
.testimonial-body .client-name {
    font-size: 2.1rem;
    line-height: 1.2;
    font-family: "Sora" !important;
    font-weight: 600;
    margin-top: 10px;
}
.testimonial-client-details p {
    margin: 2px 0 30px;
}
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    color: #B6B6B6;
    background: #E3E3E3 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-arrow.left {
    left: 10px;
}
.testimonial-arrow.right {
    right: 10px;
}
.testimonial-bars {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}
.testimonial-bars .bar {
    height: 4px;
    background-color: #e0e0e0;
    width: 40px;
    transition: all 0.5s ease;
}
.testimonial-bars .bar.active {
    background-color: #ff5722;
    width: 80px;
}
.blog-content h2:first-child {
    margin-top: 20px;
}
.blog-contact-form {
    padding-bottom: 20px;
    float: left;
    padding-top: 40px;
}
.team-container .col {
    break-inside: avoid;
}
.blog-content pre {
    background: #F6F6F6;
    padding: 10px;
    border-radius: 10px;
}
.table-of-contents li:last-child ul {
    padding-left: 0 !important;
}
p.comment-form-author {
    margin-right: 2%;
}
p.comment-form-author, p.comment-form-email {
    width: 49%;
    float: left;
    margin-top: 0;
}
.comments-area {
    background: #F6F6F6;
    padding: 0 30px 30px 30px;
    float: left;
    width: 100%;
    border-radius: 10px;
}
.comments-area input,.comments-area textarea {
    background-color: #fff !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 5px !important;
    margin-bottom: 0;
}
.comments-area input[type="checkbox"] {
    opacity: 1;
}
.comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: center;
}
.comments-area .comment-form-cookies-consent label {
    margin-left: 20px;
}
.comments-area input#submit {
    width: auto !important;
    background: #F1582A !important;
    padding: 15px 40px;
    color: #fff;
}/* Basic Comment List Styling */
.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Individual Comment */
.commentlist li {
    margin: 0 0 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
    position: relative;
}
/* Nested (child) comments */
.commentlist .children {
    list-style: none;
    margin: 15px 0 0 20px; /* Indent children */
    padding: 0;
}
/* Each child comment */
.commentlist .children li {
    border-color: #ccc;
    background-color: #f1f1f1;
}
/* Author name */
.comment-author {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
/* Comment metadata (date/time, etc.) */
.comment-meta {
    font-size: 0.85em;
    color: #777;
}
/* Comment text */
.comment-content {
    clear: both;
    padding-top: 10px;
}
/* Reply link */
.comment-reply-link {
    font-size: 0.85em;
    display: inline-block;
    margin-top: 10px;
    color: #F15628;
}
.comment-reply-link:hover {
    color: #F15628;
}
/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.alignleft {
    text-align: left;
}
.alignright {
    text-align: right;
}

/*
ISO image
*/

.banner-right-img {
    margin-top: 40px;
}
.single-case-studies #toc-list li ul {
    display: none;
}
.modal.bottom-right-modal {
  position: fixed !important;
    right: 16px;
    bottom: 16px;
    margin: 0;
    width: 360px;
    max-width: 90vw;
    border-radius: 12px;
    overflow: hidden;
    transform: none !important;
    height: auto;
    max-height: 204px;
    left: auto;
    top:auto !important;
}

.modal.bottom-right-modal.open {
  display: block !important;
  opacity: 1 !important;
}

.modal.bottom-right-modal .modal-content {
  padding: 0;   /* remove padding around video */
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 2;
}

.close-btn:hover {
  background: rgba(0,0,0,0.8);
}
/**** snow ******/
@keyframes fall {
	0% {
		transform: translateX(0) translateY(0);
		opacity: inherit;
	}

	50% {
		transform: translateX(25px) translateY(50vh);
	}

	100% {
		transform: translateX(-25px) translateY(110vh);
		opacity: 0;
	}
}
#snow {
	position: fixed;
	inset: 0;
	pointer-events: none;
}

.snowflake {
	position: absolute;
	top: -10px;
	color: white;
	text-shadow: 0 0 10px white;
	opacity: 0.8;
	animation-name: fall;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

p.testimonial-designation.testimonial:after {
    content: " ";
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: #ff5722;
    display: block;
    position: relative;
    margin-top: 10px;
}

/*** new homepage **/
section.banner-background.new-homepage-banner {
    /* background: transparent linear-gradient(180deg, #474747 0%, #000000 100%) 0% 0% no-repeat padding-box; */
    background-image: url(../NGS/images/img-banner-right.png), linear-gradient(180deg, #474747 0%, #000000 100%);
    background-size: auto;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
}
.new-homepage-banner h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
}
.new-homepage-banner.banner-background p {
    font-size: 1.5rem;
    color: #fff;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}
.new-homepage-banner .container {
    position: relative;
    z-index: 1;
}
.banner-background.new-homepage-banner a {
    margin-right: 20px;
}
.banner-buttons-container {
    display: flex;
}

/****** Dark Footer ****/
.lightblack-background {
    background-color: #1E1E1E;
}
.black-background {
    background-color: #000000;
}
.lightblack-background a,
.lightblack-background p,
.lightblack-background .footer-column div, 
.lightblack-background .footer-column h3 {
    color:#fff;
}
.lightblack-background a:hover {
    color:#F1582A;
}
.display-flex {
    display: flex;
}
.black-background .footer-menu-left {
    color: #959595;
}
.lightblack-background .row.flex {
    margin-bottom: 0;
}
.lightblack-background .footer-column .row {
    border: 0 none;
}
.black-background .site-info {
    padding-top: 20px;
    padding-bottom: 20px;
}
.blog-share-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #4B4B4B;
}
.blog-share-section .blog-share {
    margin-top: 20px;
    float: left;
}
.blog-share-section .blog-share a:first-child {
    margin-left:0 ;
}
.blog-share-section .blog-share a {
    margin-right: 10px;
}
.footer-about img {
    width: 144px !important;
    height: 144px;
    margin-right: 13px;
}
.footer-about p {
    width: calc(100% - 150px);
}
.footer-column .country-name {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: 1.5rem;
    line-height: normal;
}
.footer-column .contact-address {
    min-height: 5rem;
}

/**** In-page contact ******/
.contact-section-dark {
    background: #000;
}
.contact-section-dark .wpcf7-form {
    background: #1E1E1E;
}
.contact-section-dark .uacf7-col-6, 
.contact-section-dark .uacf7-col-12 {
    color:#fff;
}
.contact-section-dark .process-steps:not(:last-child):before {
    width: 6px;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 28px;
    background: #343434;
    z-index: 0;
}
.contact-section-dark .process-image {
    z-index: 1;
}
.contact-section-dark .wpcf7-response-output {
    color:#fff;
}
.case-box.gray-background {
    float: left;
    margin-bottom: 15px;
}
.case-box h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    width: 100%;
    min-height: 2.9rem;
    margin: 1rem 0 1rem 0;
}
.case-box p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    width: 100%;
    margin-top: 0;
}
.case-box.items p {
    -webkit-line-clamp: 2;
}
.side-case-study .case-box img {
    height: auto;
    border: 2px solid #F6F6F6;
}
.side-case-study .case-box a {
    float: left;
    width:100%;
}
.side-case-study .gray-background.case-box>div:first-child:after{
    display: none;
}
.case-study-detail .category-details {
    width: 60%;
    float: left;
    color:#F1582A;
    max-height: 22px;
    overflow: hidden;
}
.case-study-detail .datetime-details {
    float: right;
    width: 40%;
    text-align: right;
}
.side-case-study .blog-author-details img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.blog-author-details {
    float: left;
    display: flex;
    align-items: center;
}
.carousel {
    height: 280px;
}
.carousel .carousel-item {
    opacity: 1 !important;
}
.company-trusted-partner-section .row {
    background: transparent linear-gradient(180deg, #FFEAE4 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    padding: 50px 30px;
    border-radius: 15px;
}
.company-trusted-partner-section .carousel .carousel-item p {
    font-size: 1rem;
    text-align: center;
}

/***** new service ****/
.inner-new-banner {
    background: url(../NGS/images/bg-banner-image.jpg);
    background-size: cover;
    background-position: center center;
    height: 100vh;
    max-height: 600px;
    background-repeat: no-repeat;
}
.inner-new-banner h1 {
    font-size: 4rem;
}
.inner-new-banner p {
    font-size: 1.4rem;
}
.inner-new-banner .right-image img {
    width: 90%;
    float: right;
    margin: 15px 0;
}
.inner-new-banner.about {
    background: transparent linear-gradient(119deg, #FFF8F8 0%, #FFE7D2 39%, #FCF7F5 71%, #FFDDD4 100%) 0% 0% no-repeat padding-box;
}
.inner-new-banner.about .right-image img {
    margin: 0;
    height: calc(100vh - 97px);
    width: auto;
}
.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-height: 600px;
    align-items: center;
}
.center-content h1 {
    margin-bottom: 0;
}

/******** life *********/
.container.product-carousel {
    background: #F8F8F8;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 80px;
}
.product-carousel .year {
    padding-left: 15px;
    border: 8px solid #ED5E2F;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    font-family: 'SoraBold';
    font-size: 2.125rem;
}
.margin-top.divider {
    margin-top: 10px;
    background-color: #FFE6D1;
}
.carousel-container {
    background: #FFE6D1;
    padding: 10px;
    border-radius: 15px;
}
.carousel-container img, .carousel-container .swiper-slide {
    border-radius: 15px;
}
/* .carousel.thumbnails {
    height: 140px;
}
.carousel.thumbnails .carousel-item {
    height: 120px;
} */
.product-carousel h3{
    font-size: 1.75rem;
    font-family: 'SoraBold';
}
.celebrations-wrapper .celebration-row:not(:last-child) {
    margin-bottom: 50px;
}
.celebrations-wrapper .celebration-row:nth-child(even) {
    flex-direction: row-reverse;
}
.swiper {
      width: 100%;
      height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
}
.mainSlider {
    height: 80%;
    width: 100%;
}
.thumbSlider {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.thumbSlider .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    border-radius: 10px;
}
.thumbSlider .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
    width: 32px;
    height: 32px;
    background: #F15628;
    border-radius: 50%;
    padding: 9px 9px 9px 12px;
}
.swiper-button-prev {
    width: 32px;
    height: 32px;
    background: #F15628;
    border-radius: 50%;
    padding: 9px 11px 9px 9px;
}
/**************** responsive css ***********/
@media (max-width: 768px) {
    .testimonial-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 1rem;
    }
    .testimonial-image,
    .testimonial-image img {
        width: 100%;
    }
    .testimonial-text {
        padding: 0 10px;
    }
    .testimonial-button {
        margin-top: 1rem;
        display: inline-block;
        float: none;
    }
    .testimonial-arrow.left {
        left: 5px;
    }
    .testimonial-arrow.right {
        right: 5px;
    }
    .inner-new-banner.about .right-image img {
        display: none;
    }
    .inner-new-banner {
        height: auto;
    }
    .container.product-carousel {
        padding: 20px 10px;
    }
    .thumbSlider {
        display: none;
    }
    .banner-buttons-container {
        display: block;
    }
    section.banner-background.new-homepage-banner {
        background-image: linear-gradient(180deg, #474747 0%, #000000 100%);
    }
    #particles-js {
        width: 100%;
    }
}
@media (max-width: 375px) {
    .testimonial-inner {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem;
        gap: 20px;
    }
    .testimonial-image {
        width: 100%;
        height: 250px;
        /* Adjust as needed */
        overflow: hidden;
        position: relative;
    }
    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .testimonial-text {
        padding: 0 10px;
    }
    .testimonial-details {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .testimonial-name,
    .testimonial-designation {
        font-size: 1rem;
    }
    .testimonial-button {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .testimonial-arrow {
        font-size: 1.5rem;
    }
    .testimonial-bars .bar {
        width: 30px;
    }
    .testimonial-bars .bar.active {
        width: 60px;
    }
}
@media screen and (max-width: 992px) {
    .layout-container {
        flex-direction: column;
    }
    .cs-table-of-contents {
        width: 100%;
        max-height: none;
        position: relative;
    }
    .content-wrapper {
        max-width: 100%;
    }
}
@media screen and (max-width:1024px) {
    .process {
        width: 45%;
        margin-bottom: 20px;
    }
    .last-cta .button {
        margin-top: 50px;
    }
    .last-cta {
        height: auto;
    }
    .auto-wrapper {
        flex-wrap: wrap;
    }
}
@media screen and (max-width:641px) {
    .valign-wrapper:not(.fullscreen) {
        display: block;
    }
    .company-section {
        display: block;
    }
    .company-section-container {
        padding: 50px 20px !important;
    }
    .company-details {
        padding: 10px 0;
    }
    ul.collapsible {
        column-count: 1;
    }
    .process:last-child span:after {
        display: block;
    }
    .process {
        width: 100%;
        padding: 0 10px;
    }
    .auto-wrapper {
        padding-top: 0;
    }
    .process span {
        top: 18px;
        margin-bottom: 25px;
    }
    .process span:after {
        bottom: 5px;
        left: 0px;
    }
    .process h6 {
        margin-bottom: 15px;
    }
}
@media (min-width: 992px) {
    .side-case-study .case-box-2,
    .side-case-study .case-box-1 {
        grid-column: span 8 / span 8;
    }
    .side-case-study .case-box-3 {
        grid-column-start: 9;
        grid-column-end: 13;
        grid-row-start: 1;
        grid-row-end: 3;
        flex-direction: column-reverse;
    }
}
@media (min-width: 768px) {
    .side-case-study .case-box-2 {
        display: flex;
    }
    .side-case-study .case-box-1 {
        display: flex;
        flex-direction: row-reverse;
    }
    .side-case-study .case-box-3 {
        display: flex;
    }
}
@media (min-width:601px) {
    .process-steps {
        margin-left: 50px;
    }
    .row.flex {
        display: flex;
        flex-wrap: wrap;
    }
    .sticky-sectoion {
        position: sticky;
        top: 60px;
    }
    .blog-contact-form.sticky-sectoion {
        top: 80px;
    }
}
@media (max-width:992px) {
    nav .menu>ul>li:not(:first-child):after {
        content: '';
    }
    .tabs {
        display: block;
    }
    .technologies-content-body-information-items {
        grid-template-columns: 50% 50%;
        gap: 10px;
    }
    .dropdown-content {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
    }
    .dropdown-content .col {
        width: 100% !important;
    }
    .dropdown-content {
        position: relative;
    }
}
@media (max-width:600px) {
    .team-container {
        column-count: 1;
    }
    .content-area h1,
    .related_blog h1,
    .new-homepage-banner h1,
    .inner-new-banner h1 {
        font-size: 1.7rem;
    }
    .why-card_wrapper {
        padding: 0 10px;
    }
    .row.flex.case-study-row {
        display: inline-block;
        width: calc(100% - 30px);
        margin-left: 30px;
    }
    .related_blog:not(.first_blog) .blog-details {
        margin-bottom: 40px;
    }
    .related_blog h3 {
        height: auto;
    }
    .case-study-row ul,
    .case-study-row p {
        margin-left: -65px;
    }
    .footer-column .col {
        margin-bottom: 30px;
    }
    .why-card_wrapper:nth-child(even) .card-service-box {
        padding-top: 30px;
    }
    .why-card_wrapper:nth-child(even) {
        margin-top: 0px;
    }
    .why-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
        column-gap: 0;
        padding: 1rem 0 0;
    }
    .bc-tech-text-title {
        margin-bottom: 0;
    }
    .bc-tech {
        align-items: center;
    }
    .bc-tech-text-description {
        display: none;
    }
    .padding_top {
        padding-top: 45px;
    }
    .padding_bottom {
        padding-bottom: 25px !important;
    }
    .padding_bottom_half {
        padding-bottom: 20px !important;
    }
    .margin_bottom_half {
        margin-bottom: 20px !important;
    }
    .margin_bottom {
        margin-bottom: 40px !important;
    }
    h1 {
        font-size: 1.7rem;
    }
    .banner-background p {
        font-size: 1.5rem;
    }
    .tech_card_inner {
        padding: 30px 60px 30px 60px;
    }
    .casestudy-details h3 {
        height: 100px;
    }
    .client-logos img {
        width: 37%;
        margin-right: 25px !important;
        margin-bottom: 26px;
    }
    .company-aims-section {
        padding: 90px 0 0;
    }
    .tab-head-container,
    .tabs {
        display: none;
    }
    .tabs,
    .tab_container {
        width: 100%;
        height: auto;
    }
    .tab_drawer_heading {
        color: #000;
        margin: 0;
        padding: 10px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        float: left;
        width: 100%;
        border-left: 1px solid #000;
        font-weight: 600;
        font-size: 1.3rem;
        line-height: 110%;
    }
    .tab_container {
        border-radius: 10px;
    }
    .tab_content {
        float: left;
        border-left: 3px solid #F1582A;
    }
    h3.d_active.tab_drawer_heading,
    div.d_active.tab_drawer_heading {
        border-left: 3px solid #F1582A;
    }
}
@media (max-width:535px) {
    .technologies-content-body-information-items,
    .service-tabs .technologies-content-body-information-items {
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 768px) {
    .team-column {
        width: 100%;
    }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
  Mobile style's
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
    .menu {
        width: 100%;
    }
    nav .menu a.btn {
        margin: 0;
        margin-top: 10px;
    }
    .menu-container {
        width: 100%;
        height: 56px;
    }
    .menu-container:has(:where(.show-on-mobile)) {
        height: auto;
    }
    .menu-container .menu {
        display: inline-block;
    }
    .menu-mobile {
        display: block;
        float: left;
        padding: 0;
        color: #fff;
    }
    .sticky .menu-mobile {
        color:#000;
    }
    nav.sticky .menu .show-on-mobile li a.btn {
        color:#fff;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu>ul {
        display: none;
        width: 100%;
    }
    .menu>ul>li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu>ul>li a {
        width: 100%;
        display: block;
    }
    nav .menu .show-on-mobile li a {
        color: #000;
    }
    .menu>ul>li>ul {
        position: relative;
        padding: 10px 0;
        column-count: 2
    }
    .menu>ul>li>ul.normal-sub {
        width: 100%;
    }
    .menu>ul>li>ul>li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu>ul>li>ul>li:first-child {
        margin: 0;
    }
    .menu>ul>li>ul>li>ul {
        position: relative;
    }
    .menu>ul>li>ul>li>ul>li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
        overflow-y: auto;
        max-height: calc(100vh - 100px);
        overflow-x: hidden;
    }
    
}

/*ISO Image*/
@media only screen and (max-width: 600px) {
    .banner-right-img {
        margin-top: 50px;
    }
}