@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {

    /* Font Family */
    --global--font-primary: Montserrat;
    --global--font-secondary: Montserrat;

    /* Font Size */
    --global--font-size-base: 1.25rem;
    --global--font-size-xs: 1rem;
    --global--font-size-sm: 1.125rem;
    --global--font-size-md: 1.25rem;
    --global--font-size-lg: 1.5rem;
    --global--font-size-xl: 2.25rem;
    --global--font-size-xxl: 4rem;
    --global--font-size-xxxl: 5rem;
    --global--font-size-page-title: var(--global--font-size-xxl);
    --global--letter-spacing: normal;

    /* Line Height */
    --global--line-height-body: 1.7;
    --global--line-height-heading: 1.3;
    --global--line-height-page-title: 1.1;

    /* Headings */
    --heading--font-family: var(--global--font-primary);
    --heading--font-size-h6: var(--global--font-size-xs);
    --heading--font-size-h5: var(--global--font-size-sm);
    --heading--font-size-h4: var(--global--font-size-lg);
    --heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
    --heading--font-size-h2: var(--global--font-size-xl);
    --heading--font-size-h1: var(--global--font-size-page-title);
    --heading--letter-spacing-h6: 0;
    --heading--letter-spacing-h5: 0;
    --heading--letter-spacing-h4: var(--global--letter-spacing);
    --heading--letter-spacing-h3: var(--global--letter-spacing);
    --heading--letter-spacing-h2: var(--global--letter-spacing);
    --heading--letter-spacing-h1: var(--global--letter-spacing);
    --heading--line-height-h6: var(--global--line-height-heading);
    --heading--line-height-h5: var(--global--line-height-heading);
    --heading--line-height-h4: var(--global--line-height-heading);
    --heading--line-height-h3: var(--global--line-height-heading);
    --heading--line-height-h2: var(--global--line-height-heading);
    --heading--line-height-h1: var(--global--line-height-page-title);
    --heading--font-weight: normal;
    --heading--font-weight-page-title: 300;
    --heading--font-weight-strong: 600;

    /* Block: Latest posts */
    --latest-posts--title-font-family: var(--heading--font-family);
    --latest-posts--title-font-size: var(--heading--font-size-h3);
    --latest-posts--description-font-family: var(--global--font-secondary);
    --latest-posts--description-font-size: var(--global--font-size-sm);
    --list--font-family: var(--global--font-secondary);
    --definition-term--font-family: var(--global--font-primary);

    /* Colors */
    --global--color-black: #000;
    --global--color-dark-gray: #28303d;
    --global--color-gray: #39414d;
    --global--color-light-gray: #f0f0f0;
    --global--color-green: #d1e4dd;
    --global--color-blue: #d1dfe4;
    --global--color-purple: #d1d1e4;
    --global--color-red: #e4d1d1;
    --global--color-orange: #e4dad1;
    --global--color-yellow: #eeeadd;
    --global--color-white: #fff;
    --global--color-white-50: rgba(255, 255, 255, 0.5);
    --global--color-white-90: rgba(255, 255, 255, 0.9);
    --global--color-primary: var(--global--color-dark-gray);
    /* Body text color, site title, footer text color. */
    --global--color-secondary: var(--global--color-gray);
    /* Headings */
    --global--color-primary-hover: var(--global--color-primary);
    --global--color-background: var(--global--color-green);
    /* Mint, default body background */
    --global--color-border: var(--global--color-primary);
    /* Used for borders (separators) */

    /* Spacing */
    --global--spacing-unit: 20px;
    --global--spacing-measure: unset;
    --global--spacing-horizontal: 25px;
    --global--spacing-vertical: 30px;

    /* Elevation */
    --global--elevation: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);

    /* Forms */
    --form--font-family: var(--global--font-secondary);
    --form--font-size: var(--global--font-size-sm);
    --form--line-height: var(--global--line-height-body);
    --form--color-text: var(--global--color-dark-gray);
    --form--color-ranged: var(--global--color-secondary);
    --form--label-weight: 500;
    --form--border-color: var(--global--color-secondary);
    --form--border-width: 3px;
    --form--border-radius: 0;
    --form--spacing-unit: calc(0.5 * var(--global--spacing-unit));

    /* Cover block */
    --cover--height: calc(15 * var(--global--spacing-vertical));
    --cover--color-foreground: var(--global--color-white);
    --cover--color-background: var(--global--color-black);

    /* Buttons */
    --button--color-text: var(--global--color-background);
    --button--color-text-hover: var(--global--color-secondary);
    --button--color-text-active: var(--global--color-secondary);
    --button--color-background: var(--global--color-secondary);
    --button--color-background-active: var(--global--color-background);
    --button--font-family: var(--global--font-primary);
    --button--font-size: var(--global--font-size-base);
    --button--font-weight: 500;
    --button--line-height: 1.5;
    --button--border-width: 3px;
    --button--border-radius: 0;
    --button--padding-vertical: 15px;
    --button--padding-horizontal: calc(2 * var(--button--padding-vertical));

    /* entry */
    --entry-header--color: var(--global--color-primary);
    --entry-header--color-link: currentColor;
    --entry-header--color-hover: var(--global--color-primary-hover);
    --entry-header--color-focus: var(--global--color-secondary);
    --entry-header--font-size: var(--heading--font-size-h2);
    --entry-content--font-family: var(--global--font-secondary);
    --entry-author-bio--font-family: var(--heading--font-family);
    --entry-author-bio--font-size: var(--heading--font-size-h4);

    /* Header */
    --branding--color-text: var(--global--color-primary);
    --branding--color-link: var(--global--color-primary);
    --branding--color-link-hover: var(--global--color-secondary);
    --branding--title--font-family: var(--global--font-primary);
    --branding--title--font-size: var(--global--font-size-lg);
    --branding--title--font-size-mobile: var(--heading--font-size-h4);
    --branding--title--font-weight: normal;
    --branding--title--text-transform: uppercase;
    --branding--description--font-family: var(--global--font-secondary);
    --branding--description--font-size: var(--global--font-size-sm);
    --branding--logo--max-width: 300px;
    --branding--logo--max-height: 100px;
    --branding--logo--max-width-mobile: 96px;
    --branding--logo--max-height-mobile: 96px;

    /* Main navigation */
    --primary-nav--font-family: var(--global--font-secondary);
    --primary-nav--font-family-mobile: var(--global--font-primary);
    --primary-nav--font-size: var(--global--font-size-md);
    --primary-nav--font-size-sub-menu: var(--global--font-size-xs);
    --primary-nav--font-size-mobile: var(--global--font-size-sm);
    --primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
    --primary-nav--font-size-button: var(--global--font-size-xs);
    --primary-nav--font-style: normal;
    --primary-nav--font-style-sub-menu-mobile: normal;
    --primary-nav--font-weight: normal;
    --primary-nav--font-weight-button: 500;
    --primary-nav--color-link: var(--global--color-primary);
    --primary-nav--color-link-hover: var(--global--color-primary-hover);
    --primary-nav--color-text: var(--global--color-primary);
    --primary-nav--padding: calc(0.66 * var(--global--spacing-unit));
    --primary-nav--border-color: var(--global--color-primary);

    /* Pagination */
    --pagination--color-text: var(--global--color-primary);
    --pagination--color-link-hover: var(--global--color-primary-hover);
    --pagination--font-family: var(--global--font-secondary);
    --pagination--font-size: var(--global--font-size-lg);
    --pagination--font-weight: normal;
    --pagination--font-weight-strong: 600;

    /* Footer */
    --footer--color-text: var(--global--color-primary);
    --footer--color-link: var(--global--color-primary);
    --footer--color-link-hover: var(--global--color-primary-hover);
    --footer--font-family: var(--global--font-primary);
    --footer--font-size: var(--global--font-size-sm);

    /* Block: Pull quote */
    --pullquote--font-family: var(--global--font-primary);
    --pullquote--font-size: var(--heading--font-size-h3);
    --pullquote--font-style: normal;
    --pullquote--letter-spacing: var(--heading--letter-spacing-h4);
    --pullquote--line-height: var(--global--line-height-heading);
    --pullquote--border-width: 3px;
    --pullquote--border-color: var(--global--color-primary);
    --pullquote--color-foreground: var(--global--color-primary);
    --pullquote--color-background: var(--global--color-background);
    --quote--font-family: var(--global--font-secondary);
    --quote--font-size: var(--global--font-size-md);
    --quote--font-size-large: var(--global--font-size-xl);
    --quote--font-style: normal;
    --quote--font-weight: 700;
    --quote--font-weight-strong: bolder;
    --quote--font-style-large: normal;
    --quote--font-style-cite: normal;
    --quote--line-height: var(--global--line-height-body);
    --quote--line-height-large: 1.35;
    --separator--border-color: var(--global--color-border);
    --separator--height: 1px;

    /* Block: Table */
    --table--stripes-border-color: var(--global--color-light-gray);
    --table--stripes-background-color: var(--global--color-light-gray);
    --table--has-background-text-color: var(--global--color-dark-gray);

    /* Widgets */
    --widget--line-height-list: 1.9;
    --widget--line-height-title: 1.4;
    --widget--font-weight-title: 700;
    --widget--spacing-menu: calc(0.66 * var(--global--spacing-unit));

    /* Admin-bar height */
    --global--admin-bar--height: 0px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", serif;
    background-color: #fff;
    font-size: 16px;
}

