@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	outline: none;
	box-sizing: border-box;
}
:root {
    --bs-titillium: "Titillium Web", sans-serif;
    --bs-brand-orange: #FFB216;
    --bs-brand-blue: #21436E;
    --bs-dark-blue: #192C47;
    --bs-light-blue: #C4CBD3;
    --bs-light-grey: #727272;
    --bs-off-white: #F2F6F9;
    --bs-text: #060520;
    --bs-stroke: #EAEAEA;
    --bs-h1: 48px;
    --bs-h2: 40px;
    --bs-h3: 32px;
    --bs-h4: 24px;
    --bs-fs16: 16px;
    --bs-fs18: 18px;
    --bs-fs22: 22px;
    --bs-lineheight: 1.15;
}
html, body {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    scroll-margin-top: 120px;
}
.light_grey {
	color: var(--bs-light-grey);
}
.light_blue {
	color: var(--bs-light-blue);
}
.text_color {
	color: var(--bs-text);
}
.text-white {
	color: var(--bs-off-white) !important;
}
.text-orange {
	color: var(--bs-brand-orange)
}
body{
 	font-family: var(--bs-titillium);
    color: var(--bs-text);
	font-size: var(--bs-fs16);
    font-weight: 400;
    line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	font-family: inherit;
    line-height: var(--bs-lineheight);
    font-weight: 600;
    color: inherit;
}
h1 {
    font-size: var(--bs-h1);
    line-height: 1.25;
}
h2 {
	font-size: var(--bs-h2);
}
h3{
    font-size: var(--bs-h3);
}
h4{
    font-size: var(--bs-h4);
}
h5 {
	font-size: var(--bs-fs18);
}
.h2_large {
	font-size: var(--bs-h1);
}
p {
	font-size: inherit;
    color: inherit;
}
a{
	text-decoration: none;
	color: inherit;
}
ul {
    padding-left: 20px;
	li {
	    list-style: disc;
	    margin: 5px 0;
	}
}
.no_disc {
	padding-left: 0;
	li {
		list-style: none;
	}
}
img {
    max-width: 100%;
}
a:hover {
	color: inherit;
}
.btn_block{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}
.button {
	min-width: 170px;
    width: auto;
    display: inline-block;
    font-size: var(--bs-fs16);
    font-family: inherit;
    font-weight: 600;
    color: inherit;
    border-radius: inherit;
    padding: 12px 35px;
    line-height: normal;
    text-align: center;
    box-shadow: none;
    border: none;
    background: transparent;
    text-decoration: none !important;
    outline: none !important;
    transition: .3s all;
}
.orange_btn {
	border-radius: 10px;
    color: var(--bs-text);
    background: var(--bs-brand-orange);
    border: 2px solid var(--bs-brand-orange) !important;
}
.orange_btn:hover {
	border-radius: 10px;
    color: var(--bs-brand-orange);
    background: transparent;
    border-color: var(--bs-brand-orange);
}
.blue_btn {
	border-radius: 10px;
    color: var(--bs-off-white);
    background: var(--bs-dark-blue);
    border: 2px solid var(--bs-dark-blue) !important;
}
.blue_btn:hover {
	border-radius: 10px;
    color: var(--bs-dark-blue) !important;
    background: transparent;
    border-color: var(--bs-dark-blue);
}
.border_btn {
	border-radius: 10px;
    color: var(--bs-text);
    background: #fff;
    border: 1px solid var(--bs-stroke) !important;
} 
.border_btn:hover {
	border-radius: 10px;
    color: var(--bs-text);
    background: var(--bs-brand-orange);
    border-color: var(--bs-brand-orange);
}

form .form-group {
    margin-bottom: 1.25rem;
}
form .form-control {
    width: 100%;
    height: 50px;
    color: var(--bs-text);
    border: 1px solid var(--bs-stroke);
    border-radius: 8px;
    font-size: inherit;
    padding: 10px 13px;
    outline: none !important;
    box-shadow: none !important;
    background: var(--bs-off-white) !important;
}
/* form textarea {
	height: auto !important;
} */

.wi_full {
    width: 100%;
}
.mt_2 {
    margin-top: 2rem;
}
.mb_2 {
    margin-bottom: 2rem;
}
.mt_3 {
    margin-top: 3rem;
}
.mb_3 {
    margin-bottom: 3rem;
}
.mb_32 {
	margin-bottom: 32px !important;
}
.py_3 {
    padding-top: 32px;
    padding-bottom: 32px;
}
.sec_title {
    margin-bottom: 32px;
}
i.fa-angle-right {
    font-size: 80%;
}
header ul, footer ul, ul.nav-tabs {
    padding: 0;
	li{
	    list-style: none;
	}
}

/* Search Style */ 
button.search_btn {
    background: no-repeat;
    border: 0;
    box-shadow: none;
    outline: none;
    img {
    	filter: brightness(0) invert(1);
    }
}
#search {
	position: absolute;
    top: -80px;
    right: 180px;
    max-width: 650px;
    width: 100%;
    height: 1px;
    opacity: 0;
    background-color: #fff;
    transition: all .5s ease;
    z-index: 99999;
}
#search.search-visible {
    opacity: 1;
    top: 4px;
    width: 100%;
    height: 60px;
}
#search form#searchform {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
#search input[type="search"] {
    width: 100%;
    height: 60px;
    color: #192C47;
    background: transparent;
    font-weight: 300;
    outline: none;
    padding: 10px 20px;
    padding-right: 0;
    border: 0;
    border-radius: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
#search .close {
    font-size: 27px;
    color: #192C47;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}


