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

@font-face {
	font-family: 'Gotham-Light';
	src: url('../fonts/Gotham-Light.eot');
	src: url('../fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Light.woff2') format('woff2'),
		url('../fonts/Gotham-Light.woff') format('woff'),
		url('../fonts/Gotham-Light.ttf') format('truetype'),
		url('../fonts/Gotham-Light.svg#Gotham-Light') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Book';
	src: url('../fonts/Gotham-Book.eot');
	src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Book.woff2') format('woff2'),
		url('../fonts/Gotham-Book.woff') format('woff'),
		url('../fonts/Gotham-Book.ttf') format('truetype'),
		url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Medium';
	src: url('../fonts/Gotham-Medium.eot');
	src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Medium.woff2') format('woff2'),
		url('../fonts/Gotham-Medium.woff') format('woff'),
		url('../fonts/Gotham-Medium.ttf') format('truetype'),
		url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Bold';
	src: url('../fonts/Gotham-Bold.eot');
	src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Bold.woff2') format('woff2'),
		url('../fonts/Gotham-Bold.woff') format('woff'),
		url('../fonts/Gotham-Bold.ttf') format('truetype'),
		url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
	font-weight: normal;
	font-style: normal;
}

:root {
	--primary-font: "Noto Sans", sans-serif;
	--gotham-Light: 'Gotham-Light';
	--gotham-Book: 'Gotham-Book';
	--gotham-Medium: 'Gotham-Medium';
	--gotham-Bold: 'Gotham-Bold';

	--primary-color: #000;
	--white: #fff;
	--dark-red: #cf4322;
	--light-hrey: #d4dfe3;
	--light-blue-grey: #b8cfd9;
	--dark-blue-grey: #1d3c50;
	--bs-light-rgb: 248, 249, 250;

}

* {
	word-wrap: break-word;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	font-family: var(--primary-font);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

html {
	scroll-behavior: smooth;
}

body.scroll {
	overflow: hidden;
}

main,
header,
section,
footer {
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0 0 15px;
	font-weight: 700;
}

h1,
.h1 {
	font-size: 46px;
}

h2,
.h2 {
	font-size: 36px;
}

h3,
.h3 {
	font-size: 30px;
}

h4,
.h4 {
	font-size: 26px;
}

h5,
.h5 {
	font-size: 22px;
}

h6,
.h6 {
	font-size: 20px;
}

p {
	margin: 0 0 15px;
}

b,
strong {
	font-weight: bold;
}

figure {
	margin: 0;
	padding: 0;
}

a {
	display: inline-block;
	text-decoration: none;
	outline: none !important;
	color: inherit;
}

ul {
	list-style: disc;
}

ul,
ol {
	padding-left: 18px;
	margin: 0;
}

.no-bullets ul,
.no-bullets ol {
	list-style: none;
	padding: 0;
}

a,
button {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	outline: none;
}

button {
	background: none;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
}

a:hover,
a:focus,
a:visited,
button,
button:hover,
button:focus {
	text-decoration: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input[type="number"] {
	-moz-appearance: textfield !important;
}

input {
	-webkit-box-shadow: none;
	box-shadow: none;
}

input[type="submit"] {
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	text-decoration: none !important;
	outline: none !important;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--primary-color);
	background-color: transparent !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	-webkit-transition: background-color 5000s ease-in-out 0s !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semiBold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.position_relative {
	position: relative;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.text-white {
	color: var(--white);
}

.text-black {
	color: var(--primary-color);
}

.btn {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 400;
	padding: 10px 26px;
	border-radius: 5px;
	border: 1px solid transparent;
	background-color: transparent;
}

.btn-primary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--dark-red);
}

.btn-primary:hover {
	background-color: transparent;
	border-color: var(--dark-red);
}

.btn-secondary {
	background-color: var(--dark-red);
	border-color: var(--dark-red);
	color: var(--white);
}

.btn-secondary:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--dark-red);
}

.btn-outline-primary {
	border-color: var(--dark-red);
	color: var(--dark-red);
}

.btn-outline-primary:hover {
	background-color: var(--white);
	border-color: var(--white);
}