.bg-banner-blue {
    background: #0143B514 !important;
}

.bg-banner-blue .badge-box {
    background: #0143B514 !important;
}

/*main.site-main {
    overflow: hidden;
}*/
body:not(.home) main#main {
    padding-top: 70px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-60 {
    padding-bottom: 60px;
}

p {
    margin-bottom: 1rem;
}

main#main {
    padding-top: 0;
    padding-bottom: 0;
}

.wp-custom-logo .site-header {
    align-items: center;
    padding: 0px 15px;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    outline: none;

}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "Montserrat", serif;
}

a:focus,
input:focus,
button:focus {
    outline: none;
}


/* .banner_heading {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 64px;
    line-height: 78px;
    letter-spacing: -2px;
    color: linear-gradient(180deg, #000000 25%, #0C1711 343.26%);
}

.banner_dec {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    color: #5A6475;
} */
.header_inr {
    background: transparent;
    position: fixed;
    top: 32px;
    width: 100%;
    z-index: 99;
}

header#masthead {
    border-radius: 500px;
    border-width: 1px;
    background: #FAFAFA;
    position: relative;
    z-index: 9999;
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 78px;
    margin-bottom: 15px;
    color: #1D1D1D;

}

.site-branding {
    margin-top: 0 !important;
}

.site-logo {
    position: relative;
    z-index: 1;
}

.site-logo .custom-logo {
    max-width: var(--branding--logo--max-width);
    max-height: var(--branding--logo--max-height);
    height: auto;
    max-width: 137px;
    margin-left: 13px;
}

.primary-navigation {
    position: initial;
}

.primary-menu-container {
    position: initial !important;
}

#primary-menu-list {
    position: initial;
}

#primary-menu-list .menu-item {
    position: initial;
}

.primary-navigation a:hover {
    text-decoration: none;
}

#masthead:has(.sub-menu-toggle[aria-expanded=true]):after {
    top: -32px;
    position: absolute;
    width: 200%;
    height: calc(100% + 216px);
    left: 50%;
    background: #fff;
    z-index: -1;
    transform: translateX(-50%);
    content: '' !important;
    margin-top: 0;

}

.primary-navigation .sub-menu .menu-item>a:before {
    content: none !important;
}

#masthead:before {
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    content: '' !important;
    margin-top: 0;
    border: 1px solid #DFDFDF;
    border-radius: 500px;

}

.primary-navigation>div>.menu-wrapper>li>.sub-menu {
    padding: 40px 0px 61px 0;
    background: #fff;
    width: 100%;
    /*padding-top: 10px;*/
    border: none;
    top: calc(100% + 0px) !important;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    z-index: 1;

}

.primary-navigation>div>.menu-wrapper>li>.sub-menu li {
    background: linear-gradient(104.66deg, #DCDEFF 4.14%, #FFFFFF 119.29%);
    width: 100%;
    border-radius: 8px;
}

.primary-navigation>div>.menu-wrapper>li>.sub-menu:before,
.primary-navigation>div>.menu-wrapper>li>.sub-menu:after {
    content: none;
}

.primary-navigation>div>.menu-wrapper>li>.sub-menu li a {
    padding: 26px 24px;
    font-weight: 400 !important;
    width: max-content;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    border-radius: 8px;
    width: 100%;
}

.primary-navigation>div>.menu-wrapper>li>.sub-menu li a:focus {
    background: transparent;
}

.primary-navigation>div>.menu-wrapper>li>.sub-menu li a img {
    width: 30px !important;
    height: 30px !important;
    background: #fff;
    padding: 2px;
    border-radius: 3px;
}

.primary-navigation>div>.menu-wrapper {
    align-items: center;
    gap: 28px;
}

.primary-navigation .sub-menu .menu-item>a:before {
    position: absolute;
    content: '';
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #0143b5;
    transition: width .3s ease, right .3s ease;
    left: 0;
    display: block;
}

.primary-navigation .current-menu-item>a:first-child,
.primary-navigation .current_page_item>a:first-child {
    text-decoration: none !important;
    color: #dc4238;
}

.primary-navigation .primary-menu-container>ul>.menu-item.hover>a:hover:after,
.primary-navigation .primary-menu-container>ul>.menu-item.hover>a:after {
    width: 100%;
}

.primary-navigation .primary-menu-container>ul>.menu-item.hover>a {
    color: #FF462D;
}

.primary-navigation>div>.menu-wrapper li {
    width: max-content;
    background: transparent;
}

.primary-navigation .sub-menu .menu-item>a:hover {
    color: #0143b5;
}

.primary-navigation .sub-menu .menu-item>a:hover:before {
    width: 100%;
}

.primary-navigation .primary-menu-container>ul>.menu-item>a+.sub-menu-toggle {
    display: none;
}

.primary-navigation .primary-menu-container>ul>.menu-item>a {
    position: relative;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 21px 16px;
}

.primary-navigation .primary-menu-container>ul>.menu-item>a:hover {
    text-decoration: none !important;
    color: #114BB0;
}

.primary-navigation .primary-menu-container>ul>.menu-item:has(.sub-menu)>a {
    padding-right: 16px;
}

.primary-navigation .primary-menu-container>ul>.menu-item:has(.sub-menu)>a:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 4' fill='none'%3E%3Cpath d='M0.5 0.5L3.5 3.5L6.5 0.5' stroke='currentcolor' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    right: 0px;
    top: 50%;
    width: 8px;
    transform: translateY(-57%);

}

.primary-navigation .primary-menu-container>ul>.menu-item-has-children:hover>a:after {
    transform: rotate(180deg) translateY(39%);

}

.primary-navigation .current-menu-item>a:first-child,
.primary-navigation .current_page_item>a:first-child {
    text-decoration: none !important;
    color: #114BB0;
}

.banner-text p {
    color: #5A6475;
    font-size: 20px;
    line-height: 28px;
}

.menu_btn {
    position: relative;
    z-index: 1;
}

.menu_btn .common_btn {
    margin-top: 0;
}

.common_btn {
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    opacity: 1;
    border-radius: 99px;
    padding: 11px 20px;
    gap: 6px;
    background: #0143B5;
    box-shadow: 0px 0px 0px 2px #0143B5, 0px 1px 2px 0px #0143B580;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 24px;
    transition: all ease-in-out 0.3s;
}

.title-box {
    max-width: 760px;
    margin: 0 auto;
}

.title-box h2 {
    color: #1D1D1D;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2px;
    font-weight: 500;
}

.title-box .badge-box {
    display: inline-block;
    margin-bottom: 10px;
}
.badge-box:empty {
    display: none;
}
.title-box p {
    color: #5A6475;
    font-size: 18px;
    line-height: 24px;
}

.title-box h6 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #5A6475;
}

.badge-box {
    background: #0143B514;
    width: max-content;
    color: #1D1D1D;
    padding: 8px 17px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-radius: 72px;

}

.top-header {
    background: #DFDFDF;
    padding: 5px 0;
    line-height: 1;
}

.top_nav ul li a.login-btn img {
    padding-left: 5px;
    transition: all 1s ease;
    width: 25px;
}

.banner_svg {
    position: absolute;
    top: -16px;
    /*height: 0px;*/
    overflow: hidden;
    transition: all 4s linear;
}

.banner_svg.aos-animate {
    /*height: 543px;*/
}


aside.widget-area.footer-widget {
    background: #0143B5;
    max-width: 100%;
    grid-template-columns: 100%;
    padding-top: 90px;
    padding-top: 70px;
    margin-top: 20px;
}

h2.wp-block-heading,
h2.widget-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

footer#colophon {
    max-width: 100%;
    padding-bottom: 20px;
    background: #000;
    padding-top: 45px;
}

.footer-widget nav {
    margin: 0;
}

.footer-widget .row>* {
    width: auto;
}

.footer-widget .row {
    justify-content: space-between;
}

.widget ul li {
    margin-bottom: 14px;
}

.col1 p:empty {
    display: none;
}

img.footer-logo {
    width: 128px;
    margin-bottom: 40px;
}

.footer-social-icon {
    display: flex;
    gap: 4px;
}

.footer-social-icon>div {

    display: flex;

}

.footer-social-icon>div a {
    padding: 4px 14px;
    border-radius: 999px;
    background: #ffffff10;
}

.footer-social-icon img {
    width: 100%;
}

.footer_para {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 32px;

}

section#text-2 {
    width: 40%;
    padding-right: 53px;
}

section#nav_menu-2 {
    width: 20%;
}

section#nav_menu-3 {
    width: 20%;
}

section#text-3 {
    width: 20%;
}

.contact-num,
.contact-email,
.contact-address {
    display: flex;
    gap: 15px;
    width: 100%;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;

}

.site-footer {
    display: none;
}

section#block-11 {
    width: 50%;
    margin-bottom: 80px;
}

section#block-12 {
    width: 50%;
    margin-bottom: 80px;
}

.social-icon ul {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-top: 50px;
}

.footer-widget .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Montserrat", serif;
}

.footer-widget ul#menu-news.menu li,
.footer-widget ul#menu-technology-partner.menu li {
    line-height: normal;
}