/*------- Header ---------*/
#header {
	width: 100%;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	padding: 0.75rem 0;
	&.sticky {
		background: var(--bs-dark-blue);
		box-shadow: 0 2px 10px #000;
	}
	.navbar-brand {
		height: 100%;
		display: inline-flex;
		align-items: center;
		img {
			width: 190px;
			margin-left: -10px;
		}
	}
	.item-left{
		flex:0 0 20%;
	}
	.item-center {
		flex:0 0 60%;
	}
	.item-right {
		flex:0 0 20%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		.item-right a { 
			text-decoration: none;
			font-size: 16px;
			color:#555555;
			display: inline-block;
			margin-left: 10px;
			transition: color 0.3s ease;
		}
		.contact_btn_desktop {
		    background: transparent;
		    color: var(--bs-off-white);
		    border-radius: 10px;
		    border: 1px solid var(--bs-off-white);
		    padding: 10px 20px !important;
		    font-weight: 600;
			transition: none;
			margin-left: 1rem;
			&:hover {
				color: var(--bs-brand-blue);
				background: var(--bs-brand-orange);
				border-color: var(--bs-brand-orange);
			}
		}
	}

	.single_postt {
		& > * {
			color: var(--bs-off-white);
		}
		img {
		    border-radius: 10px;
		    margin-bottom: 1rem;
		    width: 100%;
			height: 140px;
			object-fit: cover;
		}
		.learn_more {
			color: var(--bs-off-white);
			border: 1px solid var(--bs-off-white);
			padding: 10px 20px;
			border-radius: 10px;
			width: auto;
			max-width: 100%;
			display: inline-block;
			font-size: var(--bs-fs16);
			font-weight: 600;
			&:hover {
				border-color: var(--bs-brand-orange);
				background: var(--bs-brand-orange);
				color: var(--bs-brand-blue);
			}
		}
	}
	.menu > ul > li {
		display: inline-block;
		margin-left: 25px;
	}
	.menu > ul > li > a {
		font-size: var(--bs-fs16);
		font-weight: 400;
		color: var(--bs-off-white);
		position: relative;
		line-height: 50px;
		text-transform: capitalize;
		transition: color 0.3s ease;
		i {
		    font-size: 80%;
		    padding-left: 4px;
		    position: relative;
		    top: 2px;
		}
	}
	.menu > ul > li .sub-menu {
		position: absolute;
		z-index: 500;
		background-color: var(--bs-dark-blue);
		/*box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); */
		padding: 20px 30px;
		transition: all 0.3s ease;
		margin-top:25px;
		opacity:0;
		visibility: hidden;
	}
	.menu > ul > li .sub-menu > ul > li {
		line-height: 1;
	}
	.menu > ul > li .sub-menu > ul > li > a {
		display: inline-block;
		padding: 10px 0;
		font-size: 15px;
		color: #555555;
		transition: color 0.3s ease;
		text-decoration: none;
		text-transform: capitalize;
	}
	.menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
	   line-height: 1;
	   display: block; 
	}
	.menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
		padding:10px 0;
		display: inline-block;
		font-size: 15px;
		color:#555555;
		transition: color 0.3s ease;
	}
	.menu > ul > li .sub-menu.mega-menu { 
	    left: 50%;
	    transform: translateX(-50%);	
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 {
	    max-width: 1600px;
	    width: 100%;
	    display: flex;
	    flex-wrap: wrap;
	    padding: 20px 3rem;
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .col_equal_2 {
		flex:0 0 50%;
		padding:0 15px;
		.col_sub_col {
		    width: 50%;
		}
		.two_post_view {
			.single_postt {
				width: 50%;
			}
		}
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .border_left_ {
		border-left: 1px solid rgb(234 234 234 / 50%);
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .col_equal_3 {
		flex:0 0 75%;
		padding:0 15px;
		.col_sub_col {
		    width: 33.33%;
		}
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .col_equal_1 {
		flex:0 0 25%;
		padding:0 15px;
		border-left: 1px solid rgb(234 234 234 / 50%);
		.col_sub_col {
		    width: 100%;
		}
	}
	.menu > ul > li .sub-menu {
		.col_sub_col {
		    margin-bottom: 2.5rem;
		    .row {
			    --bs-gutter-x: 2.5rem;
			}
		    a.col_inner {
			    display: flex;
			    align-items: flex-start;
			    .text_side {
			    	padding-right: 10px;
			    }
			    .btn_side span {
				    border: 1px solid rgb(234 234 234 / 10%);
				    border-radius: 12px;
				    min-width: 40px;
				    width: 40px;
				    height: 40px;
				    display: inline-flex;
				    align-items: center;
				    justify-content: center;
				    margin-left: auto;
				    img {
				    	filter: brightness(0) invert(1);
				    }
				}
				&:hover {
					h4 {
						color: var(--bs-brand-orange);
					}
					.btn_side span {
					    border-color: #fff;
					    background: #fff;
					    img {
					    	filter: none;
					    }
					}
				}
			}
		}
		.partner_menu_row .col_sub_col {
		    margin-bottom: 1.5rem;
		    a.col_inner {
		    	align-items: center;
		    	span {
		    		opacity: 50%;
		    		font-weight: 600;
		    	}
		    	img {
				    width: 40px;
				    height: 40px;
				    object-fit: contain;
				    margin-right: 10px;
				}
				&.active_link {
					span {
						opacity: 1;
					}
				}
				&.active_link:hover {
					color: var(--bs-brand-orange) !important;
					span, i {
						color: var(--bs-brand-orange) !important;
					}
				}
		    }
		    &:last-child {
		    	a.col_inner {
		    		text-decoration: underline;
		    		font-weight: 600;
		    	}
		    }
		}
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
		font-size: var(--bs-fs16);
		color: var(--bs-brand-orange);
		font-weight: 600;
		line-height: 1;
		margin: 1rem 0;
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .col_sub_col *{
		color: var(--bs-off-white);
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .col_sub_col h4 {
		margin-top: 0;
		margin-bottom: 10px;
	}
	.menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .col_sub_col p {
		line-height: 1.25;
	}
	.menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover, .menu > ul > li .sub-menu > ul > li > a:hover, .item-right a:hover .menu > ul > li:hover > a{
		color:#ea4636;
	}
	.menu > ul > li .sub-menu .news_Letter {
		h4, p {
			color: var(--bs-off-white);
		}
	}
}
.single-blog, .single-case-studies, .single-news, .single-insights, .page-id-1047, .page-id-518 {
	#header:not(.sticky) {
		background: var(--bs-dark-blue);
	}
}
body:has(.contact_page) #header:not(.sticky),
body:has(.homepage_page) #header:not(.sticky) {
	background: var(--bs-dark-blue);
}

.page-content {
	margin-top: 0;
}
.no_header_page, .single_resource_page {
	padding-top: 60px;
}

.subtitle {
	margin-bottom: 12px;
}
.main_banner {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 130px;
    padding-bottom: 2rem;
}
.inner_banner {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 280px;
    padding-bottom: 50px;
}
.partner_d_page {
	.inner_banner {
		padding: 160px 0 130px;
	}
}
.banner_sec {
.banner_logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    img {
	    display: block;
	    margin: 1rem auto;
    }
}
.banner_logos_wraper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    .client--wrapper{
    	grid-column-gap: .5rem;
	    grid-row-gap: .5rem;
	    flex: none;
	    display: flex;
    	animation: platformCarousel 60s linear infinite;
    	.item {
		    flex: none;
		    height: 80px;
		    padding: 0 .5rem;
		    img {
		    	width: 100%;
		    	height: 100%;
		    	object-fit: contain;
		    }
    	}
    }
}
.real_estate_bnr_logo {
	.client--wrapper{
		.item {
			height: 40px;
		    padding: 0 1.5rem;
		}
	}
}
}
.client_bnr_logos {
	.client--wrapper{
		.item {
			height: 50px !important;
		    padding: 0 1.5rem;
		}
	}
}
.video_sec {
    video {
	    object-fit: cover;
	    border-radius: 20px;
	    cursor: pointer;
	}
}

.item--icon {
	transition: .3s all;
	img {
		transition: .3s all;
	}
}
.services_list_container {
.service--item {
    border-top: 1px solid var(--bs-stroke);
    margin-top: 2rem;
    padding-top: 2rem;
    transition: .3s all;
    .item--inner {
	    display: flex;
	    justify-content: space-between;
	    .item--count {
	    	font-size: var(--bs-h4);
	    	color: var(--bs-light-grey);
	    	width: 80px;
	    }
	    .item--title {
		    display: flex;
		    width: 40%;
		    padding-right: 1rem;
		}
		.item--content {
		    display: flex;
		    width: 60%;
		    p {
		    	padding-right: 2rem;
		    }
		}
	    .more_button {
		    border: 1px solid var(--bs-stroke);
		    border-radius: 12px;
		    min-width: 45px;
		    width: 45px;
		    height: 45px;
		    display: inline-flex;
		    align-items: center;
		    justify-content: center;
		    margin-left: auto;
		}
	}
	&:hover {
		padding-left: 24px;
		.item--inner {
            .more_button {
            	background: var(--bs-brand-orange);
            	border-color: var(--bs-brand-orange);
            }
        }
	}
}
}
.overview_blueorange {
	background-color: #F2F6F9;
	.sec_bgimg {
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right top;
	    border-radius: 24px;
	    padding: 2rem 2rem 3rem;
	}
	.overview--wrapper {
	    padding: 2rem;
	    .sec_title {
	    	max-width: 700px;
	    	margin-left: auto;
	    	margin-right: auto;
	    }
	}
	.brag_item {
	    margin-bottom: 1.25rem;
	}
	.brag_inner {
	    width: 100%;
	    height: 100%;
	    color: var(--bs-off-white);
	    text-align: center;
	    padding: .5rem;
	    background: transparent;
	    border: 0;
	}
}
.overview_blueorange.servce_partner {
	.sec_title { 
		max-width: 800px;
	}
	.partner--wrapper {
        .item {
        	background: #1F3453;
        	border: 0 !important;
        }
    }
}
.why-bo-list {
	margin-top: 2rem;
	.list--item {
	    width: 33.33%;
	    margin-top: 1.5rem;
	}
    .item--inner {
    	height: 100%;
    	width: 100%;
    	display: inline-block;
    	padding: 1.5rem;
    	color: var(--bs-off-white);
    	background: rgb(33 67 110 / 25%);
    	border-radius: 16px;
    	transition: .3s all;
    	.animate--icon {
		    width: 135px;
		    height: 100px;
		    position: relative;
		    margin-bottom: 1.5rem;
		}
    }
    .item--inner:hover {
    	background: rgb(33 67 110 / 75%);
    }
    .icon--btn {
	    display: flex;
	    justify-content: space-between;
	}
    .more_button {
    	width: 45px;
    	height: 45px;
    	border-radius: 12px;
    	border: 1px solid rgb(242 246 249 / 5%);
    	display: inline-flex;
    	align-items: center;
    	justify-content: center;
	    img {
	    	filter: brightness(0) invert(1);
	    } 
	}
	.item--inner:hover {
		h3 {
			color: var(--bs-brand-orange);
		}
		.more_button {
			background: rgb(255 255 255 / 15%);
		}
	}
}
.animate--icon {
	img {
		object-fit: contain;
	}
	img.ico_wheel {
	    width: 80px;
	    height: 80px;
	    float: right;
	}
	img.ico_plane {
	    width: 78px;
	    height: 73px;
	    position: absolute;
	    left: 0;
	    bottom: 0;
	}
	span.needle_span {
	    width: 110px;
	    height: 100px;
	    display: inline-block;
	    position: relative;
	    float: right;
	    img.ico_circle {
		    width: 100%;
		}
	    img.ico_needle {
		    position: relative;
            top: -95%;
            left: 45%;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 45px solid var(--bs-brand-orange);
            border-bottom-left-radius: 40%;
            border-bottom-right-radius: 40%;
            transform-origin: center bottom;
            transform: rotate(-85deg);
			-webkit-transition-duration: 1.5s;
			-webkit-transition-property: 0 opacity;
			-webkit-transition-timing-function: ease;
			-moz-transition-duration: 1.5s;
			-o-transition-duration: 1.5s;
			transition-duration: 1.5s;
			-moz-transition-property: 0 opacity;
			-o-transition-property: 0 opacity;
			transition-property: 0 opacity;
			-moz-transition-timing-function: ease;
			-o-transition-timing-function: ease;
			transition-timing-function: ease;
		}
	}
	img.ico_msg {
	    width: 60px;
	    height: 45px;
	    position: absolute;
	    left: 0;
	    bottom: 0;
	}
	img.ico_globe {
	    float: right;
        width: calc(100% + 20px);
        max-width: 110%;
        margin-right: -20px;
        margin-top: -7px;
	}
	.ribbon_adjustmnt {
		position: absolute;
	    bottom: 10px;
	    left: 0;
	    width: 55px;
        height: 53px;
		img.ico_ribbon {
		    width: 55px;
		    height: 53px;
		    position: relative;
		    z-index: 1;
		}
		&:before, &:after {
	    	content: '';
	    	position: absolute;
	    	background-size: contain !important;
	    	transition: .3s all;
		}
		&:before {
			width: 40px;
            height: 42px;
            bottom: -16px;
            left: -7px;
            z-index: 0;
	    	background: url(../newimages/ribbon-arrow-left.svg) no-repeat center;
	    }
	    &:after {
			width: 35px;
            height: 42px;
            bottom: -18px;
            right: -4px;
            z-index: 0;
	    	background: url(../newimages/ribbon-arrow-right.svg) no-repeat center;
	    }
	}
}


@-webkit-keyframes clock-wise-rotate {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes clock-wise-rotate {
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(360deg);}
}
@-o-keyframes clock-wise-rotate {
    from {-o-transform: rotate(0deg);}
    to   {-o-transform: rotate(360deg);}
}
@keyframes clock-wise-rotate {
    from {transform: rotate(0deg);}
    to   {transform: rotate(360deg);}
}

@keyframes rotate_three {
    0% {
        transform: rotate(-80deg);
    }
    50% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(65deg);
    }
}

.client--carousel {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    .client--wrapper{
    	grid-column-gap: .5rem;
	    grid-row-gap: .5rem;
	    flex: none;
	    display: flex;
    	animation: platformCarousel 150s linear infinite;
    	.item {
		    flex: none;
		    height: 60px;
		    padding: 0 1.5rem;
		    img {
		    	width: 100%;
		    	height: 100%;
		    	object-fit: contain;
		    	/*filter: grayscale(1);*/
		    }
    	}
    }
}

@keyframes platformCarousel {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(calc(-100% - 2rem));
}
}