.btn-outline-white {
	border-color: var(--white);
	color: var(--white);
}

.btn-outline-white:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

/*Slick Slider Hide Show*/
.commonSlider {
	display: none;
}

.commonSlider.slick-initialized {
	display: block;
}

/*Slick Slider Hide Show Ends*/

/*** Header CSS ***/

.headerMain {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
	padding: 10px 0 10px;
	background-color: transparent;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.headerMain.sticky-nav {
	background-color: var(--light-blue-grey);
	-webkit-box-shadow: 0 2px 10px -2px rgb(0, 0, 0, 0.4);
	box-shadow: 0 2px 10px -2px rgb(0, 0, 0, 0.4);
}

.headerInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.logoBar .cosa-logo {
	max-width: 250px;
	margin-left:-15px;
}

.logoBar .cosa-logo img {
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.menuHolder .manuInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menuHolder .manuInner li {
	margin: 0 12px;
}

.menuHolder .manuInner li a {
	padding: 8px 0;
	position: relative;
	z-index: 1;
}

.menuHolder .manuInner li a::after {
	content: '';
	background-color: var(--white);
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 50px;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.menuHolder .manuInner li a:hover::after,
.menuHolder .manuInner li.active a::after {
	width: 100%;
	right: 0;
}

.menuHolder .manuInner li:first-child {
	margin-left: 0;
}

.menuHolder .manuInner li:last-child {
	margin-right: 0;
}

.menuHolder .manuInner a {
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.menuIcon {
	position: relative;
	width: 28px;
	height: 21px;
	display: none;
	cursor: pointer;
	margin-left: auto;
}

.menuIcon span {
	position: relative;
	width: 100%;
	height: 3px;
	display: block;
	background: var(--white);
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.menuIcon span:nth-child(2) {
	margin: 6px 0;
	margin-left: auto;
}

.menuIcon.active {
	z-index: 101;
	height: 30px;
}

.menuIcon.active span:nth-child(2) {
	opacity: 0;
}

.menuIcon.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-8px, 10px);
}

.menuIcon.active span:nth-child(3) {
	transform: rotate(45deg) translate(-2px, -5px);
}

.headerMain.sticky-nav .menuIcon span {
	background-color: var(--primary-color);
}

.menuHolder.toggle .manuInner li {
	margin: 0;
}

.menuHolder.toggle .manuInner {
	display: block;
}

.heeader_height {
	min-height: 64px;
	background-color: var(--light-blue-grey);
}

.innerpage_header .white-logo,
.headerMain.sticky-nav .white-logo,
.black-logo {
	display: none;
}

.innerpage_header .black-logo,
.headerMain.sticky-nav .black-logo {
	display: block;
}

/*** Header CSS end ***/


/***  Banner CSS ***/

.bannerSection {
	min-height: 750px;
	height: 100dvh;
	position: relative;
	z-index: 1;
}

.bannerSection video {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.bannerOverlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 2;
	padding: 120px 0 60px;
}

.bannerContent {
	max-width: 1300px;
	color: var(--white);
	text-align: center;
	display: flex;
	flex-direction: column;
}
.bannerContent .bannerContent-title {
	font-size: 92px;
	font-weight: 700;
	line-height: 1.1;
}
.bannerContent .bannerContent-subtitle {
	font-size: 32px;
	font-weight: normal;
}
.bannerContent p {
	font-size: 24px;
	line-height: 1.3;
}

/*Call Entries*/
.callEntries {
	width: 100%;
	position: absolute;
	bottom: 3rem;
	z-index: 2;
}
.callEntriesInner {
	width: 100%;
	max-width: 320px;
	text-align: center;
	margin-left: auto;
}

.infoApplyVideo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 35px;
	color: var(--white);
}
.applyBtn {
	background-color: #ea7031;
	color: var(--white);
	display: inline-block;
	padding: 5px 15px;
	border-radius: 3px;
	font-size: 13px;
}
.applyBtn:hover {
	background-color: var(--white);
	color: #ea7031;
}
.videoBtn {
	display: flex;
	align-items: center;
	gap: 3px;
	color: var(--white);
	font-size: 15px;
}
.videoBtn img {
    width: 20px;
    display: inline-block;
}
.videoBtn:hover {
	color: var(--orange);
}

.callEntriesImage {
	width: 100%;
	max-width: 90%;
    margin: 15px auto 5px;
}
.callEntriesImage img {
	max-width: 100%;
}

.callEntriesContent h4 {
    font-size: 38px;
    color: var(--white);
    font-weight: 400;
    line-height: 100%;
	margin: 0 0 5px;
}
.callEntriesContent p {
	font-size: 10px;
	color: var(--white);
	margin: 0;
}

@media screen and (max-device-width: 1299px) and (max-device-height: 850px) {

	.bannerSection {
		min-height: 550px;
	}
	.bannerOverlay {
		padding-top: 80px;
		padding-bottom: 40px;
	}
	.bannerContent .bannerContent-title {
		font-size: 65px;
		line-height: 100%;
	}
	.bannerContent .bannerContent-subtitle {
		font-size: 30px;
		line-height: 100%;
	}
	.bannerContent p {
		font-size: 18px;
	}
	.callEntries {
		bottom: 1rem;
	}
		
}

@media screen and (max-width:1299px) {
	.callEntriesContent h4 {
		font-size: 35px;
	}
}
@media screen and (max-width:1199px) {
	.bannerContent p br {
		display: none;
	}
}
@media screen and (max-width:991px) {
	.callEntries {
		bottom: 2rem;
	}
	.callEntries .container {
		max-width: 100%;
	}
}
@media screen and (max-width:767px) {
	.callEntries {
		bottom: 1rem;
	}
	.callEntriesInner {
		max-width: 300px;
	}
}
@media screen and (max-width:479px) {
	.callEntriesInner {
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

/***  Banner CSS end ***/

.common_bg {
	background-color: var(--light-blue-grey);
}

.common_padding {
	padding: 90px 0;
}

.technologi_grid {
	column-gap: 10px;
}

.technologi_grid_item {
	width: 14.25%;
	text-align: center;
}

.technologi_icon {
	margin-bottom: 25px;
}

.technologi_icon img {
	height: 60px;
	margin: 0 auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.technologi_grid_item:hover .technologi_icon img {
	transform: scale(1.1);
}

.technologi_grid_item p {
	font-size: 18px;
	margin: 0;
}

.technologies_section .btn-outline-primary {
	float: right;
}

/** Technologis CSS end ***/


.media_section img {
	width: 100%;
}

.media_section img.sustainability-logo {
  margin: auto;
  max-width: 540px;
	margin-bottom: 40px;
}

.video_wrapper iframe,
.video_wrapper video,
.video_wrapper .video {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	vertical-align: middle;
}

.mediabtn_wrap {
	width: 100%;
	display: block;
}

.mediabtn_wrap .btn {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: none;
}

.parallaxImage {
	height: 650px;
	padding-top: 30px;
	padding-bottom: 30px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;
}

.playpauseBtn {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 3;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: var(--white);
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 25px;
}

.playpauseBtn img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.playpauseBtn.active {
	opacity: 0;
}

.playpauseBtn .pauseBtn {
	display: none;
}

.playpauseBtn.active .pauseBtn {
	display: block;
}

.playpauseBtn.active .playBtn {
	display: none;
}

.PlayVideoBox:hover .playpauseBtn.active {
	opacity: 1;
}

/** Media CSS end ***/

.data_indicator_img, .research_indicators_img {
	overflow: hidden;
}

.data_indicator_img img, .research_indicators_img img {
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.data_indicator:hover .data_indicator_img img
 {
	transform: scale(1.08);
}
.research_indicators_img img {
	transform: scale(0.9);
}
.research_indicators_img:hover img {
	transform: scale(1);
}

.dashboard_cntnt-inner p,
.about_cntnt p,
.research_indicators_text p,
.indicator_title {
	font-size: 24px;
}

.glossary_section {
	background-color: var(--light-hrey);
}

.indicator_wrap h2 {
	font-size: 27px;
	margin-bottom: 40px;
	font-family: var(--gotham-Book);
	font-weight: normal;
}

.indicator_wrap h3 {
	font-size: 24px;
	margin-bottom: 22px;
	font-family: var(--gotham-Medium);
	font-weight: normal;
}

.indicator_wrap .tag-list .indicator {
	cursor: pointer;
	text-decoration: none;
	color: var(--white);
	font-size: 22px;
	border-radius: 5px;
	border: 1px solid #104155;
	background-color: #104155;
	padding: 4px 12px;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.indicator_wrap .tag-list.tag-list2 .indicator {
	color: var(--white);
	border: 1px solid #90a4ad;
	background-color: #90a4ad;
}

.indicator_wrap .tag-list.tag-list3 .indicator {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	background-color: transparent;
}

.indicator_wrap .tag-list .indicator:hover {
	background-color: var(--white);
	color: #104155;
}

.indicator_wrap .tag-list.tag-list2 .indicator:hover {
	background-color: var(--white);
	color: #104155;
}

.indicator_wrap .tag-list.tag-list3 .indicator:hover {
	background-color: var(--white);

}

.indicator_wrap .tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0 0 70px 0px;

}

.indicator_wrap .tag-list li {
	margin-bottom: 5px;
	position: relative;
}

.indicator_wrap .tag-list li,
.indicator_wrap .tag-list .indicator {
	display: block;
}

.indicator_tooltip {
	visibility: hidden;
	opacity: 0;
	display: none;
	width: 350px;
	background-color: var(--white);
	color: var(--primary-color);
	border-radius: 6px;
	padding: 10px;
	transition: opacity 0.3s;
	font-size: 13px;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: calc(100% + 10px);
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2)
}

.indicator_tooltip p {
	margin-bottom: 8px;
}

.indicator_wrap ul:last-child {
	margin-bottom: 0;
}

.indicatorTab_row .tab-column--img-wrap.full-height {
	display: block;
}

.indicator2categorygroup {
	display: flex;
	margin: 0 0 70px 0;
	justify-content: space-between;
	gap: 10px;
}

.indicatorcategory p {
	font-size: 20px;
	margin: 0 0 10px 0;
}

.indicatorcategory {
	flex: 0 0 33.33%;
	max-width: 33%;
}

@media screen and (max-width:1399px) {
	.indicator_wrap .tag-list .indicator {
		font-size: 21px;
	}
}

@media screen and (max-width:1199px) {
	.indicator_tooltip {
		width: 280px;
	}
}

@media screen and (min-width:992px) {
	.indicator_tooltip.indicator_view.expand-width {
		width: 480px;
	}

	.indicator::after {
		content: "";
		position: absolute;
		left: 50%;
		top: -11px;
		transform: translateX(-50%);
		margin-left: 0;
		border-width: 8px;
		border-style: solid;
		border-color: var(--white) transparent transparent transparent;
		transition: all 0.3s ease-in-out;
		z-index: 3;
		visibility: hidden;
		opacity: 0;
		display: none;
	}

	.indicator_wrap .tag-list li:hover .indicator::after,
	.indicator_wrap .tag-list li:hover .indicator_tooltip {
		visibility: visible;
		opacity: 1;
		display: block;
	}
}

@media screen and (max-width:991px) {
	.logoBar .cosa-logo {
	  margin-left: auto;
	}
	.wrap-padding {
		padding: 20px 30px;
	}

	.indicator_tooltip {
		font-size: 14px;
		width: 250px;
		left: 0;
		transform: translatex(0);
	}

	.indicatorcategory p {
		font-size: 16px;
	}

	.indicator_tooltip::after {
		left: 20px;
		transform: translatex(0);
	}

	.indicator_wrap .tag-list li {
		position: static;
	}

	.indicator_wrap .tag-list {
		position: relative;
	}

	.indicator_wrap .tag-list .indicator {
		font-size: 18px;
	}

	.resultitem.open .indicator_view {
		visibility: visible;
		opacity: 1;
		display: block;
	}

	.indicator_tooltip {
		width: 100%;
		bottom: auto;
		margin-top: 6px;
	}

	.indicator_tooltip::after {
		top: auto;
		bottom: 100%;
		border-color: transparent transparent transparent transparent;
	}

	.indicator_wrap .tag-list .indicator.active {
		background-color: var(--white);
		color: #104155;
	}

	.indicator_wrap .tag-list,
	.indicator2categorygroup {
		margin: 0 0 40px 0;
	}

}

@media screen and (min-width:768px) {
	.indicatorTab_row .col-md-8 {
		width: 70%
	}

	.indicatorTab_row .col-md-4 {
		width: 30%
	}
}

@media screen and (max-width: 767px) {
	.tab-column--img-wrap.top-padding {
		padding-top: 0px;
	}
}

@media screen and (max-width:575px) {
	.cm_headCntnt .logo {
		margin-bottom: 10px;
	}

	.indicator2categorygroup {
		flex-direction: column;
	}

	.indicatorcategory {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/** Approch CSS end ***/

.dashboard_slide {
	position: relative;
	height: calc(100vh - 50px);
	min-height: 450px;
}

.dashboard_slide .slide_img,
.dashboard_slide .video_wrapper {
	height: 100%;
}

.dashboard_slide .slide_img img {
	height: 100%;
	object-fit: cover;
}

.dashboard_slider .slick-slide {
	height: auto;
}

.slide_chart {
	max-width: 560px;
	position: absolute;
	right: 60px;
	bottom: 100px;
}

.slide_chart img {
	width: 100%;
}

.dashboard_content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 3;
}

.dashboard_cntnt-inner {
	max-width: 580px;
}

.dashboard_form {
	padding-top: 20px;
}

.dashboard_form .select2-container {
	width: 330px !important;
}

.dashboard_form .select2-container .select2-selection--single
 {
	height: 38px;
	background-color: var(--light-blue-grey);
	border-color: var(--light-blue-grey);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--primary-color);
	line-height: 36px;
	padding-left: 15px;
	padding-right: 26px;
	font-size:22px
}

.dashboard_form .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 25px;
	height: 34px;
}

.dashboard_form .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--primary-color) transparent transparent transparent;
	border-width: 5px 5px 0 5px;
	margin-left: inherit;
	margin-top: inherit;
	transform: translate(-50%, -50%);
}

.dashboard_form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--primary-color) transparent;
	border-width: 0 5px 5px 5px !important;
}