.footer-widget ul#menu-professional-services li:first-child,
.footer-widget ul#menu-managed-services li:first-child {
    line-height: normal;
}

section#block-12 label {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-family: "Montserrat", serif;
    font-weight: 400;
}

section#block-12 .wp-block-search {
    max-width: 465px;
    float: right;
    width: 100%;
    padding-top: 65px;
}

.wp-block-search__inside-wrapper {
    column-gap: 10px;
}

.wp-block-search .wp-block-search__input::placeholder {
    color: rgba(161, 161, 161, 1);
}

.wp-block-search .wp-block-search__input {
    background: transparent;
    border: 1px solid #fff;
    padding: 0 15px;
    color: #fff;
    font-size: 20px;
    font-family: "Montserrat", serif;
    font-weight: 400;
}

button.wp-block-search__button svg {
    display: none;
}


.footer-widget ul#menu-news.menu li a,
.footer-widget ul#menu-technology-partner.menu li a,
.footer-widget ul#menu-professional-services li:first-child a,
.footer-widget ul#menu-managed-services li:first-child a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.footer-nav ul li {
    margin-right: 50px;
}

.footer-nav ul li:last-child {
    margin-right: 0;
}

footer#colophon .row {
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
}

footer#colophon p {
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
    font-family: "Montserrat", serif;
    font-weight: 400;
}

.top_nav ul li a.login-btn {
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #fff;
    margin-left: 28px;
    margin-right: 32px;
}

.top_nav ul li a.login-btn:hover {
    background: #fff;
}

.top_nav ul li a.login-btn:hover img {
    filter: invert(1);
}

.top_nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top_nav ul li a:hover,
.top_nav ul li a:focus {
    text-decoration: none;
    outline: none;
    color: #000;
}

.top_nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    font-family: "Montserrat", serif;
    transition: all 1s ease;
    padding: var(--primary-nav--padding) 0;
    display: inline-block;
    padding: 6px 12px;
}

.primary-navigation {
    margin-left: inherit;
}

.orbit {
    width: 100%;
}

.ring-1 li {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #DBDDFF 0%, #FFFFFF 100%);
    color: #fff;
    text-align: center;
    display: block;
}

.orbit-icon {
    width: 100%;
}

.orbit-icon img {
    width: 80%;
}

.orbit-wrap {
    list-style: none;
}