.case_study_sec, .b_service_sec {
    border-radius: 24px;
    background-size: 100%;
	background-repeat: no-repeat;
	background-position: top right;
}
.case--tabs-wrapper {
	ul.nav-tabs {
		border-radius: 0;
		border: 0;
		margin-bottom: 0;
		padding-right: 2rem;
		li {
			width: 100%;
			margin-bottom: 13px;
		}
		li a {
			color: var(--bs-light-blue);
			font-size: var(--bs-h4);
			padding: 10px 0 20px;
			border: 0;
			border-bottom: solid 1px rgb(196 203 211 / 35%) !important; 
			border-radius: 0;
			line-height: 1.15;
			outline: none;
			font-weight: 600;
			position: relative;
			background: transparent !important;
		}
		li a.active {
			color: var(--bs-off-white); 
		}
	}
	.card {
	    border: 0 !important;
	    background: transparent !important;
	}
}
.case_study_sec {
	.case--tabs-wrapper {
		ul.nav-tabs {
			.progress {
			    height: 2px;
			    background: rgb(196 203 211 / 26%);
			}
			.progress-bar {
				height: 2px;
				background: linear-gradient(to right, #fff 90%, transparent);
				width: 0%;
				transition: width 0.2s;
			}
	        li a {
	        	color: var(--bs-light-blue);
	        	border-bottom: 0 !important;
	        	&.active {
	        		color: var(--bs-off-white);
	        	}
	        }
	    }
	    .tab--data {
	        img {
	            width: 100%;
	            height: 280px;
	            object-fit: cover;
	        }
	    }
	}
}
.industry-list {
.list--item {
	margin-top: 3rem;
}
.item--icon {
    background: rgb(255 178 22 / 15%);
    border: 1px solid rgb(255 178 22 / 25%);
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn_block a {
	font-weight: 600;
}
.item--icon, h4, p, span.cursor-pointer {
	transition: .3s all;
}
.item--inner:hover {
	.item--icon {
		background: var(--bs-brand-orange);
		img {
			filter: brightness(0) invert(1);
		}
	}
	.btn_block a, .text_color {
		color: var(--bs-brand-orange);
	}
}
}
.our_partnership, .secbg_lite_blue, .payment_revolution, .client_reported {
	background-color: #F9FBFF;
}
.partner_slide_wraper {
.partner--carousel {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    .partner--wrapper{
    	grid-column-gap: 1rem;
	    grid-row-gap: 1rem;
	    flex: none;
	    display: flex;
    	animation: platformCarousel 45s linear infinite;
    	.item {
		    flex: none;
		    min-width: 200px;
		    height: 100px;
		    padding: 1.75rem;
		    border-radius: 16px;
		    border: 1px solid var(--bs-light-blue);
		    transition: .3s all;
		    img {
		    	width: 100%;
		    	height: 100%;
		    	object-fit: contain;
		    }
    	}
    	/*.item:hover {
    		img {
    			opacity: 0.8;
    		}
    	}*/
    }
}
}
.get__started {
	.sec__bg {
	    padding: 10% 27%;
	    border-radius: 24px;
	    background-color: #F2F6F9;
	    position: relative;
	    overflow: hidden;
	    video#PaternVideo {
	    	width: 100%;
	    	height: 100%;
	    	position: absolute;
	    	left: 0;
	    	top: 0;
	    	object-fit: cover;
	    	mix-blend-mode: darken;
	    	opacity: 0.4;
	    	pointer-events: none;
	    }
	}
}

/*------- Footer ---------*/
footer {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	color: var(--bs-off-white);
	background: linear-gradient(to bottom, #192C47, #1B375F);
	padding-bottom: 0 !important;
	padding-top: 50px !important;
	a:hover {
		color: var(--bs-brand-orange);
	}
	a {
		transition: .3s all;
	}
	.ftr_cpyrgt {
		border-top: 1px solid var(--bs-stroke);
		padding: 1rem 0;
		margin-top: 2rem;
		p {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 0;
			a {
				text-decoration: underline;
			}
		}
	}
	.ftr_logos img {
	    width: 80px;
	    margin-right: 10px;
	}
	.footer_social a {
	    width: 40px;
	    height: 40px;
	    background: rgb(255 255 255 / 10%);
	    border-radius: 8px;
	    display: inline-flex;
	    align-items: center;
	    justify-content: center;
	    margin-right: 7px;
	    margin-top: 7px;
	    transition: .3s all;
	    img {
	    	width: 18px;
		    height: 18px;
		    object-fit: contain;
	    }
	    &:hover {
	    	background: rgb(255 255 255 / 25%);
	    }
	}
	.footer_address a, .footer_address address {
	    position: relative;
	    display: block;
	    margin-bottom: 13px;
	    padding-left: 34px;
	    img {
	    	width: 25px;
		    height: 25px;
		    object-fit: contain;
		    position: absolute;
		    left: 0;
		    top: 2px;
	    }
	}
	.col_heading {
	    color: var(--bs-brand-orange);
	    font-weight: 600;
	    margin-bottom: 7px;
	}
	.ftr_nav_col {
		width: calc(50% + 30px);
		margin-left: -30px;
		ul li {
			margin-bottom: 10px;
		}
		.col_item {
	    	width: 22%;
		}
		.col_item:first-child, .col_item:nth-child(2) {
			width: 29%;
		}
		.col_item:nth-child(3) {
			width: 20%;
		}
	}
	.join_ul {
		margin-bottom: 1.5rem;
	}
}

/*------- Data-ai-page ---------*/
.ds--item {
	margin-top: 2rem;
	.item--icon {
	    background: rgb(255 178 22 / 15%);
	    border: 1px solid rgb(255 178 22 / 25%);
	    padding: 10px;
	    width: 60px;
	    height: 60px;
	    border-radius: 10px;
	    margin-bottom: 1rem;
	    display: inline-flex;
	    align-items: center;
	    justify-content: center;
	}
	.item--inner:hover .item--icon {
        background: var(--bs-brand-orange);
        img {
            filter: brightness(0) invert(1);
        }
	}
}

.b_service_sec {
	.case--tabs-wrapper {
		ul.nav-tabs {
			.progress {
			    height: 2px;
			    background: var(--bs-stroke);
			}
			.progress-bar {
				height: 2px;
				background: linear-gradient(to right, var(--bs-brand-blue) 90%, transparent);
				width: 0%;
				transition: width 0.2s;
			}
	        li a {
	        	color: var(--bs-light-grey);
	        	border-bottom: 0 !important;
	        	p {
	        		color: var(--bs-light-grey);
	        		font-size: var(--bs-fs16);
	        		font-weight: 400;
	        		margin-bottom: 0;
	        		display: none;
	        		margin-top: 1rem;
	        		line-height: 1.5;
	        	}
	        	&.active {
	        		color: var(--bs-text);
	        		p {
	        			display: block;
	        		}
	        	}
	        }
	    }
	    .tab--data {
	        img {
	            width: 100%;
	            height: auto;
	        }
	    }
	    .tab--data.sec_bgimg {
	    	background-size: cover;
	    	background-repeat: no-repeat;
	    	background-position: bottom right;
	    	padding: 2rem;
	    	padding-bottom: 25%;
	    	border-radius: 24px;
	    	p {
	    		font-size: var(--bs-fs18);
	    		color: var(--bs-light-blue);
	    	}
	        ul {
	        	padding-left: 20px;
	        	margin-top: 1rem;
	        	li {
	        		font-size: var(--bs-fs18);
	        		margin: 5px 0;
	        		list-style: disc;
	        		color: var(--bs-light-blue);
	        	}
	        }
	    }
	}
}

.casestudy-list .list--item {
    margin-top: 2rem;
    .item--inner {
    	border: 1px solid var(--bs-stroke);
	    border-radius: 24px;
	    overflow: hidden;
	    display: inline-block;
	    width: 100%;
	    height: 100%;
		.item--icon {
			width: 100%;
			height: 260px;
			overflow: hidden;
			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: .3s all;
			}
		}
		&:hover {
			.item--icon img {
				transform: scale(1.15) !important;
			}
			h4 {
				color: var(--bs-brand-orange);
			}
		}
	}
}

.strategic_process {
.progress-line {
	position: absolute;
    top: 0%;
    left: 10%;
    height: 1px;
    background-color: var(--bs-stroke);
    width: 0%;
    transform: translateY(-50%);
    transition: width 4s ease-in-out;
    z-index: 0;
    max-width: 80%;
}
.strategy_step_progress {
    display: flex;
    justify-content: space-between;
    margin-top: 6rem;
	.sp_item {
	    position: relative;
	    padding-top: 30px;
	    width: 20%;
	    color: var(--bs-text);
	    text-align: center;
	    opacity: 0;
		transform: scaleX(0.5);
		transition: all 0.3s ease;
	}
	.sp_item.visible {
		opacity: 1;
		transform: scaleX(1);
	}
	h4:after {
	    content: "";
	    display: inline-block;
	    position: absolute;
	    height: 32px;
	    width: 32px;
	    border-radius: 50%;
	    top: -16px;
	    left: 50%;
	    transform: translateX(-50%);
	    z-index: 0;
	    background: url(/images/animated-circle.png) no-repeat center;
	    background-size: contain;
	    animation: pulse-animation_new 2s infinite;
	}
	.sp_item:last-child:before {
	    display: none;
	}
}
}

@keyframes pulse-animation_new {
  0% {
    box-shadow: 0 0 0 0px rgb(25 44 71 / 20%);
  }
  100% {
    box-shadow: 0 0 0 10px rgb(25 44 71 / 0%);
  }
}


.common_cases {
	.ds--item .item--inner {
	    border-top: 1px solid var(--bs-stroke);
	    padding-top: 1rem;
	    .item_count {
	    	font-size: var(--bs-h4);
	    	margin-bottom: .75rem;
	    }
	}
}

.migrating_databricks {
	.ds--item {
		margin-top: 0;
		.item--inner {
			padding-left: 75px;
			position: relative;
			.item--icon {
				width: 55px;
        		height: 55px;
        		margin-bottom: 0;
				position: absolute;
				left: 0;
				top: 0;
			}
		}
		&:not(:last-child) {
			margin-bottom: 2rem;
		}
	}
}


.overview_blueorange.gen_ai_solution {
	.why-bo-list {
		.item--icon {
		    background: rgb(255 178 22 / 15%);
		    border: 1px solid rgb(255 178 22 / 25%);
		    padding: 10px;
		    width: 60px;
		    height: 60px;
		    border-radius: 10px;
		    margin-bottom: 1rem;
		    display: inline-flex;
		    align-items: center;
		    justify-content: center;
		}
		.item--inner:hover {
			.item--icon {
				background: var(--bs-brand-orange);
			    img {
		            filter: brightness(0) invert(1);
		        }
			}
		}
	}
}


.payment_revolution {
	.progress-line {
		left: 0;
		max-width: 97%;
	}
	.strategy_step_progress {
        .sp_item {
        	text-align: left;
        	width: 28%;
        	color: var(--bs-light-grey);
        	padding-right: 1.5rem;
        	h4 {
        		color: var(--bs-text);
        		&:after {
        			left: -10px;
        			transform: none;
        		}
        	}
        }
    }
}

.b_industry_srvc {
	.case--tabs-wrapper {
        .tab--data.sec_bgimg {
        	padding: 2rem;
        }
		.text_wrap_box h4 {
		    margin-top: 1.5rem;
		}
    }
}

.overview_blueorange {
.overview_why_blueornge {
	padding: 1rem;
	.sec_title {
		max-width: unset !important;
		margin-bottom: 0;
	}
	.why-bo-list {
		.list--item {
			width: 50%;
			.item--inner {
				color: var(--bs-light-blue);
	            transition: .3s all;
			}
			.item--icon {
				background: rgb(255 178 22 / 15%);
	            border: 1px solid rgb(255 178 22 / 25%);
	            padding: 10px;
	            width: 60px;
	            height: 60px;
	            border-radius: 10px;
	            margin-bottom: 1rem;
	            display: inline-flex;
	            align-items: center;
	            justify-content: center;
			}
			.item--inner:hover {
				cursor: pointer;
				.item--icon {
					background: var(--bs-brand-orange);
					img {
						filter: brightness(0) invert(1);
					}
				}
			}
		}
	}
}
.service_sec {
	.services_list_container {
	    .service--item {
	    	border-top-color: rgb(196 203 211 / 18%);
			.item--count {
				color: var(--bs-light-blue) !important;
			}
		}
	}
}
}

.no_bg_color {
	background-color: transparent !important;
}

.payment_future {
	.overview--wrapper {
		padding: 1rem;
	}
	.pymnt_futur_list {
		.list--item {
			margin-top: 1.5rem;
		}
		.item--inner {
			height: 100%;
	        width: 100%;
	        display: inline-block;
	        padding: 2rem;
	        color: var(--bs-off-white);
	        background: rgb(33 67 110 / 25%);
	        border-radius: 16px;
	        transition: .3s all;
	        &:hover {
	        	background: rgb(33 67 110 / 75%);
	        }
	        p {
	        	margin-bottom: 0;
	        	margin-top: 1rem;
	        	strong {
	        		display: block;
	        	}
	        }
		}
	}
}


.success_leader {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    border-radius: 24px;
    .list--item {
    	margin-top: 1.5rem;
    	p {
    		margin-bottom: 0;
    	}
    }
    .item--inner {
    	height: 100%;
        width: 100%;
        display: inline-block;
        padding: 1.5rem;
        background: rgb(33 67 110 / 25%);
        border-radius: 8px;
        &:hover {
        	background: rgb(33 67 110 / 75%);
        }
    }
}

.client_reported {
	hr {
		background-color: var(--bs-stroke);
		margin: 2rem 0;
		opacity: 1;
	}
	.cr_list_row {
		justify-content: space-between;
		.list--item {
		    width: 30%;
		}
		h2 {
			font-size: var(--bs-h1);
			font-weight: 600;
			line-height: 1;
		}
		h4 {
			margin: 10px 0;
		}
	}
}




.overview_collaboration {
	.overview--wrapper {
		padding: 1rem;
	}
	.sec_title {
		max-width: unset !important;
	}
	.collab_list {
		.list--item {
			width: 50%;
			margin-top: 1.5rem;
		}
		.icon_btn {
	        display: flex;
	        justify-content: space-between;
	    }
		.item--inner {
	        height: 100%;
	        width: 100%;
	        display: inline-block;
	        padding: 1.5rem;
	        color: var(--bs-light-blue);
	        background: rgb(33 67 110 / 25%);
	        border-radius: 16px;
	        img.ico_msg {
			    height: 80px;
			    object-fit: contain;
			    margin-bottom: 1.5rem;
			}
			p {
				margin-bottom: 0;
			}
	        .more_button {
		        width: 45px;
		        height: 45px;
		        border-radius: 12px;
		        border: 1px solid rgb(242 246 249 / 5%);
		        display: inline-flex;
		        align-items: center;
		        justify-content: center;
		        img {
		            filter: brightness(0) invert(1);
		        }
		    }
		    &:hover {
		    	background: rgb(33 67 110 / 75%);
		    	color: #fff;
		    	.more_button {
			        background: rgb(255 255 255 / 15%);
			    }
		    }
	    }
	}
}
.certificate_grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    .logo_item {
	    width: calc(100% / 5);
	    padding: 1.5rem;
	    border-bottom: 1px solid var(--bs-stroke);
	    border-right: 1px solid var(--bs-stroke);
	    img {
	    	height: 160px;
            width: 110px;
            object-fit: contain;
            margin: auto;
            display: block;
	    }
	}
}

