/* general */

:root {
	--white: #fff;
	--black: #000;
	--gray: #2d2926;
	--orange: #f68d2e;
	--light-gray: #ececec;
	--font_light: 'Neue-light', sans-serif;
	--font_regular: 'Neue-regular', sans-serif;
	--font_medium: 'Neue-medium', sans-serif;
	--font_bold: 'Neue-bold', sans-serif;
	--font_heavy: 'Neue-heavy', sans-serif;
	--size_8: 8rem;
	--size_7_5: 7.5rem;
	--size_7: 7rem;
	--size_6_5: 6.5rem;
	--size_6: 6rem;
	--size_5_5: 5.5rem;
	--size_5: 5rem;
	--size_4_5: 4.5rem;
	--size_4: 4rem;
	--size_3_8: 3.8rem;
	--size_3_6: 3.6rem;
	--size_3_5: 3.5rem;
	--size_3_2: 3.2rem;
	--size_3: 3rem;
	--size_2_8: 2.8rem;
	--size_2_4: 2.4rem;
	--size_2_2: 2.2rem;
	--size_2: 2rem;
	--size_1_8: 1.8rem;
	--size_1_6: 1.6rem;
	--size_1_5: 1.5rem;
	--size_1_4: 1.4rem;
	--size_1_2: 1.2rem;
}