.orbit-wrap>li {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.orbit-wrap>li:hover ul {
    border-width: 2px;
    border-color: #fff;
}

.orbit-wrap>li:hover~li ul {
    border-color: rgba(255, 255, 255, 0.2);
}

.orbit-wrap>li:hover~li ul li {
    opacity: 0.4;
}

/* Hover kisi bhi orbit item par ho to sab animation pause */
.orbit-wrap:hover ul[class^="ring"],
.orbit-wrap:hover ul[class^="ring"] img {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

ul[class^="ring"] {
    transition: all 300ms ease-in-out;
}

ul[class^="ring"] li {
    transition: all 300ms ease-in-out;
}


.ring-1 {
    width: 31em;
    height: 31em;
    background: #F9F9FE69;
    border: 1px solid #0143B526;
    -webkit-animation: clockwiseRotate 30s linear infinite;
    animation: clockwiseRotate 30s linear infinite;
}

.ring-1 img {
    -webkit-animation: counterClockwiseRotate 30s linear infinite;
    animation: counterClockwiseRotate 30s linear infinite;
}

.ring-1 span.orbit-icon svg {
    -webkit-animation: counterClockwiseRotate 30s linear infinite;
    animation: counterClockwiseRotate 30s linear infinite;
}

.ring-1>*:nth-of-type(1) {
    transform: rotate(95deg) translate(14.25em) rotate(-95deg);
}

.ring-1>*:nth-of-type(2) {
    transform: rotate(155deg) translate(16em) rotate(-155deg);
}

.ring-1>*:nth-of-type(3) {
    transform: rotate(215deg) translate(17em) rotate(-215deg);
}

.ring-1>*:nth-of-type(4) {
    transform: rotate(275deg) translate(16em) rotate(-275deg);
}

.ring-1>*:nth-of-type(5) {
    transform: rotate(335deg) translate(15.2em) rotate(-335deg);
}

.ring-1>*:nth-of-type(6) {
    transform: rotate(395deg) translate(14em) rotate(-395deg);
}

.ring-3 {
    width: 316px;
    background: #0143B505;
    border: 1px solid #0143B526;
    height: 316px;
    -webkit-animation: counterClockwiseRotate 20s linear infinite;
    animation: counterClockwiseRotate 20s linear infinite;
}

.ring-3 img {
    -webkit-animation: clockwiseRotate 20s linear infinite;
    animation: clockwiseRotate 20s linear infinite;
}

.ring-3>*:nth-of-type(1) {
    transform: rotate(126.6666666667deg) translate(7em) rotate(-126.6666666667deg);
}

.ring-3>*:nth-of-type(2) {
    transform: rotate(253.3333333333deg) translate(7em) rotate(-253.3333333333deg);
}

.ring-3>*:nth-of-type(3) {
    transform: rotate(380deg) translate(7em) rotate(-380deg);
}

ul[class^="ring"] {
    border: 1px solid #0143B526;
    position: relative;
    padding: 0;
    border-radius: 50%;
    list-style: none;
    box-sizing: content-box;
}

ul[class^="ring"] li {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.8em;
}

/*
  center;
*/
.orbit-center {
    z-index: 5;
    font-size: 2em;
    line-height: 1.8em;
    text-align: center;
    background: linear-gradient(180deg, #DCDEFF 0%, #FFFFFF 100%);
    border-radius: 16px;
    width: 83px;
    height: 87px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.orbit-center__icon {
    width: 51px;
}

@-webkit-keyframes clockwiseRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes clockwiseRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes counterClockwiseRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes counterClockwiseRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* 
icons 
*/


.sec_padd {
    padding: 60px 0;
}

.hero_sec {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-blob {
    position: absolute;
    width: 998px;
    height: 998px;
    opacity: 0.8;
    border-radius: 10226px;
    filter: blur(500px);
    z-index: -1;
}

.hero_bg1 {
    background: #FFC400;
    animation: blobMove3 25s ease-in-out infinite;

}

.hero_bg2 {
    background: #0143B580;
    animation: blobMove4 25s ease-in-out infinite;
}

.hero_circle_row {
    margin-top: 180px;
}

.box_shade {
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.banner-video {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 30px;

}

.hero-banner-vdo {
    margin-top: 200px;
}

.banner-video figure {
    border-radius: 30px;
}

.banner-video .video-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.banner-video:hover .video-image img {
    transform: scale(1.1);
}

.banner-video .video-image a {
    position: relative;
    z-index: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.video-play-button a {
    position: relative;
    background-color: var(--white-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.video_play_btn {
    background: #00000080;
    backdrop-filter: blur(3.453575372695923px);
    width: 129px;
    height: 77px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 22px;
    position: relative;
}

.video_play_btn img {
    width: 37px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-15px, -50%);
}

.video_play_btn1 {
    background: #00000080;
    backdrop-filter: blur(3.453575372695923px);
    width: 129px;
    height: 77px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 22px;
    position: relative;
}

.video_play_btn1 img {
    width: 37px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-15px, -50%);
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 36px;
    color: var(--accent-color);
}

.slider1 {
    margin: auto;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: auto;

}

.slider1 .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    gap: 47px;
}

.slider1 .slide {
    height: 48px;
}

.slider1 .slide img {
    height: 100%;
}

.slider2 {
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    background: linear-gradient(180deg, rgba(255, 196, 0, 0) -11.5%, rgba(255, 255, 255, 0.7) 104.87%);

}

.slider2 .slide-track {
    animation: scrollreverse 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    gap: 32px;
}

.slider2 .slide {
    height: 48px;
}

.slider2 .slide img {
    height: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scrollreverse {
    0% {
        transform: translateX(calc(-250px * 7));
    }

    100% {

        transform: translateX(0);
    }
}

.service_box {
    border-radius: 24px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #5A647533;
    width: 100%;
    position: relative;
}

.service_box img {
    width: 100%;
}

.service_box .box-content {
    padding-top: 24px;
}

.service_box .box-content h6 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0;
    color: #1D1D1D;
}

.service_box .box-content p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #5A6475;
    margin-bottom: 0;
}

.service_box .service_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service_link:focus {
    background: transparent !important;
}

.home_tab_sec {
    background: linear-gradient(0deg, rgba(1, 67, 181, 0.1), rgba(1, 67, 181, 0.1));
    box-shadow: 147px -38px 126px 0px #0107B50D;
    border-radius: 34px;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.tab_slider_card {
    border: 1px solid #5A647533;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}

.tab_slider_card .tab_img_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 44%;
    width: auto !important;
}

.tab_slider_card .img-box {
    position: relative;
}

.tab_slider_card .service_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.tab_slider_card .box-content {
    margin-bottom: 39px;
    position: relative;
    z-index: 2;
}

.tab_slider_card .img-box {
    position: relative;
    z-index: 2;
}

.tab_slider_card .img-box img {
    width: 100%;
}

.tab_slider_card h6 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 11px;
    line-height: 18px;
    color: #1D1D1D;
}

.tab_slider_card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #5A6475;
}

.tab-slider .slick-list {
    overflow: visible;
    position: relative;
    padding-right: 15% !important;
}

.tab-slider .slick-list:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 100%;
    background-color: #e5ecf7;
    z-index: 1;
}

.checks-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.checks-back img {
    position: absolute;
    z-index: 0;

}

.checks-back:before {
    content: '';
    width: 131%;
    height: 141%;
    top: -9%;
    left: -9%;
    bottom: 0;
    z-index: 1;
    position: absolute;
    background: radial-gradient(39.81% 39.81% at 50% 48.43%, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.custom-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0;
}

.custom-dots .slick-dots {
    position: unset;
}

.custom-dots li {
    list-style: none;
    width: auto;
}


.custom-dots li button:before {
    content: none;
}

/* Active Dot */
.custom-dots .slick-active button {
    width: 57px !important;
    background: #0107B5CC !important;
}

.custom-dots button {
    border: none;
    height: 12px !important;
    width: 24px !important;
    border-radius: 20px;
    background: #11145014 !important;
    font-size: 0;
    transition: .3s;
}

.tab-slider-nav {
    margin: 40px auto 0;
    background: #FFFFFF80;
    border: 1px solid #DDDFE2;
    padding: 12px 20px;
    border-radius: 99px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tab-slider-nav .prev-btn,
.tab-slider-nav .next-btn {
    width: 56px;
    height: 56px;
    opacity: 1;
    border-radius: 32px;
    padding: 18px;
    background: #0143B5 !important;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.tab-slider-nav .prev-btn i,
.tab-slider-nav .next-btn i {
    font-size: 40px;
    color: #fff;
}

.tab-slider-nav .slick-disabled {
    width: 56px;
    height: 56px;
    opacity: 1;
    border-radius: 32px;
    padding: 18px;
    background: #EFEFEF !important;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.tab-slider-nav .slick-disabled i {
    color: #CACACA !important;
    font-size: 40px;
}

.home_tab_sec .title-box {
    padding: 55px 0;
}

.business-img-wrapper figure {
    border-radius: 30px;
}

.business-img-wrapper img {
    width: 100%;
}

.business-img-wrapper {
    margin: 50px auto;
    border-radius: 24px;
    overflow: hidden;
}

img.animate1 {
    position: absolute;
}

img.animate2 {
    position: absolute;
}

.comprehnsive-business {
    overflow: hidden;
}

/* 
.comprehnsive-business::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: url("../img/animate-bg.svg") no-repeat bottom/contain;


    animation: borderMove 18s linear infinite;
}

.comprehnsive-business::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: url("../img/animate-bg2.svg") no-repeat bottom/contain;


    animation: borderMove 18s linear infinite;
}
*/
.animated-sec-content {
    z-index: 1;
}

@keyframes borderMove {

    /* Top Left */
    0% {
        top: -20%;
        left: -25%;
        transform: rotate(0deg);
    }

    /* Top Right */
    25% {
        top: 0%;
        left: calc(100% - 400px);
        transform: rotate(60deg);
    }

    /* Bottom Right */
    50% {
        top: calc(100% - 400px);
        left: calc(100% - 800px);
        transform: rotate(150deg);
    }

    /* Bottom Left */
    75% {
        top: calc(100% - 300px);
        left: 0%;
        transform: rotate(270deg);
    }

    /* Back To Start */
    100% {
        top: 0%;
        left: -25%;
        transform: rotate(360deg);
    }
}

@keyframes borderMove1 {

    /* Top Left */
    0% {
        top: -20%;
        left: -25%;
        transform: rotate(0deg);
    }

    /* Top Right */
    25% {
        top: 0%;
        left: calc(100% - 400px);
        transform: rotate(60deg);
    }

    /* Bottom Right */
    50% {
        top: calc(100% - 400px);
        left: calc(100% - 800px);
        transform: rotate(150deg);
    }

    /* Bottom Left */
    75% {
        top: calc(100% - 300px);
        left: 0%;
        transform: rotate(270deg);
    }

    /* Back To Start */
    100% {
        top: 0%;
        left: -25%;
        transform: rotate(360deg);
    }
}




/* Common Blob Style */
.blob {
    position: absolute;
    width: 550px;
    height: 350px;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.6;
}

/* First Blob */
.animate1 {
    background: #E4B20D;

    animation: blobMove1 25s ease-in-out infinite;
}

/* Second Blob */
.animate2 {
    background: #0143B5;

    animation: blobMove2 30s ease-in-out infinite;
}

/* Blob 1 Border Movement */
@keyframes blobMove1 {

    0% {
        top: 0;
        left: 0;
    }

    25% {
        top: 0;
        left: calc(100% - 350px);
    }

    50% {
        top: calc(100% - 350px);
        left: calc(100% - 350px);
    }

    75% {
        top: calc(100% - 350px);
        left: 0;
    }

    100% {
        top: 0;
        left: 0;
    }
}

/* Blob 2 Opposite Movement */
@keyframes blobMove2 {

    0% {
        bottom: 0;
        right: 0;
    }

    25% {
        bottom: 0;
        right: calc(100% - 350px);
    }

    50% {
        bottom: calc(100% - 350px);
        right: calc(100% - 350px);
    }

    75% {
        bottom: calc(100% - 350px);
        right: 0;
    }

    100% {
        bottom: 0;
        right: 0;
    }
}

.digital-solution-sec {
    background: #0143B505;
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-vertical-slider .slick-dots {
    display: none !important;
}

.experience-team-card {
    border-radius: 16px;
    border-width: 1px;
    padding: 48px;
    margin-bottom: 30px;
    border: 1px solid #DEE0E3;
    background: conic-gradient(from 250deg at 78% 20%, #ffffff -30deg, rgb(1 67 181 / 0.2) 330deg, #fff 360deg);
    background-color: #fff;
}

.experience-team-card img {
    width: 30px;
}

.service-vertical-slider .slide:nth-child(2) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(255, 243, 193, 0.45) 0%,
            rgba(255, 243, 193, 0.25) 30%,
            rgba(255, 243, 193, 0.12) 50%,
            transparent 75%),
        conic-gradient(from -82.05deg at 88.43% 20.02%,
            rgba(255, 243, 193, 0.2) 0deg,
            #FFF3C1 269.56deg,
            rgba(255, 243, 193, 0.2) 360deg);
    background-color: #fff;
}

.service-vertical-slider .slide:nth-child(3) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(192, 211, 244, 0.35) 0%,
            rgba(192, 211, 244, 0.18) 30%,
            rgba(192, 211, 244, 0.08) 50%,
            transparent 70%),
        conic-gradient(from 208.3deg at 88.43% 20.02%,
            #ffffff 0deg,
            rgba(192, 211, 244, 0.2) 68.7deg,
            #ffffff 360deg);
    background-color: #fff;
}

.service-vertical-slider .slide:nth-child(4) .experience-team-card {
    background:
        radial-gradient(circle at 53.86% 35.3%,
            rgba(255, 196, 0, 0.35) 0%,
            rgba(255, 196, 0, 0.18) 30%,
            rgba(255, 196, 0, 0.08) 50%,
            transparent 70%),
        conic-gradient(from 70.77deg at 53.86% 35.3%,
            rgba(255, 196, 0, 0.05),
            rgba(255, 196, 0, 0.25));
    background-color: #fff;
}

.service-vertical-slider .slide:nth-child(5) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(1, 67, 181, 0.18) 0%,
            rgba(1, 67, 181, 0.08) 25%,
            transparent 60%),
        conic-gradient(from 220.84deg at 88.43% 20.02%,
            rgba(1, 67, 181, 0.08) 0deg,
            #ffffff 360deg);
    background-color: #fff;
}

.service-vertical-slider .slick-list .slide:nth-child(2) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(255, 243, 193, 0.45) 0%,
            rgba(255, 243, 193, 0.25) 30%,
            rgba(255, 243, 193, 0.12) 50%,
            transparent 75%),
        conic-gradient(from -82.05deg at 88.43% 20.02%,
            rgba(255, 243, 193, 0.2) 0deg,
            #FFF3C1 269.56deg,
            rgba(255, 243, 193, 0.2) 360deg);
    background-color: #fff;
}

.service-vertical-slider .slick-list .slide:nth-child(3) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(192, 211, 244, 0.35) 0%,
            rgba(192, 211, 244, 0.18) 30%,
            rgba(192, 211, 244, 0.08) 50%,
            transparent 70%),
        conic-gradient(from 208.3deg at 88.43% 20.02%,
            #ffffff 0deg,
            rgba(192, 211, 244, 0.2) 68.7deg,
            #ffffff 360deg);
    background-color: #fff;
}

.service-vertical-slider .slick-list .slide:nth-child(4) .experience-team-card {
    background:
        radial-gradient(circle at 53.86% 35.3%,
            rgba(255, 196, 0, 0.35) 0%,
            rgba(255, 196, 0, 0.18) 30%,
            rgba(255, 196, 0, 0.08) 50%,
            transparent 70%),
        conic-gradient(from 70.77deg at 53.86% 35.3%,
            rgba(255, 196, 0, 0.05),
            rgba(255, 196, 0, 0.25));
    background-color: #fff;
}

.service-vertical-slider .slick-list .slide:nth-child(5) .experience-team-card {
    background:
        radial-gradient(circle at 88.43% 20.02%,
            rgba(1, 67, 181, 0.18) 0%,
            rgba(1, 67, 181, 0.08) 25%,
            transparent 60%),
        conic-gradient(from 220.84deg at 88.43% 20.02%,
            rgba(1, 67, 181, 0.08) 0deg,
            #ffffff 360deg);
    background-color: #fff;
}

.experience-team-card .card-icon {
    width: 64px;
    height: 64px;
    angle: 0 deg;
    opacity: 1;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
}

.experience-team-card .card-txt {
    max-width: 348px;
}

.experience-team-card h4 {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #1D1D1D;
    margin-bottom: 12px;
}

.experience-team-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #5A6475;
    margin-bottom: 50px;
}

.sticky-md {
    position: -webkit-sticky;
    position: sticky;
}

.sticky-md.title-box {
    top: 100px !important;
}

.service-vertical-slider {
    position: relative;
}

.service-vertical-slider .slide {
    position: sticky;
    top: 120px;
    transform-origin: top center;
}

.service-vertical-slider .slide:nth-child(1) {
    top: 120px;
}

.service-vertical-slider .slide:nth-child(2) {
    top: 130px;
}

.service-vertical-slider .slide:nth-child(3) {
    top: 140px;
}

.service-vertical-slider .slide:nth-child(4) {
    top: 150px;
}

.service-vertical-slider .slide:nth-child(5) {
    top: 160px;
}



/* Play Button */

.vdo-sec {
    padding: 80px 0px 187px 0;
    position: relative;
    overflow: hidden;
}


.vdo-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* Video */
.vdo-box video {
    width: 100%;
    display: block;
}

/* Thumbnail Image */
.vdo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.vdo-blob {
    position: absolute;
    width: 800px;
    height: 360px;
    opacity: 1;
    border-radius: 999px;
    filter: blur(200px);
    z-index: 0;
}

.blob1 {
    background: #E4B20D;

    animation: blobMove3 25s ease-in-out infinite;
}

/* Second Blob */
.blob2 {
    background: #0143B5;

    animation: blobMove4 30s ease-in-out infinite;
}

@keyframes blobMove3 {

    0% {
        top: 0;
        left: 0;
        transform: rotate(0deg);
    }

    25% {
        top: 0;
        left: calc(100% - 350px);
        transform: rotate(90deg);
    }

    50% {
        top: calc(100% - 350px);
        left: calc(100% - 350px);
        transform: rotate(180deg);
    }

    75% {
        top: calc(100% - 350px);
        left: 0;
        transform: rotate(270deg);
    }

    100% {
        top: 0;
        left: 0;
        transform: rotate(360deg);
    }
}

@keyframes blobMove4 {

    0% {
        bottom: 0;
        right: 0;
        transform: rotate(0deg);
    }

    25% {
        bottom: 0;
        right: calc(100% - 350px);
        transform: rotate(-90deg);
    }

    50% {
        bottom: calc(100% - 350px);
        right: calc(100% - 350px);
        transform: rotate(-180deg);
    }

    75% {
        bottom: calc(100% - 350px);
        right: 0;
        transform: rotate(-270deg);
    }

    100% {
        bottom: 0;
        right: 0;
        transform: rotate(-360deg);
    }
}

.gallery-carousel {
    padding: 80px 0 50px 0;
    overflow: hidden;
}

.gallery-carousel .container-fluid {
    padding: 0;
}

.gallery-carousel-box {
    --gap: 10px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.gallery-scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: galleryscroll 30s linear infinite;
}

.gallery-scrolling-content:has(.gallery-image:last-child:nth-child(odd))+.gallery-scrolling-content .gallery-image {
    padding-top: 75px;
}

.gallery-scrolling-content:has(.gallery-image:last-child:nth-child(odd))+.gallery-scrolling-content .gallery-image:nth-child(even) {
    padding-top: 0px;
}

.gallery-scrolling-content:has(.gallery-image:last-child:nth-child(odd))+.gallery-scrolling-content .gallery-image:nth-child(even) .content {
    bottom: 75px;
}

.gallery-scrolling-content:has(.gallery-image:last-child:nth-child(odd))+.gallery-scrolling-content .gallery-image .content {
    bottom: 0px;
}

.gallery-scrolling-content .gallery-image {
    max-width: 400px;

}
.gallery-scrolling-content .gallery-image video, .gallery-scrolling-content .gallery-image img {
  
	aspect-ratio: 3 / 3.7;
    object-fit: cover;
}

@keyframes galleryscroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.gallery-scrolling-content .gallery-image img {
    border-radius: 30px;
    width: 100%;
}

.gallery-scrolling-content .gallery-image {
    max-width: 355px;
    position: relative;
    overflow: hidden;
}

.gallery-scrolling-content .gallery-image figure.image-anime:before {
    content: '';
    position: absolute;
    background: #00000033;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.gallery-scrolling-content .gallery-image figure {
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}

.gallery-image .content {
    position: absolute;
    z-index: 1;
    padding: 13px 0px 13px 15px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(169.77deg, rgba(102, 102, 102, 0) 0.65%, rgba(51, 51, 51, 0.25) 46.5%, rgba(0, 0, 0, 0.5) 92.36%);
    border-radius: 0 0 30px 30px;
    backdrop-filter: blur(4px)
}

.gallery-image .content h6 {
    font-family: Manrope;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
    letter-spacing: 0;
}

.gallery-image .content p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 0;
}