/* .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--light-blue-grey);
} */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: transparent;
	color:#000;
	
}

.select2-dropdown {
	border-color: var(--light-blue-grey);
}

.select2-results__option {
	padding-left: 15px;
	padding-right: 26px;
	font-size:18px;
}

.select2-container--default .select2-results__option--disabled {
	display: none;
}

/** Learning dashboard CSS end ***/

.about_section, .dashboard_section {
	background-color: var(--white);
}

.about_cntnt {
	font-family: var(--gotham-Book);
}

.about_cntnt h2, .partners h2 {
	font-family: var(--gotham-Bold);
}

.partners {
	padding-top: 60px;
}

.partner_category+.partner_category {
	margin-top: 70px;
}

.partner_logos {
	display: flex;
    row-gap: 45px;
	align-items: center;
}
.partner_category .title  {
	margin-bottom: 25px;
}
.partner_logo p {
	margin-bottom: 25px;
}

.partner_logo {
	flex: 0 0 auto;
	margin-right: 65px;
}
.partner_logo:last-child {
	margin-right: 0;
}
.partner_logo img {
    max-height: 80px;
    margin: auto;
    max-width: 180px;
}


/** About CSS end ***/

.contact_form {
	padding-top: 10px;
}

.input_field {
	font-size: 14px;
	color: var(--primary-color);
	font-family: var(--primary-font);
	width: 100%;
	border: none;
	border-radius: 5px;
	padding: 10px;
}