.workshop_sec {
	.ws_list {
		h4 {
			margin-bottom: 1.25rem;
		    padding-top: 1.25rem;
		    color: var(--bs-text);
		    border-top: 1px solid var(--bs-stroke);
		}
	}
}

.about_page {
	.inner_banner {
	    padding-bottom: 250px;
	    padding-top: 150px;
	}
	.about_after_bnr {
	    margin-top: -200px;
	}
}

.team_testi_carousel {
	.owl-stage {
	    display: flex;
	}
	.owl-nav {
		position: absolute;
		right: 0;
		top: -100px;
		button {
			outline: none !important;
			box-shadow: none !important;
            border: 1px solid var(--bs-stroke) !important;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            img {
            	width: 8px;
            }
        }
		button.disabled {
			img {
				opacity: 0.25;
			}
		}
	}
	.item {
		background-color: #fff;
		border-radius: 20px;
		padding: 1.5rem;
		font-size: var(--bs-fs18);
		height: 100%;
		p:last-child {
			margin-bottom: 0;
		}
		h3 {
			font-size: var(--bs-h4);
			margin: 8px 0;
		}
		.mem_img {
		    display: flex;
		    align-items: center;
		    margin-bottom: 1.5rem;
		    img.profile_img {
			    width: 85px !important;
			}
			.user_name {
				padding-left: 1rem;
			}
		}
		.mem_pos {
		    color: var(--bs-text);
		    display: flex;
		    align-items: center;
		    background: #F2F6F9;
		    font-weight: 600;
		    margin: 10px 0;
		    width: max-content;
		    padding: 5px 15px;
		    border-radius: 30px;
		    img {
			    width: 20px !important;
			    margin-left: 10px;
			}
		}
	}
}

.leader_team_sec {
	.sec_title {
		max-width: 650px;
		margin: 0 auto;
	}
	.team_List {
		img.mem_img {
		    width: 200px;
		    height: 200px;
		    object-fit: contain;
		    margin: -10px auto 20px;
		    display: block;
		}
		h3 {
			font-size: var(--bs-h4);
		}
		p {
			font-size: var(--bs-fs18);
			margin-bottom: 0;
		}
		.item--inner {
			border: 1px solid var(--bs-stroke);
		    border-radius: 20px;
		    width: 100%;
		    height: 100%;
		    padding: 1.5rem;
		    display: inline-block;
			.mem_pos {
			    color: var(--bs-text);
			    display: flex;
			    align-items: center;
			    background: #F2F6F9;
			    font-weight: 600;
			    margin: 10px 0 20px;
			    width: max-content;
			    padding: 5px 15px;
			    border-radius: 30px;
			    img {
			    	width: 20px;
	    			margin-left: 10px;
			    }
			}
		}
	}
}

.join_sec {
	.sec_bgimg {
		background-size: cover;
		.sec_title {
			margin-bottom: 0 !important;
		}
	}
}

.contact_sec {
	.contct_addres {
		li {
			position: relative;
			padding-left: 30px;
			margin: 15px 0;
			img {
                position: absolute;
                left: 0;
                top: 2px;
                width: 22px;
                height: 20px;
                object-fit: contain;
			}
			a, address {
				text-decoration: underline;
				margin: 0;
			}
		}
	}
	.contact_social {
		a {
			margin-right: 10px;
		}
	}
}


.privacy_page {
	font-size: var(--bs-fs18);
	h3 {
		font-size: var(--bs-h4);
	}
	li a, p a {
		color: #2ea3f2;
	}
}

.contact_page {
	.banner_sec {
		padding-top: 150px;
		background-size: 40% !important;
		background-position: bottom left !important;
	}
}