.gallery-image:nth-child(odd) .content {
    position: absolute;
    z-index: 1;
    bottom: 75px;
    left: 0px;
    background: linear-gradient(169.77deg, rgba(102, 102, 102, 0) 0.65%, rgba(51, 51, 51, 0.25) 46.5%, rgba(0, 0, 0, 0.5) 92.36%);
    border-radius: 0 0 30px 30px;
}

.gallery-carousel-box .gallery-scrolling-content .gallery-image:nth-child(even) {
    padding-top: 75px;
}

.gallery-carousel-box.pause .gallery-scrolling-content {
    animation-play-state: paused;
}

.gallery-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

/* HOVER EFFECT */
.gallery-image:hover .play-btn {
    opacity: 1;
}

.gallery-image:hover .content {
    opacity: 0 !important;
}



.tab-nav .nav-link {
    border: none !important;
    padding: 12px 40px;
    border-radius: 99px;
    background: transparent !important;
    border: none;
    color: rgba(90, 100, 117, 1) !important;
    font-size: 24px;
    font-weight: 500;
}

.tab-sec {
    background: rgba(242, 242, 251, 0.25);
}

.tab-sec-inner .tab-nav {
    border: none;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 99px;
    padding: 16px 40px;
    column-gap: 0px;
    margin: 0 auto;
    justify-content: space-between;
    transform: scale(0.95);
}

.tab-nav .nav-tabs {
    border: none;
    justify-content: space-between;
}

.tab-nav .nav-link.active {
    background: rgba(1, 67, 181, 0.08) !important;
    font-weight: 700;
    color: rgba(1, 67, 181, 1) !important;
}

.tab-nav {
    position: relative;
    overflow: hidden;
}

.tab-nav .nav-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.tab-nav .nav-tabs::-webkit-scrollbar {
    display: none;
}

/* Arrow Buttons */
.tab-arrow {
    border: none;
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0;
}

.tab-arrow.tab-next {
    right: 20px;
    display: none;
}

.tab-arrow.tab-prev {
    left: 20px;
    display: none;
}

.arrow-hidden {
    display: block !important;
}

.tab-arrow.tab-prev img {
    transform: rotate(180deg);
}

.tab-prev {
    left: 5px;
}

.tab-next {
    right: 5px;
}

.tab-nav:has(.arrow-hidden.tab-next) {
    padding-right: 80px;
}

.tab-nav:has(.arrow-hidden.tab-prev) {
    padding-left: 80px;
}

.vdo-banner1 {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.vdo-banner1 .banner-vdo-img-overlay:before {
    content: '';
    position: absolute;
    background: #00000040;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vdo-banner1 .video_play_btn1 {
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: block;
    z-index: 1;
    backdrop-filter: blur(3.453575372695923px)
}

.vdo-banner1 .overlay .heading {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 82px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
}

.vdo-banner1 .video-thumb,
.vdo-banner1 .video-player {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vdo-banner1 .video-player {
    display: none;
}

/* Overlay Content */
.vdo-banner1 .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
}

.faq-sec {
    padding: 56px 0 32px 0;
}

.faq-sec .title-box {
    padding-bottom: 40px;
}

.faq-inner-sec {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E9EAEB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 34px 103px 87.5px 0px #0107B50D;
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 23px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #1D1D1D;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-header:hover {
    color: #1D1F1E;
}

.faq-icon {
    font-size: 32px;
    color: #1D1F1E;
    transition: transform 0.3s ease;
    line-height: 0;
    font-weight: 400;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    content: "−";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 32px;
    color: #555;
}

.faq-item.active .faq-content {
    max-height: 200px;
    /* Adjust for content length */
    padding: 0px 32px 24px;
}

.faq-content p {
    color: #5A6475;
    font-size: 16px;
    line-height: 24px;
}

.home_tab_sec:has(.active[data-color="yellow"]) {
    background: linear-gradient(0deg, rgba(255, 196, 0, 0.1), rgba(255, 196, 0, 0.1));
    box-shadow: 147px -38px 126px 0px #0107B50D;


}

.home_tab_sec:has(.active[data-color="yellow"]) .tab-slider .slick-list:before {
    background-color: #fff9e5;
}


.counter-box {
    background: #F9FAFF;
    padding: 24px;
}

.counter {
    font-size: 48px;
    color: #1D1D1D;
    font-weight: 600;
    line-height: 56px;
}

.counter-box p {
    font-size: 16px;
    font-weight: 500;
    color: #5A6475;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 250px;
}

.box-img {
    overflow: hidden;
    border-radius: 24px;
}

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

.box-img-main {
    position: relative;
}

p {
    font-size: 16px;
    line-height: 20px;
}

.overlay-content {
    position: absolute;
    bottom: 24px;
    background-color: #1D1D1D80;
    left: 0;
    right: 0;
    padding: 24px 32px;
    color: #fff;
    width: 90%;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    border-radius: 12px;
}

.overlay-content h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
}