.input_field::placeholder {
	color: #ccc;
	opacity: 1;
}

.input_field::-ms-input-placeholder {
	color: #ccc;
}

.contact_form textarea {
	font-family: var(--primary-font);
	resize: none;
}

.bookAppointment {
	padding-top: 10px;
}

.bookAppointment h6 {
	margin-bottom: 5px;
}

.bookAppointment p {
	font-size: 16px;
}

/** contact form CSS end ***/

.agile_post_head {
	padding: 30px 0 15px;
}

.agile_post_logo {
	width: 185px;
	flex: 0 0 185px;
	padding-right: 25px;
}

.agile_post_logo img {
	width: 100%;
}

.agile_post_title {
	padding: 10px 25px;
	border-left: 1px solid #d4d4d4;
	font-family: var(--gotham-Book);
}

.agile_post_title h1 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 0;
}

.agile_post_title p {
	font-size: 20px;
	margin: 0;
}

.agile_post_banner_img .btn {
	position: absolute;
	bottom: 60px;
	right: 90px;
}

/* .postid-535 .agile_post_banner_img .btn {
	bottom: 30%;
} */

.tabs {
	justify-content: center;
}

.tab_link {
	max-width: 20%;
	flex: 0 0 20%;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	font-family: var(--gotham-Book);
}