.contact_page .form-section-wrapper {
	background-color: #192C47;
	background-image: linear-gradient(to bottom, #192C47, #1B375F);
	border-radius: 24px;
	padding: 2.5rem;
	color: #fff;
}
.contact_page .form-section-wrapper .form-label {
	color: #fff !important;
}
.contact_page .form-section-wrapper .form-control {
	background-color: #fff !important;
	border: 1px solid #e0e0e0 !important;
	color: #333 !important;
	border-radius: 6px;
}
.contact_page .form-section-wrapper .form-control::placeholder {
	color: #999 !important;
}
.contact_page .form-section-wrapper .form-control:focus {
	border-color: #4A90E2 !important;
	box-shadow: 0 0 0 0.2rem rgba(74,144,226,0.25) !important;
}

.contact_section {
	.form_wrapper {
	    background-color: var(--bs-dark-blue);
	    padding: 2rem;
	    position: relative;
	    border-radius: 24px;
	    color: #fff;
	    h2 {
	    	margin-bottom: 1.5rem;
	    }
	}
	.contact_list {
		a {
		    display: block;
		    margin-bottom: 10px;
		    position: relative;
		    padding-left: 25px;
			i {
			    color: #ffb216;
			    font-size: 15px;
			    margin-right: 5px;
			    position: absolute;
			    left: 0;
			    top: 5px;
			}
		}
	}
	.contact_social {
	    margin-top: 2rem;
		a img {
		    margin-right: 10px;
		    width: 25px;
		    height: 25px;
		    object-fit: contain;
		}
	}
	form {
		label {
		    font-weight: 400;
		    margin-bottom: 5px;
		    color: var(--bs-light-blue);
		    text-transform: uppercase;
		    span {
		    	color: red;
			    font-weight: 700;
			    padding-left: 2px;
			    font-size: 120%;
			    line-height: 1;
		    }
		}
		.form-control {
			border: 1px solid rgb(196 203 211 / 10%);
            background: #1F3453 !important;
		    color: var(--bs-light-blue);
		}
		.form-control::placeholder {
			color: #C4CBD3;
		}
		.captch_checkbox {
		    display: flex;
		    align-items: center;
		    justify-content: space-between;
		    flex-direction: row-reverse;
		    gap: 30px;
		    p {
		    	margin-bottom: 0;
		    	width: 50%;
		    	color: var(--bs-light-blue);
		    	padding-left: .75rem;
		    }
		}
	}
}



.resources_page, .event_page {
	h1, h2, h3, h4 {
		letter-spacing: normal;
		font-weight: 600;
	}
	.banner_sec {
    	padding-top: 120px;
	    padding-bottom: 80px;
	    height: unset;
	    h1 {
	    	font-size: var(--bs-h1);
	    	font-weight: 600;
	    	margin-bottom: 1rem;
	    	letter-spacing: normal;
	    }
	}
}

.single_resource_page {
	h1, h2, h3, h4 {
		letter-spacing: normal;
		font-weight: 600;
	}
	h1 {
		font-size: var(--bs-h1);
	}
	h2 {
		font-size: var(--bs-h2);
	}
	h3 {
		font-size: var(--bs-h3);
	}
	h4 {
		font-size: var(--bs-h4);
	}
	.post_dtl_sec {
		font-size: var(--bs-fs18);
		form {
			[type="submit"] {
				img {
					margin: 0 !important;
				}
			}
		}
	}
}

.event_page {
.event_section {
	img.evnt_thumb {
	    width: 100%;
	    height: 260px;
	    object-fit: cover;
	    border-radius: 5px;
	    margin-bottom: 10px;
	    object-position: left;
	}
}
}


.single_event_page {
	.banner_logos_event {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	    padding-top: 2rem;
	    gap: 15px;
	    .item {
	    	background: #1F3453;
	    	border-radius: 16px;
	        padding: 20px;
	        text-align: center;
	        width: calc(100% / 6);
	        img {
	        	height: 40px;
	        	object-fit: contain;
	        }
	    }
	}
	.ed_row {
		.ed_item {
			margin-bottom: 1.5rem;
			img.w-100 {
				height: 300px;
    			object-fit: cover;
    			border-radius: 12px;
    			margin-bottom: 1rem;
			}
		}
		.event_dtl_list {
		    display: flex;
		    justify-content: space-between;
		    padding: 8px 0;
		    color: var(--bs-light-grey);
		    font-size: var(--bs-fs16);
		    strong {
		    	font-weight: 600;
		    	color: var(--bs-text);
		    }
		}
		.event_dtl_list:not(:last-child) {
			border-bottom: 1px solid var(--bs-stroke);
	    }
	}
	.event_detail {
		.event_form {
		    background-image: linear-gradient(to bottom, #192C47, #1B375F);
		    padding: 2.5rem;
		    border-radius: 24px;
		    color: var(--bs-light-blue);
		}
	}
	form {
		label {
			text-transform: uppercase;
			color: var(--bs-light-blue);
			font-size: var(--bs-fs16);
			margin-bottom: 5px;
		}
		.form-control {
			background: #1F3452 !important;
            border: 1px solid rgb(196 203 211 / 10%);
			font-size: var(--bs-fs16);
			color: var(--bs-light-blue) !important;
		}
		.form-submit {
			display: flex;
			justify-content: space-between;
			flex-direction: row-reverse;
			gap: 20px;
			p {
				width: 50%;
				a {
					text-decoration: underline;
				}
			}
		}
	}
}

.error404 {
	.error_sec {
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: bottom center;
		min-height: 100vh;
		display: flex;
        align-items: center;
        position: relative;
	}
	.pos_404 {
		width: 100%;
        position: absolute;
        top: 0;
        height: 70%;
        object-fit: contain;
	}
	img.error_icon {
	    width: 150px;
	    margin-left: -80px;
	    margin-bottom: -20px;
	}
	.page-footer {
		display: none;
	}
}


.fabric_databricks {
	.why-bo-list {
		.list--item {
			h4.text_orange {
			    color: var(--bs-brand-orange);
			    margin-top: 1rem;
			}
		}
	}
	.how_list {
		counter-reset: my-sec-counter;
		.how_item {
			margin-bottom: 1.5rem;
			position: relative;
            padding-left: 70px;
            h4{
            	margin-bottom: 0;
            }
			&:before {
				counter-increment: my-sec-counter;
                content: "0" counter(my-sec-counter);
                position: absolute;
                left: 0;
                font-weight: 700;
                font-size: var(--bs-h4);
                color: var(--bs-brand-orange);
                background: rgb(255 178 22 / 15%);
                border: 1px solid rgb(255 178 22 / 25%);
                width: 50px;
                height: 50px;
                border-radius: 8px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
			}
		}
	}
}


.stand_logos {
    display: flex;
    gap: 1.5rem;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent !important;
    padding: 0 !important;
}

.fab_max_text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	p {
		max-width: 500px;
	}
}

.intl-tel-input .country-list {
    background-color: #192c47 !important;
    border: 1px solid #304461 !important;
	.country-list li .country-name, .dial-code {
		color: #fff !important;
	}
}
.intl-tel-input .selected-flag .iti-arrow {
	border-top: 4px solid #ffffff !important;
}


.ms-options {
    background: #F2F6F9 !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 12px;
    padding: 10px !important;
    box-shadow: 0 2px 10px rgb(88 88 88 / 15%);
    /* Scrollbar Styling */
	&::-webkit-scrollbar {
	    width: 7px;
	}
	&::-webkit-scrollbar-track {
	    background-color: #ebebeb;
	    -webkit-border-radius: 0 12px 12px 0;
	    border-radius: 0 12px 12px 0;
	}
	&::-webkit-scrollbar-thumb {
	    -webkit-border-radius: 12px;
	    border-radius: 12px;
	    background: #838383; 
	}
}
.ms-options-wrap.ms-active button {
    border: 1px solid #21436E !important;
}
.ms-options-wrap > .ms-options > ul label {
	overflow: hidden;
	text-overflow: ellipsis;
}
.ms-options-wrap > .ms-options {
	ul {
		list-style: none;
	}
	ul li {
		list-style: none;
		margin: 2px 0 !important;
		label::before {
			content: "";
			position: absolute;
			top: 5px;
            left: 0;
            height: 15px;
            width: 15px;
			background: #fff;
			border: 1px solid #C4CBD3;
			border-radius: 3px;
		}
		input[type="checkbox"] {
			opacity: 0;
		}
		label:has(input[type="checkbox"]:checked)::before {
		  	background: #21436E;
		  	border-color: #21436E;
		}
		label::after {
			content: "";
			position: absolute;
			display: none;
		}
		label:has(input[type="checkbox"]:checked)::after {
			display: block;
			left: 5px;
            top: 6px;
            width: 5px;
            height: 10px;
			border: solid white;
			border-width: 0 2px 2px 0;
			transform: rotate(45deg);
		}
	}
}



.pe_service {
	.owl-stage {
	    display: flex;
	}
	.item--icon img {
		width: 60px !important;
		height: 60px;
		object-fit: contain;
	}
	.item {
		background-color: #fff;
		border-radius: 20px;
		padding: 2rem;
		height: 100%;
		width: 100%;
	}
	.item p {
		font-size: 90%;
		margin-bottom: 0;
	}
}

.pe_why_blueorange{
	.owl-stage {
        display: flex;
    }
	.item{
		background-color: #192C47;
		padding: 2rem 1rem;
		border-radius: 20px;
		/* padding: 2rem; */
		height: 100%;
		p {
			color: #fff;
		}
	}
}


.case_study{
	.case_study_inner_content{
		border-bottom: 2px solid var(--bs-brand-blue);
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}
	.case_study_results {
		background-color: var(--bs-brand-blue);
		padding: 2rem;
		border-radius: 15px;

		ul li{
			font-size: var(--bs-fs18);
		}
	}

	.results_line{
		font-size: var(--bs-fs18);
	}
}

.beyond_automation{
	border-radius: 60px 60px 0 0;
	.image_sec{
		margin-bottom: 3rem;
	}
}

.text_blue{
	color: #5097DD;
	font-weight: 400;
}


.beyond_automation {
	.accordion-header{
		display: flex;
		span{
			margin-bottom: 0;
	        width: 50px;
		}
		button {
			outline: none;
			box-shadow: none;
		}
	}

	.accordion-button{
		background-color: transparent;
	    border: 0;
	    text-align: left;
	}
	.accordion-item1{
		border-top: 2px solid #000;
	}
	.accordion-item{
		padding: 1rem;
	    border-bottom: 2px solid #000;
	}
	.accordion-body{
		padding-left: 50px;
	}
}

.pe_case_study_sec {
	.accordion-header button {
	    border: 0;
	    width: 100%;
	    background: #fff;
	    outline: none;
	    box-shadow: none;
	    display: flex;
	    justify-content: space-between;
	    text-align: left;
	    font-weight: 600;
	    color: var(--bs-text);
	    img {
	    	width: 70px;
	    	height: 70px;
	    	object-fit: contain;
	    	margin-left: 1rem;
	    }
	    span {
	    	max-width: 70%;
	    }
	}
	.accordion-item {
		padding-bottom: 2rem;
	}
	.accordion-item:not(:first-child) {
	    border-top: 2px solid var(--bs-brand-blue);
	    padding-top: 2rem;
	}
	.accordion-body {
		padding-top: 2rem;
		.result_box {
			background-color: var(--bs-brand-blue);
			border-radius: 20px;
			padding: 1.5rem;
			font-size: var(--bs-fs22);
			color: #fff;
		}
	}
}

.data_services{
	background-color: #F2F6F9;
	h2{
		padding-left: 1rem;
    	border-left: 5px solid #E84D46;
	}
}


.service_built_pe{
	background-color: #F2F6F9;
	border-radius: 0 0 25px 25px;
}

.portfolio_info {
	.col-items{
		padding: 0 1.5rem;
		margin-bottom: 1rem;
		max-width: 25%;
		&:not(:first-child) {
			border-left: 1px solid #000;
		}
	}
}

.pe_service, .pe_why_blueorange {
	.owl-nav{
		position: absolute;
		right: 0;
		bottom: calc(100% + 3rem);
		.owl-prev{
			margin-right: 1rem;
		}
		button {
			outline: none;
			box-shadow: none;
		}
		button img {
			width: 45px;
		}
	}
}

.pe_why_blueorange {
	p:last-child {
		margin-bottom: 0;
	}
}
 

.how_we_partner_pe{
	background-color: #193254;
	padding-bottom: 0 !important;
	h2 {
		color: #fff;
	}
	.how_we_partner_pe_heading{
		display: inline-block;
		padding: 0.5rem;
		border: 1px solid #FFB216;
	}
	p {
		color: #fff;
	}
	.timeline_process {
		height: 100%;
		.progress-line {
			position: absolute;
		    top: 0%;
		    left: 50%;
		    transform: translateX(-50%);
		    width: 2px;
	        height: 0%;
		    background-color: var(--bs-stroke);
		    transition: height 4s ease-in-out;
		    z-index: 0;
		    max-height: 100%;
		}
		.timeline_steps {
			display: flex;
	        height: 100%;
	        flex-direction: column;
	        justify-content: space-around;
			.tl_item {
			    position: relative;
			    width: 50%;
			    color: var(--bs-text);
			    opacity: 0;
				transition: all 0.3s ease;
	            margin-bottom: 20px;
			}
			.tl_item.visible {
				opacity: 1;
			}
			.tl_item:nth-child(even) {
	            padding-left: 50px;
			    text-align: left;
			    margin-left: auto;
			    h4:after {
			    	left: -12px;
			    }
			}
			.tl_item:nth-child(odd) {
				padding-right: 50px;
			    text-align: right;
			    h4:after {
					right: -13px;
			    }
			}
			h4:after {
			    content: "";
			    display: inline-block;
			    position: absolute;
			    border-radius: 50%;
			    top: -1px;
	            width: 25px;
	            height: 25px;
			    z-index: 0;
			    /*background: url(../newimages/animated-circle.png) no-repeat center;*/
			    background: url(/images/colored_circle.png) no-repeat center;
			    background-size: contain;
			    animation: pulse-animation_orange 2s infinite;
			}
		}
	}
	.tl_item{
		h4{
			color: #FFB216;
		}
		h3{
			color: #fff;
		}
		p{
			color: #fff;
		}
	}

	.timeline_col {
		margin-top: 4rem;
	}
	.inner_tl_item{
		padding: 1.5rem 2rem;
        background-color: #192c47;
        border-radius: 10px;
        h3 {
        	display: inline-flex;
        	align-items: center;
        	gap: 1rem;
        	img {
        		width: 45px;
        		height: 45px;
        		object-fit: contain;
        	}
        }
        p:last-child {
        	margin-bottom: 0;
        }
	}

	.timeline_process {
		.timeline_steps {
			padding-bottom: 3rem;
			.tl_item:nth-child(even) {
				padding-right: 15rem;
			}
			.tl_item:nth-child(odd) {
				padding-left: 15rem;
			}
		}
	}
}

@keyframes pulse-animation_orange {
  0% {
    box-shadow: 0 0 0 0px rgb(255 178 22);
  }
  100% {
    box-shadow: 0 0 0 10px rgb(25 44 71 / 0%);
  }
}


.page-id-5059, .postid-2268, .postid-63, .postid-57, .page-id-6101, .page-id-9 {
	.page-footer {
		.get__started {
			display: none;
		}
	}
}

.page_genai, .page_data_strategy, .machine_learning_page {
	background: #F2F6F9;
}
.title-border-left {
    border-left: 5px solid #FFB216;
    padding-left: 1rem;
}
.measure_impact {
	overflow: hidden;
}
.gen_impact_carousel {
	clip-path: inset(-100vw -100vw -100vw 0);
	.owl-stage-outer {
		overflow: unset !important;
	}
	.item  {
		background: var(--bs-dark-blue);
		border-radius: 16px;
		padding: 1.75rem;
		color: #fff;
		img {
			width: 65px !important;
			height: 65px;
			object-fit: contain;
		}
		h3, h4, img {
			margin-bottom: 10px;
		}
		p {
			color: #F2F6F9;
			opacity: 60%;
			margin-bottom: 0;
		}
	}
}
.intelligent_action {
	.table_list {
		margin: 1.5rem 0;
		border: 1px solid #4F81BD;
		border-radius: 16px;
		overflow: hidden;
		display: flex;
		flex-wrap: wrap;
		.flex-item {
			width: 33.33%;
			color: #fff;
			&:nth-child(2) {
				background-color: #F2F6F90D;
				li, h4 {
					color: #F2F6F9;
					opacity: 60%;
				}
			}
			&:last-child {
				background-color: #F2F6F9;
				li, h4 {
					color: var(--bs-dark-blue);
				}
			}
		}
		.flex-item {
			h4 {
				padding: 1rem 1.5rem 0;
			}
			ul {
				padding: 0 1.5rem;
			}
			li {
				list-style: none;
				padding: 8px 0;
				display: flex;
				align-items: center;
				img {
					margin-right: 1rem;
				}
				&:not(:first-child) {
					border-top: 1px solid #4F81BD;
				}
			}
		}
	}
}

.production_grade_progess {
	.progress-line {
		height: 3px;
		top: 50%;
		background: var(--bs-brand-orange);
	}
	.strategy_step_progress {
		margin-top: 3rem;
		margin-bottom: 3rem;
		.sp_item {
			background: var(--bs-dark-blue);
			border-radius: 16px;
			padding: 1.75rem;
			color: #fff;
			text-align: left !important;
			margin-bottom: 250px;
			span {
	            width: 50px;
	            height: 50px;
	            background: rgba(247, 183, 51, 0.2);
	            border-radius: 10px;
	            display: flex;
	            padding: 10px;
	            align-items: center;
	            justify-content: center;
	            margin-bottom: 1rem;
			}
			p {
				color: #F2F6F9;
				opacity: 60%;
				margin-bottom: 0;
			}
			h4:after {
				top: -44px;
				height: 40px;
				width: 40px;
			    background: url(/images/grade-arrow-dot.svg) no-repeat center;
		        background-size: contain;
		        animation: pulse-animation_orange 2s infinite;
			}
		}
		.sp_item:nth-child(even) {
			margin-top: 250px;
            margin-bottom: 0;
		}
		.sp_item:nth-child(odd) {
			h4:after {
				bottom: -43px;
				top: auto;
			}
		}
	}
}

.what_aparts {
	.item_inner {
		background: var(--bs-dark-blue);
		border-radius: 16px;
		padding: 1.75rem;
		color: #fff;
		display: flex;
		align-items: flex-start;
		gap: 1.5rem;
		height: 100%;
		p {
			color: #F2F6F9;
			opacity: 60%;
			margin-bottom: 0;
		}
	}
}

.measure_outcomes {
	.item_inner {
		background: var(--bs-dark-blue);
		border-radius: 16px;
		padding: 1.75rem;
		color: #fff;
		height: 100%;
		.icon_title {
			gap: 1.5rem;
			display: flex;
			align-items: center;
			margin-bottom: 1rem;
		}
		h3 small {
			font-weight: 400;
			font-size: 50%;
			padding-left: 10px;
			vertical-align: middle;
		}
		.subtitle {
			margin-top: 1rem;
			margin-bottom: 5px;
			color: #4F81BD;
			font-weight: 700;
		}
		p, ul li {
			color: #F2F6F9;
			opacity: 60%;
			margin-bottom: 0;
		}
	}
}

.technology_partnrship {
	.gen_logo_flex {
		gap: 1rem;
	}
	.gen_logo_item {
		background: #F2F6F91A;
		border-radius: 16px;
		padding: 1rem;
		border: 1px solid rgb(242 246 249 / 54%);
	}
	.logo_flex {
		display: flex;
		gap: 7px;
		img {
			background: #F2F6F9;
            border-radius: 5px;
            padding: 7px;
            height: 30px;
            object-fit: contain;
            max-width: 50px;
            width: auto;
		}
	}
}

#dm_accordion {
	.accordion-item {
        background: #F2F6F91A;
        border: 1px solid #F2F6F933;
        border-radius: 11px;
        overflow: hidden;
        margin-bottom: 1rem;
	}
	.accordion-button {
		width: 100%;
		min-height: 70px;
		background: transparent;
		border: 0px;
		outline: none;
		box-shadow: none;
		text-align: left;
		font-size: var(--bs-fs22);
		font-weight: 600;
		color: #fff;
		position: relative;
		padding: 10px 65px 10px 85px;
		strong {
			font-weight: 600;
		}
		span.acr_icon {
		    width: 48px;
            height: 48px;
		    position: absolute;
		    left: 1rem;
		    top: 1rem;
		    background: #FFB21680;
		    border-radius: 9px;
		    display: inline-flex;
		    flex-wrap: wrap;
		    border: 1px solid #FFB216;
		    align-items: center;
		    justify-content: center;
		    svg path {
			    stroke: #FFB216;
			}
		}
		small {
			display: block;
			font-size: 13px;
		}
	}
	.accordion-button:before {
		content: '';
		position: absolute;
		right: 10px;
		top: 17px;
		width: 35px;
		height: 35px;
		background: url(/images/arrow-open.svg) no-repeat center;
		background-size: contain;
	}
	.accordion-button.collapsed:before {
		background: url(/images/arrow-close.svg) no-repeat center;
		background-size: contain;
	}
	.accordion-body {
		padding: 1rem;
		padding-top: 0;
		p {
			color: #192C47CC;
		}
		p:last-child {
			margin-bottom: 0;
		}
	}
	.accordion-item.active {
		border-color: #FFB216;
		background: #fff4dd;
		.accordion-button {
			color: var(--bs-dark-blue);
	        span.acr_icon {
	        	background: #FFB216;
	        	svg path {
				    stroke: var(--bs-dark-blue);
				}
	        }
	    }
	}
}