.overlay-content p {
    margin-bottom: 0;
    max-width: 470px;
}

.vision-box {
    display: flex;
    height: 100%;
}

.vision-box-inner {
    background: #F9FAFF;
    border-radius: 24px;
    padding: 55px 40px 15px;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    flex-direction: column;
}

.badge-box {
    background: #0143B514;
    width: max-content;
    color: #0143B5;
    padding: 8px 17px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-radius: 72px;
}

.vision-box-inner h4 {
    color: #1D1D1D;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.vision-box-inner p {
    color: #5A6475;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 540px;
}

.about-vision {
    position: relative;
    overflow: hidden;
}
.about-vision .vision-box-inner{
	justify-content:center;
}

.bg-1 {
    position: absolute;
    bottom: 0;
    z-index: 0;
    left: 0;
}

.bg-2 {
    position: absolute;
    bottom: 0;
    z-index: 0;
    left: 13.5%;
}

.about-vision .container {
    position: relative;
    z-index: 9;
}

.vision-box.vm-box {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
    height: auto;
}

.vision-box-inner.m-box {
    background: #FFC40014;
}

.m-box .badge-box {
    background: #FFC40026;
    color: #8D6C00;
}

.team-sec .col-md-3 {
    max-width: 304px;
}
.vm-sec .vision-row .col-md-6:has(.vision-box-inner){
	display:flex;
	align-items:center;
}
.team-sec .row {
    row-gap: 45px;
	justify-content:center;
}

.m-details {
    text-align: center;
    padding-top: 16px;
}

.m-details h5 {
    color: #1D1D1D;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 2px;
}

.m-details p {
    color: #5A6475;
}

.m-social {
    display: flex;
    justify-content: center;
    column-gap: 6px;
}

.b-bg {
    /* background: #104BB333; */
    overflow: hidden;
    border-radius: 18px;
}

.y-bg {
    /* background: #FFC40040; */
    overflow: hidden;
    border-radius: 18px;
}

.banner-inner-sec {
    border-radius: 40px;
    background: #0143B50D;
    padding: 95px 56px;
    background-image: url(../img/banner-bg-svg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
}

.banner-inner-sec .row,
.banner-inner-sec2 .row {
    align-items: center;
}

.banner-text .badge-box {
    margin-bottom: 10px;
    color: #1D1D1D;
}

.banner-right-img svg {
    max-width: 100%;
    overflow: visible;
}

.career-banner .banner-right-img img {
    position: relative;
    right: 85px;
    max-width: 120%;
}

.career-banner .banner-right-img svg {
    position: relative;
    right: 85px;
    max-width: 120%;
}

.page-template-template-career .tab-arrow {
    box-shadow: 0px 0px 18px #0000001f;
}

.work-sec {
    background: linear-gradient(180deg, rgba(255, 195, 0, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%), #fff8e1;
}

.work-box {
    background: #fff;
    padding: 24px 16px 16px;
}

.work-box .icon-box {
    padding: 5px;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(141.97deg, rgba(255, 196, 0, 0.5) 21.95%, rgba(255, 255, 255, 0) 147.58%);
    border-radius: 12px;
    margin-bottom: 15px;
}

.work-box p {
    color: rgba(90, 100, 117, 1);
    font-weight: 400;
}

.work-box h4 {
    color: rgba(29, 29, 29, 1);
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0;
}

.row.work-box-main {
    row-gap: 40px;
}

.work-sec .title-box p {
    color: rgba(24, 25, 31, 1);
}

.job-box {
    border: 1px solid rgba(222, 224, 227, 1);
    background: #fff;
    border-radius: 12px;
}

.job-post {
    padding: 24px 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.job-post p {
    margin-bottom: 0;
    color: rgba(90, 100, 117, 1);
}

.job-post .common_btn {
    margin-top: 0;
    box-shadow: 0px 0px 0px 2px rgba(1, 7, 181, 1), 0px 1px 2px 0px rgba(1, 7, 181, 0.5);
}

.job-des {
    border-top: 1px solid rgba(225, 225, 225, 1);
    padding: 16px 18px 24px;
    margin-top: 10px;
}

.job-des p {
    color: rgba(90, 100, 117, 1);
    max-width: 430px;
    line-height: 24px;
}

.job-des ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 24px;
}

.job-des ul li {
    display: flex;
    column-gap: 6px;
    color: rgba(29, 29, 29, 1);
    font-weight: 500;
}

nav.tab-nav {
    margin-bottom: 40px;
}

.tab-sec-inner .row {
    row-gap: 40px;
}

.job-post-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(29, 29, 29, 1);
    line-height: 28px;
}

.growth-sec .title-box {
    margin-bottom: 64px;
}

.growth-sec .box-img,
.growth-sec .box-img img,
.growth-sec .box-img-main {
    height: 100%;
    object-fit: cover;
    min-height: 670px;

}

.growth-row {
    display: flex;
    column-gap: 17px;
}

.growth-box.active {
    width: 70%;
}

.growth-box {
    width: 41.4%;
    cursor: pointer;
    transition: 0.5s all linear;
}

.active .overlay-content {
    margin: 0 0 0 40px;
}

.growth-sec {
    position: relative;
}

.growth-sec .container {
    position: relative;
    z-index: 9;
}

.growth-sec .bg-2 {
    right: 0;
    left: auto;
}

.assist-sec {
    background: rgba(251, 251, 254, 1);
}

.assist-sec .badge-box {
    color: rgba(29, 29, 29, 1);
    margin-bottom: 20px;
}

.assist-sec .work-box {
    padding: 32px 40px;
    border: 1px solid rgba(24, 24, 24, 0.1);
    border-radius: 16px;
    height: 100%;
}

.assist-sec .work-box h5 {
    color: rgba(24, 24, 24, 1);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.assist-sec .work-box p {
    display: flex;
    column-gap: 10px;
    max-width: 320px;
}

.assist-sec .work-box p a {
    text-decoration: none;
    color: rgba(24, 24, 24, 1);
    font-size: 16px;
    font-weight: 400;
}

.contact-form-sec {
    position: relative;
}

.contact-form-sec .title-box,
.assist-sec .title-box {
    max-width: 100%;
}

.assist-sec .title-box {
    margin-bottom: 50px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 18px 16px;
    margin-bottom: 0px;
    line-height: 36px;
    color: rgba(90, 100, 117, 1);
    border: 1px solid rgba(90, 100, 117, 0.5);
    border-radius: 6px;
    font-size: 24px;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 0;
}

input.wpcf7-form-control.wpcf7-submit {
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    opacity: 1;
    border-radius: 99px;
    padding: 11px 20px;
    gap: 6px;
    background: #28303d;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 24px;
    transition: all ease-in-out 0.3s;
    border: none;
}

.slider1 .slide img,
.slider2 .slide img {
    object-fit: contain;
}

.padd_container {
    padding: 48px 12px;
}

.padd_container .badge-box {
    background: rgba(255, 243, 193, 1);
    font-weight: 500;
}

.contact-top {
    position: relative;
}

.contact-form {}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 16px;
    margin-bottom: 0px;
    line-height: 36px;
    color: rgba(90, 100, 117, 1);
    border: 1px solid rgba(90, 100, 117, 0.5);
    border-radius: 6px;
    font-size: 24px;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 0;
}

.contact-form select {
    appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #007bff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 192px;
}

.common_btn {
    box-shadow: none;
    outline: none;
    border: none;
}

.common_btn:hover,
.common_btn:focus {
    background: rgba(255, 196, 0, 1);
    color: #000;
}

.contact-bottom {
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.contact-bottom .box-img {
    max-width: 612px;
}

.contact-bottom .box-img-main {
    display: flex;
    justify-content: flex-end;
}

.contact-form input,
.contact-form select {
    height: 72px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.submit-box .common_btn {
    margin-top: 0;
}

.contact-bottom .bg-2 {
    left: auto;
    right: 0;
    z-index: -1;
    /* top: 0;
    bottom: auto; */
}

/*service page*/
.banner-inner-sec2 {
    border-radius: 40px;
    background: #FFC40014;
    padding: 95px 56px;
    background-image: url(../img/service-hero-back.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
}

.banner-inner-sec2 .banner-text .badge-box {
    background: #FFC40040;
}

.service-img-banner .overlay-content h5 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;

}

.service-img-banner .overlay-content p {
    max-width: 994px;
    margin: auto;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
}

.service-img-banner .box-img {
    aspect-ratio: 16 / 9;
}

.service-img-banner .box-img {
    box-shadow: 138px 93px 87.5px 0px #0107B50D, 0px 0px 0px 0px #0107B500, 0px 0px 25px 0px #0107B50D;
}

main img {
    max-width: 100%;
}

.digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    max-height: 641px;
    gap: 16px;
    padding-top: 50px;
}

.digital-grid>div {
    border-radius: 16px;
}

.digital-grid .card-inner {
    position: relative;
    z-index: 1;
}

.discover-card {
    grid-column: 1;
    grid-row: 1;
    background: #104BB3;
    padding: 40px;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
}

.discover-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180%;
    top: 36px;
    left: 0;
    background: url(../img/digital-card-back.png) no-repeat center;
    background-size: contain;
}


.design-card {
    grid-column: 1;
    grid-row: 2;
    background: #FFC400;
    padding: 40px;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
}

.design-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180%;
    bottom: 36px;
    left: 0;
    background: url(../img/digital-card-back.png) no-repeat center;
    background-size: contain;
}