.tab_link .tab_link_icon {
	background-color: transparent;
	width: 62px;
	height: 62px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin: 0 auto 10px;
}

.tab_link .tab_link_icon img {
	width: 42px;
	display: block;
	margin: 0 auto;
	height: auto;
}

.tab_link .tab_link_title {
	font-size: 22px;
	font-weight: normal;
}

.tab_link:hover,
.tab_link.active {
	background-color: #90a4ad;
}

.content_wrapper {
	border-top: 2px solid #90a4ad;
}

.tab_content {
	display: none;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeIn 0.5s ease 1 forwards;
}

.tab_content.active {
	display: block;
}

@keyframes fadeIn {
	100% {
		opacity: 1;
		transform: none;
	}
}

.tab_contentInner {
	background: #ececec;
	padding: 50px 50px 35px;
}

.tab_contentInner {
	line-height: 1.5;
	font-family: var(--gotham-Book);
}

.tab_contentInner h1,
.tab_contentInner h2,
.tab_contentInner h3,
.tab_contentInner h4,
.tab_contentInner h5,
.tab_contentInner h6 {
	font-family: var(--gotham-Book);
	font-weight: normal;
	line-height: 1.2;
}

#tab-2 .tab_contentInner p img{
	max-width: 100%;
	height: auto;
	margin-top: 45px;
	margin-bottom: 20px;
}