.gen_impact_carousel {
	.owl-nav {
	    display: flex;
	    justify-content: center;
	    margin-top: 1rem;
	}
	.owl-nav button {
	    width: 45px;
	    height: 45px;
	    border-radius: 10px;
	    background: #192c47 !important;
	    margin: 5px;
	    outline: none;
	    box-shadow: none;
	    border: 0;
		img {
		    filter: brightness(0)invert(1);
		    width: 10px;
		    line-height: 0;
		    position: relative;
		    top: -2px;
		}
	}
}

.strategy_problem_solution {
	.col_inner {
		background-color: #ffffff;
		border-radius: 16px;
		padding: 2rem;
		width: 100%;
		height: 100%;
	}
	ul {
		padding-left: 0;
		margin-bottom: 0;
	}
	ul li {
		position: relative;
		padding-left: 30px;
		margin: 10px 0;
		list-style: none;
		&:before {
			content: '';
			position: absolute;
			left: 0;
			top: 3px;
            width: 18px;
            height: 18px;
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat;
		}
	}
	.list_cross {
		li:before {
			background-image: url(/images/x-square.svg);
		}
	}
	.list_tick {
		li:before {
			background-image: url(/images/check-square.svg);
		}
	}
	.list_tick_white {
		li:before {
			background-image: url(/images/check-square-white.svg);
		}
	}
}

.how_we_work_row {
	.list_cross, .list_tick_white {
		li {
			padding-bottom: 10px;
			&:before {
				top: 20px;
			}
			strong {
				display: block;
				padding-top: 1rem;
			}
		}
	}
	.list_cross {
		li:not(:first-child) {
			border-top: 1px solid #727272;
		}
	}
	.list_tick_white {
		li:not(:first-child) {
			border-top: 1px solid var(--bs-brand-orange);
		}
	}
}

.what_walk_sec {
	background-color: var(--bs-dark-blue);
	border-radius: 25px;
	.item {
		background-color: #21436ECC;
		border-radius: 16px;
		padding: 2rem;
		width: 100%;
		height: 100%;
	}
}

.what_apart_sec {
	background-color: var(--bs-dark-blue);
	border-radius: 25px;
	.item {
		background-color: #21436ECC;
		border-radius: 16px;
		padding: 2rem;
		width: 100%;
		height: 100%;
	}
}

.what_apart_sec {
	overflow: hidden;
}

.what_apart_carousel {
	clip-path: inset(-100vw -100vw -100vw 0);
	.owl-stage-outer {
		overflow: unset !important;
	}
	.owl-stage {
		padding-left: 0px !important;
		display: flex;
	}
	.item {
		width: 100%;
		height: 100%;
		background: #21436ECC;
		border-radius: 16px;
		padding: 2rem;
		padding-bottom: 4rem;
		color: #fff;
		position: relative;
		img {
			width: 65px !important;
			height: 65px;
			object-fit: contain;
		}
	}
	.item_note {
		font-weight: 700;
        border-left: 4px solid var(--bs-brand-orange);
        padding-left: 13px;
        position: absolute;
        bottom: 2rem;
        width: calc(100% - 3rem);
	}
	.owl-nav {
		margin-top: 1.5rem;
		button {
			width: 45px;
	        height: 45px;
	        border-radius: 10px;
	        background: var(--bs-brand-orange) !important;
	        margin: 5px;
	        outline: none;
	        box-shadow: none;
	        border: 0;
	        img {
	        	position: relative;
	        	top: -2px;
	        }
		}
	}
}

hr.orange_line {
    background: var(--bs-brand-orange);
}