/* Second column full height */
.digital-vdo {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: #3498db;
    position: relative;
    overflow: hidden;
}

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

.digital-vdo .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    opacity: 1;
    background-color: #fff;
    color: #666666;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.digital-vdo .play-icon i {
    margin-left: 3px;
    margin-top: 3px;
}

.digital-vdo-slider {
    height: 100%;
    margin-bottom: 0 !important;
}

.digital-vdo-slider .slick-dots {
    bottom: 15px;
}

.digital-vdo-slider .slick-list,
.digital-vdo-slider .slick-track,
.digital-vdo-slider .slick-slide,
.digital-vdo-slider .slick-slide img {
    height: 100%;
}

.digital-vdo-slider .slick-dots li button {
    background: #FFFFFF !important;
    opacity: 0.75;
    border-radius: 50%;
}

.digital-vdo-slider .slick-dots li.slick-active button {
    opacity: 1;
}

.digital-vdo-slider .slick-dots li button:before {
    font-size: 0;
}

#videoModal {
    background: transparent;
}

#videoFrame {
    aspect-ratio: 16/9;
}

.digital-grid .icon-box {
    background: #FFF;
}

.digital-grid h3 {
    font-weight: 600;
    font-size: 44px;
    letter-spacing: 0;
    color: #fff;

}

.digital-grid p {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 20px;
    color: #fff;

}

.why-choose-sec {
    padding: 50px 0 280px 0;
    overflow: hidden;
}

.why-choose-sec .badge-box {
    background: #FFF3C1;
    color: #1D1D1D;
}

.why-choose-sec:not(:has(.card-center-bottom)) .bg_c_bottom {
    display: none;
}

.why-choose-sec:not(:has(.card-center-bottom)) {
    padding: 50px 0 100px 0;
}

#mysvg_mobile {
    display: none;
}

.aos-animate .dashed_line {
    fill: none;
    stroke-dashoffset: 0;
    animation: drawLine 15s linear infinite;
}

.why-choose-sec .tab-slider-nav {
    display: none;
}

.aos-animate .bg_line {
    fill: none;
    stroke-dashoffset: 0;
    animation: drawLine 5s linear;
}

/* For solid thick line */

.bg_line {
    stroke-dasharray: 1000;
}

/* For dashed line (keep your 6 6 pattern) */

.dashed_line {
    stroke-dasharray: 6 6;
    animation: moveDash 1.5s linear infinite;
}

/* Solid line draw animation */
@keyframes drawLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Moving dashed effect */
@keyframes moveDash {
    from {
        stroke-dashoffset: 12;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.why-choose-card {
    width: 361px;
    height: 262px;
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    gap: 16px;
    opacity: 1;
    border-radius: 16px;
    border: 1px solid #DEE0E3;
    background: #FFFFFF;
    box-shadow: 0px 1.85px 21.6px 8px #FFF3C133;
    position: absolute;
}

.why-choose-card .icon-box {
    padding: 7px;
}

.why-choose-card h4 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0px;
}

.why-choose-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

}

.card-left-top {
    top: 5%;
    left: 2%;
}

.card-left-bottom {
    bottom: 5%;
    left: 2%;
}

.card-right-bottom {
    bottom: 5%;
    right: 2%;
}

.card-right-top {
    top: 5%;
    right: 2%;
}

.card-center-bottom {
    bottom: -26%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.svg-back1 {
    position: absolute;
    top: -2%;
    left: 3%;
    z-index: -1;
}

.svg-back2 {
    position: absolute;
    top: -4%;
    right: -30%;
    z-index: -1;
}

.svg-back3 {
    position: absolute;
    bottom: -53%;
    left: -5%;
    z-index: -1;
}

.svg-back4 {
    position: absolute;
    bottom: -50%;
    right: -10%;
    z-index: -1;
}

.service-blob {
    width: 70%;
}

.steps_sec {
    background: #f9f9fb;
}

.step-box {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid #5A647533;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.step-box .icon-box {
    margin-bottom: 0;
}

.step-box::after {
    content: '';
    position: absolute;
    width: 199px;
    height: 199px;
    opacity: 0.4;
    top: 0px;
    left: -30px;
    border-radius: 50%;
    background: linear-gradient(75.89deg, #104BB3 0.78%, rgba(255, 255, 255, 0) 70.85%);
    filter: blur(67.74754333496094px);
    z-index: -1;

}

.steps_sec .icon-box {
    width: 64px;
    height: 64px;
    padding: 15px;
    background: linear-gradient(141.97deg, rgba(255, 196, 0, 0.5) 21.95%, rgba(255, 255, 255, 0) 147.58%);
}


/* Active Step */
.step-item:hover .step-box {
    border: 1px solid #0143B580;
    background: #FFFFFF;
}

/* Step Label */
.step-label {
    display: inline-block;
    padding: 5px 12px;
    background: #0107B514;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #5a5a5a;
}

/* Text */
.step-item h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1px;
    text-align: center;
    color: #1D1D1D;

}

.step-item p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    color: #5A6475;
}

/* Connecting Line */
.step-line {
    position: absolute;
    top: 116px;
    left: 8%;
    width: 84%;
    height: 20px;
    background: #0143B50D;
    border-radius: 20px;
    z-index: 0;
}

.step-line-dashed {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    z-index: 1;

    background: repeating-linear-gradient(to right,
            #0143B580 0px,
            #0143B580 6px,
            transparent 6px,
            transparent 12px);

    animation: dashMove 1s linear infinite;
}

.step-btn-wrapper {
    text-align: center;
}

@keyframes dashMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 12px 0;
    }
}

.step-item {
    position: relative;
    z-index: 2;
}

.service-box-inner {
    background: #F9FAFF;
    border-radius: 24px;
    padding: 55px 40px 15px;
    height: 100%;
}

.service-box-inner h4 {
    color: #1D1D1D;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.service-box-inner p {
    color: #5A6475;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 540px;
}

.service-row {
    padding-top: 30px;
}

.service-box-inner ul {
    padding-left: 25px;
}

.service-box-inner ul li {
    padding-bottom: 16px;
}

.svg_airoplane {
    display: inline-block;
    font-size: 50px;
    animation: plane 2s ease-in-out infinite;
}

@keyframes plane {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


/** finance inner page css start **/
/******/
.getstarted-bg {
    border-radius: 40px;
    background: #FFC40014;
    padding: 30px 60px;
    background-image: url(../img/service-hero-back.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
}

.regis_licence_sec .work-box {
    padding-bottom: 60px;
}

.regis_licence_sec .icon-box {
    height: 60px;
    width: 60px;
}

a.workbox_link_arrow {
    background: #0143B514;
    padding: 10px;
    display: inline-block;
    position: absolute;
    left: 16px;
    bottom: 15px;
    transition: all .3s linear;
}

a.workbox_link_arrow:hover {
    background: #ffc400;
}

/*a.workbox_link_arrow img{
    filter: invert(1);
}*/
.regis_licence_sec .work-box:hover a.workbox_link_arrow {
    left: 22px;
}

.regis_licence_sec .work-box:hover {
    border-color: #0143B5;
}

/** finance inner page css end **/
/******/

/** investment inner page css start **/
/******/
.sidebar_stickytop {
    position: sticky;
    top: 120px;
}

.sidebarnav_main {
    display: block;
}

.sidebarnav_main h4 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
    font-weight: 500;
}

.sidebarnav_main .nav-pills li+li {
    margin-top: 15px;
}

.sidebarnav_main .nav-pills {
    display: block;
}

.sidebarnav_main .nav-pills .nav-link {
    display: block;
    padding: 10px 15px;
    border-radius: 20px;
    background: rgba(255, 196, 0, 0.1);
    background: linear-gradient(141.97deg, rgba(255, 196, 0, 0.1) 21.95%, rgba(255, 255, 255, 0) 147.58%);
    color: #000;
    font-weight: 500;
}

.sidebarnav_main .nav-pills .nav-link.active {
    background: #0143B5 !important;
    color: #fff;
}

ul.icon_left_list,
.verttab_content>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: space-between;
}