.indicator_wrap_outer {
	background-color: var(--light-hrey);
	padding-top: 30px;
	padding-bottom: 90px;
}

.tab_column-heading-wrap {
	background-color: #90a4ad;
	padding: 24px 30px 24px;
	min-height: 80px;
}

.tab_column-wrap.align_content_center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.extra-padding {
	padding: 30px;
}

.bg-light {
	--bs-bg-opacity: 1;
	background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.tab_column-img img {
	width: 100%;
	margin: 0;
}

.wrap-padding {
	padding: 20px 30px;
}

.Blue-bg {
	padding: 45px;
	background: #3c6375;
	color: var(--white);
}

/** Agile post CSS end ***/


.PlayVideoBox {
	position: relative;
}

.response_container.parallaxVideo {
	padding: 0;
	height: 760px;
}

.parallaxVideo .overlay {
	position: absolute;
	inset: 0;
}

.response_container img.poster {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	z-index: -1;
}

.video-frame_wrapper {
	width: 100%;
	height: 100%;
}

.responsive-iframe {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	vertical-align: middle;
	cursor: pointer;
}

.video-frame_wrapper .responsive-iframe {
	position: relative;
	z-index: -2;
}

.video-frame_wrapper .responsive-iframe.active {
	position: static;
}

.response_container button#video1 {
	position: absolute;
	z-index: 8;
	pointer-events: none;
}

.response_container.active .playpauseBtn {
	opacity: 0;
}

.response_container.active:hover .playpauseBtn {
	opacity: 1;
}

.response_container.active .playBtn {
	display: none;
}

.response_container.active .pauseBtn {
	display: block;
}