.how_work_together {
	background-color: #fff;
	border-radius: 25px 25px 0 0;
	.icon--btn img {
	    width: 35px;
	    height: 35px;
	    object-fit: contain;
	}
	h4 {
		font-weight: 700;
	}
	.col-mb {
		margin-bottom: 2.5rem;
	}
	.time_verify {
		border-left: 4px solid var(--bs-brand-orange);
	    padding-left: 13px;
		span {
			display: block;
			margin: 5px 0;
			color: #000;
			img {
				margin-right: 10px;
				width: 18px;
                position: relative;
                top: -2px;
			}
		}
	}
	.sec_note {
		border-left: 4px solid var(--bs-brand-orange);
	    padding-left: 13px;
	}
}

.build_roadmap {
	.sec_title {
		border-radius: 25px;
		padding: 5rem;
		box-shadow: 0px 1px 15px rgb(0 0 0 / 11%);
	}
	p a {
		color: var(--bs-brand-orange);
	}
}

.service_delivery_model {
	.col-mb {
		margin-top: 1.5rem;
		margin-bottom: 0;
	}
	.item {
		border: 1px solid #21436E;
		padding: 2rem;
		height: 100%;
		width: 100%;
		border-radius: 16px;
		.duration_info {
			background: var(--bs-brand-orange);
            padding: 6px 15px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1rem;
            margin-top: .5rem;
		}
	}
}

.forcasting_row {
	.col-mb {
		margin-top: 1.5rem;
	}
	h4 {
		padding-top: 1rem;
		border-top: 2px solid var(--bs-brand-orange);
	}
	.sec_note {
		border-left: 0;
		padding: 1.5rem;
		background: #21436E;
		border-radius: 15px;
	}
}

.machine_learning_page .what_walk_sec {
	.item {
		background: var(--bs-dark-blue);
		position: relative;
		padding-left: 100px;
		.icon--btn {
			position: absolute;
			left: 1.5rem;
			top: 2rem;
			width: 55px;
			height: 55px;
			object-fit: contain;
		}
		p {
			margin-bottom: 0;
		}
	}
}

.mdi_services_sec {
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
	.item {
		background: var(--bs-dark-blue);
		border-radius: 16px;
		padding: 2rem;
		width: 100%;
		height: 100%;
		.icon--btn {
			width: 55px;
			height: 55px;
			object-fit: contain;
			margin-bottom: 1rem;
		}
		p {
			margin-bottom: 0;
		}
	}
}

.building_models_row {
	.col-margin {
		margin-top: 1.5rem;
	}
	.item_inner {
		background-color: #fff;
		padding: 2rem;
		border-radius: 20px;
		height: 100%;
		width: 100%;
		box-shadow: 0px 2px 20px rgb(0 0 0 / 13%);
	}
	ul {
		padding-left: 20px;
		margin-bottom: 0;
		margin-top: 1.5rem;
	}
	li {
		list-style: disc !important;
        padding-left: 0 !important;
        margin: 5px 0 !important;
        &:before {
        	display: none;
        }
	}
	.step_icon_no {
		text-align: center;
        margin-bottom: 1.5rem;
		img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: contain;
            display: block;
            margin-bottom: 1.5rem;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0px 4px 6px -4px #0000001A;
		}
		span {
			background-color: #EFF6FF;
			padding: 5px 15px;
			border-radius: 30px;
		}
	}
	.color_1 {
		h4 {
			color: #192C47;
		}
		.step_icon_no {
			span {
				color: #192C47;
			}
		}
		li::marker {
			color: #192C47;
		}
	}
	.color_2 {
		h4 {
			color: #21436E;
		}
		.step_icon_no {
			span {
				color: #21436E;
			}
		}
		li::marker {
			color: #21436E;
		}
	}
	.color_3 {
		h4 {
			color: #FFB216;
		}
		.step_icon_no {
			span {
				color: #FFB216;
			}
		}
		li::marker {
			color: #FFB216;
		}
	}
	.color_4 {
		h4 {
			color: #727272;
		}
		.step_icon_no {
			span {
				color: #727272;
			}
		}
		li::marker {
			color: #727272;
		}
	}
}

.sdi_problem_steps {
	.building_models_row{
		.color_1 {
			h4 {
				color: #192C47;
			}
			.step_icon_no {
				span {
					color: #192C47;
				}
			}
			li::marker {
				color: #192C47;
			}
		}
		.color_2 {
			h4 {
				color: #21436E;
			}
			.step_icon_no {
				span {
					background: #FAF5FF;
					color: #21436E;
				}
			}
			li::marker {
				color: #21436E;
			}
		}
		.color_3 {
			h4 {
				color: #21436EB2;
			}
			.step_icon_no {
				span {
					background: #EEF2FF;
					color: #21436EB2;
				}
			}
			li::marker {
				color: #21436EB2;
			}
		}
		.color_4 {
			h4 {
				color: #727272;
			}
			.step_icon_no {
				span {
					background: #ECFDF5;
					color: #727272;
				}
			}
			li::marker {
				color: #727272;
			}
		}
	}
	.building_models_note {
		padding-left: 0;
		border-left: 0;
		color: #727272;
	}
}

.building_models_note {
	max-width: 700px;
	padding-left: 20px;
	border-left: 5px solid var(--bs-brand-orange);
	margin-top: 2.5rem;
}

.idi_opportunity_row {
	.col-mb {
	    margin-top: 2rem;
	}
}
.idi_case_row {
	.col-mb {
		margin-top: 1.5rem;
	}
	.item  {
		background-color: #fff;
		overflow: hidden;
		border-radius: 25px;
		width: 100%;
		height: 100%;
		padding-bottom: 100px;
        position: relative;
	}
	.itm_img {
		height: 250px;
		object-fit: cover;
		width: 100%;
	}
	.case_studytag {
	    background-color: #F2F6F9;
	    display: inline-block;
	    padding: 5px 15px;
	    margin: 10px auto 1.5rem;
	    border-radius: 30px;
	}
	.item_pading {
		padding: 2rem;
	}
	.sec_note {
		border-left: 4px solid var(--bs-brand-orange);
	    padding-left: 13px;
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        width: calc(100% - 4rem);
	    strong {
	    	display: block;
	    }
	}
}

.build_roadmap .ready_to_drive_inner {
	padding: 2rem;
}

.mdi_advantages {
	.mdi_advantages_row {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	.item {
		padding: 2rem;
		height: 100%;
		width: 100%;
		background: #21436E;
		border-radius: 20px;
		p {
			margin-bottom: 0;
		}
	}
}

.mdi_concted_srvc {
	.item {
		padding: 2rem;
		height: 100%;
		width: 100%;
		border: 1px solid #21436E33;
		border-radius: 20px;
	}
}

.mdi_partners_wrapper {
    background: linear-gradient(to bottom, #192C47, #1B375F);
    padding: 1rem;
    border-radius: 20px;
}
.technology_carousel_slick{
  	width:200px;
  	padding: 10px 0;
  	margin-left: auto;
  	margin-right: auto;
	.slide-box{
		width: 100% !important;
        height: 80px !important;
        border: 1px solid #F2F6F9 !important;
        border-radius: 12px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        margin: 10px 0; 
        img {
        	width: 100%;
        	height: 100%;
        	object-fit: contain;
        }
	}
}

.technology_vertical_reverse {
	transform: rotate(180deg);
	.slide-box {
		transform: rotate(180deg);
	}
}

.mdi_foundation_row {
	.item_inner {
		padding: 1.5rem;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		border-radius: 15px;
		background: var(--bs-brand-blue);
		img {
			width: 20px;
			height: 20px;
			object-fit: contain;
		}
	}
	.col-margin:nth-child(odd) {
		.item_inner {
			background: #192C47;
		}
	}
}

.heirarchy_wrapper {
	.left_common_box, .right_common_box {
		display: flex;
	    align-items: center;
	    gap: 10px;
	    background: #fff;
	    padding: 15px 10px;
	    border: 1px solid #21436E4D;
	    border-radius: 10px;
	    width: 260px;
	    p {
		    margin-bottom: 0;
		    line-height: 1.25;
		    font-size: 14px;
		}
		strong {
		    display: block;
		}
		img {
		    width: 25px;
		    height: 25px;
		    object-fit: contain;
		}
	}
	.left_common_box {
	    padding: 10px;
	}
	.right_common_box {
	    padding: 15px 10px;
		p {
		    font-weight: 500;
		}
	}
}

.heirarchy_wrapper {
    height: 25rem;
}

.animate-box img {
    z-index: 0;
    max-width: 100%;
}

.path1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    fill: none;
    stroke-width: 3;
}

.path2 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    fill: none;
    stroke-width: 3;
}

.outer-animate-box.animate-started .path1 {
    animation: draw2 3s ease-in-out forwards;
}

.outer-animate-box.animate-started .path2 {
    animation: draw 3s 2s ease forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}
@keyframes draw2 {
    to { stroke-dashoffset: 800; }
}

@media (min-width: 768px) {
    .left-img1 { position: absolute; top: 0%; left: 0; }
    .left-img2 { position: absolute; top: 20%; left: 0; transform: translateY(-20%); width: 252px; }
    .left-img3 { position: absolute; top: 40%; left: 0; transform: translateY(-40%); width: 252px; }
    .left-img4 { position: absolute; top: 60%; left: 0; transform: translateY(-60%); width: 252px; }
    .left-img5 { position: absolute; top: 80%; left: 0; transform: translateY(-80%); width: 252px; }
    .left-img6 { position: absolute; top: 100%; left: 0; transform: translateY(-100%); width: 252px; }
    .right-img1 { position: absolute; top: 0%; right: 0; }
    .right-img2 { position: absolute; top: 33.33%; right: 0; transform: translateY(-33.33%); }
    .right-img3 { position: absolute; top: 66.66%; right: 0; transform: translateY(-66.66%); }
    .right-img4 { position: absolute; top: 100%; right: 0; transform: translateY(-100%); }
}

@media (max-width: 425px) {
    .heirarchy_wrapper { height: 11rem; }
    .path1, .path2 { stroke-width: 2 !important; }
}