ul.icon_left_list li,
.verttab_content>ul li {
    width: 49%;
    background: #f3f3f3;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

ul.icon_left_list li span {
    margin-right: 15px;
    width: 24px;
    min-width: 24px;
}

.borderbox_item .work-box {
    border: 1px solid rgba(24, 24, 24, 0.1);
    border-radius: 16px;
    height: 100%;
}

.borderbox_item .work-box:hover {
    border-color: #0143B5;
}

.list_tick,
.work-box ul {
    list-style: none;
    padding: 0;
}

.list_tick li,
.work-box ul li {
    position: relative;
    padding-left: 30px;
    background-image: url(../img/tick_circle_icon.svg);
    background-repeat: no-repeat;
    background-size: 19px auto;
    background-position: left center;
    margin-bottom: 10px;
}

.borderbox_item .work-box h5 {
    margin-bottom: 15px;
}

.bor_rad {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

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

.sidebarnav_content {
    border-left: 1px dashed #ccc;
    padding-left: 25px;
}

video.video-player {
    width: 100%;
}

@media (max-width: 1399px) {
    .why-choose-card {
        width: 300px;
        height: 262px;
        padding-top: 25px;
        padding-right: 25px;
        padding-bottom: 25px;
        padding-left: 25px;
    }
	
	section#text-2 {
		width: 38%;
		padding-right: 30px;
	}

	section#nav_menu-2 {
		width: 18%;
	}

	section#nav_menu-3 {
		width: 18%;
	}

	section#text-3 {
		width: 26%;
	}


}

@media (max-width: 1199px) {
    .primary-navigation>div>.menu-wrapper>li>.sub-menu li a {
        padding: 14px 10px;
        font-weight: 400 !important;
        width: max-content;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        border-radius: 8px;
        width: 100%;
    }

    /*.primary-navigation > div > .menu-wrapper > li > .sub-menu li {
    background: linear-gradient(104.66deg, #DCDEFF 4.14%, #FFFFFF 119.29%);
    width: 16%;
    border-radius: 8px;
}*/
}

@media (max-width: 1080px) {

    .contact-num,
    .contact-email,
    .contact-address {
        font-size: 16px;
    }
}

@media(max-width:991px) {
    .sidebarnav_main h4 {
        font-size: 24px;
    }

    .sub-menu-toggle {
        display: none !important;
    }

    #masthead:has(.sub-menu-toggle[aria-expanded=true]):after {
        content: none;
    }

    .primary-navigation-open .has-logo.has-title-and-tagline .primary-navigation>.primary-menu-container {
        left: 0;
        right: 0;
        margin-bottom: 0 auto;
    }

    .primary-navigation-open #masthead:after {
        top: -32PX;
        position: absolute;
        width: 100VW;
        height: 100vh;
        left: 50%;
        transform: translatex(-50%);
        background: #fff;
        z-index: -1;
        content: '' !important;
    }

    .primary-menu-container {
        position: fixed !important;
    }

    .primary-navigation>div>.menu-wrapper>li>.sub-menu {
        display: none;
    }

    .primary-navigation .primary-menu-container>ul>.menu-item {
        display: flex;
        align-items: center;
    }

    .primary-navigation>.primary-menu-container ul>li .sub-menu-toggle[aria-expanded=true]~ul {
        display: none;
        margin-right: 0;
    }

    #primary-menu-list .menu-item {
        position: relative;
    }

    i.fa.fa-angle-down:after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 4' fill='none'%3E%3Cpath d='M0.5 0.5L3.5 3.5L6.5 0.5' stroke='currentcolor' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    }

    i.fa.fa-angle-down {
        position: absolute;
        right: 0;
        top: 31px;
    }

    .gallery-image:nth-child(odd) .content {
        bottom: 50px;
    }

    .title-box h6 {
        font-size: 18px;
    }

    .slider1 .slide img {
        height: 37px;
    }

    .slider2 .slide img {
        height: 37px;
    }

    .digital-grid h3 {
        font-size: 30px;

    }

    .digital-grid p {
        font-size: 16px;
    }

    .service-img-banner .box-img {
        aspect-ratio: 1 / 0.9;
    }

    .service-img-banner .overlay-content p {
        font-size: 18px;
    }

    .service-img-banner .overlay-content h5 {
        font-size: 24px;
        line-height: 32px;
    }

    .why-choose-sec {
        padding: 50px 0;
    }

    .why-choose-card {
        position: unset;
        width: 70%;
        margin: 0 auto;
    }

    #mySvg {
        display: none;
    }

    #mysvg_mobile {
        display: block;
        overflow: visible;
        height: unset;
    }

    .aos-animate .dashed_line {
        animation: drawLine 25s linear infinite;
    }

    .why-choose-sec .tab-slider-nav .prev-btn,
    .why-choose-sec .tab-slider-nav .next-btn {
        background: #ffc400 !important;
    }

    .why-choose-sec .tab-slider-nav .slick-disabled {
        background: #EFEFEF !important;
    }

    .why-choose-sec .tab-slider-nav {
        display: flex;
        background: #FFC4000D;
        border: none;

    }

    .why-choose-sec .custom-dots .slick-active button {
        background: #FFC400 !important;
    }

    .why-choose-sec .custom-dots button {
        background: #FFC40040 !important;
    }

    .svg-back4,
    .svg-back3,
    .svg-back2 {
        display: none;
    }

    .service-blob {
        display: none;

    }

    .step-item:nth-child(odd):has(+ .step-item)::after {
        position: absolute;
        content: '';
        height: 20px;
        width: 80%;
        background: #0143B50D;
        top: 76px;
        z-index: -1;
    }

    .step-item:nth-child(odd):has(+ .step-item)::before {
        position: absolute;
        content: '';
        height: 2px;
        width: 80%;
        /* background: #0143B50D; */
        top: 85px;
        background: repeating-linear-gradient(to right,
                #0143B580 0px,
                #0143B580 6px,
                transparent 6px,
                transparent 12px);
        animation: dashMove 1s linear infinite;
    }
	.faq-content p {
		font-size: 14px;
	}
}

@media(max-width:767px) {
    .sidebarnav_content {
        border-left: 0;
        padding-left: 0;
        padding-top: 30px;
    }

    ul.icon_left_list li {
        width: 100%;
    }

    .sidebarnav_content .borderbox_item .work-box h5 {
        font-size: 16px;
    }

    .getstarted-bg {
        border-radius: 0;
    }

    .getstarted_img {
        width: 200px;
    }

    .career-banner .banner-right-img svg {
        position: relative;
        right: auto;
        margin: auto;
        max-width: 95%;
    }

    .career-banner .banner-right-img {
        text-align: center;
    }

    .input-box input,
    .input-box select,
    .input-box textarea {
        padding: 8px 12px;
        font-size: 14px;
    }

    .business-img-wrapper figure,
    .banner-video .video-image img,
    .vdo-banner1 {
        border-radius: 12px;
    }

    .vdo-sec {
        padding-bottom: 50px;
    }

    .banner-inner-sec2 {
        padding: 60px 35px;
    }

    .service-img-banner .overlay-content h5 {
        font-size: 18px;
        line-height: 26px;
    }

    .digital-grid {
        display: flex;
        flex-direction: column;
        min-height: min-content;
        padding-top: 40px !important;
    }

    .digital-vdo {
        order: 3;
    }

    .discover-card {
        min-height: 250px;
    }

    .design-card {
        min-height: 250px;
    }


    .digital-vdo {
        min-height: 300px;
    }

    .box-img img {
        aspect-ratio: 1 / 0.9;
        object-fit: cover;
    }

    .why-choose-card {
        position: unset;
        width: 90%;
        margin: 0 auto;
    }

    .step-item {
        margin-bottom: 75px;
    }

    .steps_sec .step-item::after {
        position: absolute;
        content: '';
        width: 20px;
        height: 75px;
        left: 49%;
        background: #0143B50D;
        top: calc(100% + 24px);
        z-index: -1;
    }

    .steps_sec .step-item::before {
        position: absolute;
        content: '';
        width: 2px;
        height: 75px;
        top: calc(100% + 24px);
        left: calc(49% + 10px);
        transform: translateX(-50%);

        background: repeating-linear-gradient(to bottom,
                #0143B580 0px,
                #0143B580 6px,
                transparent 6px,
                transparent 12px);

        animation: dashMoveVertical 1s linear infinite;
    }

    .steps_sec .step-item:not(:has(+ .step-item)) {
        margin-bottom: 30px;
    }

    @keyframes dashMoveVertical {
        from {
            background-position: 0 0;
        }

        to {
            background-position: 0 12px;
        }
    }

}

@media (max-width: 575px) {
    .service-img-banner .overlay-content p {
        font-size: 12px;
        line-height: 20px;
    }

    .why-choose-card {
        position: unset;
        width: 100%;
        margin: 0 auto;
    }

    .inner-banner .container {
        padding: 0 !important;
    }

    .banner-inner-sec2 {
        border-radius: 0;
        padding: 30px 15px;
    }
}

@media (max-width:440px){
	.num-mail{
		flex-wrap:wrap;
		gap:0px;
	}
	.contact-num, .contact-email {
        width: auto;
    }
}

/** investment inner page css end **/
/******/