/*** YT parallaxVideo CSS end ***/

.footer {
	background-color: var(--dark-blue-grey);
	padding-top: 40px;
	padding-bottom: 20px;
}

.footer_navbar ul {
	display: flex;
	align-items: center;
}

.footer_logo {
	width: 250px;
}

.footer_logo img {
	width: 100%;
}

.footer_navbar {
	margin-left: auto;
}

.footer_navbar li {
	margin: 0 12px;
}

.footer_navbar li:first-child {
	margin-left: 0;
}

.footer_navbar li:last-child {
	margin-right: 0;
}

.footer_navbar li a {
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
}

.footer_navbar li a:hover {
	color: var(--light-blue-grey);
}

.copyright {
	color: var(--white);
	padding-top: 50px;
	text-align: center;
}

.copyright p {
	font-size: 18px;
	margin: 0;
}

.copyright p span {
	margin: 0 10px;
}

.copyright p a {
	text-decoration: underline;
}

.copyright p a:hover {
	color: var(--light-blue-grey);
}

/*** Footer CSS end ***/


.modal {
	position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 2;
}

.modal.show {
	opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-dialog {
	width: auto;
	max-width: 650px;
	margin: 3rem auto;
	padding: 15px 12px;
    background-color: var(--light-blue-grey);
	border-radius: 10px;
	transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
	position: relative;
    z-index: 3;
}
.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-body {
	position: relative;
}
.btn-close {
	color: var(--dark-blue-grey);
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
	background-color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
	right: -22px;
    top: -25px;
}

/*** Modal css end ***/

.world_map svg path {
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.world_map svg path.land:hover{
    fill: var(--dark-red) !important;
}
.world_map svg circle {
	pointer-events: none;
}
#info-box {
	max-width: 300px;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: var(--white);
    border: 1px solid var(--dark-red);
    border-radius: 5px;
    padding: 5px 10px;
}
#info-box h6 {
    font-size: 16px;
	font-weight: 500;
	margin: 0;
}
#info-box p{
    font-size: 14px;
	margin: 0;
}
.contact_form .text-right p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/*** world map CSS end ***/

.common-content ul, .common-content ol {
	margin: 15px 0;
}
.common-content li {
	margin-bottom: 6px;
}
.common-content img {
	max-width: 100%;
}


.single-projects select.posts-data {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
/**/
.tab_contentInner h2 {
    padding-bottom: 20px;
}
/* 14 feb for video section */
.response_container.parallaxVideo button#video1.playpauseBtn {
    position: static;
    transform: none;
}
.response_container.parallaxVideo .video-overlay-text{
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    width: 100%;
}
.select2-results__options li:hover{
	background-color: var(--light-blue-grey)!important;
	color:#fff;
}

/* 06-jun-25 feb for Agile Data Community section */
.forum_content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.forum_content h4 {
    font-weight: 400;
    line-height: 1.3;
    font-size: 3.2vw;
}

.forum_content h6 {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 2.5vw;
    line-height: 1.3;
}

.forum_content_heading {
    display: flex;
    flex-direction: column;
    min-height: 26vw;
}
h4.forum_content_detail span {
    font-size: 4.5vw;
}

.forum_content_detail {flex: 1;}

.forum_content_heading {
    width: 100%;
    position: relative;
}
.forum_content .btn_wrap {
    position: absolute;
   bottom: 90px;
    right: calc(var(--bs-gutter-x) * 0.5);
}
.forum_content .btn_wrap .btn:hover{
border-color: #fff;
	color:#fff
}
@media screen and (max-width: 1199px){
.forum_content .btn_wrap {
   bottom: 60px;
}
}
@media screen and (max-width: 991px){
.forum_content .btn_wrap {
   bottom: 40px;
}
}
@media screen and (max-width: 767px){
.forum_content .btn_wrap {
   bottom: 30px;
}
}
@media screen and (max-width: 575px){
	.forum_content .btn_wrap {
   bottom: 10px;
}
.forum_content .btn_wrap .btn {
    font-size: 10px;
    padding: 6px 10px;
}
}