@font-face {
    font-family: 'Neue-bold';
    src: url('../fonts/NeueHaasUnicaPro-Bold.eot');
    src: url('../fonts/NeueHaasUnicaPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasUnicaPro-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasUnicaPro-Bold.woff') format('woff'),
        url('../fonts/NeueHaasUnicaPro-Bold.ttf') format('truetype'),
        url('../fonts/NeueHaasUnicaPro-Bold.svg#NeueHaasUnicaPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue-heavy';
    src: url('../fonts/NeueHaasUnicaPro-Heavy.eot');
    src: url('../fonts/NeueHaasUnicaPro-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasUnicaPro-Heavy.woff2') format('woff2'),
        url('../fonts/NeueHaasUnicaPro-Heavy.woff') format('woff'),
        url('../fonts/NeueHaasUnicaPro-Heavy.ttf') format('truetype'),
        url('../fonts/NeueHaasUnicaPro-Heavy.svg#NeueHaasUnicaPro-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue-light';
    src: url('../fonts/NeueHaasUnicaPro-Light.eot');
    src: url('../fonts/NeueHaasUnicaPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasUnicaPro-Light.woff2') format('woff2'),
        url('../fonts/NeueHaasUnicaPro-Light.woff') format('woff'),
        url('../fonts/NeueHaasUnicaPro-Light.ttf') format('truetype'),
        url('../fonts/NeueHaasUnicaPro-Light.svg#NeueHaasUnicaPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue-medium';
    src: url('../fonts/NeueHaasUnicaPro-Medium.eot');
    src: url('../fonts/NeueHaasUnicaPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasUnicaPro-Medium.woff2') format('woff2'),
        url('../fonts/NeueHaasUnicaPro-Medium.woff') format('woff'),
        url('../fonts/NeueHaasUnicaPro-Medium.ttf') format('truetype'),
        url('../fonts/NeueHaasUnicaPro-Medium.svg#NeueHaasUnicaPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue-regular';
    src: url('../fonts/NeueHaasUnicaPro-Regular.eot');
    src: url('../fonts/NeueHaasUnicaPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasUnicaPro-Regular.woff2') format('woff2'),
        url('../fonts/NeueHaasUnicaPro-Regular.woff') format('woff'),
        url('../fonts/NeueHaasUnicaPro-Regular.ttf') format('truetype'),
        url('../fonts/NeueHaasUnicaPro-Regular.svg#NeueHaasUnicaPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  	color: var(--gray);
  	font-size: var(--size_2);
  	line-height: 120%;
  	font-weight: 400;
  	font-family: var(--font_regular);
  	font-style: normal;
	background: var(--white);
}

path, circle {
  	transition: all .5s ease-in-out;
}

.swiper-container {
  	width: 100%;
  	position: relative;
  	overflow: hidden;
}

a {
	transition: all .5s ease-in-out;
}

.titleLine-csi {
	font-family: var(--font_bold);
	font-size: var(--size_5);
	line-height: 110%;
	color: var(--orange);
	padding-bottom: 3rem;
	position: relative;
}

.titleLine-csi:after {
	content: '';
	background: var(--orange);
	width: 5rem;
	height: .4rem;
	border-radius: .4rem;
	position: absolute;
	bottom: 0;
	left: 0;
}

.titleLine-csi.center:after {
	content: '';
	background: var(--orange);
	width: 5rem;
	height: .4rem;
	border-radius: .4rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.subtitle-csi {
	font-family: var(--font_bold);
    font-size: var(--size_3_2);
    line-height: 120%;
}

.desc-csi {
	font-size: var(--size_2_2);
	line-height: 110%;
}

.cta-csi a {
	font-family: var(--font_bold);
	background: var(--orange);
	color: var(--white);
	font-size: var(--size_1_6);
	border-radius: 3rem;
	padding: .8rem 2rem;
	line-height: 110%;
	text-transform: uppercase;
	display: table;
}

.cta-csi a:hover {
	background: var(--gray);
}


/* header */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 15rem;
	background: transparent;
	transition: all .5s ease-in-out;
	opacity: 1;
	z-index: 9;
}

header * {
	transition: all .5s ease-in-out;
}

header.hidden {
	top: -100%;
	opacity: 0;
}

header.fixed {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

header.contactus-csi {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

header.search-csi {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

header.insights-csi {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

.careers-csi header {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

header.fixed .left-header {
	width: 15%;
}

header.contactus-csi .left-header {
	width: 15%;
}

header.insights-csi .left-header {
	width: 15%;
}

header.insights-csi .left-header {
	height: 12rem;
	background: var(--white);
	border-bottom: .4rem solid var(--orange);
}

.careers-csi header .left-header {
	width: 15%;
}


.right-header > nav > ul > li {
	margin: 0 2.5rem;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.right-header > nav > ul > li:first-child {
	margin-left: 0;
}

.right-header > nav > ul > li:last-child {
	margin-right: 0;
}

.right-header > nav > ul > li > a {
	line-height: 120%;
	text-transform: uppercase;
	font-weight: 700;
	height: 100%;
	display: flex;
	align-items: center;
}

.right-header > nav > ul > li > a.active {
	color: var(--orange);
}

header.fixed .right-header > nav > ul > li > a {
	font-size: var(--size_1_8);
}

header.fixed .right-header > nav > ul > li > a {
	font-size: var(--size_1_8);
}

.right-header > nav > ul > li > a:hover {
	color: var(--orange);
}

.right-header > nav > ul > li .submenu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 15rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 3rem;
    width: 30rem;
}

.right-header > nav > ul > li .submenu.active {
    top: 12rem;
    opacity: 1;
    visibility: visible;
}

.right-header > nav > ul > li .submenu:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.right-header > nav > ul > li .submenu li:not(:last-child) {
    margin-bottom: 1rem;
}

.right-header > nav > ul > li .submenu li a:hover {
    color: var(--orange);
}

header.fixed .right-header > nav > ul > li .submenu {
    top: 15rem;
    background: var(--orange);
}

header.fixed .right-header > nav > ul > li .submenu:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--orange);
}

header.fixed .right-header > nav > ul > li .submenu li a {
    color: var(--white);
}

header.fixed .right-header > nav > ul > li .submenu li a:hover {
    color: var(--gray);
}

header.fixed .right-header > nav > ul > li .submenu.active {
    top: 12rem;
    opacity: 1;
    visibility: visible;
}

.nav-ham {
	display: none;
}


/* main */

/* homepage */

.hp-csi-bannerSlider {
	height: 100vh;
	overflow: hidden;
}

.hp-csi-bannerSlider:after {
    content: '';
    background: var(--orange);
    width: 100%;
    height: .5rem;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 2;
}

.hp-csiSlider-content {
	height: 100vh;
	overflow: hidden;
}

.hp-csiSlider-content .photo img {
	height: 100vh;
	object-fit: cover;
}

.our-clusters .hp-csiSlider-content .photo:before {
    content: '';
    background: linear-gradient(45deg, #000, transparent 76%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hp-csiSlider-content .photo:after {
    content: '';
    background: transparent linear-gradient(360deg, transparent 80%, var(--white) 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.hp-csiSlider-content .content {
	position: absolute;
	width: 90%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	z-index: 3;
}

.hp-csiSlider-content .content h1 {
	font-family: var(--font_bold);
	font-size: var(--size_6);
	line-height: 100%;
	opacity: 0;
	top: 3rem;
	position: relative;
	transition: all .7s ease-in-out;
}

.hp-csi-bannerSlider .swiper-slide-active .hp-csiSlider-content .content h1 {
	opacity: 1;
	top: 0;
}

.hp-csiSlider-content .content h2 {
	font-family: var(--font_regular);
	font-size: var(--size_2_8);
	line-height: 120%;
	opacity: 0;
	top: 5rem;
	position: relative;
	transition: all .7s ease-in-out .2s;
}

.hp-csi-bannerSlider .swiper-slide-active .hp-csiSlider-content .content h2 {
	opacity: 1;
	top: 0;
}

.hp-csi-bannerSlider .swiper-pagination {
	bottom: 7.5rem;
}

.hp-csi-bannerSlider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 20rem;
	height: .8rem;
	margin: 0 1.2rem;
	border-radius: .4rem;
	background: rgba(255, 255, 255, .4);
	opacity: 1;
}

.hp-csi-bannerSlider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--white);
}

.accre-bloc .tit {
	color: var(--orange);
    font-size: var(--size_3_6);
	line-height: 110%;
	font-family: var(--font_light);
}

.accre-repeat:not(:last-child) {
	padding-bottom: 3rem;
}

.accre-repeat .text {
	line-height: 110%;
	font-family: var(--font_light);
    font-size: var(--size_1_8);
}

/* .hp-clusters-section:after {
    content: '';
    background: var(--orange);
    width: 100%;
    height: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 1;
} */

.hp-clusters-repeat {
	width: 33%;
	position: relative;
	margin-right: .5%;
	overflow: hidden;
}

.hp-clusters-repeat:nth-child(3n) {
	margin-right: 0;
}

.back-clus .titleLine-csi {
    text-align: center;
}

.back-clus .titleLine-csi:after {
    left: 50%;
    transform: translateX(-50%);
}

.back-clus .hp-clusters-repeat {
    width: 25%;
}

.back-clus .hp-clusters-repeat .content {
    height: 10rem;
}

.hp-clusters-repeat .photo {
	overflow: hidden;
	z-index: 1;
}

.hp-clusters-repeat .photo img {
	transition: all .5s ease-in-out;
}

.hp-clusters-repeat a:hover .photo img {
	transform: scale(1.1);
}

.hp-clusters-repeat .photo:before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 25%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hp-clusters-repeat .content {
	background: var(--orange);
	color: var(--white);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16rem;
	padding: 2rem;
	z-index: 2;
	transition: all .5s ease-in-out;
}

.hp-clusters-repeat a:hover .content {
	height: 100%;
	background: rgba(246, 141, 46, .85);
}

.hp-clusters-repeat .content .inner {
	flex-direction: column;
}

.hp-clusters-repeat a > .cluster-tit-bloc {
    position: absolute;
    top: 3rem;
    left: 0;
    color: var(--orange);
    z-index: 2;
    display: none;
}

.hp-clusters-repeat a > .cluster-tit-bloc .text {
	font-size: var(--size_2_4);
	line-height: 110%;
	font-weight: 700;
	margin-left: 1.5rem;
}

.hp-clusters-repeat a:hover > .cluster-tit-bloc {
    display: none;
}

.hp-clusters-repeat .content .cluster-tit-bloc {
    padding-bottom: 1rem;
}

.hp-clusters-repeat a:hover .content .cluster-tit-bloc {
    display: flex;
	margin-bottom: 2.5rem;
}

.hp-clusters-repeat .content .text {
	font-size: var(--size_2_4);
	line-height: 110%;
	font-weight: 700;
	margin-left: 1.5rem;
}

.hp-clusters-repeat .content .desc {
	font-size: var(--size_3_5);
	line-height: 110%;
	font-family: var(--font_bold);
	opacity: 0;
	height: 0;
	text-align: center;
	transition: all .5s ease-in-out;
}

.hp-clusters-repeat .content .moto {
    font-size: var(--size_2_2);
	line-height: 110%;
}

.hp-clusters-repeat a:hover .content .desc {
	opacity: 1;
	height: auto;
	margin-top: 2.5rem;
}

.hp-clusters-repeat .content .cta-learn {
    font-family: var(--font_bold);
    font-size: var(--size_1_8);
    line-height: 100%;
	opacity: 0;
	height: 0;
	transition: all .5s ease-in-out;
}

.hp-clusters-repeat a:hover .content .cta-learn {
    opacity: 1;
	height: auto;
	margin-top: 3rem;
}

.inner-hp-rooted {
	max-width: 95%;
}

.rooted-repeat:not(:last-child) {
	margin-bottom: 5rem;
}

.rooted-repeat .subtitle-csi {
	font-size: var(--size_2_8);
}

.hp-sectors-repeat {
	width: 24%;
	position: relative;
	margin-right: 1.33%;
}

.hp-sectors-repeat:nth-child(4n) {
	margin-right: 0;
}

.hp-sectors-repeat a {
	background: #f2f2f2;
	display: block;
    padding: 5rem 4rem;
}

.hp-sectors-repeat a:focus {
	border: 0;
}

.hp-sectors-repeat .tit {
	font-size: var(--size_2_8);
	line-height: 110%;
	font-family: var(--font_bold);
}

.hp-sectors-repeat .tit {
	font-size: var(--size_2_4);
	line-height: 110%;
}

.hp-sectors-repeat.renewables .tit {
	color: #2caa9b;
}

.hp-sectors-repeat.powerinfrastructure .tit {
	color: #ffc845;
}

.hp-sectors-repeat.oilgas .tit {
	color: #e03c31;
}

.hp-sectors-repeat.mining .tit {
	color: #ffb549;
}

.sectors-number-bloc {
	background: var(--orange);
	margin: 2rem 0 10rem;
}

.sectors-number-repeat {
	width: 16%;
	position: relative;
	text-align: center;
	color: var(--white);
	margin-right: 5%;
}

.sectors-number-repeat:nth-child(5n) {
	margin-right: 0;
}

.sectors-number-repeat .num {
	font-size: var(--size_8);
	line-height: 120%;
	font-family: var(--font_light);
}

.sectors-number-repeat .num span {
	font-family: var(--font_bold);
}

.sectors-number-repeat .desc {
	font-size: var(--size_2_4);
	line-height: 110%;
	padding-top: 1.5rem;
}

.hp-projects-bloc {
	background: #f4f4f4;
}

.hp-projects-repeat {
	width: 23.5%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 2%;
}

.hp-projects-repeat:nth-child(4n) {
	margin-right: 0;
}

.hp-projects-repeat .photo {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	overflow: hidden;
}

.hp-projects-repeat .photo img {
	transition: all .5s ease-in-out;
}

.hp-projects-repeat:hover .photo img {
	transform: scale(1.2);
}

.hp-projects-repeat .tit {
	font-family: var(--font_bold);
	font-size: var(--size_2_4);
	line-height: 110%;
}

.hp-projects-repeat .desc {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-top: 0;
    margin-top: 2rem;
}

.ln-repeated {
	width: 23.5%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 2%;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blogCS-slider {
    width: 100%;
    position: relative;
}

.hp-ln-section {
    overflow: hidden;
}

.blogCS-slider .ln-repeated {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    height: 100%;
}

.swiper-container.blogCS-slider {
    padding-right: 1rem;
}

.ln-repeated:nth-child(4n) {
	margin-right: 0;
}

.ln-repeated .photo {
	overflow: hidden;
}

.ln-repeated .photo .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26%;
    z-index: 2;
    cursor: pointer;
}

.ln-repeated .photo img {
	transition: all .5s ease-in-out;
}

.ln-repeated:hover .photo > img {
	transform: scale(1.2);
}

.ln-repeated .content {
	padding: 3rem;
}

.ln-repeated .tit {
	font-family: var(--font_bold);
	font-size: var(--size_1_8);
	line-height: 110%;
}

.ln-repeated .desc {
	font-size: var(--size_1_8);
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-top: 0;
    margin-top: 2rem;
}

.cat-news {
	font-size: var(--size_1_6);
	line-height: 110%;
	color: #888888;
}

.ln-cta-bloc .social-icons-bloc li {
	max-width: 2.8rem;
}

.ln-cta-bloc .social-icons-bloc {
	margin-right: 1.5rem;
	top: 2rem;
	opacity: 0;
	position: relative;
	transition: all .5s ease-in-out;
}

.ln-cta-bloc .social-icons-bloc.active {
	opacity: 1;
	top: 0;
}

.ln-cta-bloc .ln-share-icon {
	cursor: pointer;
}

.ln-cta-bloc .ln-share-icon:hover .share-svg {
	fill: var(--gray);
}

/* end homepage */

/* our identity */

.banner-inner .hp-csi-bannerSlider .content h1 {
	opacity: 1;
	top: 0;
}

.banner-inner .hp-csi-bannerSlider .content h2 {
	opacity: 1;
	top: 0;
}

.right-about-story {
	margin-right: 5%;
}

.aboutStory-video-bloc .tit {
	font-size: var(--size_3_5);
	line-height: 110%;
	color: var(--orange);
	font-family: var(--font_bold);
}

.aboutStory-video-bloc .tit span {
	font-family: var(--font_light);
	display: table;
}

.aboutStory-video-bloc .photo {
    border-radius: 1rem;
    overflow: hidden;
}

.aboutStory-video-bloc .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 26%;
	z-index: 2;
}

.about-values-sBloc .swiper-slide {
	transition: all .5s ease-in-out;
}

.about-values-sBloc .swiper-slide.swiper-slide-prev,
.about-values-sBloc .swiper-slide.swiper-slide-next {
	transform: scale(.85);
}

.about-values-sBloc .swiper-slide.swiper-slide-active {
	transform: scale(1);
}

/*.people-flag-repeat {*/
/*	width: 10%;*/
/*	margin-right: 2.85%;*/
/*	margin-bottom: 2.85%;*/
/*}*/

/*.people-flag-repeat:nth-child(8n) {*/
/*	margin-right: 0;*/
/*}*/

.team-about-repeat {
	width: 17.5%;
	position: relative;
	margin-right: 10%;
	margin-bottom: 5%;
	cursor: pointer;
	z-index: 1;
}

.team-img-bloc {
	overflow-y: hidden;
}

.team-about-repeat .pose1 {
    display: table;
}

.team-about-repeat .pose2 {
    display: none;
}

.team-about-repeat .team-pic img {
	max-width: 22rem;
    max-height: 36rem;
}

.team-about-repeat .bg {
	width: 100%;
	height: 30.2rem;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.team-about-repeat:hover .bg:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background-image: url('../images/bg-people.png');
	background-repeat: no-repeat;
	z-index: 1;
}

.team-about-repeat:nth-child(4n) {
	margin-right: 0;
}

.team-about-repeat .team-name {
	font-family: var(--font_bold);
	line-height: 100%;
}

.team-about-repeat .cta-csi {
    opacity: 0;
    transition: all .5s ease-in-out;
}

.team-about-repeat:hover .cta-csi {
    opacity: 1;
}



/*.team-about-repeat:first-child .team-name {*/
/*	color: var(--orange);*/
/*}*/

.inner-about-people2:nth-child(even) {
	background: #f2f2f2;
	padding: 10rem 0 0;
	margin-bottom: 5rem;
}

.inner-about-footprint {
	max-width: 95%;
	margin: 0 0 0 auto;
}

.right-about-footprint .photo {
	background: #f2f2f2;
}

.right-about-footprint .st0 {
	cursor: pointer;
}

.right-about-footprint .st0.hasInfo {
    fill: var(--orange);
    stroke: var(--white);
    stroke-width: 1.5;
}

.right-about-footprint .map-hover {
    fill: var(--orange);
    stroke: var(--white);
    stroke-width: 1.5;
}

.right-about-footprint .map-hover:hover {
	fill: #ffc845;
}

.right-about-footprint .map-hover.active {
	fill: #ffc845;
}

.about-footprint-info {
	position: absolute;
	bottom: 7.5%;
	left: 5%;
	z-index: 3;
}

.about-footprint-repeat:before {
	content: '';
	width: .6rem;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--orange);
}

.about-footprint-repeat {
	background: var(--white);
	padding: 2rem 3rem;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 25px -30px;
}

.left-aboutfootprint-repeat .text {
	font-size: var(--size_3_5);
	line-height: 100%;
	font-family: var(--font_bold);
	margin-left: 8%;
}

.left-aboutfootprint-repeat {
	width: 47.5%;
	position: relative;
}

.right-aboutfootprint-repeat {
	width: 47.5%;
	position: relative;
}

.right-aboutfootprint-tit {
	font-size: var(--size_5);
	line-height: 100%;
	color: var(--orange);
	font-family: var(--font_heavy);
}

.about-footprint-repeat {
	display: none;
}

.right-about-footprint .close {
	cursor: pointer;
	position: absolute;
	top: 5%;
	right: 3%;
	display: none;
}

/* People popup */

.people-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.people-popup.open {
    opacity: 1;
    visibility: visible;
}

.people-popup-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.CSI-logo-popup {
    position: absolute;
    top: 1.5rem;
    right: 3rem;
    z-index: 1;
    width: 15%;
}

.people-popup-content {
    width: 70%;
    height: 85%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F3F2EE;
    z-index: 2;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.inner-people-popup-content:before {
    content: '';
    width: 18%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--orange);
    z-index: -1;
}

.people-popup.open .people-popup-content {
    top: 50%;
}

.people-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    padding: 1rem;
    cursor: pointer;
}

.people-popup-close svg {
    fill: var(--orange);
}

.inner-people-popup-content {
    padding: 10rem 0 5rem 8rem;
}

.team-popup-repeated {
    display: none;
}

.team-popup-repeated.open {
    display: flex;
}

.team-popup-photo {
    position: fixed;
    left: 2%;
    width: 35%;
    bottom: 0;
}

.team-popup-text {
    height: 100%;
    overflow-y: scroll;
}

.inner-team-popup-text {
    padding-right: 10rem;
}

.team-info-name {
    color: var(--orange);
    font-family: var(--font_bold);
    font-size: var(--size_3_2);
    line-height: 130%;
}

.team-info-job {
    color: #211F1C;
    font-size: var(--size_2_4);
    font-family: var(--font_bold);
}

.download-bio-cta a {
    display: table;
    margin: 0;
    background: var(--orange);
    color: var(--white);
    font-size: var(--size_1_8);
    padding: 1rem 3.5rem;
    transition: all .5s ease-in-out;
    border-radius: 3rem;
}

.download-bio-cta a:hover {
    background: var(--white);
    color: var(--orange);
}

.team-popup-desc {
    color: var(--gray);
}

.team-connect-title {
    color: var(--gray);
    font-size: var(--size_4);
    line-height: 150%;
    font-family: var(--font_medium);
}

.left-git {
    width: 30%;
}

.left-git-repeated:not(:last-child) {
    margin-bottom: 1rem;
}

.left-git-repeated .left-git-title {
    color: var(--orange);
    font-size: var(--size_2);
    font-family: var(--font_bold);
    width: 10%;
    display: inline-block;
}

.left-git-repeated .left-git-text {
    color: var(--gray);
    font-size: var(--size_1_8);
}

.right-git .text {
    font-size: var(--size_1_8);
    font-family: var(--font_medium);
    margin-right: 2rem;
    color: var(--gray);
}

.right-git .linkedin svg {
    fill: var(--orange);
}

/* end our identity */


/* our sectors */

.inner-sectorsB-repeat {
	max-width: 97%;
}

.sectorsB-repeat:nth-child(even) .inner-sectorsB-repeat {
	margin: 0 0 0 auto;
	flex-direction: row-reverse;
}

.sectorsB-repeat:not(:last-child) {
	padding-bottom: 5rem;
}

.right-sectorsB-ex .pretitle {
	font-family: var(--font_bold);
	font-size: var(--size_2_8);
	line-height: 100%;
}

.right-sectorsB-ex .title {
	font-family: var(--font_bold);
	font-size: var(--size_4);
	line-height: 110%;
}

.renewables .right-sectorsB-ex .pretitle {
	color: #28a593;
}

.powerinfrastructure .right-sectorsB-ex .pretitle {
	color: #fdc744;
}

.oilgas .right-sectorsB-ex .pretitle {
	color: #e03b31;
}

.mining .right-sectorsB-ex .pretitle {
	color: #fab34c;
}

.sectorsB-news-bloc .titles {
	font-family: var(--font_medium);
	font-size: var(--size_1_8);
	line-height: 100%;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.sectorsB-news-bloc .titles:after {
	content: '';
	width: 100%;
	height: .4rem;
	position: absolute;
	bottom: 0;
	left: 0;
}

.renewables .sectorsB-news-bloc .titles:after {
	background: #28a593;
}

.powerinfrastructure .sectorsB-news-bloc .titles:after {
	background: #fdc744;
}

.oilgas .sectorsB-news-bloc .titles:after {
	background: #e03b31;
}

.mining .sectorsB-news-bloc .titles:after {
	background: #fab34c;
}

.right-sectorsB .hp-projects-bloc {
	background: transparent;
}

.right-sectorsB .hp-projects-repeat {
	width: 100%;
	margin-right: 0;
}

.right-sectorsB .hp-projects-repeat:nth-child(4n) {
	margin-right: 0;
}

.right-sectorsB .hp-projects-repeat:nth-child(3n) {
	margin-right: 0;
}

.renewables .cta-csi a {
	background: #28a593;
}

.powerinfrastructure .cta-csi a {
	background: #fdc744;
}

.oilgas .cta-csi a {
	background: #e03b31;
}

.mining .cta-csi a {
	background: #fab34c;
}

.renewables .cta-csi a:hover {
	background: var(--gray);
}

.powerinfrastructure .cta-csi a:hover {
	background: var(--gray);
}

.oilgas .cta-csi a:hover {
	background: var(--gray);
}

.mining .cta-csi a:hover {
	background: var(--gray);
}

.right-sectorsB .hp-projects-repeat .tit {
	font-size: var(--size_1_8);
}

.right-sectorsB .hp-projects-repeat .desc {
	font-size: var(--size_1_4);
}

.project-portfolio-numbers {
	background: var(--orange);
}

.pp-numbers-repeated .text {
	margin-left: 3rem;
}

.pp-numbers-repeated .num {
	font-family: var(--font_bold);
	font-size: var(--size_6_5);
	line-height: 100%;
	color: var(--white);
}

.pp-numbers-repeated .desc {
	font-size: var(--size_2_4);
	color: var(--white);
	padding-top: 1rem;
}

.summary-repeated:not(:last-child):after {
    content: '';
    width: .5rem;
    height: calc(100% + 3rem);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: rgba(0, 0, 0, 0.05);
}

.summary-repeated .icn img {
    display: table;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.summary-title {
    color: var(--gray);
    font-size: var(--size_1_8);
    line-height: 110%;
    font-family: var(--font_bold);
    padding: 3rem 0 .5rem;
}

.summary-desc {
    color: var(--white);
    font-size: var(--size_2);
    line-height: 110%;
    font-family: var(--font_medium);
    text-transform: uppercase;
}

.renewables-in {
    background: #28a593;
}

.powerinfrastructure-in {
    background: #fdc744;
}

.mining-in {
    background: #e03b31;
}

.oilgas-in {
    background: #fab34c;
}

.sectors-renewables.pretitle-CSI {
    color: #28a593;
}

.sectors-renewables.pretitle-CSI:before {
    background: #28a593;
}

.sectors-powerinfrastructure.pretitle-CSI {
    color: #fdc744;
}

.sectors-powerinfrastructure.pretitle-CSI:before {
    background: #fdc744;
}

.sectors-oilgas.pretitle-CSI {
    color: #fab34c;
}

.sectors-oilgas.pretitle-CSI:before {
    background: #fab34c;
}

.sectors-mining.pretitle-CSI {
    color: #e03b31;
}

.sectors-mining.pretitle-CSI:before {
    background: #e03b31;
}

.cta-impact.project a .text-impact.text-renewables {
    color: #28a593;
}

.cta-impact.project a .text-impact.text-powerinfrastructure {
    color: #fdc744;
}

.cta-impact.project a .text-impact.text-mining {
    color: #e03b31;
}

.cta-impact.project a .text-impact.text-oilgas {
    color: #fab34c;
}

.cta-impact.project a .text-impact {
    font-family: var(--font_bold);
    position: relative;
    display: table;
    margin-right: 1.5rem;
    transition: all .5s ease-in-out;
}

.projects .hp-csiSlider-content .photo:before {
    content: '';
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}










/* highcharts */

.chart * {
    overflow: auto !important;
}

.highcharts-root {
	width: 100%;
	height: 100%;
}

.highcharts-background {
	fill: transparent;
	width: 100%;
	height: 100%;
}

.highcharts-button-symbol {
	display: none;
}

.highcharts-credits {
	display: none;
}

/* .highcharts-title {
	display: none;
} */

.highcharts-exporting-group {
	display: none;
}

.highcharts-label text {
	color: var(--gray) !important;
	fill: var(--gray) !important;
	font-size: var(--size_1_8) !important;
	text-transform: uppercase;
}


.highcharts-title {
	font-size: var(--size_2_8) !important;
	color: var(--gray) !important;
	fill: var(--gray) !important;
	font-family: var(--font_heavy) !important;
	text-transform: uppercase;
}

.highcharts-subtitle {
	font-size: var(--size_1_2) !important;
	color: var(--gray) !important;
	fill: var(--gray) !important;
	text-transform: uppercase;
}

.highcharts-point {
	stroke-width: .3rem;
}

.inner-sectors-contact .titleLine-csi {
    text-align: center;
}

.inner-sectors-contact .titleLine-csi:after {
    left: 50%;
    transform: translateX(-50%);
}


/* end our sectors */


/* our impact */

.dsc-icons-bloc {
	width: 49.5%;
	position: relative;
	background: #f8f8fa;
	padding: 5rem 10rem;
}

.dsc-icons-bloc .tit {
	font-family: var(--font_bold);
	font-size: var(--size_2_4);
	line-height: 100%;
}

.dsc-icons-s .icn:not(:last-child) {
	margin-right: 1rem;
}

.dsc-icons-bloc:nth-child(2) .icn:not(:last-child) {
	margin-right: 5rem;
}

.dsc-icons-s .icn-repeat:not(:last-child) {
	margin-bottom: 1.5rem;
}

.invest-impact-ddl {
	background: #f8f8fa;
}

.left-investImp-ddl .tit {
	font-family: var(--font_bold);
	font-size: var(--size_3_5);
	line-height: 100%;
}

.left-investImp-ddl .tit span {
	color: var(--orange);
}

.left-investImp-ddl .desc {
	font-size: var(--size_2_4);
}

.right-investImp-ddl .cta-csi a {
	font-size: var(--size_2_4);
    padding: 1.5rem 5rem;
	background: transparent;
	border: 2px solid var(--orange);
	color: var(--orange);
}

.right-investImp-ddl .cta-csi a:hover {
	background: var(--orange);
	color: var(--white);
}

.invest-impact-num-bloc {
	background: var(--orange);
}

.iin-repeat {
	margin-right: 5%;
	color: var(--white);
	text-align: center;
}

.iin-repeat:nth-child(3n) {
	margin-right: 0;
}

.iin-repeat .iin-tit {
	font-size: var(--size_8);
	line-height: 110%;
	font-family: var(--font_bold);
}

.iin-repeat .iin-tit span.iin-tit-light {
	font-family: var(--font_light);
}

.iin-repeat .iin-desc {
	font-size: var(--size_2_4);
	padding-top: 1rem;
}

.inner-ria-section {
	max-width: 95%;
	margin: 0 0 0 auto;
}

.right-ria {
	background: var(--orange);
}

.ctaLine-csi a {
	color: var(--orange);
	font-size: var(--size_2_4);
	line-height: 100%;
}

.ctaLine-csi a:hover {
	color: var(--gray);
}

.right-esg-report .tit {
	font-size: var(--size_2_8);
	line-height: 100%;
	font-family: var(--font_bold);
	padding-bottom: 2rem;
	padding-left: 1rem;
}

.right-esg-report .cta-csi a {
	font-size: var(--size_2);
}

.ria-num-bloc {
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.ria-num-repeat {
	width: 45%;
	position: relative;
	margin-right: 10%;
	margin-bottom: 10%;
	color: var(--white);
}

.ria-num-repeat:nth-child(2n) {
	margin-right: 0;
}

.ria-num-repeat .num {
	font-size: var(--size_7_5);
	line-height: 100%;
	font-family: var(--font_heavy);
}


/* end our impact */


/* contact us */

main.contactus-csi {
    margin-top: 12rem;
}

main.search-csi {
    margin-top: 12rem;
}

main.insights-csi {
    margin-top: 12rem;
}

.careers-csi main {
    margin-top: 12rem;
}

.left-contact .inner {
    max-width: 79%;
    margin: 0 auto;
}

.contact-form .umbraco-forms-form {
    padding: 0;
}

.contact-form .umbraco-forms-form fieldset {
    padding: 0;
    margin: 0;
}

.contact-form .umbraco-forms-form input.text,
.contact-form .umbraco-forms-form textarea {
    width: 100%;
    max-width: 100% !important;
    padding: 1rem 0;
    border: 0;
    border-bottom: 2px solid #d8d8d8;
    color: var(--gray);
    font-size: var(--size_2);
    line-height: 100%;
    font-family: var(--font_bold);
    height: auto;
    margin: 0 0 3rem 0;
    background: transparent;
}

.contact-form .umbraco-forms-form input.text::placeholder,
.contact-form .umbraco-forms-form textarea::placeholder {
    color: var(--gray);
    font-size: var(--size_2);
    line-height: 100%;
    font-family: var(--font_bold);
}

.contact-form .umbraco-forms-form input.text:focus,
.contact-form .umbraco-forms-form textarea:focus {
    border: 0;
    border-bottom: 2px solid var(--orange);
}

.contact-form .umbraco-forms-form .umbraco-forms-navigation input {
    cursor: pointer;
    font-family: var(--font_bold);
    background: var(--orange);
    color: var(--white);
    font-size: var(--size_2_8);
    border-radius: 3rem;
    padding: .8rem 5rem;
    letter-spacing: .5rem;
    line-height: 110%;
    text-transform: uppercase;
    border: 0;
    display: table;
    margin: 0 auto;
    transition: all .5s ease-in-out;
}

.contact-form .umbraco-forms-form .umbraco-forms-navigation input:hover {
    background: var(--gray);
}

.contact-form .umbraco-forms-form .umbraco-forms-navigation {
    margin-top: 5rem;
    padding: 0;
}

.right-contact {
    background: var(--orange);
}

.right-contact .inner {
    max-width: 79%;
    margin: 0 auto;
    color: var(--white);
}

.right-contact .inner .titleLine-csi {
    color: var(--white);
}

.right-contact .inner .titleLine-csi:after {
    content: '';
    background: var(--white);
}

.contact-info-repeat:not(:last-child) {
    padding-bottom: 5rem;
}

.left-contact-info {
    width: 12.5%;
    position: relative;
}

.right-contact-info {
    font-family: var(--font_light);
    font-size: var(--size_2_8);
    line-height: 120%;
    transition: all .5s ease-in-out;
}

.contact-info-repeat a:hover .right-contact-info {
    color: var(--gray);
}

.left-contact-social {
    font-family: var(--font_bold);
    font-size: var(--size_2_4);
    line-height: 100%;
    margin-right: 1rem;
}

.right-contact-social .social-icons-bloc li {
    width: 22%;
}


/* end contact us */


/* join us */

.inner-iin-bloc.join {
	padding-bottom: 0;
}

.inner-iin-bloc.join .iin-repeat {
	margin-bottom: 5%;
}

.inner-iin-bloc.join .iin-repeat .iin-tit span.iin-tit-light {
	font-size: var(--size_5_5);
}

.about-values-section.join .titleLine-csi:after {
	left: 50%;
	transform: translateX(-50%);
}

.about-values-sBloc .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26%;
    z-index: 2;
}

.about-values-sBloc .content {
	font-size: var(--size_2_8);
	line-height: 100%;
	font-family: var(--font_bold);
	color: var(--gray);
	opacity: 0;
	transition: all .5s ease-in-out;
}

.about-values-sBloc .swiper-slide-active .content {
	opacity: 1;
}

.career-spontaneous-section {
    background: var(--light-gray);
}

.apply-form.spontaneous .umbraco-forms-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.apply-form.spontaneous .umbraco-forms-field {
    width: 48.5%;
}

.apply-form.spontaneous .umbraco-forms-field.message {
    width: 100%;
}

.apply-form.spontaneous .umbraco-forms-form input.text, .apply-form.spontaneous .umbraco-forms-form textarea {
    border-bottom: 1px solid rgba(45, 41, 38, .5);
}





.stories-slider-cnt .tit {
	font-size: var(--size_2_4);
	font-family: var(--font_bold);
}

.slider-stories-bloc .swiper-button-next {
    width: auto;
    height: auto;
    margin: 0;
    right: -7rem;
}

.slider-stories-bloc .swiper-button-prev {
    width: auto;
    height: auto;
    margin: 0;
    left: -7rem;
	transform: rotate(-180deg);
}

.slider-stories-bloc .swiper-button-next:after {
	display: none;
}

.slider-stories-bloc .swiper-button-prev:after {
	display: none;
}

.career-opp-repeat:not(:last-child) {
	margin-bottom: 2rem;
}

.career-opp-repeat a {
	background: #f1f1f1;
	padding: 3rem 5rem;
}

.career-opp-info .tit {
	text-transform: uppercase;
	line-height: 100%;
	font-family: var(--font_light);
}

.career-opp-info .desc {
	font-size: var(--size_2_4);
	line-height: 120%;
	font-family: var(--font_bold);
	transition: all .5s ease-in-out;
	padding-top: 1rem;
}

.career-opp-cta {
	background: #b3b3b3;
	font-size: var(--size_2_4);
	color: var(--white);
	text-align: center;
	letter-spacing: .3rem;
	font-family: var(--font_bold);
	height: 100%;
	padding: 1.5rem 0;
	transition: all .5s ease-in-out;
}

.career-opp-repeat a:hover .career-opp-info .desc {
	color: var(--orange);
}

.career-opp-repeat a:hover .career-opp-cta {
	background: var(--orange);
}

.left-career-repeated:not(:last-child) {
    padding-bottom: 3rem;
}

.left-career-title {
    font-size: var(--size_2_4);
    line-height: 100%;
    padding-bottom: 2rem;
	font-family: var(--font_bold);
}

.left-career-desc {
    font-size: var(--size_1_8);
    line-height: 130%;
}

.left-career-desc li {
    padding-left: 1.5rem;
    position: relative;
}

.left-career-desc li:not(:last-child) {
    padding-bottom: 1rem;
}

.left-career-repeated .left-career-desc li:after {
    content: '';
    background: var(--orange);
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 0;
}

.apply-form .umbraco-forms-form {
    padding: 0;
}

.apply-form .umbraco-forms-form fieldset {
    padding: 0;
    margin: 0;
}

.apply-form .umbraco-forms-field {
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.apply-form .umbraco-forms-form input.text, .apply-form .umbraco-forms-form textarea {
    font-size: var(--size_1_8);
    line-height: 110%;
    color: var(--gray);
    max-width: 100% !important;
    border: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    background: transparent;
    border: 0;
    font-family: var(--font_regular);
    border-bottom: 1px solid #d8d8d8;
}

.apply-form .umbraco-forms-form input.text::placeholder, .apply-form .umbraco-forms-form textarea::placeholder {
    font-size: var(--size_1_8);
    line-height: 110%;
    color: var(--gray);
}

.apply-form .umbraco-forms-form input.text:focus, .apply-form .umbraco-forms-form textarea:focus {
    border: 0;
    border-bottom: 1px solid var(--orange);
}

.apply-form .umbraco-forms-navigation .col-md-12 input {
    background: var(--orange);
    color: #fff;
    padding: 1.5rem 3rem;
    text-transform: uppercase;
    font-size: var(--size_1_8);
    line-height: 110%;
    border: none;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.apply-form .umbraco-forms-navigation .col-md-12 input:hover {
    background: var(--gray);
}


.apply-form label.umbraco-forms-label {
    display: none;
}

.apply-form input[type="file"] { 
    color: var(--gray);
    width: 100%;
    font-size: var(--size_1_8);
    padding-top: .5rem;
    cursor: pointer;
    outline: none;
}

.apply-form input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

.apply-form input[type="file"]::before {
    content: 'Upload your CV';
    transition: all 0.5s ease-in-out;
    display: inline-block;
    border: 1px solid var(--gray);
    background: var(--gray);
    font-size: var(--size_1_8);
    line-height: 110%;
    padding: 1rem 0;
    color: #FFF;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    min-width: 20rem;
    text-align: center;
}

.apply-form input[type="file"]:hover::before {
    background: transparent;
    color: var(--gray);
}

.contact-section.stories .left-contact .inner {
    max-width: 100%;
    margin: 0;
}

.contact-section.stories .left-contact .content img {
    margin: 0 !important;
}

.contact-section.stories .right-contact {
    background: transparent;
}

.contact-section.stories .right-contact .photo {
    position: sticky;
    top: 0;
}

/* end join us */


/* our clusters */

.res-bloc .women-csi-repeat {
    width: 18%;
    margin-right: 2.5%;
    margin-bottom: 5%;
}

.res-bloc .titleLine-csi {
    color: var(--white);
    margin-bottom: 7.5rem;
}

.res-bloc .titleLine-csi:after {
    background: var(--white);
}

.res-bloc .women-csi-repeat:nth-child(5n) {
    margin-right: 0;
}

.women-csi-repeat {
    margin-right: 10%;
    margin-bottom: 5%;
}

.women-csi-repeat:nth-child(2n) {
    margin-right: 0;
}

.women-csi-bloc {
    background: var(--orange);
}

.right-women-csi {
    color: var(--white);
}

.right-women-csi .tit {
    font-size: var(--size_2_8);
    font-family: var(--font_bold);
}

.right-women-csi .desc {
    font-size: var(--size_2_2);
}

.cluster-synergy-bloc {
    height: 100vh;
    overflow: hidden;
    margin-top: 7.5rem;
}

.cluster-synergy-repeat {
    position: relative;
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
    transition: all 1.5s ease-in-out;
    z-index: 1;
}

.cluster-synergy-repeat:hover {
    flex: 4;
}

.cluster-synergy-repeat:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.inner-cs-repeat {
    padding: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.cs-logo-bloc .icn {
    min-width: 8.3rem;
    max-width: 8.3rem;
    height: 8.3rem;
}

.cs-logo-bloc .tit {
    font-family: var(--font_bold);
    margin-left: 2rem;
    transition: all 1.5s ease-in-out;
}

.cluster-synergy-repeat:hover .cs-logo-bloc .tit {
    font-size: var(--size_3_2);
}

.cs-desc-bloc {
    opacity: 0;
    transition: all 1.5s ease-in-out;
}

.cluster-synergy-repeat:hover .cs-desc-bloc {
    opacity: 1;
}

.cs-desc-bloc li {
    position: relative;
    padding-left: 2rem;
}

.cs-desc-bloc li:not(:last-child) {
    margin-bottom: 2rem;
}

.cs-desc-bloc li:before {
    content: '';
    background: var(--white);
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: 1rem;
    left: 0;
    border-radius: 50%;
}

.our-clusters .hp-projects-bloc {
    background: transparent;
}

.clusters-partner-bloc {
    background: #f5f5f5;
}

.clusters-partner-repeat {
    margin-right: 5%;
    margin-bottom: 5%;
}

.clusters-partner-repeat:nth-child(3n) {
    margin-right: 0;
}

.clusters-partner-repeat .tit {
    font-family: var(--font_bold);
}

.clusters-discuss-section {
    background: #f5f5f5;
}

.discuss-email .icn {
    width: 6.8rem;
}

.discuss-email .text {
    margin-left: 2rem;
}

.left-clusters-discuss .inner {
    /*flex-direction: column;*/
    /*height: 100%;*/
    /*justify-content: space-between;*/
}

.left-clusters-discuss .subtitle-csi {
    font-size: var(--size_8);
    line-height: 110%;
}

.left-clusters-discuss .desc {
    font-size: var(--size_4_5);
    line-height: 110%;
}

.clients-bloc {
    background: #f2f2f2;
}





/* end our clusters */


/* insights */

.left-blogtop .content {
    padding: 2rem 1.5rem;
}

.blog-title {
    font-size: var(--size_2_8);
    line-height: 100%;
    font-family: var(--font_bold);
}

.blog-desc {
    font-size: var(--size_1_8);
    line-height: 130%;
}

.cta-csi.blog {
    font-family: var(--font_bold);
    background: var(--orange);
    color: var(--white);
    font-size: var(--size_1_6);
    border-radius: 3rem;
    padding: .8rem 2rem;
    line-height: 110%;
    text-transform: uppercase;
    display: table;
    margin-top: 3rem;
    transition: all .5s ease-in-out;
}

.cta-csi.blog:hover {
    background: var(--gray);
}

.pretitle-CSI {
    color: var(--orange);
    font-family: var(--font_bold);
    text-transform: uppercase;
    position: relative;
    padding-left: 2rem;
    letter-spacing: .1rem;
    font-size: var(--size_1_6);
}

.pretitle-CSI:before {
    content: '';
    background: var(--orange);
    width: .7rem;
    height: .7rem;
    position: absolute;
    top: .8rem;
    left: 0;
    transition: left 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    animation: rotating 5s linear infinite;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.blog-date.b {
    font-size: var(--size_1_6);
    font-family: var(--font_bold);
}

.right-blogtop .blog-title {
    font-size: var(--size_2_2);
}

.rightblog-top-repeated .content {
    padding: 1.5rem 1.5rem 0;
}

.rightblog-top-repeated:not(:last-child) {
    padding-bottom: 5rem;
}

.blog-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-top: 0;
    margin-top: 2rem;
}

.filteritem-repeated:not(:last-child) {
    margin-bottom: 3rem;
}

.blog-filters li {
    line-height: 130%;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin: 0 2rem;
    font-family: var(--font_bold);
    cursor: pointer;
    width: auto !important;
    height: auto !important;
}

.blog-filters li:first-child {
    margin-left: 0;
    font-size: var(--size_1_6);
}

.blog-filters li:last-child {
    margin-right: 0;
}

.blog-filters li.active {
    color: var(--orange);
}

.blogtrending-title-bloc {
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
    padding: 3rem 2rem;
}

.blogtrending-title-bloc .text {
    font-family: var(--font_bold);
    font-size: var(--size_3);
    line-height: 110%;
    color: var(--orange);
    letter-spacing: .1rem;
}

.trendingSlider-content .content {
    padding: 1.5rem 1.5rem 0;
}

.blogtrending-slider-bloc {
    margin-top: 5rem;
    padding-top: 7.5rem;
}

.blogtrending-slider-bloc .swiper-button-prev {
    top: 0;
    margin-top: 0;
    background: url('../images/icn-blog-arrow.png') no-repeat;
    width: 2.7rem;
    height: 2.4rem;
    background-size: cover;
}

.blogtrending-slider-bloc .swiper-button-prev:after {
    display: none;
}

.blogtrending-slider-bloc .swiper-button-next {
    top: 0;
    margin-top: 0;
    background: url('../images/icn-blog-arrow.png') no-repeat;
    width: 2.7rem;
    height: 2.4rem;
    transform: rotate(180deg);
    background-size: cover;
}

.blogtrending-slider-bloc .swiper-button-next:after {
    display: none;
}

.blogitem-text-bloc .subtitle-csi {
    font-size: var(--size_2);
}

.blogitem-title2 {
    font-size: var(--size_2_4);
    line-height: 120%;
    font-family: var(--font_bold);
}

.sectors-projects-pretitle {
    font-family: var(--font_bold);
    font-size: var(--size_1_8);
    line-height: 100%;
    text-transform: uppercase;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.sectors-projects-pretitle:after {
    content: '';
    width: calc(100% + 5%);
    height: .4rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray);
}

.projects-repeated .content {
    padding: 1.5rem 1.5rem 0;
}

.projects-repeated .blog-title {
    font-size: var(--size_2_4);
    line-height: 120%;
}

.sectors-content.blog {
    background: #f2f2f2;
}

.blogitem-desc a {
    color: var(--orange);
}

.blogitem-desc a:hover {
    color: var(--gray);
}

.blogitem-repeated:last-child .blogitem-text-bloc {
    padding-bottom: 0;
}

/*  Needed for filters */

.hide { /* You can play with the seconds to change the "animation" */
    animation: hide .5s ease 0s 1 normal forwards;
    transform-origin: center;
    margin: 0 auto;
}

.show { /* You can play with the seconds to change the "animation" */
    animation: show2 .5s ease 0s 1 normal forwards;    
    transform-origin: center;
    margin: 0 auto;
}

.show2 { /* You can play with the seconds to change the "animation" */
    animation: show3 .5s ease 0s 1 normal forwards;    
    transform-origin: center;
    margin: 0 auto;
}
  
@keyframes hide {
    0%{
        transform: scale(1);        
    }
    
    100% {
        transform: scale(0);        
        width: 0;
        height: 0;
        margin: 0 auto;
    }
}

@keyframes show2 {
    0%{
        transform: scale(0);     
        width: 0;
        height: 0;
        margin: 0 auto;
    }
    
    100% {
        transform: scale(1);
        width: 100%;
        height: 100%;
    }
}

@keyframes show3 {
    0%{
        transform: scale(0);     
        width: 0;
        height: 0;
        margin: 0 auto;
    }
    
    100% {
        transform: scale(1);
    }
}








/* end insights */


/* newsletter section */

.newsletter-section:after {
	content: '';
	background: var(--orange);
	width: 100%;
	height: calc(50% + 3rem);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.right-newsletter-section .tit {
	font-size: var(--size_6);
	font-family: var(--font_heavy);
	line-height: 110%;
}

.form-newsletter .form-item {
	width: 65%;
	position: relative;
}

.form-newsletter .form-item input {
	width: 100%;
	border-radius: 3rem;
	background: var(--white);
	font-size: var(--size_2_4);
	color: var(--gray);
	line-height: 110%;
	padding: 1.5rem 3rem;
	border: 0;
}

.form-newsletter .form-item input::placeholder {
	color: #bfbfbf;
	font-size: var(--size_2_4);
}

.form-newsletter .form-submit {
	width: 30%;
	position: relative;
}

.form-newsletter .form-submit input {
	width: 100%;
	border-radius: 3rem;
	background: transparent;
	font-size: var(--size_2_8);
	color: var(--white);
	line-height: 110%;
	padding: 1rem 3rem;
	text-align: center;
	border: 2px solid var(--white);
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.form-newsletter .form-submit input:hover {
	background: var(--white);
	color: var(--gray);
}


.form-newsletter #mc_embed_signup_scroll {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.form-newsletter #mc_embed_signup .mc-field-group {
	width: 65%;
	position: relative;
}

.form-newsletter #mc_embed_signup .mc-field-group input {
	width: 100%;
	border-radius: 3rem;
	background: var(--white);
	font-size: var(--size_2_4);
	color: var(--gray);
	font-family: var(--font_regular);
	line-height: 110%;
	padding: 1.5rem 3rem;
	border: 0;
}

#mc_embed_signup .mc-field-group::placeholder {
	color: #bfbfbf;
	font-size: var(--size_2_4);
	font-family: var(--font_regular);
}

.form-newsletter #mc_embed_signup .clear.submit_newsletter {
	width: 30%;
	position: relative;
}

.form-newsletter #mc_embed_signup .clear.submit_newsletter input {
	width: 100%;
	border-radius: 3rem;
	background: transparent;
	font-size: var(--size_2_8);
	color: var(--white);
	line-height: 110%;
	padding: 1rem 3rem;
	text-align: center;
	border: 2px solid var(--white);
	cursor: pointer;
	height: auto;
    white-space: normal;
	transition: all .5s ease-in-out;
}

.form-newsletter #mc_embed_signup .clear.submit_newsletter input:hover {
	background: var(--white);
	color: var(--gray);
}

.form-newsletter #mc_embed_signup div#mce-responses {
    position: fixed;
    opacity: 0;
}

.form-newsletter #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inline-block;
    margin: 0;
    padding: .5rem 1rem 0;
    background-color: transparent;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: var(--size_1_4);
    font-weight: normal;
    z-index: 1;
    color: #6B0505;
}

.form-newsletter #mc_embed_signup form {
    margin: 0;
}







/* end newsletter section */


/* Search */

.search-block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.search-block.open {
    opacity: 1;
    visibility: visible;
}

.search-block-content {
    width: 100%;
    height: 65%;
    position: absolute;
    z-index: 2;
    top: -100%;
    left: 0;
    background: #F3F2EE;
    transition: all .5s ease-in-out;
}

.search-block.open .search-block-content {
    top: 0;
}

.search-block-content .search-close {
    position: fixed;
    top: 5%;
    right: 5%;
}

.search-block-content .search-close svg {
    width: 16%;
    margin: 0 0 0 auto;
    padding: 1rem;
    cursor: pointer;
}

.inner-block-content {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-inner {
    width: 100%;
    position: relative;
}

.search-title {
    letter-spacing: .2rem;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
    color: var(--orange);
    font-family: var(--font_bold);
    font-size: var(--size_2_4);
}

.search-form input {
    width: 100%;
    background: transparent;  
    transition: all 0.5s ease-in-out;
    border: 0;
    border-bottom: 2px solid var(--orange);
    font-size: var(--size_3_2);
    line-height: 110%;
    color: var(--gray);
    position: relative;
    padding: 20px 0;
    font-family: var(--font_regular);
    width: 0;
}

.search-block.open .search-form input {
    animation: size2 0.7s .5s forwards;
}

.search-form input::placeholder {
    color: rgba(33, 31, 28, .3);
    font-size: var(--size_3_2);
    line-height: 110%;
    font-family: var(--font_regular);
}

.search-icon {
    position: absolute;
    bottom: 23%;
    right: 2%;
    top: auto;
    transform: none;
    z-index: -1;
}

.search-icon svg {
    width: 7%;
    stroke: var(--gray);
    margin: 0 0 0 auto;
}

.search-block-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.search-results-bloc li {
    position: relative;
    padding-left: 1.5rem;
}

.search-results-bloc li:not(:last-child) {
    margin-bottom: 1rem;
}

.search-results-bloc li:after {
    content: '';
    background: var(--gray);
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 0;
    transition: all .5s ease-in-out;
}

.search-results-bloc li:hover a {
    color: var(--orange);
}

.search-results-bloc li:hover:after {
    background: var(--orange);
}



/* end of search */


/* footer */

footer:before {
    content: '';
    background: var(--orange);
    width: 100%;
    height: .5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.top-footer {
	background: var(--light-gray);
}

.footer-links-repeat {
	width: 20%;
	position: relative;
	margin-right: 5%;
	margin-bottom: 5%;
}

.footer-links-repeat:nth-child(4n) {
	margin-right: 0;
}

.footer-links-repeat li:not(:last-child) {
	margin-bottom: 1.2rem;
}

.footer-links-repeat li a {
	font-size: var(--size_2_2);
	line-height: 110%;
}

.footer-links-repeat li:first-child a {
	text-transform: uppercase;
	font-weight: 700;
}

.footer-links-repeat li a:hover {
	color: var(--orange);
}

.left-bottom-footer span {
	color: var(--orange);
}

.social-icons-bloc li:not(:first-child) svg {
	padding: 1.14rem;
}

.social-icons-bloc li:not(:last-child) {
	margin-right: 1rem;
}