.blue_bi_accordion {
    .accordion:first-child {
        margin-top: 0;
    }
    .accordion-item {
        border-radius: 20px;
        margin: 0 0 1rem;
        border: none;
        overflow: hidden;
        background: #21436E;
    }
    .accordion-header {
        background: transparent;
        margin-bottom: 0;
        border: 0;
    }
    .accordion-header button {
        width: 100%;
        border: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        padding: 1.25rem 48px 1.25rem 70px;
        text-align: left;
        position: relative;
        background: transparent;
        color: var(--bs-off-white);
        border-radius: 0;
        font-size: var(--bs-fs18);
        text-transform: uppercase;
        img {
        	width: 40px;
            height: 40px;
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    .accordion-header button:after {
        display: none;
    }
    .accordion-header button:before {
		content: ' ';
        position: absolute;
        right: 15px;
        top: 17px;
        width: 25px;
        height: 25px;
        background-image: url(../newimages/acc-up-arrow.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 19px;
    }
    .accordion-header button.collapsed:before {
        background-image: url(../newimages/acc-down-arrow.svg);
    }
    .accordion-body {
        padding: 1.25rem;
        color: #EEEEEE;
        p:last-child {
        	margin-bottom: 0;
        }
        .item_note {
			font-weight: 600;
	        border-left: 4px solid var(--bs-brand-orange);
	        padding-left: 13px;
	        margin-top: 1rem;
		}
    }
}

.mdi_services_sec {
	.blue_bi_accordion {
		.accordion-item.active {
			background: #192C47 !important;
		}
		.accordion-header button {
			padding: 1.5rem 48px 1.5rem 70px;
			text-transform: unset;
			font-weight: 700;
		}
		.accordion-body {
			padding-top: 0;
		}
	}
}

.engagmnt_model {
	background-color: #F2F6F9;
	padding: 3rem 2rem;
	border-radius: 40px;
	p {
		margin-bottom: 0;
	}
}

.what_walk_sec .sdaml_technical_business {
	.item {
	    border-radius: 0;
	    padding: 0;
	    padding-left: 70px;
	    width: 100%;
	    height: auto;
	    background: transparent !important;
	    padding-bottom: 1.5rem;
		border-bottom: 1px solid var(--bs-brand-orange);
	    .icon--btn {
	    	width: 48px;
            height: 48px;
		    left: 0 !important;
		    top: 0 !important;
		}
	}
}


.homepage_story_sec {
	.story_list_item {
		margin-bottom: 1.5rem;
		.icon_text {
			display: flex;
			gap: 8px;
			align-items: center;
			margin-bottom: 10px;
		}
		h4 {
			margin-bottom: 0;
		}
		img.icon_size {
			width: 34px;
			height: 34px;
			object-fit: contain;
		}
		p {
			margin-bottom: 0;
		}
	}
}

.home_pricing_row {
	.col-margin {
		margin-top: 1.75rem;
	}
	.item_inner {
		background: var(--bs-dark-blue);
		padding: 2rem;
		border-radius: 20px;
		width: 100%;
		height: 100%;
	}
	li {
		font-size: 90%;
		color: #F2F6F9;
	}
}

.homepage_page {
	.orange_tick_list {
		ul {
			padding-left: 0;
			margin-bottom: 0;
		}
		ul li {
            position: relative !important;
            list-style: none !important;
            padding-left: 27px !important;
			&:before {
				content: '';
				width: 16px;
				height: 16px;
				position: absolute;
				left: 0;
				top: 2px;
				background: url('/images/orange-tick.svg') no-repeat center;
				background-size: 13px;
			}
		}
	}
}

.home_pricing_row {
	p:last-child {
		margin-bottom: 0;
	}
	/*.selected_plan {
		border: 1px solid var(--bs-brand-orange);
		position: relative;
		&:before {
			content: 'Most popular';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 80%;
            color: var(--bs-dark-blue);
            text-transform: uppercase;
            background-color: var(--bs-brand-orange);
            padding: 7px 14px;
            line-height: 1;
            font-weight: 600;
            border-radius: 5px;
		}
	}*/
}

.home_partner_sec {
	.partner--carousel {
		.partner--wrapper {
			.item {
				background: #21436E;
				border: none;
			}
		}
	}
}

.home_firm_packages {
	.form_pckge_inner {
		border: 1px solid #727272;
		padding: 2rem;
		border-radius: 40px;
	}
	.firm_pckge_row {
		.item-inner {
			width: 100%;
			height: 100%;        
			border-radius: 16px;
        	padding: 1.75rem;
			background-color: var(--bs-dark-blue);
			.icon_title {
				display: flex;
				align-items: center;
				gap: 12px;
				margin-bottom: 1rem;
				img {
					width: 48px;
					height: 48px;
					object-fit: contain;
				}
			}
		}
		.item_note {
			border-left: 4px solid var(--bs-brand-orange);
			padding-left: 12px;
		}
	}
}

.home_measurable_outcome {
	.building_models_row {
		.itm_icon {
			width: 65px;
			height: 65px;
			object-fit: contain;
			margin-bottom: 1.5rem;
		}
	}
	.orange_tick_list ul {
		margin-bottom: 0;
		padding-top: 1rem;
		border-top: 1px solid #F2F6F9;
		li {
			margin: 8px 0 !important;
		}
		li:after {
            content: '';
            width: 18px;
            height: 18px;
            position: absolute;
            left: 0;
            top: 3px;
			background: url(/images/circle-tick.svg) no-repeat center;
			background-size: contain;
		}
	}
}

.home_how_we_work {
	ul.nav-tabs {
	    border: 0;
	    margin-bottom: 1.5rem;
	    position: relative;
	    &:before {
	    	content: '';
	    	position: absolute;
	    	width: 90%;
	    	height: 2px;
	    	background-color: #ddd;
	    	left: 50%;
	    	top: 35px;
	    	transform: translateX(-50%);
	    }
		li.nav-item {
		    width: 20%;
		}
		li.nav-item .nav-link {
		    border: 0;
		    background: transparent;
		    padding: 0;
		    display: flex;
		    justify-content: center;
		    flex-direction: column;
		    align-items: center;
		    position: relative;
		    z-index: 1;
		    .tab_icon {
			    width: 60px;
			    height: 60px;
			    border-radius: 50%;
			    background-color: var(--bs-dark-blue);
			    display: inline-flex;
			    justify-content: center;
			    align-items: center;
			    padding: 17px;
			    box-shadow: 0px 2px 20px rgb(0 0 0 / 8%);
			    margin-bottom: 12px;
			    img {
				    filter: brightness(0) invert(1);
				}
			}

		    &.active {
		    	.tab_icon {
		    		background: var(--bs-brand-orange);
		    		img {
					    filter: unset;
					}
		    	}
		    	strong {
		    		color: var(--bs-brand-orange);
		    	}
		    }
		}
	}
	.tab_content_inner {
		background-color: var(--bs-dark-blue);
		border-radius: 25px;
		padding: 2rem;
		.tab_tags {
			display: flex;
			gap: 8px;
			span {
				margin: 5px 0 10px;
				border: 1px solid var(--bs-brand-orange);
				padding: 3px 8px;
				border-radius: 6px;
				font-weight: 600;
			}
		}
		p:last-child {
			margin-bottom: 0;
		}
	}
}

.desktop_servie_tabs {
	ul.nav-tabs {
	    border: 0;
	    margin-bottom: 1.5rem;
	    position: relative;
	    flex-direction: column;
		li.nav-item {
		    width: 100%;
		}
		li.nav-item .nav-link {
            border: 0;
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            border-radius: 10px;
            padding: 1rem;
            font-weight: 600;
            font-size: var(--bs-fs18);
		    &.active {
		    	color: var(--bs-brand-orange);
		    	background: var(--bs-dark-blue);
		    }
		}
	}
	.tab_content_inner {
		background-color: var(--bs-dark-blue);
		border-radius: 25px;
		padding: 2rem;
		p:last-child {
			margin-bottom: 0;
		}
	}
}

#mobile_servieAccordion {
	display: none;
	.accordion:first-child {
        margin-top: 0;
    }
    .accordion-item {
        border-radius: 10px;
        margin: 0 0 1rem;
        border: none;
        overflow: hidden;
        background: var(--bs-dark-blue);
    }
    .accordion-header {
        background: transparent;
        margin-bottom: 0;
        border: 0;
    }
    .accordion-header button {
       	width: 100%;
        border: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        padding: 1rem 38px 1rem 1rem;
        text-align: left;
        position: relative;
        background: transparent;
        color: var(--bs-off-white);
        border-radius: 0;
        font-size: var(--bs-fs18);
        font-weight: 600;
    }
    .accordion-header button:after {
        display: none;
    }
    .accordion-header button:before {
		content: ' ';
        position: absolute;
        right: 11px;
        top: 17px;
        width: 20px;
        height: 20px;
        background-image: url(../newimages/acc-up-arrow.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 16px;
    }
    .accordion-header button.collapsed:before {
        background-image: url(../newimages/acc-down-arrow.svg);
    }
    .accordion-body {
        padding: 0 1rem 1rem;
        color: #EEEEEE;
    }
}


.data_ai_st_hwwwt {
	span.pe_tag {
		display: inline-block;
        margin: 0 5px;
        border: 1px solid var(--bs-brand-orange);
        padding: 3px 8px;
        border-radius: 6px;
        font-weight: 600;
        color: var(--bs-light-grey);
        font-size: 12px;
        position: relative;
        top: -3px;
	}
}

.home_pricing_sec {
	.item_inner {
		p:nth-child(3) {
			height: unset !important;
		}
	}
}

.pb_3 {
	padding-bottom: 3rem;
}

.client_sec_label { 
	margin-bottom: 0.5rem;
}

.check-square-bullet li:before{
	background-image: url(/images/check-square.svg);

}

.x-square-bullet li:before{
	background-image: url(/images/x-square.svg);

}

/* ── Blog / News / Case Study content defaults ── */
.blog_content {
	line-height: 1.8;
}

.blog_content p {
	margin-bottom: 1.25rem;
}

.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6 {
	color: var(--bs-brand-blue);
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.blog_content h1 { font-size: 2rem; }
.blog_content h2 { font-size: 1.625rem; }
.blog_content h3 { font-size: 1.375rem; }
.blog_content h4 { font-size: 1.125rem; }
.blog_content h5 { font-size: 1rem; }
.blog_content h6 { font-size: 0.875rem; }

/* Links */
.blog_content a {
	color: var(--bs-brand-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.blog_content a:hover {
	color: var(--bs-brand-orange);
}

/* Lists */
.blog_content ul,
.blog_content ol {
	margin-bottom: 1.25rem;
	padding-left: 1.5rem;
}

.blog_content li {
	margin-bottom: 0.4rem;
}

/* Blockquotes */
.blog_content blockquote {
	border-left: 4px solid var(--bs-brand-orange);
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	background: #f8f9fa;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}

/* Tables */
.blog_content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 1.5rem 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.blog_content thead th {
	background: var(--bs-brand-blue);
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	padding: 0.75rem 1rem;
	text-align: left;
}

.blog_content tbody td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: top;
}

.blog_content tbody tr:last-child td {
	border-bottom: none;
}

.blog_content tbody tr:nth-child(even) {
	background: #f8f9fa;
}

.blog_content tbody tr:hover {
	background: #edf2f7;
}

/* Images */
.blog_content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1rem 0;
}

/* Code */
.blog_content code {
	background: #f1f5f9;
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.9em;
}

.blog_content pre {
	background: #1e293b;
	color: #e2e8f0;
	padding: 1.25rem;
	border-radius: 8px;
	overflow-x: auto;
	margin: 1.5rem 0;
}

.blog_content pre code {
	background: none;
	padding: 0;
	border-radius: 0;
	color: inherit;
}

/* Horizontal rules */
.blog_content hr {
	border: none;
	border-top: 1px solid #e2e8f0;
	margin: 2rem 0;
}