/* Header Style Start */
header {
    width: 100%;
    padding: 19px 0;
    background-color: var(--rich-blue);
    z-index: 999;
    position: relative;
}

header .wpvender-header-menus-container {
    padding: 0;
    position: relative;
    gap: 22px;
    justify-content: space-between;
}

header .wpvender-header-menus-container .logo-wrap a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15.5px;
    transition: 0.5s ease;
}

header .wpvender-header-menus-container .logo-wrap a span {
    display: flex;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    transition: 0.4s ease;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    width: 0%;
}

header .wpvender-header-menus-container .logo-wrap a:hover span {
    width: 100%;
}

header .wpvender-header-menus-container .wpvender-menus-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 0;
    margin-bottom: 0;
    width: max-content;
    list-style: none;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li {
    position: relative;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li a {
    color: #FFFFFF;
    font-family: "Onest";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    transition: 0.3s;
    text-decoration: unset;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li a:hover {
    color: #ffcc11;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a svg {
    transition: 0.3s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover a svg {
    transform: rotate(180deg);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a:hover svg path {
    fill: #ffcc11;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 0;
    min-width: 165px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    margin: 15px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu::after {
    content: '';
    position: absolute;
    left: 27%;
    top: -18px;
    width: 46%;
    height: 7%;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover .child-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li {
    opacity: 0;
    transform: translateY(10px);
    animation: none;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover .child-menu li {
    animation: slideInItem 0.3s ease forwards;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(2) {
    animation-delay: 0.15s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(3) {
    animation-delay: 0.2s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(4) {
    animation-delay: 0.25s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li a {
    padding: 12px 18px;
    display: flex;
    gap: 8px;
    color: #333;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:first-child a {
    border-radius: 12px 12px 0px 0px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:last-child a {
    border-radius: 0px 0px 12px 12px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li a:hover {
    color: #130F35;
    padding-left: 23px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper .button-action a {
    padding: 4px 16px;
    color: var(--rich-blue);
    background: #ffcc11;
    box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
    border-radius: 4px;
    border: 1px solid #29002933;
    font-family: "Onest";
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    transition: 0.3s;
    display: flex;
    text-decoration: unset;
}

.wpvender-header-menus-container .wpvender-menus-wrapper .button-action a:hover {
    border-color: #ffcc11;
    box-shadow: none;
}

/* off canvas */
header .wpvender-header-menus-container .offcanvas-toggler {
    padding: 0;
    box-shadow: none;
    background: none;
    display: none;
}

.header-menus-offcanvas.offcanvas.offcanvas-top {
    background: linear-gradient(145deg, #0d1117, #1a1f27);
    height: 80vh;
}

.header-menus-offcanvas .offcanvas-header {
    justify-content: space-between;
    padding: 15px 10px;
}

.header-menus-offcanvas .offcanvas-header button {
    border: none;
    background: none;
    outline: none;
    display: flex;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li .child-menu li:last-child {
    border: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active {
    border: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active a svg path,
.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a:hover svg path {
    fill: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active a:not(.child-menu li a) {
    color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: var(--white);
    font-family: "Onest";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: 0.3s;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a:hover {
    color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu>a svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu.active>a svg {
    transform: rotate(180deg);
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu {
    display: none;
    padding: 0px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu li a {
    padding: 14px 0;
    transition: 0.3s;
    color: var(--white);
    font-family: "Onest";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu li a:hover {
    color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action a {
    padding: 4px 16px;
    color: var(--rich-blue);
    background: #ffcc11;
    box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
    border-radius: 4px;
    border: 1px solid #29002933;
    font-family: "Onest";
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    transition: 0.3s;
    display: flex;
    width: fit-content;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action a:hover {
    border-color: #ffcc11;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action {
    padding-top: 20px;
}

/* Header Style End */
























/* headless banner Start */
.headless-wordpress-banner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 738px;
    background: #062929;
    position: relative;
    overflow: hidden;
    margin-top: -77px;
    flex-direction: column;
}

.headless-wordpress-banner-section .container.banner-breadcrums {
    max-width: 1320px;
    padding: 0;
}



.wpvender-solution-banner-bredcrum-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 0px 14px;
    margin-bottom: 63px;
    margin-top: 70px;
}

.wpvender-bredcrum-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #225858;
}

.wpvender-bredcrum-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.wpvender-bredcrum-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    line-height: 0;
}

.wpvender-bredcrum-current {
    color: #FDFFFF;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
}

.headless-wordpress-banner-section .container {
    max-width: 1050px;
    z-index: 9;
}

.headless-wordpress-banner-tabs .banner-tabs-item {
    color: #456B6B;
    font-family: Onest;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    padding: 9px 34px 9px 10px;
    outline: none;
    border: none;
}

.headless-wordpress-banner-tabs .banner-tabs-item:hover {
    box-shadow: unset;
    outline: unset;
    border-bottom: 2px solid #F2F4F4;
    color: #F2F4F4;

}

.headless-wordpress-banner-tabs .banner-tabs-item.active {
    background: none;
    color: #F2F4F4;
    border: none;
    border-bottom: 2px solid #F2F4F4;
}

.headless-wordpress-banner-tabs {
    width: 100%;
    display: flex;
    border-bottom: 0.5px solid #456B6B;
    justify-content: space-between;
    margin-bottom: 24px;
}

.headless-wordpress-banner-content-wrap-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headless-wordpress-banner-content-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 409px;
}

.headless-wordpress-banner-content-wrap h1 {
    font-family: 'Onest';
    font-weight: 700;
    font-size: 43px;
    line-height: 107%;
    color: #DAE4F4;
    margin-bottom: 25px;
}

.headless-wordpress-banner-content-wrap h1 span {
    color: #1DFECC;
}

.headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
    background: #0B4040;
    border-radius: 16px;
    padding: 24px;
}

.headless-wordpress-single-stack .single-stack-icon-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #DAE4F4;
}

.headless-wordpress-single-stack .single-stack-heading {
    margin-bottom: 32px;
    color: #FDFFFF;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 148%;
}

.headless-wordpress-single-stack .single-stack-button {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    transition: 0.3s;
    color: #130F35;
    background: #1DFECC;
    border: 1px solid #29002933;
    border-radius: 4px;
    box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
    padding: 4px 16px;
    display: flex;
    width: fit-content;
    text-decoration: none;
}

.headless-wordpress-single-stack .single-stack-button:hover {
    box-shadow: none;
}



.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
    position: relative;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
    position: absolute;
    right: -50%;
    bottom: -6%;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
    position: absolute;
    left: -18px;
    top: 48%;
    z-index: 2;
}

@keyframes gradientFlow {
    0% {
        stop-color: #FFCC00;
    }

    25% {
        stop-color: #FFCC00;
    }

    50% {
        stop-color: #00FFB3;
    }

    75% {
        stop-color: #00FFB3;
    }

    100% {
        stop-color: #FFCC00;
    }
}

@keyframes gradientFlowReverse {
    0% {
        stop-color: #00FFB3;
    }

    25% {
        stop-color: #00FFB3;
    }

    50% {
        stop-color: #FFCC00;
    }

    75% {
        stop-color: #FFCC00;
    }

    100% {
        stop-color: #00FFB3;
    }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg linearGradient stop:first-child {
    animation: gradientFlow 4s ease-in-out infinite;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg linearGradient stop:last-child {
    animation: gradientFlowReverse 4s ease-in-out infinite;
}

@keyframes lineGlowWave {

    0%,
    100% {
        stroke: #FFCC00;
        filter: drop-shadow(0 0 1px #FFCC00);
    }

    50% {
        stroke: #00FFB3;
        filter: drop-shadow(0 0 0px #00FFB3);
    }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg path[stroke="#1DFDCC"],
.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg path[stroke="#F3C81F"] {
    animation: lineGlowWave 4s ease-in-out infinite;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-1px) scale(1.02);
    }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg {
    animation: floatPulse 3.5s ease-in-out infinite;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
    position: relative;
    z-index: 1;
}



@media (max-width: 768px) {
    .headless-wordpress-banner-tabs {
        width: 100%;
        gap: 0;
        justify-content: space-between;
    }

    .full-potential-section-wrapper {

        margin: 60px 0px;
    }

    .headless-wordpress-banner-tabs .banner-tabs-item {

        padding: 9px 10px 9px 10px;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
        width: 100% !important;
    }

    .business-model-section-list-content {
        flex-direction: column;
    }

    .business-model-section-list-content .business-model-section-list {
        max-width: 100% !important;
    }
}


/* headless banner end */





/* Beyond Wordpress Section Start */
.beyond-wordpress-section {
    margin: 99px 0 150px 0;
}

.beyond-wordpress-section .container {
    max-width: 1224px;
}

.beyond-wordpress-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 116%;
    color: #130F35;
    margin-bottom: 48px;
    text-align: center;
}

.beyond-wordpress-section-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.beyond-wordpress-section-lists .beyond-wordpress-list {
    border: 1px solid #F2F4F4;
    border-radius: 8px;
    padding: 24px 23.5px 24px 23.5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.3s;
}

.beyond-wordpress-section-lists .beyond-wordpress-list:hover {
    transform: translateY(-4px);
}

.beyond-wordpress-list .beyond-wordpress-list-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 19px;
    line-height: 101%;
    color: #130F35;
}

.beyond-wordpress-list .beyond-wordpress-list-heading {
    margin: 0;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #4F5C5C;
}

/* Beyond Wordpress Section End */






/* Diverse Business Models Start */
.diverse-business-model-section {
    overflow: hidden;
    margin-bottom: 0 !important;
}

.business-model-section-list-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.diverse-business-model-section {
    overflow: hidden;
    margin-bottom: 76px;
    padding: 105px 20px;
}

.diverse-business-model-section .container {
    max-width: 1224px;
}

.business-model-section-head {
    text-align: center;
}

.business-model-section-head h2 {
    margin-bottom: 16px;
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #130F35;
}

.business-model-section-head p {
    margin-bottom: 48px;
    color: #4F5C5C;
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
}

.diverse-business-model-section .business-model-section-list-content .slick-list.draggable {
    overflow: visible;
    cursor: grab;
}

.diverse-business-model-section .business-model-section-list-content .slick-list.draggable:active {
    cursor: grabbing;
}

.diverse-business-model-section .business-model-section-list-content .slick-track {
    display: flex;
    align-items: center;
    gap: 24px;
}

.diverse-business-model-section .business-model-section-list-content .slick-track::before,
.diverse-business-model-section .business-model-section-list-content .slick-track::after {
    display: none;
}

.business-model-section-list-content .business-model-section-list {
    background: #EDF4F4;
    width: 100%;
    max-width: 282px;
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
}

.business-model-section-list-content .business-model-section-list::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #130F35;
    transform: translateY(101%);
    transition: 0.5s ease;
    z-index: 0;
}

.business-model-section-list-content .business-model-section-list:hover::after {
    transform: translateY(0);
}

.business-model-section-list-content .business-model-section-list * {
    position: relative;
    z-index: 1;
}

.business-model-section-list .model-section-list-content {
    padding: 24px 8px 20px 24px;
    display: flex;
    flex-direction: column;
}

.business-model-section-list .model-section-list-content .model-section-list-title {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #130F35;
    margin-bottom: 16px;
    transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .model-section-list-title {
    color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .model-section-list-desc {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #4F5C5C;
    margin-bottom: 12px;
    transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .model-section-list-desc {
    color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    color: #000000;
    width: fit-content;
    transition: 0.5s ease;
    text-decoration: none;
}

.business-model-section-list:hover .model-section-list-content .read-more {
    color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .read-more .icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #130F35;
    border-radius: 50%;
    transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .read-more .icon {
    background: #1DFECC;
}

.business-model-section-list .model-section-list-content .read-more .icon svg path {
    transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .read-more .icon svg path {
    stroke: #130F35;
}

.business-model-section-list .model-section-list-thumb {
    display: flex;
    justify-content: flex-end;
}

.business-model-section-list .model-section-list-thumb img {
    margin-right: -1px;
}

/* Diverse Business Models End */




/* Headless Wordpress Graph Start */

.headless-wordpress-graph-info-section {
    padding: 104px 0 104px 0;
    background: #EDF4F4;
}

.headless-wordpress-graph-info-section .container {
    max-width: 996px;
}

.headless-wordpress-graph-info-section .graph-info-head {
    text-align: center;
}

.graph-info-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 114%;
    color: #130F35;
    margin-bottom: 16px;
}

.graph-info-head p {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
    color: #4F5C5C;
    margin-bottom: 48px;
}

.graph-info-performance-scalability {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.graph-info-performance-scalability .faster-performance {
    background: #130F35;
    border-radius: 8px;
    padding: 20px 24px 37px 24px;
    width: calc(100% - 377px);
}

.faster-performance h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #EDF4F4;
    margin-bottom: 12px;
}

.faster-performance p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #EDF4F4;
    margin-bottom: 35px;
}

.faster-performance .faster-performance-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.5px;
}

.faster-performance .faster-performance-images img {
    width: 100%;
}

.faster-performance .faster-performance-images .faster-performance-box-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.5px;
    width: 100%;
}

.graph-info-performance-scalability .scalability {
    background: #130F35;
    border-radius: 8px;
    padding: 24px 24px 24px 24px;
    text-align: end;
    width: 353px;
    height: -moz-available;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.scalability .scalability-content h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #EDF4F4;
    margin-bottom: 12px;
    text-align: start;
}

.scalability .scalability-content p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #EDF4F4;
    margin-bottom: 20px;
    text-align: start;
}

.scalability img {
    padding-right: 18px;
}

.graph-info-flexibility-security {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.graph-info-flexibility-security .graph-info-flexibility {
    width: 353px;
    padding: 24px 24px 48px 24px;
    background: #130F35;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: -moz-available;
    height: -webkit-fill-available;
    justify-content: space-between;
}

.graph-info-flexibility h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #EDF4F4;
    margin-bottom: 12px;
    text-align: start;
}

.graph-info-flexibility p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #EDF4F4;
    margin-bottom: 20px;
    text-align: start;
}

.graph-info-flexibility img {
    padding: 0 8px 0 24px;
    width: 100%;
}

.graph-info-flexibility-security .graph-info-security {
    width: calc(100% - 377px);
    padding: 21px 24px 60px 24px;
    background: #130F35;
    border-radius: 8px;
}

.graph-info-security img {
    padding: 0 34px 0 32px;
    width: 100%;
}

.graph-info-security h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #EDF4F4;
    margin-bottom: 12px;
    text-align: start;
}

.graph-info-security p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #EDF4F4;
    margin-bottom: 40px;
    text-align: start;
}

/* Headless Wordpress Graph End */







/* Collaborative Approach Start */
.collaborative-approach-section {
    padding: 49px 0 92px 0;
    background: #EDF4F4;
    margin-bottom: 104px;
}

.collaborative-approach-section .container {
    max-width: 1070px;
}

.collaborative-approach-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collaborative-approach-head .collaborative-approach-label {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1DFECC;
    border-radius: 30px;
    padding: 4px 12px;
    margin-bottom: 22px;
    font-family: 'Onest';
    font-weight: 300;
    font-size: 10px;
    line-height: 135%;
    color: #130F35;
}

.collaborative-approach-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 114%;
    color: #130F35;
    margin-bottom: 16px;
}

.collaborative-approach-head p {
    margin-bottom: 48px;
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
    text-align: center;
    color: #4F5C5C;
    max-width: 710px;
}

.collab-approach-items-wrapper {
    margin: 0 0 48px 0;
    display: flex;
    justify-content: center;
}

.collab-approach-items-wrapper .collab-approach-items-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin: 0 0 0 0;
    list-style: none;
    background: #D5D8E14D;
    width: fit-content;
    border-radius: 59px;
}

.collab-approach-items-main .collab-approach-items .collab-approach-links {
    border: unset;
    background-size: 202% 100%;
    background-position: center right;
    background-color: #fff0;
    transition: 0.3s;
    border-radius: 45px;
    padding: 6px 16px;
    color: #130f35;
    position: relative;
    overflow: hidden;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.collab-approach-items .collab-approach-links.active {
    background-image: linear-gradient(90deg, #F9FFFF 50%, #F9FFFF 50%);
}

.collab-approach-items .collab-approach-links.autoplay-progress {
    animation: collabtabProgress 10s linear forwards;
    background-image: linear-gradient(90deg, #1DFECC 50%, #F9FFFF 50%);
}

@keyframes collabtabProgress {
    from {
        background-position: right center;
    }

    to {
        background-position: left center;
    }
}

.collaborative-approach-grids {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 57px;
}

.collaborative-approach-grids .collab-approach-grid {
    padding: 24px;
    border: 1px solid #D5D7DA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.collaborative-approach-grids .collab-approach-grid.active {
    box-shadow: 0px 20px 24px -4px #0A0D1214;
}

.collab-approach-grid svg {
    margin-bottom: 16px;
}

.collab-approach-grid.active svg path.boxfill {
    fill: #1DFECC;
    stroke: #1DFECC;
}

.collab-approach-grid.active svg path.boxfill.two {
    fill: #1DFECC;
    stroke: none;
}

.collab-approach-grid span {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 101%;
    color: #4F5C5C94;
    margin-bottom: 8px;
}

.collab-approach-grid h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #130F35;
    margin-bottom: 8px;
}

.collab-approach-grid p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    color: #4F5C5C;
    margin: 0;
}


.collaborative-approach-steps {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 854px;
    margin: 0 auto 15px;
}

.collaborative-approach-steps .step {
    position: relative;
    width: 25%;
    display: flex;
    align-items: center;
}

.collaborative-approach-steps .step .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #C5D3E8;
    background: transparent;
    padding: 4px 11px;
}

.collaborative-approach-steps .step.active .icon,
.collaborative-approach-steps .step.hold .icon {
    background: #1DFECC;
    border-color: #1DFECC;
    padding: 6px;
}

.collaborative-approach-steps .step .icon span {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 19px;
    line-height: 125%;
    color: #C5D3E8;
}

.collaborative-approach-steps .step.active .icon span,
.collaborative-approach-steps .step.hold .icon span {
    display: none;
}

.collaborative-approach-steps .step .icon svg {
    display: none;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.collaborative-approach-steps .step.active .icon svg,
.collaborative-approach-steps .step.hold .icon svg {
    display: flex;
}

.collaborative-approach-steps .step .progress-track {
    position: relative;
    height: 2px;
    width: 100%;
    background: #C5D3E8;
    overflow: hidden;
}

.collaborative-approach-steps .step .progress-track::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #1DFECC;
}

.collaborative-approach-steps .step.active .progress-track::before,
.collaborative-approach-steps .step.hold .progress-track::before {
    width: 100%;
    transition: 2.5s linear;
}

.collaborative-approach-steps .step:last-child {
    width: fit-content;
}

.collaborative-approach-steps .step.active .icon,
.collaborative-approach-steps .step.hold .icon {
    animation: pulseGlow 1.2s infinite;
    box-shadow: 0 0 6px rgba(29, 254, 204, 0.45);
}

/* Pulse keyframes */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 6px rgba(29, 254, 204, 0.35);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 14px rgba(29, 254, 204, 0.75);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 0 6px rgba(29, 254, 204, 0.35);
        transform: scale(1);
    }
}

/* Collaborative Approach End */




/* Unlock the Full Potential Start */
.full-potential-section-wrapper {
    margin: 104px 20px;
}

.full-potential-section-wrapper .container {
    max-width: 1040px;
}

.full-potential-section-wrapper .full-potential-section-head-item-wrapper {
    background: #062929;
    border-radius: 16px;
    padding: 64px 95px;
}

.full-potential-section-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 140%;
    color: #FDFFFF;
    max-width: 729px;
    margin-bottom: 16px;
}

.full-potential-section-head h2 span {
    color: #1DFECC;
}

.full-potential-section-head p {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
    color: #FDFFFF;
    margin-bottom: 32px;
    max-width: 726px;
}

.full-potential-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.full-potential-section-tabs .full-potential-tabs-main {
    position: relative;
    padding: 6px;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    border-radius: 67px;
    background: #062929;
    box-shadow: 0px -8px 32px 0px #E2E8FF1F inset;
    backdrop-filter: blur(8.8px);
    overflow: hidden;
    width: fit-content;
}

.full-potential-section-tabs .full-potential-tabs-main::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 67px;
    padding: 1px;
    background: linear-gradient(308.7deg, #00FFB3, #FFCC00, #130F35, #00FFB3);
    background-size: 400% 400%;
    filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 12px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 8px rgba(19, 15, 53, 0.6));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glowFlow 6s infinite;
}

@keyframes glowFlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 10px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 6px rgba(19, 15, 53, 0.5));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 14px rgba(0, 255, 179, 0.9)) drop-shadow(0 0 22px rgba(255, 204, 0, 0.8)) drop-shadow(0 0 18px rgba(19, 15, 53, 0.8));
    }

    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 10px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 6px rgba(19, 15, 53, 0.5));
    }
}

.full-potential-tabs-main .full-potential-items .full-potential-links {
    border: unset;
    background-size: 202% 100%;
    background-position: center right;
    background-color: #fff0;
    transition: 0.3s;
    border-radius: 45px;
    padding: 6px 16px;
    color: #FDFFFF;
    position: relative;
    overflow: hidden;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.full-potential-tabs-main .full-potential-items .full-potential-links.active {
    background-image: linear-gradient(90deg, #F9FFFF 50%, #F9FFFF 50%);
    color: #130f35;
}

.full-potential-tabs-main .full-potential-items .full-potential-links.autoplay-progress {
    animation: potentialtabProgress 10s linear forwards;
    background-image: linear-gradient(90deg, #1DFECC 50%, #F9FFFF 50%);
}

@keyframes potentialtabProgress {
    from {
        background-position: right center;
    }

    to {
        background-position: left center;
    }
}

.full-potential-items-wrapper .full-potential-tab-items-content {
    display: flex;
    align-items: center;
    gap: 29px;
}

.full-potential-tab-items-content img {
    width: 393px;
}

.full-potential-tab-items-content .full-potential-tab-content {
    width: calc(100% - 422px);
}

.full-potential-tab-content h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 20px;
    line-height: 101%;
    color: #EDF4F4;
    margin-bottom: 16px;
}

.full-potential-tab-content p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #EDF4F4;
    margin-bottom: 24px;
}

.full-potential-tab-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.full-potential-tab-content ul li {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 210%;
    color: #EDF4F4;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Unlock the Full Potential End */




/* Perfect Engagement Hiring Start */
.perfect-engagement-hiring-section {
    margin-bottom: 74px;
}

.perfect-engagement-hiring-section .container {
    max-width: 1004px;
}

.perfect-engagement-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 114%;
    color: #130F35;
    margin-bottom: 48px;
    text-align: center;
}

.perfect-engagement-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 63px;
}

.perfect-engagement-details .perfect-engagement-item {
    background: #EDF4F4;
    width: 100%;
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.perfect-engagement-item .perfect-engagement-item-content {
    padding: 24px 24px 0px 24px;
    display: flex;
    flex-direction: column;
}

.perfect-engagement-item .perfect-engagement-item-content h4 {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 32px;
    line-height: 101%;
    color: #130F35;
    margin-bottom: 16px;
    transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content h4 span {
    transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content p {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #4F5C5C;
    margin-bottom: 22px;
    transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap {
    width: 100%;
    height: 1px;
    margin-bottom: 22px;
    backdrop-filter: blur(8.8px);
    overflow: hidden;
    position: relative;
    box-shadow: 0px -8px 32px 0px #E2E8FF1F inset;
    transition: 0.5s ease;
    opacity: 0;
}

.perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 67px;
    padding: 1px;
    transition: 0.5s ease;
    background: linear-gradient(308.7deg, #EDF4F4, #EDF4F4, #EDF4F4);
    background-size: 400% 400%;
    filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 12px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 8px rgba(19, 15, 53, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glowFlow 6s infinite;
}

.perfect-engagement-item .perfect-engagement-item-content a {
    width: fit-content;
    display: flex;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #130F35;
    background: #FDFFFF;
    padding: 4px 16px;
    transition: 0.5s ease;
    border-radius: 4px;
    margin-bottom: 3px;
    border: 1px solid transparent;
    text-decoration: none;
}

.perfect-engagement-item .perfect-engagement-item-thumb {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative !important;
}

.perfect-engagement-item .perfect-engagement-item-thumb img {
    position: absolute;
    right: 0;
    top: 0;
    margin-bottom: 0px;
}

.perfect-engagement-item img {
    margin-bottom: -1px;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 35px;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 52px;
    line-height: 101%;
    color: #E54921;
    transition: 0.5s ease;
    padding-left: 16px;
    white-space: nowrap;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span.active {
    color: #A4A5A1;
}

.perfect-engagement-details .perfect-engagement-item * {
    position: relative;
    z-index: 1;
}

.perfect-engagement-details .perfect-engagement-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #130F35;
    transform: translateY(101%);
    transition: 0.5s ease;
    z-index: 0;
}

.perfect-engagement-details .perfect-engagement-item:hover::after {
    transform: translateY(0);
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content .perfect-engagement-item-sap {
    opacity: 1;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content .perfect-engagement-item-sap::before {
    background: linear-gradient(308.7deg, #00FFB3, #FFCC00, #00FFB3);
    background-size: 400% 400%;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content a {
    background: #1DFECC;
    border: 1px solid #29002933;
    box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content a:hover {
    box-shadow: none;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content h4,
.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content p {
    color: #FDFFFF;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content h4 span {
    color: #1DFECC;
}

.perfect-hiring-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perfect-hiring-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 114%;
    color: #130F35;
    margin-bottom: 16px;
    text-align: center;
}

.perfect-hiring-head p {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
    text-align: center;
    color: #4F5C5C;
    margin-bottom: 24px;
    max-width: 790px;
}

.perfect-hiring-head ul {
    padding: 0;
    margin: 0 0 48px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.perfect-hiring-head ul li a {
    background: #F2F4F4;
    border-radius: 45px;
    padding: 6px 16px;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #130F35;
    transition: 0.3s;
    display: flex;
    text-decoration: none;
}

.perfect-hiring-head ul li a:hover {
    background: #130F35;
    color: #FDFFFF;
}

.perfect-hiring-head .book-call {
    background: #130F35;
    box-shadow: 0px 1px 2px 0px #2000240D;
    border-radius: 4px;
    padding: 10px 56px;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #FDFFFF;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    border: 1px solid #130F35;
    text-decoration: none;
}

.perfect-hiring-head .book-call:hover {
    background: #FDFFFF;
    color: #130F35;
}

.perfect-hiring-head .book-call:hover svg path {
    stroke: #130F35;
}

.perfect-hiring-head span {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4F5C5C;
}

/* Perfect Engagement Hiring End */









/* Success Stories We’re Proud Of Start */
.solution-success-stories-section {
    padding: 102px 0 104px 0;
    background: #EDF4F4;
}

.solution-success-stories-section .container {
    max-width: 996px;
}

.solution-success-stories-head {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.solution-success-stories-head .solution-stories-label {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1DFECC;
    border-radius: 30px;
    padding: 4px 12px;
    margin-bottom: 22px;
    font-family: 'Onest';
    font-weight: 300;
    font-size: 10px;
    line-height: 135%;
    color: #130F35;
}

.solution-success-stories-head h2 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #130F35;
    margin-bottom: 20px;
}

.solution-success-stories-head p {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 19px;
    line-height: 125%;
    color: #4F5C5C;
    margin-bottom: 32px;
}

.solution-stories-filter-lists {
    padding: 0;
    margin: 0 0 48px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
    background: #F9FFFF;
    border: 1px solid #ECEAFC;
    border-radius: 45px;
    padding: 6px 16px 7px 16px;
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4F5C5C;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button:hover,
.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show {
    background: #130F35;
    color: #fff;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button:hover svg path,
.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show svg path {
    fill: #fff;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button svg {
    transition: 0.3s;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show svg {
    transform: rotate(180deg);
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu.show {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    min-width: max-content;
    padding: 8px 0;
    top: 5px !important;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 20px 24px 0px #0A0D1214;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu li {
    width: 100%;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item {
    font-family: 'Onest';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #4F5C5C;
    padding: 5px 20px;
    background-color: transparent;
    transition: 0.3s;
    text-align: center;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item:hover {
    background-color: #130F35;
    color: #fff;
}

.solution-stories-filter-content-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-stories-filter-content-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.solution-stories-filter-content-wrap .filter-content-grid {
    width: calc(100% - 408px);
    display: flex;
    flex-direction: column;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-full {
    width: calc(100% - 306px);
}

.filter-content-grid .filter-content-grid-thumb {
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
}

.filter-content-grid:hover .filter-content-grid-thumb img {
    transform: scale(1.1);
}

.filter-content-grid .filter-content-grid-thumb img {
    width: 100%;
    height: 304px;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
    transition: 800ms;
}

.solution-stories-filter-content-wrap .filter-content-grid .filter-content-grid-thumb .first-child {
    background: #002333;
}

.filter-content-grid .filter-content-details {
    background: #FFFFFF;
    border: 0.5px solid #E0E0DF;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.filter-content-grid .filter-content-details .content-details h4 {
    font-family: 'Onest';
    font-weight: 600;
    font-size: 19px;
    line-height: 135%;
    color: #130F35;
    margin-bottom: 4px;
}

.filter-content-grid .filter-content-details .content-details p {
    font-family: 'Onest';
    font-weight: 300;
    font-size: 14px;
    line-height: 125%;
    color: #4F5C5C;
    margin: 0;
}

.filter-content-grid .filter-content-details .content-icon {
    border: 0.5px solid #E0E0DF;
    background: #fff;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.filter-content-grid .filter-content-details .content-icon:hover {
    background: #130F35;
}

.filter-content-grid .filter-content-details .content-icon svg path {
    transition: 0.3s;
}

.filter-content-grid .filter-content-details .content-icon:hover svg path {
    stroke: #fff;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-half {
    width: 384px;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
    width: 306px;
}

.solution-stories-filter-content-main .solution-filter-load-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.solution-stories-filter-content-main .solution-filter-load-more a {
    background: #130F35;
    box-shadow: 0px 1px 2px 0px #2000240D;
    border-radius: 4px;
    padding: 10px 56px;
    font-family: 'Onest';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #FDFFFF;
    transition: 0.3s;
    border: 1px solid #130F35;
    text-decoration: none;
}

.solution-stories-filter-content-main .solution-filter-load-more a:hover {
    background: transparent;
    color: #130F35;
}

/* Success Stories We’re Proud Of End */











/* responsive new */
@media (max-width: 1024px) {
    .full-potential-tabs-main .full-potential-items .full-potential-links {
        padding: 5px 16px;
    }

    .headless-wordpress-banner-content-wrap-inner {
        gap: 20px;
    }

    .headless-wordpress-banner-content-wrap {
        width: 409px;
        max-width: 100%;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
        padding-bottom: 50px;
        width: calc(100% - 429px);
        display: flex;
        justify-content: center;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
        width: 50%;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
        width: 50%;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
        right: 13%;
        bottom: -32%;
        width: 50%;
    }

    .headless-wordpress-banner-content-wrap h1 {
        font-size: 35px;
        line-height: 110%;
        margin-bottom: 20px;
    }

    .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
        padding: 20px;
    }

    .headless-wordpress-single-stack .single-stack-icon-item {
        font-size: 18px;
    }

    .headless-wordpress-single-stack .single-stack-heading {
        margin-bottom: 25px;
    }

    .beyond-wordpress-section {
        margin: 80px 0 80px 0;
    }

    .beyond-wordpress-head h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .beyond-wordpress-section-lists {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .business-model-section-head h2 {
        font-size: 30px;
    }

    .business-model-section-head p {
        margin-bottom: 30px;
        font-size: 17px;
    }

    .business-model-section-list .model-section-list-content {
        padding: 14px 10px 20px 10px;
    }

    .business-model-section-list .model-section-list-content .model-section-list-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .diverse-business-model-section .business-model-section-list-content .slick-track {
        gap: 20px;
    }

    .business-model-section-list-content .business-model-section-list {
        max-width: 250px;
    }

    .headless-wordpress-graph-info-section {
        padding: 80px 0 80px 0;
    }

    .graph-info-head h2 {
        font-size: 30px;
    }

    .graph-info-head p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .graph-info-performance-scalability {
        gap: 20px;
    }

    .graph-info-performance-scalability .faster-performance {
        padding: 20px 20px 20px 20px;
        width: 65%;
    }

    .graph-info-performance-scalability .scalability {
        padding: 20px 20px 20px 20px;
        width: 35%;
    }

    .scalability img {
        padding-right: 0px;
        width: 100%;
    }

    .graph-info-flexibility-security {
        gap: 20px;
        margin-top: 20px;
    }

    .graph-info-flexibility-security .graph-info-flexibility {
        width: 35%;
        padding: 20px 20px 20px 20px;
    }

    .graph-info-flexibility img {
        padding: 0;
    }

    .graph-info-flexibility-security .graph-info-security {
        width: 65%;
        padding: 20px 20px 20px 20px;
    }

    .graph-info-security img {
        padding: 0;
    }

    .graph-info-security h4,
    .graph-info-flexibility h4,
    .scalability .scalability-content h4,
    .faster-performance h4 {
        font-size: 18px;
    }

    .collaborative-approach-section {
        padding: 20px 0 80px 0;
        margin-bottom: 80px;
    }

    .collaborative-approach-head .collaborative-approach-label {
        margin-bottom: 20px;
    }

    .collaborative-approach-head h2 {
        font-size: 30px;
    }

    .collaborative-approach-head p {
        margin-bottom: 30px;
        font-size: 17px;
    }

    .collab-approach-items-wrapper {
        margin: 0 0 30px 0;
    }

    .collaborative-approach-grids {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collab-approach-items-main .collab-approach-items .collab-approach-links {
        padding: 5px 16px;
    }

    .full-potential-section-wrapper .full-potential-section-head-item-wrapper {
        padding: 30px 40px;
    }

    .full-potential-section-head h2 {
        font-size: 30px;
        max-width: 100%;
    }

    .full-potential-section-head p {
        font-size: 17px;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .full-potential-items-wrapper {
        gap: 20px;
    }

    .full-potential-items-wrapper .full-potential-tab-items-content {
        gap: 20px;
    }

    .full-potential-tab-items-content img {
        width: 38%;
    }

    .full-potential-tab-items-content .full-potential-tab-content {
        width: 62%;
    }

    .full-potential-tab-content h4 {
        font-size: 18px;
    }

    .full-potential-tab-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .full-potential-section-wrapper {
        margin-bottom: 80px;
    }

    .perfect-engagement-head h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .perfect-engagement-details {
        gap: 20px;
        margin-bottom: 40px;
    }

    .perfect-engagement-item .perfect-engagement-item-content {
        padding: 20px 20px 0px 20px;
    }

    .perfect-engagement-item .perfect-engagement-item-content h4 {
        font-size: 22px;
    }

    .perfect-engagement-item .perfect-engagement-item-content p {
        margin-bottom: 20px;
    }

    .perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap {
        margin-bottom: 20px;
    }

    .perfect-engagement-item .perfect-engagement-item-content a {
        margin-bottom: 0px;
    }

    .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
        font-size: 30px;
    }

    .perfect-hiring-head h2 {
        font-size: 30px;
    }

    .perfect-hiring-head p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .perfect-hiring-head ul {
        margin: 0 0 30px 0;
    }

    .perfect-hiring-head ul li a {
        padding: 5px 16px;
    }

    .perfect-hiring-head .book-call {
        padding: 8px 30px;
    }

    .perfect-hiring-head .book-call svg {
        width: 16px;
        height: 16px;
    }

    .solution-success-stories-section {
        padding: 80px 0 80px 0;
    }

    .solution-success-stories-head .solution-stories-label {
        margin-bottom: 20px;
    }

    .solution-success-stories-head h2 {
        font-size: 30px;
    }

    .solution-success-stories-head p {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .solution-stories-filter-lists {
        margin: 0 0 30px 0;
        gap: 8px;
    }

    .solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
        padding: 5px 14px 5px 14px;
        gap: 6px;
    }

    .solution-stories-filter-content-wrap {
        gap: 20px;
    }

    .solution-stories-filter-content-wrap .filter-content-grid {
        width: 65%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-half {
        width: 35%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-full {
        width: 65%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
        width: 35%;
    }

    .filter-content-grid .filter-content-details .content-details h4 {
        font-size: 16px;
    }

    .filter-content-grid .filter-content-details {
        padding: 10px;
    }

    .filter-content-grid .filter-content-details .content-details p {
        font-size: 13px;
    }

    .filter-content-grid .filter-content-grid-thumb img {
        height: 280px;
    }

    .solution-stories-filter-content-main {
        gap: 20px;
    }

    .solution-stories-filter-content-main .solution-filter-load-more {
        margin-top: 10px;
    }

    .solution-stories-filter-content-main .solution-filter-load-more a {
        padding: 8px 30px;
    }

    .collaborative-approach-steps .step .icon span {
        font-size: 16px;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .collaborative-approach-steps .step .icon span {
        font-size: 14px;
    }

    .collaborative-approach-steps .step .icon {
        width: 24px;
        height: 24px;
    }

    .collaborative-approach-steps .step .icon svg {
        width: 14px;
        height: 14px;
    }

    .headless-wordpress-banner-content-wrap-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 12px;
        gap: 30px;
    }

    .headless-wordpress-banner-content-wrap {
        width: 100%;
        align-items: flex-start;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
        width: 100%;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
        bottom: -30%;
        right: 15%;
        width: 40%;
    }

    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
        top: 30%;
        left: 4%;
        width: 40%;
    }

    .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
        padding: 14px;
        width: 60%;
    }

    .headless-wordpress-banner-content-wrap h1 {
        font-size: 30px;
        line-height: 118%;
    }

    .headless-wordpress-single-stack .single-stack-icon-item {
        font-size: 16px;
    }

    .headless-wordpress-single-stack .single-stack-icon-item svg {
        width: 20px;
        height: 20px;
    }

    .headless-wordpress-single-stack .single-stack-heading {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .headless-wordpress-single-stack .single-stack-button {
        font-size: 13px;
        line-height: 22px;
        padding: 4px 14px;
    }

    .beyond-wordpress-section {
        margin: 50px 0 80px 0;
    }

    .beyond-wordpress-head h2 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 125%;
    }

    .beyond-wordpress-section-lists {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        overflow: auto;
        padding-bottom: 15px;
    }

    .beyond-wordpress-section-lists::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .beyond-wordpress-section-lists::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .beyond-wordpress-section-lists::-webkit-scrollbar-thumb {
        background: #130F35;
    }

    .beyond-wordpress-section-lists .beyond-wordpress-list {
        padding: 15px 15px 15px 15px;
        width: 250px;
    }

    .beyond-wordpress-list .beyond-wordpress-list-icon-item {
        font-size: 16px;
    }

    .beyond-wordpress-list .beyond-wordpress-list-icon-item svg {
        width: 24px;
        height: 24px;
    }

    .beyond-wordpress-list .beyond-wordpress-list-heading {
        font-size: 13px;
        line-height: 140%;
    }

    .business-model-section-head h2 {
        font-size: 22px;
        line-height: 120%;
    }

    .business-model-section-head p {
        margin-bottom: 20px;
        line-height: 130%;
        font-size: 15px;
    }

    .diverse-business-model-section .business-model-section-list-content .slick-track {
        gap: 12px;
    }

    .business-model-section-list .model-section-list-content {
        padding: 10px 10px 20px 10px;
    }

    .business-model-section-list .model-section-list-content .model-section-list-title {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .business-model-section-list .model-section-list-content .model-section-list-desc {
        font-size: 13px;
        line-height: 140%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .business-model-section-list-content .business-model-section-list {
        max-width: 200px;
    }

    .headless-wordpress-graph-info-section {
        padding: 50px 0 50px 0;
    }

    .graph-info-head h2 {
        font-size: 22px;
    }

    .graph-info-head p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 130%;
    }

    .graph-info-performance-scalability {
        gap: 12px;
        flex-direction: column;
    }

    .graph-info-performance-scalability .faster-performance,
    .graph-info-performance-scalability .scalability {
        padding: 15px 15px 15px 15px;
        width: 100%;
    }

    .graph-info-flexibility-security {
        gap: 12px;
        margin-top: 12px;
        flex-direction: column;
    }

    .graph-info-flexibility-security .graph-info-flexibility,
    .graph-info-flexibility-security .graph-info-security {
        width: 100%;
        padding: 15px 15px 15px 15px;
    }

    .collaborative-approach-head h2 {
        font-size: 22px;
        line-height: 120%;
        text-align: center;
    }

    .collaborative-approach-head p {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 130%;
    }

    .collab-approach-items-main .collab-approach-items .collab-approach-links {
        padding: 5px 14px;
        font-size: 13px;
        line-height: 23px;
    }

    .collaborative-approach-grids {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        overflow: auto;
        padding-bottom: 15px;
    }

    .collaborative-approach-grids::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .collaborative-approach-grids::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .collaborative-approach-grids::-webkit-scrollbar-thumb {
        background: #130F35;
    }

    .collaborative-approach-grids .collab-approach-grid {
        padding: 15px;
        justify-content: space-between;
        width: 250px;
    }

    .collab-approach-grid svg {
        width: 30px;
        height: 30px;
    }

    .collab-approach-grid span {
        font-size: 12px;
    }

    .collab-approach-grid h4 {
        font-size: 14px;
    }

    .collab-approach-grid p {
        font-size: 12px;
    }

    .collaborative-approach-section {
        padding: 20px 0 50px 0;
        margin-bottom: 50px;
    }

    .full-potential-section-wrapper {
        margin-bottom: 50px;
    }

    .full-potential-tabs-main .full-potential-items .full-potential-links {
        padding: 5px 14px;
        font-size: 13px;
        line-height: 23px;
    }

    .full-potential-section-head h2 {
        font-size: 22px;
        line-height: 150%;
    }

    .full-potential-section-head p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 140%;
    }

    .full-potential-section-wrapper .full-potential-section-head-item-wrapper {
        padding: 15px 15px;
    }

    .full-potential-section-tabs .full-potential-tabs-main {
        width: 100%;
    }

    .full-potential-tab-content h4 {
        font-size: 16px;
    }

    .full-potential-tab-content p {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 140%;
    }

    .full-potential-tab-content ul li {
        font-size: 12px;
        line-height: 200%;
    }

    .full-potential-items-wrapper .full-potential-tab-items-content {
        gap: 10px;
    }

    .full-potential-tab-items-content .full-potential-tab-content {
        width: 60%;
    }

    .full-potential-tab-items-content img {
        width: 40%;
    }

    .perfect-engagement-head h2 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 130%;
    }

    .perfect-engagement-details {
        gap: 12px;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .perfect-engagement-item .perfect-engagement-item-thumb {
        justify-content: space-between;
    }

    .perfect-engagement-item .perfect-engagement-item-thumb img {
        position: unset;
    }

    .perfect-engagement-item .perfect-engagement-item-content h4 {
        font-size: 18px;
    }

    .perfect-engagement-item .perfect-engagement-item-content p {
        font-size: 13px;
        line-height: 140%;
    }

    .perfect-engagement-item .perfect-engagement-item-content a {
        font-size: 13px;
        line-height: 22px;
    }

    .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay {
        gap: 15px;
    }

    .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
        font-size: 22px;
    }

    .perfect-hiring-head h2 {
        font-size: 22px;
        line-height: 130%;
    }

    .perfect-hiring-head p {
        font-size: 15px;
        line-height: 130%;
    }

    .perfect-hiring-head ul {
        margin: 0 0 20px 0;
    }

    .perfect-hiring-head ul li a {
        padding: 5px 14px;
        font-size: 13px;
        line-height: 22px;
    }

    .perfect-hiring-head .book-call {
        padding: 6px 25px;
        font-size: 13px;
    }

    .perfect-hiring-head .book-call svg {
        width: 15px;
        height: 15px;
    }

    .perfect-hiring-head span {
        font-size: 13px;
        line-height: 23px;
    }

    .perfect-engagement-hiring-section {
        margin-bottom: 50px;
    }

    .solution-success-stories-section {
        padding: 50px 0 50px 0;
    }

    .solution-success-stories-head h2 {
        font-size: 22px;
        line-height: 120%;
        text-align: center;
    }

    .solution-success-stories-head p {
        font-size: 15px;
        line-height: 130%;
        margin-bottom: 20px;
        text-align: center;
    }

    .solution-stories-filter-lists {
        margin: 0 0 20px 0;
    }

    .solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
        padding: 4px 14px 4px 14px;
        font-size: 13px;
    }

    .solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item {
        font-size: 13px;
        line-height: 22px;
    }

    .solution-stories-filter-content-wrap {
        gap: 15px;
        flex-direction: column;
    }

    .solution-stories-filter-content-wrap .filter-content-grid {
        width: 100%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-half {
        width: 100%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-full {
        width: 100%;
    }

    .solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
        width: 100%;
    }

    .filter-content-grid .filter-content-grid-thumb img {
        height: 400px;
    }

    .solution-stories-filter-content-main .solution-filter-load-more a {
        padding: 8px 25px;
        font-size: 13px;
        line-height: 22px;
    }

    .solution-stories-filter-content-main {
        gap: 15px;
    }

    .collab-approach-items-wrapper {
        margin: 0 0 20px 0;
    }

    .graph-info-security p {
        font-size: 12px;
        line-height: 140%;
    }

    .graph-info-security h4,
    .graph-info-flexibility h4,
    .scalability .scalability-content h4,
    .faster-performance h4 {
        font-size: 16px;
    }
}

@media (max-width: 752px) {
    .full-potential-section-tabs {
        overflow: auto;
        scrollbar-width: none;
    }

    .full-potential-section-tabs .full-potential-tabs-main {
        min-width: 800px;
    }
}

@media (max-width: 612px) {
    .perfect-hiring-head ul {
        justify-content: center;
    }
}

@media (max-width: 523px) {
    .collab-approach-items-wrapper .collab-approach-items-main {
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .filter-content-grid .filter-content-details .content-icon {
        width: 25px;
        height: 25px;
    }

    .filter-content-grid .filter-content-details .content-icon svg {
        width: 17px;
        height: 17px;
    }

    .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
        width: 100%;
    }

    .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
        font-size: 18px;
    }

    .full-potential-items-wrapper .full-potential-tab-items-content {
        flex-direction: column;
        gap: 20px;
    }

    .full-potential-tab-items-content img {
        width: 100%;
    }

    .full-potential-tab-items-content .full-potential-tab-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
        top: 5%;
        left: 13%;
    }
}

/* responsive new */


































/* Footer */
.footer-container {
    background: #130F35;
}

.footer-container .container {
    max-width: 1120px;
}

.hr-bottom {
    border-top: 1px solid #2C2566;
    margin: 56px 0 0 0px;
    padding: 0;
}

.footer {

    color: #fff;
    padding: 43px 0px 0px 0px;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo span {
    line-height: 150%;
}

.footer-logo img {
    width: 148px;
    margin-bottom: 5px;
}

.footer-clients {
    display: flex;
    justify-content: space-between;
    margin: 21px 0px 23px;
}

.footer-Info {
    width: 343px;
}

.footer-Info span {
    line-height: 150%;
}

.footer-Info .footer-clients span>span {
    color: #1DFECC;
}

.footer-address-social {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-address-container {
    border-radius: 8px;
    border: 1px solid #FFFFFF1A;
}

.footer-address {
    display: flex;
    justify-content: space-between;
}

.footer-address div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address h6 {
    font-size: 14px;
    display: flex;
    gap: 5px;
    line-height: 14px;
    font-weight: 400;
    color: #F7F7FD;
    margin: 5px 0px 0px;
}

.footer-address h6 img {
    height: 16px;
    width: 16px;
}

.footer-offices {
    padding: 12px 40px 18px 20px;
    border-bottom: 1px solid #FFFFFF1A;
}

.footer-offices span {
    font-weight: 600;
    line-height: 21px;
    color: #1DFECC;
}

.footer-bookCall {
    display: flex;
    align-items: center;

}

.footer-bookCall h6 {
    padding: 15px 39px;
    line-height: 14px;
    font-weight: 600;
    font-size: 14px;
    margin: 0px;
    border-right: 1px solid #FFFFFF1A;
}

.footer-bookCall span {
    padding: 0px 22px;
}

.footer-cta {
    display: flex;
    margin-right: 4px;
}

.btn-primary {
    background: #00DFAE0D;
    color: #fff;
    border: none;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 54px;
}

.btn-primary span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-input {
    border: 1px solid #3E5270;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 1px 2px 0px #2000240D;
}

.footer-input input {
    background: transparent;
    color: #5D6C83;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    padding-left: 16px;
    width: 200px;
}

.footer-input input::placeholder {
    color: #5D6C83;
    opacity: 1;
}

.footer-input input:focus {
    outline: none;
}

.btn-secondary {
    border: 1px solid #1DFECC;
    background: #1DFECC;
    color: #130F35;
    padding: 2px 31.5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    box-shadow: 0px 1px 2px 0px #2000240D;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: transparent;
    color: #1DFECC;
}

.btn-secondary:hover {
    box-shadow: 0 1px 2px 0 #20002405;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 63px;
}


.footer-col2 {
    margin-left: 16px;
}

.footer-col4 {
    margin-right: 5px;
}

.footer-col h4 {
    font-weight: 600;
    margin: 0px;
    color: #1DFECC;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    gap: 9px;
    display: flex;
    flex-direction: column;
}

.footer-col ul li {
    color: #F7F7FD;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer a {
    color: inherit;
    text-decoration: none;

}

.footer-col ul li:hover a {
    color: #1DFECC;
}

.footer ul li a {
    transition: 0.3s;
}

.footer-bottom-container {
    max-width: 1216px;
    margin: auto;
}

.footer-bottom {
    margin: 23px 0px 0px 0px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom-info {
    display: flex;
    gap: 17px;
}

.footer-bottom-info p:first-child {
    padding-right: 17px;
    border-right: 1px solid #4F5C5C;
}

.footer-bottom-info p span {
    color: #1DFECC;
}

.footer-bottom-info p {
    margin: 0px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #FFF;
}

.footer-emails {
    margin-left: 3px;
}

.footer-emails a {
    padding: 0px 17px;
    border-left: 1px solid #4F5C5C;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #1DFECC;
    text-decoration: none;
}

.footer-emails a:hover {
    color: #FFF;
}

.footer-social i:hover {
    color: #1DFECC !important;
}

.footer-social i {
    margin-left: 12px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    height: 17px;
}