/* general */

:root {
	--white: #fff;
	--black: #000;
	--gray: #333;
	--blue: #0a355c;
	--dark_blue: #051a2d;
	--lighter_blue: #1d9ff0;
	--light_blue: #186ab1;
	--fade_blue: #566f86;
	--career_blue: #194c7a;
	/* --kaisei: "Kaisei Decol", serif;
	--font_light: "neue_montreallight", sans-serif;
	--font_bold: "neue_montrealbold", sans-serif;
	--font_regular: "neue_montrealregular", sans-serif;
	--font_medium: "neue_montrealmedium", sans-serif; */
	--size_5_5: 5.5rem;
	--size_5: 5rem;
	--size_4_5: 4.5rem;
	--size_4: 4rem;
	--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_montrealbold";
	src: url("../fonts/neuemontreal-bold-webfont.woff2") format("woff2"),
		url("../fonts/neuemontreal-bold-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "neue_montreallight";
	src: url("../fonts/neuemontreal-light-webfont.woff2") format("woff2"),
		url("../fonts/neuemontreal-light-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "neue_montrealmedium";
	src: url("../fonts/neuemontreal-medium-webfont.woff2") format("woff2"),
		url("../fonts/neuemontreal-medium-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "neue_montrealregular";
	src: url("../fonts/neuemontreal-regular-webfont.woff2") format("woff2"),
		url("../fonts/neuemontreal-regular-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

html * {
	letter-spacing: 0;
}

body {
	color: var(--black);
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	font-family: "Segoe UI";
	font-style: normal;
	background: #f5f7fa;
}

path,
circle {
	transition: all 0.5s ease-in-out;
}

.swiper-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}

a {
	transition: all 0.5s ease-in-out;
}

.bigTitle-iora {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_5_5);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.165rem;
}

/* .bigTitle-iora.line:before {
	content: '';
	width: 15%;
	height: 3px;
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translate(-50%, 0);
	background: var(--lighter_blue);
} */

/* parallax */

.hero-depth {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.hero-depth img {
	transform: scale(1.1);
	height: 100vh;
	object-fit: cover;
}

#loader {
	height: 1650px;
	z-index: 99;
	transition: all 1s ease-in-out;
}

#loader.height {
	height: 0;
	visibility: hidden;
	opacity: 0;
}

.banner-hero {
	width: 100%;
	height: 1650px;
	background: url("../images/banner-hero.jpg") no-repeat top center;
	position: relative;
	z-index: 1;
}

.banner-hero:after {
	content: "";
	background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.hero-logo {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	transition: all 0.7s ease-in-out;
}

.hero-text {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: var(--white);
	opacity: 0;
	text-align: center;
	width: 100%;
	max-width: 40%;
	transition: all 0.7s ease-in-out;
}

.hero-text-title {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_4_5);
	font-style: normal;
	font-weight: 400;
	line-height: 111.111%;
	letter-spacing: -0.225rem;
	padding-bottom: 3rem;
}

.hero-text-desc {
	font-size: var(--size_2_8);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	/* letter-spacing: -0.12rem; */
	/* font-family: var(--font_regular); */
	padding-bottom: 3rem;
	transform: translateY(50px);
	transition: all 0.7s ease-in-out;
}

.hero-text-line {
	width: 1px;
	background: var(--white);
	/* height: 12.7rem; */
	margin: 0 auto;
	transition: all 0.7s ease-in-out;
}

.hero-out {
	position: fixed;
	width: 100%;
	height: 100%;
	transition: all 0.7s ease-in-out;
	opacity: 0;
}

.scroll-section {
	display: table;
	margin: 5rem auto 0;
}

.scroll-section .fw-arrow svg {
	transform: rotate(90deg);
	fill: var(--white);
}

.scroll-section .fw-arrow {
	display: block;
}

@keyframes bounceAlpha {
	0% {
		opacity: 1;
		transform: translateY(0px) scale(1);
	}
	25% {
		opacity: 0;
		transform: translateY(10px) scale(0.9);
	}
	26% {
		opacity: 0;
		transform: translateY(-10px) scale(0.9);
	}
	55% {
		opacity: 1;
		transform: translateY(0px) scale(1);
	}
}

.scroll-section .bounceAlpha {
	animation-name: bounceAlpha;
	animation-duration: 1.4s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.scroll-section .fw-arrow.bounceAlpha:first-child {
	animation-name: bounceAlpha;
	animation-duration: 1.4s;
	animation-delay: 0.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	top: 10px;
	position: relative;
}

#main-content {
	position: fixed;
	height: 100%;
	overflow-y: scroll;
	z-index: 1;
}

/* #main-content.height {
	position: relative;
} */

/* header */

#main-content header {
	display: none;
}

#main-content header.show {
	display: block !important;
}

.main-inner header {
	display: block !important;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 20rem;
	background: #f5f7fa;
	transition: all 0.5s ease-in-out;
	opacity: 1;
	z-index: 9;
}

header.team-pop {
	opacity: 0;
	display: none !important;
}

header.fixed {
	position: fixed;
	height: 14rem;
}

header.hidden {
	top: -100%;
	opacity: 0;
}

.top-header {
	height: 15rem;
	background: transparent;
	transition: all 0.5s ease-in-out;
}

header.fixed .top-header {
	height: 10rem;
}

.left-top-header {
	width: 20%;
	transition: all 0.5s ease-in-out;
}

header.fixed .left-top-header {
	width: 10%;
}

.right-top-header .social li:not(:last-child) {
	margin-right: 2rem;
}

.right-top-header .social li path {
	fill: #c2c2c2;
}

.right-top-header .social li a:hover path {
	fill: var(--blue);
}

.right-top-header li.contact {
	display: none;
}

.right-top-widget {
	padding-top: 2rem;
	transition: all 0.5s ease-in-out;
}

header.fixed .right-top-widget {
	padding-top: 1.5rem;
}

.right-top-widget li:not(:last-child) {
	margin-right: 3rem;
	transition: all 0.5s ease-in-out;
}

.right-top-widget li.contact .text {
	color: var(--blue);
	font-size: var(--size_1_6);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.014rem;
	margin-left: 1rem;
	transition: all 0.5s ease-in-out;
}

header.fixed .right-top-widget li.contact .text {
	font-size: var(--size_1_4);
}

.right-top-widget li.contact a:hover path {
	fill: var(--lighter_blue);
}

.right-top-widget li.contact a:hover .text {
	color: var(--lighter_blue);
}

.right-top-widget li.login a {
	background: var(--blue);
	border-radius: 1.85rem;
	padding: 0.8rem 1.2rem;
	transition: all 0.5s ease-in-out;
}

.right-top-widget li.login .text {
	color: var(--white);
	font-size: var(--size_1_6);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.014rem;
	margin-left: 1rem;
	transition: all 0.5s ease-in-out;
}

.right-top-widget li.login a:hover {
	background: var(--lighter_blue);
}

header.fixed .right-top-widget li.login a {
	padding: 0.5rem 1rem;
}

header.fixed .right-top-widget li.login .text {
	font-size: var(--size_1_4);
}

.mob-header {
	display: none;
}

.bottom-header {
	height: 5rem;
	background: var(--blue);
	transition: all 0.5s ease-in-out;
}

.inner-bottom-header {
	position: initial;
}

.inner-bottom-header nav {
	position: initial;
}

.inner-bottom-header nav ul {
	position: initial;
}

header.fixed .bottom-header {
	height: 4rem;
}

.bottom-header > .inner-bottom-header > nav > ul > li {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.bottom-header > .inner-bottom-header > nav > ul > li > a {
	color: var(--white);
	/*font-family: var(--kaisei);*/
	letter-spacing: -0.015rem;
	font-size: var(--size_1_6);
}

header.fixed .bottom-header > .inner-bottom-header > nav > ul > li > a {
	font-size: var(--size_1_5);
}

.bottom-header nav > ul > li > a:hover {
	color: var(--lighter_blue);
}

.submenu {
	position: absolute;
	top: 5rem;
	left: -3.5rem;
	width: 35rem;
	height: auto;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 0 0 1rem 1rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 99;
}

.submenu.active {
	opacity: 1;
	visibility: visible;
}

header.fixed .submenu {
	top: 4rem;
}

.submenu nav {
	padding: 4rem 3.5rem;
	max-width: 100%;
}

.submenu li {
	width: 100%;
}

.submenu li:not(:last-child) {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(166, 191, 212, 0.3);
}

.submenu li a {
	font-size: var(--size_1_6);
	line-height: 130%;
	/*font-family: var(--kaisei);*/
	letter-spacing: -0.015rem;
	color: var(--dark_blue);
}

.submenu li a:hover {
	color: var(--lighter_blue);
}

/* main */

.banner-hp-section {
	background: var(--blue);
}

.banner-hp-section .photo-bg {
	background: url("../images/banner-hero.jpg") no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	padding: 23rem 0 5rem;
}

.inner-banner-hp {
	max-width: 85%;
	margin: 0 auto;
	background: var(--white);
	border-radius: 0.4rem;
	overflow: hidden;
}

.bannerHp-date-cat {
	font-size: var(--size_1_4);
	color: rgba(10, 53, 92, 0.4);
	line-height: 130%;
}

/* .bannerHp-date-cat span {
	font-family: var(--font_bold);
} */

.bannerHp-title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2_4);
	line-height: 130%;
	letter-spacing: -0.028rem;
}

.bannerHp-desc {
	color: var(--gray);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_8);
	line-height: 125%;
}

.iora-cta a {
	color: var(--white);
	/* font-family: var(--font_medium);  */
	font-size: var(--size_1_5);
	line-height: 130%;
	padding: 1.6rem 3.2rem;
	border-radius: 0.4rem;
}

.iora-cta.blue a {
	background: var(--blue);
}

.iora-cta.blue a:hover {
	background: var(--lighter_blue);
}

.iora-cta.dark-blue a {
	background: var(--dark_blue);
}

.iora-cta.dark-blue a:hover {
	background: var(--lighter_blue);
}

.iora-cta.light-blue a {
	background: var(--lighter_blue);
}

.iora-cta.light-blue a:hover {
	background: var(--blue);
}

.iora-cta.white a {
	background: var(--white);
	color: var(--light_blue);
}

.iora-cta.white a:hover {
	background: var(--light_blue);
	color: var(--white);
}

.inner-banner-hp .swiper-pagination {
	text-align: left;
	width: 30%;
	margin: 0 0 0 auto;
	right: 0;
	bottom: 5%;
}

.inner-banner-hp .swiper-pagination-bullet {
	background: rgba(10, 53, 92, 0.2);
	width: 1.6rem;
	height: 1.6rem;
	opacity: 1;
	position: relative;
}

.inner-banner-hp .swiper-pagination-bullet-active:after {
	content: "";
	background: var(--blue);
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 1;
}

.right-bannerHp-bloc .content {
	max-width: 85%;
}

.swiperFlow1 {
	margin-bottom: 2rem;
}

.priorities-slider-bloc .swiper-slide {
	transition: all 0.5s ease-in-out;
}

.priorities-slider-bloc .swiper-slide .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.priorities-slider-bloc .swiper-slide .photo:after {
	content: "";
	background: transparent
		linear-gradient(
			-180deg,
			rgba(26, 82, 132, 0) 49.88%,
			#000 100%,
			#d3d3d3 50%
		)
		0% 0% no-repeat padding-box;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.priorities-slider-bloc .swiper-slide:hover .photo:after {
	background: transparent
		linear-gradient(-180deg, rgba(26, 82, 132, 0) 1%, #000 100%, #d3d3d3 50%) 0%
		0% no-repeat padding-box;
}

.priorities-slider-bloc .content {
	position: absolute;
	padding: 3rem 4rem;
	width: 100%;
	height: auto;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.priorities-slider-bloc .content .title {
	color: var(--white);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.035rem;
	padding-bottom: 2rem;
}

.priorities-slider-bloc .content .desc-bloc {
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	transition: all 0.5s ease-in-out;
}

.priorities-slider-bloc .content .desc-bloc .inner {
	display: none;
}

.priorities-slider-bloc .swiper-slide:hover .content .desc-bloc .inner {
	display: block;
}

.priorities-slider-bloc .swiper-slide:hover .content .desc-bloc {
	opacity: 1;
	visibility: visible;
	max-height: 100%;
}

.priorities-slider-bloc .content .desc {
	color: var(--white);
	padding-bottom: 2.5rem;
}

.priorities-slider-bloc .content .iora-cta-arrow a {
	color: var(--white);
	letter-spacing: 0;
	/* font-family: var(--font_bold); */
	line-height: 130%;
	font-size: var(--size_1_6);
}

.priorities-slider-bloc .content .iora-cta-arrow .text {
	margin-right: 1rem;
	transition: all 0.5s ease-in-out;
}

.priorities-slider-bloc .content .iora-cta-arrow a:hover .text {
	margin-right: 1.5rem;
}

.flag-section > .photo {
	background: url("../images/bg-flag-map.svg") no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
}

.flag-title {
	font-size: var(--size_4_5);
	/*font-family: var(--kaisei);*/
	font-weight: 500;
	letter-spacing: -0.135rem;
	color: var(--blue);
}

.flag-bloc-repeat:not(:last-child) {
	padding-bottom: 10rem;
}

.flag-bloc-repeat:first-child .flag-repeat {
	margin-right: 8rem;
}

.flag-bloc-repeat:not(:first-child) .flag-repeat {
	margin-right: 6rem;
}

.flag-bloc-repeat:first-child .flag-repeat {
	width: 6.5%;
	position: relative;
}

.flag-bloc-repeat:not(:first-child) .flag-repeat {
	width: 6%;
}

.flag-bloc-repeat .flag-repeat .photo {
	border: 1px solid rgba(10, 53, 92, 0.08);
}

.flag-bloc-repeat .flag-repeat .photo img {
	transition: all 0.5s ease-in-out;
}

.flag-bloc-repeat .flag-repeat:hover .photo img {
	transform: scale(1.2);
}

.flag-bloc-repeat .flag-repeat .content .text {
	color: var(--dark_blue);
	font-size: var(--size_1_4);
	font-weight: 400;
	line-height: 107.143%;
	letter-spacing: -0.014rem;
}

.flag-bloc-repeat .flag-repeat .content .icn {
	padding: 1rem 0;
}

.inner-events-section {
	max-width: 97%;
	margin: 0 auto;
	border-radius: 1.6rem;
	background: linear-gradient(180deg, #f5f7fa 0%, #fff 52.86%);
}

.events-bloc-title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_4_5);
	line-height: 130%;
	font-weight: 500;
	letter-spacing: -0.135rem;
}

.calendar-slider-bloc .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.calendar-slider-bloc .photo img {
	transition: all 1s ease-in-out;
}

.calendar-slider-bloc a:hover .photo img {
	transform: scale(1.2);
}

.calendar-slider-bloc .content {
	padding: 2rem 1.5rem;
}

.calendar-slider-bloc .pretitle {
	color: var(--blue);
	font-size: var(--size_1_4);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: 0.075rem;
	padding-bottom: 1.5rem;
}

.calendar-slider-bloc .desc {
	padding-bottom: 1.5rem;
	font-size: var(--size_1_6);
	line-height: 125%;
	color: var(--gray);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	padding: 0;
	margin-bottom: 2rem;
}

.ce-date-bloc {
	color: var(--blue);
	font-size: var(--size_1_6);
	line-height: 130%;
}

.ce-date {
	margin-right: 2.5rem;
	font-size: var(--size_1_6);
	line-height: 130%;
}

.ce-location .icn {
	margin-right: 0.5rem;
}

.le-repeat {
	width: 48.5%;
	position: relative;
	margin-right: 3%;
}

.le-repeat:nth-child(2n) {
	margin-right: 0;
}

.le-repeat .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.le-repeat .photo img {
	transition: all 1s ease-in-out;
}

.le-repeat:hover .photo img {
	transform: scale(1.2);
}

.le-repeat .photo .iora-cta {
	position: absolute;
	bottom: 0;
	left: 0;
}

.le-repeat .content {
	padding: 2rem 1.5rem;
}

.le-repeat .title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_1_8);
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	padding-bottom: 1.5rem;
}

.le-repeat .pretitle {
	color: var(--blue);
	font-size: var(--size_1_4);
	font-weight: 400;
	line-height: 130%;
	padding-bottom: 1.5rem;
}

.le-repeat .desc {
	padding-bottom: 1.5rem;
	color: var(--black);
	font-size: var(--size_1_6);
	line-height: 130%;
}

.latest-events-bloc {
	border-top: 1px solid rgba(10, 53, 92, 0.2);
}

.right-latest-events .events-bloc-title {
	font-size: var(--size_3_2);
}

.speeches-bloc {
	border-radius: 0.4rem;
	background: rgba(10, 53, 92, 0.03);
	padding: 2.5rem 0;
}

.speeches-repeat:not(:last-child) {
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgba(10, 53, 92, 0.2);
}

.pretitle-bloc {
	padding-bottom: 1.5rem;
}

.pretitle-bloc .cat {
	/* font-family: var(--font_bold); */
	background: var(--lighter_blue);
	border-radius: 1rem;
	padding: 0.25rem 1.5rem;
	color: var(--white);
	font-weight: 700;
	font-size: var(--size_1_4);
	margin-right: 1rem;
}

.pretitle-bloc .date {
	color: var(--blue);
	font-size: var(--size_1_2);
	line-height: 116.667%;
	/* font-family: var(--font_regular); */
}

.speeches-repeat .desc {
	color: var(--dark_blue);
	font-weight: 400;
	font-size: var(--size_1_8);
	/*font-family: var(--kaisei);*/
	color: var(--gray);
}

.engagements-section {
	background: #f4f6f9;
}

.engagements-repeat {
	width: 32%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 2%;
}

.engagements-repeat:nth-child(3n) {
	margin-right: 0;
}

.engagements-repeat .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.engagements-repeat .photo img {
	transition: all 1s ease-in-out;
}

.engagements-repeat a:hover .photo img {
	transform: scale(1.2);
}

.engagements-repeat .pretitle-bloc .date {
	margin-right: 1.5rem;
	font-size: var(--size_1_2);
	color: var(--blue);
	line-height: 130%;
	letter-spacing: -0.012rem;
}

.engagements-repeat .content {
	padding: 2rem;
}

.engagements-repeat .title {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.06rem;
	padding-bottom: 1.5rem;
}

.engagements-repeat .desc {
	color: var(--black);
	font-size: var(--size_1_6);
	line-height: 130%;
	letter-spacing: -0.018rem;
}

.projects-section {
	background: var(--white);
}

.sm-projects {
	width: 23%;
	position: relative;
}

.sm-projects-repeat:not(:last-child) {
	margin-bottom: 5%;
}

.sm-projects-repeat .content {
	padding: 1.5rem;
}

.sm-projects-repeat .tit {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.1rem;
	padding-bottom: 1rem;
}

.sm-projects-repeat .desc {
	color: var(--black);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_6);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.018rem;
}

.bg-projects {
	width: 49%;
	position: relative;
	border-radius: 0 0 0.4rem 0.4rem;
	background: #f5f7fa;
}

.bg-projects .content {
	padding: 5rem 10rem;
}

.bg-projects .title {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.105rem;
}

.projects-bloc .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.projects-bloc .photo img {
	transition: all 1s ease-in-out;
}

.projects-bloc a:hover .photo img {
	transform: scale(1.2);
}

.projects-bloc .photo:after {
	content: "";
	width: 100%;
	height: 4px;
	background: var(--lighter_blue);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.projects-bloc a:hover .photo:after {
	width: 0;
}

.newsletter-section {
	top: 10rem;
	margin-top: -5rem;
	z-index: 2;
	display: none;
}

#hompageOnly .newsletter-section {
	display: block;
}

.inner-newsletter-section {
	background: var(--white);
	padding: 2rem;
	border-radius: 0.4rem;
}

.left-newsletter .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.right-newsletter .title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.175rem;
	padding-bottom: 1rem;
}

.right-newsletter .desc {
	color: var(--dark_blue);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 2rem;
}

/* employement opportunities */

.inner-firstTitle-bloc .icn {
	display: none;
}

/* .inner-firstTitle-bloc .text {
  text-align: center;
} */

.inner-firstTitle-bloc .text h1 {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_5_5);
	font-weight: 500;
	line-height: 90.909%;
	letter-spacing: -0.165rem;
	text-align: center;
}

.right-apply-summary .inner-firstTitle-bloc .text h1 {
	text-align: left;
}

.inner-firstTitle-bloc .text h2 {
	color: var(--blue);
	/* font-family: var(--font_regular); */
	font-size: var(--size_3);
	line-height: 130%;
	/* letter-spacing: -2%; */
	margin-bottom: 5rem;
	padding-top: 2rem;
}

.inner-firstTitle-bloc .text h3 {
	color: var(--black);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_8);
	line-height: 125%;
	letter-spacing: -0.035rem;
}

.inner-firstTitle-bloc .text h3 a {
	color: var(--lighter_blue);
	text-decoration: underline;
}

.inner-firstTitle-bloc .text h3 a:hover {
	color: var(--light_blue);
}

/* .inner-banner-in .photo {
	margin-top: 5rem;
} */

.inner-banner-in .photo .inner {
	border-radius: 0.4rem;
	overflow: hidden;
}

.inner-banner-in .photo:before {
	content: "";
	width: 2px;
	height: 5rem;
	background: var(--lighter_blue);
	position: absolute;
	top: -3.5rem;
	left: 50%;
	transform: translate(-50%, 0);
	transition: all 0.5s ease-in-out;
	z-index: 1;
	display: none;
}

.inner-banner-in .photo .inner:after {
	content: "";
	width: 100%;
	height: 5px;
	background: var(--lighter_blue);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.career-ex-section:after {
	content: "";
	width: 85%;
	height: 1px;
	background: rgba(10, 53, 92, 0.2);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.career-ex-section .map-eo {
	position: absolute;
	top: -15rem;
	right: 0;
	width: 45%;
	z-index: -1;
}

.left-career-ex .big-title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_4_5);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.14rem;
	padding-bottom: 3rem;
}

.left-career-ex .title {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2_8);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.14rem;
	padding-bottom: 2.5rem;
}

.left-career-ex .desc {
	color: var(--black);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 4.5rem;
}

.iora-cta a .icn {
	margin-left: 1rem;
	transition: all 0.5s ease-in-out;
}

.iora-cta a:hover .icn {
	transform: rotate(-90deg);
}

.right-career-ex .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.op-section:after {
	content: "";
	width: 85%;
	height: 1px;
	background: rgba(10, 53, 92, 0.2);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.op-pretitle {
	color: var(--lighter_blue);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_5);
	line-height: 130%;
	letter-spacing: -0.015rem;
	padding-bottom: 2.5rem;
}

.op-title {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2_8);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.14rem;
}

.op-job-repeat {
	margin-right: 5%;
	margin-bottom: 5%;
	background: url("../images/bg-op.png") no-repeat;
	height: 100%;
	background-size: cover;
	border: 1.378px solid rgba(152, 169, 195, 0.2);
	transition: all 0.5s ease-in-out;
}

.op-job-repeat:nth-child(3n) {
	margin-right: 0;
}

.op-job-repeat a {
	padding: 4rem;
}

.op-job-repeat .title {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.15rem;
	color: var(--light_blue);
	padding: 2rem 0;
	transition: all 0.5s ease-in-out;
}

.op-job-repeat .title:before {
	content: "";
	width: 25%;
	height: 0.1378rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: var(--black);
	transition: all 0.5s ease-in-out;
}

.op-job-repeat .desc {
	color: var(--dark_blue);
	font-size: var(--size_2);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 5rem;
	transition: all 0.5s ease-in-out;
}

.op-job-repeat .desc li {
	padding: 0 2rem;
	position: relative;
}

.op-job-repeat .desc li:first-child {
	padding-left: 0;
}

.op-job-repeat .desc li:last-child {
	padding-right: 0;
}

.op-job-repeat .desc li:not(:last-child):after {
	content: "";
	width: 5px;
	height: 5px;
	background: var(--dark_blue);
	position: absolute;
	right: -2.5px;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
}

.op-job-repeat .iora-cta {
	padding: 2.5rem;
	background: var(--blue);
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_5);
	line-height: 130%;
	text-align: center;
	transition: all 0.5s ease-in-out;
}

.op-job-repeat:hover {
	background: #194c7a;
}

.op-job-repeat:hover .title {
	color: var(--white);
}

.op-job-repeat:hover .title:before {
	background: var(--white);
}

.op-job-repeat:hover .desc {
	color: var(--white);
}

.op-job-repeat:hover .desc li:not(:last-child):after {
	background: var(--white);
}

.op-job-repeat:hover .iora-cta {
	background: var(--white);
	color: var(--blue);
}

.inner-spontaneous-section {
	background: url("../images/bg-spontaneous.png") no-repeat;
	background-size: cover;
	height: 100%;
}

.spontaneous-bloc .op-title {
	padding-bottom: 2rem;
}

.op-subtitle {
	color: var(--black);
	font-size: var(--size_2);
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.02rem;
}

.op-desc {
	color: var(--black);
	font-size: var(--size_1_6);
	font-weight: 400;
	line-height: 125%;
	letter-spacing: -0.016rem;
}

/* internships and scholarships */

.inner-page-desc .pretitle {
	color: var(--lighter_blue);
	font-size: var(--size_1_5);
	line-height: 130%;
	/* font-family: var(--font_bold); */
	letter-spacing: -0.015rem;
	padding-bottom: 3rem;
}

.inner-page-desc .title {
	color: var(--dark_blue);
	font-size: var(--size_3);
	line-height: 130%;
	/*font-family: var(--kaisei);*/
	letter-spacing: -0.14rem;
	padding-bottom: 3rem;
}

.inner-page-desc .desc {
	color: var(--black);
	font-size: var(--size_2_4);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.imageText-repeat:not(:last-child) {
	padding-bottom: 10rem;
}

.imageText-repeat:nth-child(even) {
	flex-direction: row-reverse;
}

.left-imageText {
	width: 47.5%;
	position: relative;
}

.right-imageText .title {
	color: var(--career_blue);
	font-size: var(--size_3_5);
	line-height: 130%;
	/*font-family: var(--kaisei);*/
	letter-spacing: -0.14rem;
	padding-bottom: 3rem;
}

.right-imageText .desc {
	color: var(--dark_blue);
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 3rem;
}

/* job details */

.right-apply-summary .title {
	font-size: var(--size_2_4);
	line-height: 130%;
	color: var(--gray);
	padding-bottom: 2rem;
}

.right-apply-summary .desc {
	font-size: var(--size_1_8);
	line-height: 130%;
	color: var(--black);
}

.summary-duties-repeat:not(:last-child) {
	padding-bottom: 3rem;
}

.summary-duties-repeat .tit {
	font-size: var(--size_2);
	color: var(--dark_blue);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.summary-duties-repeat li {
	position: relative;
	padding-left: 3rem;
	color: var(--gray);
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.summary-duties-repeat li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.summary-duties-repeat li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.apply-back-btn a {
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.02rem;
	/* font-family: var(--font_medium);  */
	transition: all 0.5s ease-in-out;
}

.apply-back-btn .text {
	margin-left: 0.5rem;
	transition: all 0.5s ease-in-out;
	color: #9cadc8;
}

.apply-back-btn a:hover .text {
	margin-left: 1rem;
	color: var(--light_blue);
}

.apply-back-btn a:hover path {
	stroke: var(--light_blue);
}

.apply-box {
	background: var(--white);
	border-radius: 0.4rem;
	border: 1px solid #c4d6e5;
}

.apply-box .tit {
	/* font-family: var(--font_medium);  */
	font-size: var(--size_3);
	line-height: 130%;
	letter-spacing: -0.02rem;
	color: var(--light_blue);
	padding-bottom: 2rem;
}

.info-bloc-repeat {
	padding-bottom: 2rem;
}

.info-tit {
	color: var(--dark_blue);
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 0.5rem;
}

.info-desc {
	color: var(--black);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 0.5rem;
}

.inner-apply-section {
	background: var(--white);
	border-radius: 0.4rem;
}

.inner-apply-section .title {
	/*font-family: var(--kaisei);*/
	color: var(--dark_blue);
	font-size: var(--size_4_5);
	line-height: 130%;
	letter-spacing: -0.14rem;
	padding-bottom: 2rem;
}

.inner-apply-section .subtitle {
	color: var(--black);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.14rem;
	/* font-family: var(--font_regular); */
}

.inner-apply-section .desc {
	color: var(--black);
	line-height: 130%;
	letter-spacing: -0.14rem;
	/* font-family: var(--font_regular); */
}

/* who we are - iora */

.ia-section {
	top: -7rem;
	margin-bottom: -7rem;
}

.left-ia .photo:after {
	content: "";
	background: url("../images/bg-wwa-location.svg") no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.left-ia .photo .icn {
	position: absolute;
	bottom: 12%;
	left: 32%;
	width: 28%;
	z-index: 1;
}

.right-ia .title {
	/*font-family: var(--kaisei);*/
	color: var(--blue);
	font-size: var(--size_4_5);
	line-height: 130%;
	letter-spacing: -0.165rem;
	padding-bottom: 3rem;
}

.right-ia .desc {
	color: var(--black);
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.035rem;
}

/* .top-structure-bloc {
	margin: 0 0 0 auto;
	padding: 0 5%;
} */

/* .top-structure-bloc:before {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: 8rem;
	left: 0;
	background: var(--lighter_blue);
} */

.top-structure-bloc .title {
	/*font-family: var(--kaisei);*/
	color: var(--blue);
	font-size: var(--size_4_5);
	line-height: 130%;
	font-weight: 400;
	letter-spacing: -0.175rem;
	padding-bottom: 4rem;
}

.top-structure-bloc .subtitle {
	/*font-family: var(--kaisei);*/
	color: var(--dark_blue);
	font-size: var(--size_2_4);
	line-height: 130%;
	font-weight: 400;
	letter-spacing: -0.015rem;
	padding-bottom: 2rem;
}

.top-structure-bloc .desc a:hover {
	color: var(--lighter_blue);
}

.bottom-structure-bloc .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.inner-core-values .title {
	/*font-family: var(--kaisei);*/
	color: var(--blue);
	font-size: var(--size_4_5);
	line-height: 130%;
	font-weight: 400;
	letter-spacing: -0.175rem;
}

.core-values-repeated {
	width: 22%;
	position: relative;
	margin-right: 3%;
	margin-bottom: 3%;
}

.core-values-repeated:nth-child(4n) {
	margin-right: 0;
}

.core-values-repeated .tit {
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.015rem;
	color: var(--lighter_blue);
	padding-bottom: 1rem;
}

.core-values-repeated .tit sup {
	color: var(--blue);
	/* font-family: var(--font_medium);  */
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.015rem;
	margin-right: 0.5rem;
}

.core-values-repeated .desc {
	color: var(--black);
}

.inner-documents-section {
	background: var(--white);
	border-radius: 0.4rem;
	margin: 5rem auto;
}

.documents-filter-bloc ul {
	border-bottom: 2px solid #e3e5e9;
	border-radius: 0.4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.documents-filter-bloc li {
	position: relative;
}

.documents-filter-bloc li a {
	cursor: pointer;
	/*font-family: var(--kaisei);*/
	color: var(--blue);
	font-weight: 500;
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.035rem;
	margin: 0 1rem;
	padding: 0 1rem 1.5rem;
	display: table;
	position: relative;
	transition: transform 0.5s cubic-bezier(0.3, 0.1, 0.3, 1);
}

.documents-filter-bloc li a:hover {
	color: var(--lighter_blue);
}

.documents-filter-bloc li a.bef-link--selected {
	color: var(--lighter_blue);
}

.documents-filter-bloc li a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--lighter_blue);
	height: 2px;
	width: 100%;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.5s cubic-bezier(0.3, 0.1, 0.3, 1);
}

.documents-filter-bloc li a:hover:after {
	transform: scaleX(1);
	transform-origin: left center;
}

.documents-filter-bloc li a.bef-link--selected:after {
	transform: scaleX(1);
	transform-origin: left center;
}

.documents-repeat {
	background: #f7f9fa;
	border-radius: 0.4rem;
	transition: all 0.5s ease-in-out;
}

.documents-repeat:not(:last-child) {
	margin-bottom: 2rem;
}

.documents-repeat:hover {
	background: var(--blue);
}

.left-top-documents .cat {
	/* font-family: var(--font_bold); */
	font-family: "Segoe UI";
	line-height: 130%;
	color: var(--blue);
	letter-spacing: -0.18px !important;
	font-weight: 600;
}

/* .documents-repeat a:hover .left-top-documents .cat {
	color: #a2b2cb;
} */

.left-top-documents .dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #9cadc8;
	margin: 0 1rem;
}

.left-top-documents .date {
	line-height: 130%;
	letter-spacing: -0.035rem;
	color: #a2b2cb;
	font-family: "Segoe UI";
}

.left-bottom-documents {
	padding-top: 1rem;
}

.left-bottom-documents .tit {
	/*font-family: var(--kaisei);*/
	font-family: "Segoe UI";
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.54px !important;
	color: var(--gray);
}

/* .documents-repeat a:hover .left-bottom-documents .tit {
	color: #a2b2cb;
} */

.right-documents .text {
	/* font-family: var(--font_medium); */
	/* color: #9cadc8; */
	/* font-size: var(--size_1_4); */
	line-height: 130%;
	/* padding-top: 0.5rem; */
	font-family: "Segoe UI";
	font-size: var(--size_1_8);
	color: var(--white);
}

.inner-documents-section .isotope-pager {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 7.5rem;
}

.inner-documents-section .isotope-pager a {
	color: var(--black);
	line-height: 130%;
	position: relative;
	z-index: 1;
}

.inner-documents-section .isotope-pager a:after {
	content: "";
	width: 4rem;
	height: 4rem;
	background: var(--lighter_blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.inner-documents-section .isotope-pager a.active {
	color: var(--white);
	/* font-family: var(--font_bold); */
}

.inner-documents-section .isotope-pager a.active:after {
	opacity: 1;
}

.inner-documents-section .isotope-pager a:not(:last-child) {
	margin-right: 6rem;
}

/* milestones & achievements */

.timeline-section {
	top: 1.5rem;
	margin-top: -1.5rem;
}

.timeline-bg {
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.timeline-history {
	width: 88%;
	position: relative;
}

.timeline-pagination {
	height: 100%;
}

.timeline-pagination .swiper-wrapper {
	height: 60rem;
	display: block;
}

.timeline-pagination .swiper-button-next {
	bottom: 0;
	top: auto;
	left: 50%;
	right: auto;
	transform: translateX(-50%) rotate(180deg);
}

.timeline-pagination .swiper-button-next:after {
	display: none;
}

.timeline-pagination .swiper-button-prev {
	top: 0;
	transform: translateX(-50%) rotate(0);
	left: 50%;
}

.timeline-pagination .swiper-button-prev:after {
	display: none;
}

.timeline-pagination .swiper-slide .text {
	color: var(--white);
	line-height: 130%;
	cursor: pointer;
	/* font-family: var(--font_light); */
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-pagination .swiper-slide.swiper-slide-thumb-active .text {
	color: #f7d77c;
	/* font-family: var(--font_bold); */
}

.timeline-pagination .text span.dash {
	width: 1.5rem;
	height: 1px;
	background: var(--white);
	display: flex;
	align-items: center;
	margin-left: 1rem;
}

.timeline-pagination .swiper-slide.swiper-slide-thumb-active .text span.dash {
	background: #f7d77c;
	height: 2px;
}

.timeline-history-bloc {
	padding: 5rem 3rem 3rem;
}

.left-timeline-history .tit {
	/*font-family: var(--kaisei);*/
	font-weight: 400;
	opacity: 0;
	transform: translateY(-5rem);
	transition: all 0.5s ease-in-out 0s;
}

.timeline-history .swiper-slide-active .left-timeline-history .tit {
	opacity: 1;
	transform: translateY(0);
}

.left-timeline-history .tit span.yellow {
	font-size: 17.8rem;
	color: #f7d77c;
	line-height: 130%;
	z-index: 2;
}

.left-timeline-history .tit span.white {
	font-size: 10.6rem;
	line-height: 130%;
	color: var(--white);
	position: relative;
	left: -2rem;
	z-index: 1;
}

.desc-timeline-history {
	opacity: 0;
	transform: translateY(-50px);
	transition: all 0.7s ease-in-out 0s;
}

.timeline-history .swiper-slide-active .desc-timeline-history {
	opacity: 1;
	transform: translateY(0);
}

.desc-timeline-text {
	font-size: var(--size_1_8);
	line-height: 125%;
	color: #f6fbff;
}

.desc-timeline-history .swiper-pagination {
	position: relative;
	text-align: left;
	margin-top: 5rem;
}

.right-timeline-history .icn-sc {
	position: absolute;
	top: -10%;
	left: -6%;
	width: 29%;
	z-index: 1;
}

.right-timeline-history .photo {
	background: var(--white);
	padding: 1rem;
	border-radius: 0.4rem;
	overflow: hidden;
	transform: rotate(2.67deg);
}

.right-timeline-history .photo img {
	border-radius: 0.4rem;
}

.desc-timeline-history
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	background: var(--white);
	opacity: 1;
	margin: 0 1.8rem;
	position: relative;
}

.desc-timeline-history
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet-active:after {
	content: "";
	border: 1px solid #f7d77c;
	background: transparent;
	width: 3.8rem;
	height: 3.8rem;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* council of ministers */

.career-ex-section.com:after {
	display: none;
}

.career-ex-section.com .desc.com {
	padding-bottom: 2rem;
}

.career-ex-section.com .desc.com2 {
	padding-bottom: 0;
}

.com-duties-bloc {
	padding-bottom: 1.5rem;
	margin-bottom: 3rem;
}

.com-duties-bloc:after {
	content: "";
	background: var(--black);
	width: 40%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.com-duties-repeat {
	margin-bottom: 1.5rem;
}

.com-duties-num {
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.15rem;
	color: var(--lighter_blue);
}

.com-duties-text {
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.015rem;
	color: var(--black);
}

.inner-com-meetings {
	background: #6fa2cf;
	border-radius: 0.8rem;
}

.comMeet-title-bloc {
	color: var(--white);
}

.comMeet-title-bloc .tit {
	/*font-family: var(--kaisei);*/
	font-weight: 400;
	font-size: var(--size_4_5);
	line-height: 130%;
	letter-spacing: -0.014rem;
}

.com-meetings-repeat {
	padding: 1.2rem 5rem;
	border-radius: 0.4rem;
}

.com-meetings-repeat:first-child {
	background: #235b8d;
}

.com-meetings-bloc
	.views-infinite-scroll-content-wrapper
	.com-meetings-repeat:nth-child(odd) {
	background: #5690c3;
}

.com-meetings-repeat .col {
	color: var(--white);
	width: 23%;
	position: relative;
	margin-right: 2.66%;
}

.com-meetings-repeat .col a {
	color: var(--white);
	transition: all 0.3s ease-in;
}

.com-meetings-repeat .col a:hover {
	color: var(--white);
	transition: all 0.3s ease-in;
}

.com-meetings-repeat .col sup {
	font-size: var(--size_1_4);
	line-height: 130%;
}

.com-meetings-repeat .col:last-child {
	margin-right: 0;
}

.com-meetings-cta a {
	background: var(--light_blue);
	color: var(--white);
	font-size: var(--size_1_8);
	line-height: 130%;
	/* font-family: var(--font_medium);  */
	padding: 1.5rem 0;
	width: 35%;
	text-align: center;
	border-radius: 0.4rem;
	display: table;
	margin: 0 auto;
}

.com-meetings-cta a:hover {
	background: var(--lighter_blue);
}

.com-meetings-cta {
	width: 100%;
	position: relative;
	top: 1.5rem;
	margin-top: 7.5rem;
}

.com-meetings-section {
	margin-bottom: 10rem;
}

.com-meetings-cnt {
	padding-bottom: 0;
}

.inner-com-history {
	background-image: url("../images/bg-com-history.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	border-radius: 0.8rem;
}

.bloc-com-history .title {
	/*font-family: var(--kaisei);*/
	font-weight: 400;
	font-size: var(--size_4_5);
	line-height: 130%;
	letter-spacing: -0.14rem;
	color: var(--white);
}

.comHistory-slider-bloc .swiper-slide {
	transition: all 0.5s ease-in-out;
}

.comHistory-slider-bloc .swiper-slide:nth-child(even) {
	top: 3rem;
}

.com-history-bloc .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.com-history-bloc .photo:after {
	content: "";
	background: transparent
		linear-gradient(
			-180deg,
			rgba(26, 82, 132, 0) 49.88%,
			#000 100%,
			#d3d3d3 50%
		)
		0% 0% no-repeat padding-box;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.com-history-bloc .content {
	position: absolute;
	padding: 3rem;
	width: 100%;
	height: auto;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.com-history-bloc .content .text {
	color: var(--white);
	line-height: 130%;
}

/* .com-history-bloc .content .text strong {
	font-family: var(--font_bold);
} */

.comHistory-slider-bloc
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	width: 6rem;
	height: 0.5rem;
	border-radius: initial;
	margin: 0 0.8rem;
	background: rgba(255, 255, 255, 0.5);
}

.comHistory-slider-bloc
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet-active {
	background: var(--lighter_blue);
}

.inner-current-chair {
	border-radius: 0.8rem;
	overflow: hidden;
	background: var(--white);
}

.inner-current-chair:after {
	content: "";
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--light_blue);
}

.left-current-chair .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.left-current-chair .left-career-ex .title {
	color: var(--black);
	font-size: var(--size_2_4);
}

.current-chair-country {
	top: -2rem;
	margin-bottom: -2rem;
}

.current-chair-country .content {
	color: var(--blue);
}

.right-member-states > .inner {
	background: var(--white);
	border-radius: 0.8rem;
	overflow: hidden;
	border-bottom: 2px solid #c4d6e5;
}

.right-member-states .title-bloc {
	background: #212a33;
	border-radius: 0.8rem;
	padding: 1.5rem 4rem;
}

.right-member-states .title-bloc .text {
	color: var(--white);
	/* font-family: var(--font_medium);  */
	margin-left: 1rem;
}

.right-member-states .desc-bloc {
	padding: 4rem;
}

.right-member-states .desc-bloc .desc {
	color: var(--black);
	line-height: 115%;
	padding-bottom: 3rem;
}

.right-member-states .desc-bloc .desc:after {
	content: "";
	width: 85%;
	height: 1px;
	background: #c4d6e5;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.right-member-states .desc-bloc .iora-cta {
	padding-top: 3rem;
}

.right-member-states .desc-bloc .iora-cta a {
	border-radius: 0.8rem;
}

.members-filter {
	background: var(--white);
	padding: 1.5rem 3rem;
	border-radius: 0.4rem;
	border: 1px solid #c4d6e5;
}

.members-filter li {
	padding: 0.5rem;
	cursor: pointer;
	color: var(--black);
	font-size: var(--size_1_5);
	/* font-family: var(--font_medium);  */
	transition: all 0.5s ease-in-out;
}

.members-filter li.active {
	color: var(--lighter_blue);
}

.members-filter li:hover {
	color: var(--lighter_blue);
}

.flag-bloc.member-states .flag-repeat {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 5rem 0;
	border-bottom: 1px solid #c4d6e5;
}

.flag-bloc.member-states .flag-repeat .content .text {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2_8);
	line-height: 130%;
	color: var(--gray);
	letter-spacing: -0.14rem;
}

.left-member-states .isotope-pager {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 7.5rem;
}

.left-member-states .isotope-pager a {
	color: var(--black);
	line-height: 130%;
	width: auto;
	position: relative;
	z-index: 1;
}

.left-member-states .isotope-pager a:after {
	content: "";
	width: 4rem;
	height: 4rem;
	background: var(--lighter_blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.left-member-states .isotope-pager a.active {
	color: var(--white);
	/* font-family: var(--font_bold); */
}

.left-member-states .isotope-pager a.active:after {
	opacity: 1;
}

.left-member-states .isotope-pager a:not(:last-child) {
	margin-right: 6rem;
}

.member-details {
	color: rgba(10, 53, 92, 0.45);
	padding-top: 1rem;
}

.member-details .date-joined {
	margin-right: 1rem;
}

.member-details .member-website {
	/* font-family: var(--font_bold); */
	margin-left: 1rem;
}

.member-details .member-website .icn {
	margin-left: 0.5rem;
}

.member-details .member-website .tit {
	transition: all 0.5s ease-in-out;
}

.member-details .member-website a:hover .tit {
	color: var(--lighter_blue);
}

.member-details .member-website a:hover .icn path {
	stroke: var(--lighter_blue);
	stroke-opacity: 1;
}

/* press release */

.pressRelease-bloc .documents-repeat {
	background: var(--white);
}

.pressRelease-bloc .left-top-documents .date {
	color: var(--lighter_blue);
	/* font-family: var(--font_medium);  */
}

.pressRelease-bloc .left-bottom-documents .tit {
	color: var(--dark_blue);
}

.pressRelease-bloc .documents-repeat:hover {
	background: var(--blue);
}

/* .pressRelease-bloc .documents-repeat:hover .left-top-documents .date {
	color: #a2b2cb;
} */

/* priority areas */

.bloc-sticky {
	overflow: hidden;
}

.inner-priority-areas {
	background: var(--white);
	border-radius: 0.4rem;
	overflow: hidden;
	border-bottom: 1px solid #c4d6e5;
	transition: all 0.5s ease-in-out;
}

.priority-areas-bloc ul {
	align-items: center;
}

.priority-areas-bloc li:not(:last-child) {
	margin-right: 3rem;
}

.priority-areas-bloc li a {
	color: var(--black);
	display: table;
	text-align: center;
	font-size: var(--size_1_6);
}

.priority-areas-bloc li a.active {
	background: var(--light_blue);
    font-family: "Segoe UI";
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
	font-weight: 700;
}

.sticky-banner .text-bloc .title {
	font-size: var(--size_5);
	line-height: 130%;
	letter-spacing: -0.313rem;
	color: var(--light_blue);
	/*font-family: var(--kaisei);*/
	padding-bottom: 2rem;
}

.sticky-banner .text-bloc .subtitle {
	font-size: var(--size_3);
	line-height: 130%;
	letter-spacing: -0.2rem;
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	padding-bottom: 2rem;
}

.sticky-banner .text-bloc .desc {
	color: var(--black);
	/* font-size: var(--size_2_2); */
	font-size: var(--size_1_8);
	line-height: 130%;
}

.sticky-banner .text-bloc .text-more {
	display: none;
	padding-top: 3rem;
}

.sticky-banner .text-bloc ul {
	padding: 1.5rem 0;
}

.sticky-banner .text-bloc li {
	position: relative;
	padding-left: 3rem;
	letter-spacing: -0.02rem;
}

.sticky-banner .text-bloc li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.sticky-banner .text-bloc li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.sticky-banner .text-bloc li:not(:last-child) {
	margin-bottom: 1rem;
}

.sticky-banner .text-bloc .text-cta a {
	display: table;
	color: #9cadc8;
	font-size: var(--size_1_6);
	line-height: 130%;
	/* font-family: var(--font_bold); */
	letter-spacing: -0.014rem;
}

.sticky-banner .text-bloc .text-cta a:hover {
	color: var(--lighter_blue);
}

/* .sticky-banner .text-bloc .line {
	background: #9cadc8;
	width: 2px;
	height: 6.5rem;
	margin: 2rem 0 2rem 0.5rem;
} */

.sticky-banner .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.left-bloc-sticky {
	background: var(--white);
	border-radius: 0.4rem;
	overflow: hidden;
	border-bottom: 1px solid #c4d6e5;
	transition: all 0.5s ease-in-out;
}

.left-bloc-sticky.fade {
	opacity: 0;
}

.left-bloc-sticky .sticky-menu {
	padding: 2rem 4rem;
}

.left-bloc-sticky .sticky-menu li {
}

.left-bloc-sticky .sticky-menu li:not(:last-child) {
	border-bottom: 1px solid #9cadc8;
}

.left-bloc-sticky .sticky-menu li a {
	color: #9cadc8;
	position: relative;
	font-size: var(--size_1_5);
	padding: 1.5rem 0;
	height: 100%;
	width: 100%;
	display: block;
	z-index: 1;
}

.left-bloc-sticky .sticky-menu li a.active {
	color: var(--white);
}

.left-bloc-sticky .sticky-menu li a.active:after {
	content: "";
	background: var(--blue);
	width: 100%;
	height: 75%;
	position: absolute;
	top: 50%;
	left: 0;
	border-radius: 0.4rem;
	transform: translate(0, -50%);
	z-index: -1;
}

.left-bloc-sticky .sticky-menu li a .icn {
	margin-left: 2rem;
	margin-right: 1rem;
	display: none;
}

.left-bloc-sticky .sticky-menu li a.active .icn {
	display: block;
}

.sticky-focusAreas-repeat {
	width: 13%;
	position: relative;
}

.sticky-focusAreas-repeat:not(:last-child) {
	margin-right: 4%;
}

/* .sticky-focusAreas-repeat:nth-child(5n) {
	margin-right: 0;
} */

.sticky-focusAreas-repeat .text {
	color: var(--black);
	padding-top: 2rem;
}

.sticky-title {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.313rem;
	color: var(--blue);
}

.left-sticky-latestNews .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.right-sticky-latestNews .subtitle {
	font-size: var(--size_2_4);
	line-height: 130%;
	letter-spacing: -0.14rem;
	color: var(--dark_blue);
	padding-bottom: 1.5rem;
}

.right-sticky-latestNews .desc {
	color: var(--black);
}

.sticky-team-repeat {
	margin-right: 5%;
}

.sticky-team-repeat:nth-child(3n) {
	margin-right: 0;
}

.sticky-team-repeat .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.sticky-team-repeat .content {
	padding-top: 2rem;
}

.sticky-team-name {
	/* font-family: var(--font_medium);  */
	font-size: var(--size_2_4);
	line-height: 130%;
	color: var(--blue);
	padding-bottom: 1rem;
}

.pastEvents-photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.pastEvents-content .tit {
	color: var(--dark_blue);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.14rem;
	/*font-family: var(--kaisei);*/
	padding-bottom: 1rem;
}

.pastEvents-content .desc {
	color: var(--black);
	font-size: var(--size_1_6);
	line-height: 130%;
}

.pastEvents-bloc:not(:last-child) {
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #c4d6e5;
}

.sticky-pe-arrows {
	margin-left: 5rem;
}

.sticky-pe-arrows .swiper-button-prev {
	left: auto;
	top: auto;
	position: relative;
	margin: 0 3rem 0 0;
	border: 1px solid #c4d6e5;
	border-radius: 1rem;
	padding: 1rem 1.2rem;
	width: auto;
	height: auto;
}

.sticky-pe-arrows .swiper-button-next {
	left: auto;
	top: auto;
	position: relative;
	margin: 0;
	border: 1px solid #c4d6e5;
	border-radius: 1rem;
	padding: 1rem 1.2rem;
	width: auto;
	height: auto;
}

.sticky-pe-arrows .swiper-button-prev:after,
.sticky-pe-arrows .swiper-button-next:after {
	color: var(--blue);
	font-size: var(--size_1_5);
}

.inner-sticky-vision {
	color: var(--white);
}

.inner-sticky-vision .sticky-title {
	color: var(--white);
}

.sticky-vision-left .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.sticky-vision-left .photo:not(:last-child) {
	margin-bottom: 2rem;
}

.sticky-vision {
	background: linear-gradient(
		238deg,
		var(--blue) 17.59%,
		var(--light_blue) 89.92%
	);
	border-radius: 0.4rem;
	margin-bottom: 12.5rem;
}

.sticky-vision-titleBloc .line {
	width: 10rem;
	height: 1px;
	background: var(--white);
	margin: 0 3rem 1.5rem;
}

.sticky-vision-titleBloc .sticky-desc {
	margin-bottom: 0.5rem;
}

.sticky-vision-right .sticky-desc li {
	position: relative;
	padding-left: 3rem;
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.sticky-vision-right .sticky-desc li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.sticky-vision-right .sticky-desc li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.sticky-upcoming {
	background: var(--white);
	margin-bottom: 12.5rem;
	border-radius: 0.4rem;
}

.upcoming-info-text {
	font-size: var(--size_1_5);
}

.upcoming-info-text span.upcomingInfo-tit {
	color: var(--black);
}

.upcoming-info-text span.upcomingInfo-desc {
	color: var(--lighter_blue);
	/* font-family: var(--font_medium);  */
}

.upcomingInfo-dot {
	width: 0.5rem;
	height: 0.5rem;
	background: var(--black);
	border-radius: 50%;
	margin: 0 1rem;
}

.left-sticky-upcoming .upcoming-title {
	padding-top: 1rem;
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.02rem;
	/*font-family: var(--kaisei);*/
	color: var(--dark_blue);
}

.sticky-upcoming-repeat {
	cursor: pointer;
	padding: 2.5rem 0;
	z-index: 1;
}

.sticky-upcoming-repeat:not(:last-child) {
	margin-bottom: 2rem;
}

.sticky-upcoming-repeat:after {
	content: "";
	width: calc(100% + 8%);
	height: 100%;
	background: rgba(10, 53, 92, 0.03);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	border-radius: 0.4rem;
	transition: all 0.5s ease-in-out;
	z-index: -1;
}

.right-sticky-upcoming .icn {
	transition: all 0.5s ease-in-out;
}

.sticky-upcoming-show.active .right-sticky-upcoming .icn {
	transform: rotate(-180deg);
}

.sticky-upcoming-hidden {
	display: none;
}

.sticky-upcoming-hidden .desc-text-bloc h3 {
	font-size: var(--size_2_2);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 2rem;
}

.sticky-upcoming-hidden .desc-text-bloc p {
	font-size: var(--size_1_6);
	letter-spacing: -0.02rem;
}

.sticky-upcoming-hidden .desc-text-bloc ul {
	padding-top: 2rem;
}

.sticky-upcoming-hidden .desc-text-bloc li {
	position: relative;
	padding-left: 3rem;
	font-size: var(--size_1_6);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.sticky-upcoming-hidden .desc-text-bloc li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.sticky-upcoming-hidden .desc-text-bloc li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: -0.2rem;
	left: 0;
	background-size: cover;
}

.sticky-flag {
	margin-bottom: 12.5rem;
}

.sticky-flag > .photo {
	background: url("../images/bg-flag-map.svg") no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
}

.sticky-flag .flag-sec-title {
	font-size: var(--size_2);
	/*font-family: var(--kaisei);*/
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -0.135rem;
	color: var(--blue);
}

.sticky-flag .flag-bloc-section:first-child {
	padding-top: 10rem;
}

.sticky-flag .flag-bloc-section:last-child {
	padding-bottom: 10rem;
}

.sticky-flag .flag-bloc-section:not(:first-child) {
	padding-top: 5rem;
}

.sticky-flag .flag-bloc-repeat .flag-repeat:last-child {
	margin-right: 0;
}

.inner-bloc-sticky.added .left-bloc-sticky {
	position: fixed;
	top: 15rem;
}

.priority-areas-section.fixed .inner-priority-areas {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
}

.inner-priority-areas.fade {
	opacity: 0;
}

/* .inner-bloc-sticky.added .right-bloc-sticky {
	margin: 0 0 0 auto;
} */

/* form styling */

a#main-content {
	opacity: 0;
	visibility: hidden;
}

.right-newsletter .webform-submission-newsletter-form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.right-newsletter .webform-submission-newsletter-form .js-form-item label {
	display: none;
}

.right-newsletter .webform-submission-newsletter-form > div {
	width: 31%;
}

.right-newsletter .captcha {
	width: 100%;
	padding: 2rem 0;
}

.right-newsletter .captcha legend {
	display: none;
}

.right-newsletter .webform-submission-newsletter-form .js-form-item input,
.right-newsletter .webform-submission-newsletter-form .js-form-item select {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(10, 53, 92, 0.15);
	padding: 1rem 0 2rem;
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
	color: var(--blue);
}

.right-newsletter
	.webform-submission-newsletter-form
	.js-form-item
	select
	option:first-child {
	color: rgba(10, 53, 92, 0.4);
}

.right-newsletter
	.webform-submission-newsletter-form
	.js-form-item
	input::placeholder,
.right-newsletter
	.webform-submission-newsletter-form
	.js-form-item
	select::placeholder {
	color: rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
}

.right-newsletter .webform-submission-newsletter-form .form-actions input {
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_5);
	line-height: 130%;
	padding: 1.6rem 3.2rem;
	background: var(--lighter_blue);
	border: 0;
	border-radius: 0.4rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.right-newsletter
	.webform-submission-newsletter-form
	.form-actions
	input:hover {
	background: var(--blue);
}

.op-job-bloc .views-row {
	width: 30%;
	position: relative;
	margin-right: 5%;
	margin-bottom: 5%;
	background: url("../images/bg-op.png") no-repeat;
	height: 100%;
	background-size: cover;
	border: 1.378px solid rgba(152, 169, 195, 0.2);
	transition: all 0.5s ease-in-out;
}

.op-job-bloc .views-row:nth-child(3n) {
	margin-right: 0;
}

.op-job-bloc .views-row .op-job-repeat {
	background: transparent;
	margin: 0;
	border: 0;
	width: 100%;
	position: relative;
}

.op-job-bloc .views-row:hover {
	background: #194c7a;
}

.op-job-bloc .views-row:hover .title {
	color: var(--white);
}

.op-job-bloc .views-row:hover .title:before {
	background: var(--white);
}

.op-job-bloc .views-row:hover .desc {
	color: var(--white);
}

.op-job-bloc .views-row:hover .desc li:not(:last-child):after {
	background: var(--white);
}

.op-job-bloc .views-row:hover .iora-cta {
	background: var(--white);
	color: var(--blue);
}

fieldset {
	border: 0;
}

.captcha__description.description {
	display: none;
}

.spontaneous-form form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.spontaneous-form .js-form-item {
	width: 47.5%;
	position: relative;
	margin-bottom: 4rem;
}

.spontaneous-form .js-form-item.form-item-position-i-want-to-apply-for {
	width: 100%;
}

.spontaneous-form .js-form-item.form-item-message {
	width: 100%;
}

.spontaneous-form fieldset.js-form-item {
	width: 100%;
	border: 0;
}

.spontaneous-form fieldset legend {
	display: none;
}

.spontaneous-form fieldset .fieldset-wrapper > div {
	width: 100%;
	position: relative;
}

.spontaneous-form fieldset .fieldset-wrapper > div .js-form-item {
	width: 100%;
}

.spontaneous-form .js-form-item label {
	display: none;
}

.spontaneous-form .js-form-item input,
.spontaneous-form .js-form-item select,
.spontaneous-form .js-form-item textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(10, 53, 92, 0.15);
	padding: 1rem 0 2rem;
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
	color: var(--blue);
	background: transparent;
	position: relative;
	top: auto;
}

.spontaneous-form .js-form-item select option:first-child {
	color: rgba(10, 53, 92, 0.4);
}

.spontaneous-form .js-form-item input::placeholder,
.spontaneous-form .js-form-item select::placeholder,
.spontaneous-form .js-form-item textarea::placeholder {
	color: rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
}

.spontaneous-form .form-actions input {
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_5);
	line-height: 130%;
	padding: 1.6rem 3.2rem;
	background: var(--lighter_blue);
	border: 0;
	border-radius: 0.4rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.spontaneous-form .form-actions input:hover {
	background: var(--blue);
}

.spontaneous-form #ajax-wrapper .js-form-item input {
	border-bottom: 0;
}

.documents-bloc .views-row {
	width: 100%;
	position: relative;
}

.documents-bloc .views-row:not(:last-child) {
	margin-bottom: 2rem;
}

.pressRelease-filters form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.pressRelease-filters .js-form-item {
	width: 15%;
	position: relative;
}

.pressRelease-filters .js-form-item:not(:last-child) {
	margin-right: 2rem;
}

.pressRelease-filters .js-form-item input,
.pressRelease-filters .js-form-item select,
.view-filters .js-form-item select {
	width: 100%;
	background: transparent;
	border-radius: 18.5rem;
	padding: 1rem 2rem;
	color: var(--blue);
	border: 1px solid rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_6);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
}

.view-filters form#views-exposed-form-news-page-1 {
    display: flex;
    align-items: center;
    margin-top: 6rem;
	gap: 2rem;
}

.view-filters form#views-exposed-form-news-page-1 .js-form-item {
    display: flex;
    align-items: center;
	gap: 2rem;
}

.pressRelease-filters .form-actions input:first-child,
.view-filters .form-actions input:first-child {
	color: var(--white);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_6);
	line-height: 130%;
	padding: 1rem 4rem;
	background: var(--light_blue);
	border: 0;
	border-radius: 18.5rem;
	margin-right: 2rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.pressRelease-filters .form-actions input:first-child:hover,
.view-filters .form-actions input:first-child:hover  {
	background: var(--dark_blue);
}

.pressRelease-filters .form-actions input:nth-child(2) {
	background: transparent;
	border: 0;
	color: #9cadc8;
	font-size: var(--size_1_6);
	line-height: 130%;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.pressRelease-filters .form-actions input:nth-child(2):hover {
	color: var(--blue);
}

.pressRelease-bloc .views-row {
	width: 100%;
	position: relative;
}

.pressRelease-bloc .views-row:not(:last-child) {
	margin-bottom: 2rem;
}

.documents-filter-bloc form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(10, 53, 92, 0.20);
}

.documents-filter-bloc .js-form-item {
	width: 15%;
	position: relative;
}

.documents-filter-bloc .js-form-item:not(:last-child) {
	margin-right: 2rem;
}

.documents-filter-bloc .js-form-item input,
.documents-filter-bloc .js-form-item select {
	width: 100%;
	background: transparent;
	border-radius: 18.5rem;
	padding: 1rem 2rem;
	color: var(--blue);
	border: 1px solid rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_6);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
}

.documents-filter-bloc .form-actions input:first-child {
	color: var(--white);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_6);
	line-height: 130%;
	padding: 1rem 4rem;
	background: var(--light_blue);
	border: 0;
	border-radius: 18.5rem;
	margin-right: 2rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.documents-filter-bloc .form-actions input:first-child:hover {
	background: var(--dark_blue);
}

.documents-filter-bloc .form-actions input:nth-child(2) {
	background: transparent;
	border: 0;
	color: #9cadc8;
	font-size: var(--size_1_6);
	line-height: 130%;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.documents-filter-bloc .form-actions input:nth-child(2):hover {
	color: var(--blue);
}

.left-landingEvents-filterBloc form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	display: none !important;
}

.left-landingEvents-filterBloc .js-form-item {
	width: 20%;
	position: relative;
}

.left-landingEvents-filterBloc .js-form-item:not(:last-child) {
	margin-right: 2rem;
}

.left-landingEvents-filterBloc .js-form-item input,
.left-landingEvents-filterBloc .js-form-item select {
	width: 100%;
	background: transparent;
	border-radius: 18.5rem;
	padding: 1rem 2rem;
	color: var(--blue);
	border: 1px solid rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_6);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
}

.left-landingEvents-filterBloc .form-actions input:first-child {
	color: var(--white);
	/* font-family: var(--font_regular); */
	font-size: var(--size_1_6);
	line-height: 130%;
	padding: 1rem 4rem;
	background: var(--light_blue);
	border: 0;
	border-radius: 18.5rem;
	margin-right: 2rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.left-landingEvents-filterBloc .form-actions input:first-child:hover {
	background: var(--dark_blue);
}

.left-landingEvents-filterBloc .form-actions input:nth-child(2) {
	background: transparent;
	border: 0;
	color: #9cadc8;
	font-size: var(--size_1_6);
	line-height: 130%;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.left-landingEvents-filterBloc .form-actions input:nth-child(2):hover {
	color: var(--blue);
}

select {
	cursor: pointer;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	color: rgba(10, 53, 92, 0.4);
}

.apply-form .webform-submission-job-application-form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.apply-form .js-form-item {
	width: 47.5%;
	position: relative;
	margin-bottom: 4rem;
}

.apply-form fieldset.js-form-item {
	width: 100%;
	position: relative;
	border: 0;
	padding: 0;
	margin: 0;
}

.apply-form fieldset legend {
	display: none;
}

.apply-form fieldset.js-form-item .fieldset-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.apply-form fieldset.js-form-item .fieldset-wrapper > div {
	width: 50%;
	position: relative;
}

.apply-form fieldset.js-form-item .fieldset-wrapper > div .js-form-item {
	width: 100%;
}

.apply-form .js-form-item.form-item-message {
	width: 100%;
}

.apply-form .js-form-item label {
	display: none;
}

.apply-form .js-form-item input,
.apply-form .js-form-item select,
.apply-form .js-form-item textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(10, 53, 92, 0.15);
	padding: 1rem 0 2rem;
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
	color: var(--blue);
	background: transparent;
	position: relative;
	top: auto;
}

.apply-form fieldset .js-form-item input,
.apply-form fieldset input {
	border-bottom: 0;
}

.apply-form .js-form-item select option:first-child {
	color: rgba(10, 53, 92, 0.4);
}

.apply-form .js-form-item input::placeholder,
.apply-form .js-form-item select::placeholder,
.apply-form .js-form-item textarea::placeholder {
	color: rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_8);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
}

.apply-form .form-actions input {
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_5);
	line-height: 130%;
	padding: 1.6rem 3.2rem;
	background: var(--lighter_blue);
	border: 0;
	border-radius: 0.4rem;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.apply-form .form-actions input:hover {
	background: var(--blue);
}

.calendar-events-cnt > div:nth-child(1) {
	width: 28%;
	position: relative;
}

.calendar-events-cnt > div:nth-child(2) {
	width: 68%;
	position: relative;
}

.calendar-events-cnt > div .right-calendar-events {
	width: 100%;
}

.pager {
	width: 100%;
	position: relative;
}

.pager__items {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 7.5rem;
}

.pager__items .pager__item a {
	color: var(--black);
	line-height: 130%;
	position: relative;
	z-index: 1;
}

.pager__items .pager__item a:after {
	content: "";
	width: 3rem;
	height: 3rem;
	background: var(--lighter_blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.pager__items .pager__item.is-active a {
	color: var(--white);
	/* font-family: var(--font_bold); */
}

.pager__items .pager__item.is-active a:after {
	opacity: 1;
}

.pager__items .pager__item:not(:last-child) {
	margin-right: 6rem;
}

.pager__items .pager__item.pager__item--first {
	display: none;
}

.pager__items .pager__item.pager__item--last {
	display: none;
}

.calendar-events-cnt .pickmeup .pmu-instance {
	width: 100%;
	height: auto;
	padding: 3rem;
}

.calendar-events-cnt .pickmeup {
	border: 1px solid rgba(166, 191, 212, 0.2);
}

.calendar-events-cnt .pickmeup .pmu-instance nav {
	justify-content: space-between;
	align-items: center;
}

.calendar-events-cnt .pickmeup .pmu-instance .pmu-button.pmu-month {
	font-size: 2rem;
	line-height: 130%;
	color: var(--blue) !important;
}

.calendar-events-cnt h2 {
	display: none;
}

.calendar-events-cnt .containerDate .pickmeup .pmu-instance .pmu-day-of-week * {
	width: 14%;
	padding: 1.2rem 0;
	position: relative;
	font-size: 1.6rem;
	color: rgba(10, 53, 92, 0.5) !important;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button {
	width: 14%;
	padding: 1.2rem 0;
	color: var(--blue) !important;
	position: relative;
	font-size: 1.6rem;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.pmu-not-in-month.event-active:before {
	display: none;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.event-active {
	background-color: transparent !important;
	border: 0;
	font-weight: 700;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.pmu-selected.event-active.pmu-not-in-month {
	color: rgba(10, 53, 92, 0.3) !important;
	font-weight: normal !important;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.event-active.pmu-selected:before {
	background: var(--blue);
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.event-active:before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	position: absolute;
	bottom: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: var(--lighter_blue);
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.pmu-not-in-month {
	color: rgba(10, 53, 92, 0.3) !important;
	font-weight: normal !important;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.pmu-selected {
	color: var(--white) !important;
	z-index: 1;
}

.calendar-events-cnt
	.containerDate
	.pickmeup
	.pmu-instance
	.pmu-days
	.pmu-button.pmu-selected:after {
	content: "";
	width: 3.6rem;
	height: 3.6rem;
	background: var(--lighter_blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
}

/* login */

.login-custom {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
}

.login-custom.open {
	opacity: 1;
	visibility: visible;
}

.login-custom > div:nth-child(1) {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	height: auto;
	z-index: 2;
}

.login-custom #block-iora-userlogin {
	width: 100%;
	position: relative;
	background: var(--white);
	padding: 5rem;
	text-align: center;
	border-radius: 0.4rem;
}

.login-custom-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 1;
}

.login-custom-close {
	position: absolute;
	top: 5%;
	right: 2%;
	padding: 0.5rem;
	cursor: pointer;
	z-index: 3;
}

.login-custom-close svg {
	fill: var(--white);
}

.login-custom h2 {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_4);
	line-height: 130%;
	color: var(--blue);
	font-weight: 600;
	letter-spacing: -0.14rem;
	margin-bottom: 1rem;
}

.login-custom .text {
	font-size: var(--size_1_8);
	line-height: 130%;
}

.login-custom .user-login-form {
	width: 100%;
	position: relative;
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.login-custom .user-login-form .js-form-item {
	width: 100%;
	position: relative;
	text-align: left;
	margin-bottom: 1rem;
}

.login-custom .user-login-form .js-form-item label {
	display: block;
	/* font-family: var(--font_medium);  */
	font-size: var(--size_1_6);
	line-height: 130%;
	color: var(--gray);
	padding: 0.5rem;
}

.login-custom .user-login-form .js-form-item label.error {
	font-size: var(--size_1_2);
	color: #ff0000;
	/* font-family: var(--font_regular); */
}

.login-custom .user-login-form .js-form-item input.form-text {
	width: 100%;
	background-color: #eef2f8 !important;
	padding: 1.2rem 2rem;
	border: 0;
	border-radius: 0.8rem;
	font-size: var(--size_1_6);
	line-height: 130%;
	color: var(--blue) !important;
	/* font-family: var(--font_regular); */
}

.login-custom .user-login-form .js-form-item input.form-text::placeholder {
	font-size: var(--size_1_6);
	line-height: 130%;
	/* font-family: var(--font_regular); */
}

.login-custom .user-login-form .js-form-item label.error {
	font-size: var(--size_1_2);
	color: #ff0000;
	/* font-family: var(--font_regular); */
}

.login-custom .user-login-form .js-form-item.form-item-persistent-login {
	display: flex;
	width: auto;
}

.login-custom
	.user-login-form
	.js-form-item.form-item-persistent-login
	label.option {
	font-size: var(--size_1_5);
	padding: 0;
	/* font-family: var(--font_regular); */
	margin-left: 1rem;
}

.login-custom .user-login-form .more-links {
	width: auto;
	margin-bottom: 1rem;
}

.login-custom .user-login-form .more-links a {
	font-size: var(--size_1_5);
	padding: 0;
	/* font-family: var(--font_regular); */
	transition: all 0.5s ease-in-out;
	line-height: 130%;
	color: var(--gray);
}

.login-custom .user-login-form .more-links a:hover {
	color: var(--lighter_blue);
}

.login-custom .user-login-form .form-actions {
	width: 100%;
	position: relative;
	margin-top: 2rem;
}

.login-custom .user-login-form .form-actions input {
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_8);
	line-height: 130%;
	padding: 1.6rem 3.2rem;
	border-radius: 0.8rem;
	width: 100%;
	border: 0;
	background: var(--blue);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

.login-custom .user-login-form .form-actions input:hover {
	background: var(--lighter_blue);
}

.login-custom #block-iora-userlogin > ul {
	display: none;
}

/* sitemap */

.sitemap {
	width: 100%;
	position: relative;
	max-width: 85%;
	margin: 0 auto 5%;
}

.sitemap .sitemap-item {
	width: 100%;
	position: relative;
	margin-bottom: 0;
}

.sitemap .sitemap-item:not(:last-child) {
	padding-bottom: 5rem;
}

.sitemap .sitemap-item h2 {
	/*font-family: var(--kaisei);*/
	color: var(--blue);
	font-weight: 600;
	font-size: var(--size_3);
	line-height: 130%;
	letter-spacing: -0.14rem;
	padding-bottom: 3rem;
}

.sitemap .sitemap-item li:not(:last-child) {
	margin-bottom: 0.8rem;
}

.sitemap .sitemap-item li a {
	color: var(--gray);
	line-height: 130%;
}

.sitemap .sitemap-item li ul {
	padding: 1.5rem 2rem;
}

.sitemap .sitemap-item li a:hover {
	color: var(--lighter_blue);
}

.op-filter-bloc .op-filter-bloc {
	padding: 0;
}

.op-filter-bloc .views-exposed-form {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.op-filter-bloc .js-form-item:not(:last-child) {
	margin-right: 2rem;
}

.op-filter-bloc .js-form-item input,
.op-filter-bloc .js-form-item select {
	width: 100%;
	background: transparent;
	border-radius: 18.5rem;
	padding: 1rem 2rem;
	color: var(--blue);
	border: 1px solid rgba(10, 53, 92, 0.4);
	font-size: var(--size_1_6);
	line-height: 130%;
	font-weight: 400;
	/* font-family: var(--font_regular); */
	font-style: normal;
}

/* secretarial staff */

.inner-team-section .title {
	color: var(--lighter_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.175rem;
}

.team-bloc-repeat:not(:last-child) {
	padding-bottom: 10rem;
}

.team-repeat {
	width: 23.5%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 2%;
	cursor: pointer;
}

.team-repeat:nth-child(4n) {
	margin-right: 0;
}

.team-repeat .photo {
	overflow: hidden;
	border-radius: 0.4rem;
}

.team-repeat .content {
	padding: 3rem 0 0;
}

.team-repeat .content .sticky-team-job {
	padding-bottom: 1rem;
}

.left-imageDesc .photo {
	overflow: hidden;
	border-radius: 0.4rem;
	position: sticky;
	top: 0;
}

.right-imageDesc .tit {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.right-imageDesc .desc li {
	position: relative;
	padding-left: 3rem;
	color: var(--black);
	font-size: var(--size_1_8);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.right-imageDesc .desc li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.right-imageDesc .desc li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.inner-sdp-events {
	background: var(--white);
	border-radius: 0.8rem;
}

.inner-sdp-events .title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.inner-sdp-events .sticky-upcoming-hidden .photo {
	margin-bottom: 3rem;
}

.inner-sdp-events .sticky-upcoming-hidden .photo img {
	border-radius: 0.4rem;
}

.inner-sdp-upcoming {
	background: var(--fade_blue);
	border-radius: 0.8rem;
}

.left-sdp-upcoming .photo {
	overflow: hidden;
	border-radius: 0.4rem;
}

.sdp-upcoming-titBloc .title {
	color: #9cadc8;
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.sdp-upcoming-titBloc .arrow-bloc .swiper-button-prev {
	right: auto;
	left: auto;
	width: auto;
	height: auto;
	display: table;
	top: auto;
	margin: 0;
	position: relative;
	margin-right: 2rem;
}

.sdp-upcoming-titBloc .arrow-bloc .swiper-button-next {
	right: auto;
	left: auto;
	width: auto;
	height: auto;
	display: table;
	top: auto;
	transform: rotate(180deg);
	margin: 0;
	position: relative;
}

.sdp-upcoming-titBloc .arrow-bloc .swiper-button-prev:after,
.sdp-upcoming-titBloc .arrow-bloc .swiper-button-next:after {
	display: none;
}

.sdp-upEvents-info {
	font-size: var(--size_1_4);
	line-height: 130%;
	letter-spacing: -0.02rem;
	color: var(--white);
	/* font-family: var(--font_medium);  */
	margin-bottom: 2rem;
}

.sdp-upEvents-info > div:not(:last-child) {
	margin-right: 3rem;
}

.sdp-upEvents-info .location .text {
	margin-left: 0.8rem;
}

.sdp-upEvents-title {
	color: var(--white);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2_4);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 2rem;
}

.sdp-upEvents-desc {
	color: var(--white);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.sdp-upEvents-bloc .iora-cta {
	padding-top: 3rem;
}

.sdp-upEvents-bloc .iora-cta a {
	background: #9cadc8;
}

.sdp-upEvents-bloc .iora-cta a:hover {
	background: var(--lighter_blue);
}

.bloc-com-history .title-bloc .desc {
	color: var(--white);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.inner-adminCso-section {
	background: var(--white);
	border-radius: 0.8rem;
}

.inner-adminCso-section .title {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.right-imageDesc .subtit {
	font-size: var(--size_2_4);
	line-height: 125%;
	letter-spacing: -0.02rem;
}

.left-chair-history .photo {
	overflow: hidden;
	border-radius: 0.4rem;
	display: none;
}

.left-chair-history .photo.active {
	display: block;
}

.chair-history-filter li {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.3);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
	transition: all 0.5s ease-in-out;
	padding: 0 2rem;
	position: relative;
}

.chair-history-filter li.active {
	color: rgba(255, 255, 255, 1);
}

.chair-history-filter li:not(:last-child):after {
	content: "";
	background: rgba(255, 255, 255, 0.3);
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.chair-history-filter li:first-child {
	padding-left: 0;
}

.chair-history-filter li:last-child {
	padding-right: 0;
}

.chair-history-filter li span {
	padding-bottom: 0.3rem;
}

.chair-history-filter li span:before {
	content: "";
	background: var(--white);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.chair-history-filter li.active span:before {
	opacity: 1;
	width: 100%;
}

.chair-history-descRepeat {
	display: none;
}

.chair-history-descRepeat.active {
	display: block;
}

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

.chair-history-descRepeat .text a {
	/* font-family: var(--font_bold); */
	line-height: 130%;
	text-decoration: underline;
}

.chair-history-descRepeat .text a:hover {
	color: var(--lighter_blue);
}

.chair-table {
	color: var(--white);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.014rem;
}

.chair-table-repeat {
	padding: 2rem 0;
	border-radius: 0.4rem;
}

.chair-table-repeat:nth-child(odd) {
	background: #14416a;
}

.chair-table
	.views-infinite-scroll-content-wrapper
	.chair-table-repeat:first-child {
	background: #14416a;
}

.chair-table-repeat:first-child {
	background: var(--light_blue);
	/* font-family: var(--font_bold);  */
}

.left-chair-table {
	padding-left: 7.5rem;
}

.right-chair-table {
	padding-left: 3rem;
}

.chair-table .iora-cta a {
	font-size: var(--size_1_8);
	/* font-family: var(--font_bold);  */
	text-align: center;
}

.le-repeat .photo .iora-cta a {
	border-radius: 0;
}

/* news & updates */

.left-le-bloc.nau .le-repeat {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
}

.left-le-bloc.nau .le-repeat:nth-child(2n) {
	margin-right: 2%;
}

.left-le-bloc.nau .le-repeat:nth-child(3n) {
	margin-right: 0;
}

.featured-nau .inner {
	background: #f6f8fa;
	border-radius: 0.8rem;
	overflow: hidden;
}

.left-featured-nau .photo {
	overflow: hidden;
}

.right-featured-nau .bannerHp-date-cat {
	color: var(--blue);
}

.right-featured-nau .bannerHp-title {
	font-size: var(--size_2);
}

/* news & updates */

.inner-naud-banner {
	padding-bottom: 5rem;
}

.documents-section.naud .inner-documents-section {
	margin: 0 auto 5rem;
}

.inner-naud-banner .tit {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.documents-section.naud .tit {
	color: var(--blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.inner-naud-banner .photo {
	margin-top: 7.5rem;
}

.inner-naud-banner .photo .inner {
	border-radius: 0.4rem;
	overflow: hidden;
}

/* .inner-naud-banner .photo:before {
	content: "";
	width: 2px;
	height: 5rem;
	background: var(--lighter_blue);
	position: absolute;
	top: -3.5rem;
	left: 50%;
	transform: translate(-50%, 0);
	transition: all 0.5s ease-in-out;
	z-index: 1;
} */

.inner-naud-banner .photo .inner:after {
	content: "";
	width: 100%;
	height: 5px;
	background: var(--lighter_blue);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.naud-text-bloc .bannerHp-date-cat {
	color: var(--blue);
	font-size: var(--size_1_6);
	padding: 0 5rem 3rem;
}

.naud-text-descBloc {
	padding: 0 5rem;
}

.naud-text-descBloc a {
	text-decoration: underline;
	text-underline-position: auto;

	color: var(--lighter_blue);
}

.naud-text-descBloc a:hover {
	color: var(--blue);
}

.naud-text-descBloc .tit {
	margin-bottom: 3rem;
}

.naud-text-descBloc .line {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--lighter_blue);
	width: 1px;
	height: 100%;
	display:none;
}

.naud-text-descBloc .line:before {
	content: "";
	width: 0.9rem;
	height: 0.9rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: var(--lighter_blue);
	border-radius: 50%;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.naud-text-descBloc .line:after {
	content: "";
	width: 0.9rem;
	height: 0.9rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: var(--lighter_blue);
	border-radius: 50%;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.naud-text-descBloc .desc ul {
	padding: 2rem 0;
}

.naud-text-descBloc .desc li {
	position: relative;
	padding-left: 3rem;
}

.naud-text-descBloc .desc li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.naud-text-descBloc .desc li:before {
	content: "";
	background: url("../images/icn-iora.svg") no-repeat;
	width: 1.5rem;
	height: 2.1rem;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}

.naud-text-descBloc .documents {
	margin-top: 2rem;
}

/* events page */

.eventsPage-repeat:not(:last-child) {
	margin-bottom: 6rem;
	padding-bottom: 6rem;
}

.eventsPage-repeat:not(:last-child):after {
	content: "";
	background: rgba(10, 53, 92, 0.1);
	width: calc(100% + 10%);
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.eventsPage-photo .photo {
	border-radius: 0.4rem;
	overflow: hidden;
}

.eventsPage-info-bloc {
	line-height: 130%;
	letter-spacing: -0.02rem;
	color: var(--blue);
	/* font-family: var(--font_medium);  */
	margin-bottom: 2rem;
}

.eventsPage-info-bloc > div:not(:last-child) {
	margin-right: 3rem;
}

.eventsPage-cat {
	color: var(--lighter_blue);
}

.eventsPage-location .text {
	margin-left: 0.8rem;
	line-height: normal;
}

.eventsPage-content .tit {
	color: var(--dark_blue);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.02rem;
	padding-bottom: 2rem;
}

.eventsPage-content .iora-cta-arrow {
	color: var(--blue);
	/* font-family: var(--font_medium); */
	margin-top: 3rem;
}

.eventsPage-content .iora-cta-arrow .text {
	margin-right: 0.7rem;
	transition: all 0.5s ease-in-out;
}

.eventsPage-content .iora-cta-arrow a:hover .text {
	margin-right: 1.2rem;
}

/* landing page */

.landing-events {
	background: url("../images/bg-landing-events.jpg") no-repeat;
	background-size: cover;
	height: 100%;
	border-radius: 0.8rem;
}

.inner-landing-events .title {
	color: var(--white);
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
}

.landing-events-repeat {
	width: 31%;
	position: relative;
	background: var(--white);
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	border-radius: 0.8rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

.landing-events-repeat a {
	display: table;
	width: 100%;
	padding: 3rem;
}

.landing-events-repeat:last-child {
	margin-right: 0;
}

.landing-events-repeat:nth-child(3n) {
	margin-right: 0;
}

.landing-events-repeat .icn-events-title {
	color: var(--white);
	/* font-family: var(--font_bold); */
	font-size: var(--size_1_2);
	line-height: 130%;
	letter-spacing: -0.06rem;
	position: absolute;
	bottom: 10%;
	right: 10%;
}

.landing-events-repeat .text {
	color: var(--blue);
	/* font-family: var(--font_medium); */
	padding-top: 2rem;
	letter-spacing: -0.06rem;
	font-size: var(--size_1_6);
	transition: all 0.5s ease-in-out;
}

.landing-events-repeat:hover {
	background: var(--light_blue);
}

.landing-events-repeat:hover .text {
	color: var(--white);
}

.landing-documents .inner-landing-events .title {
	font-family: "Segoe UI";
	color: var(--blue);
	margin-top: 4rem;
	font-size: var(--size_4);
	letter-spacing: -1.6px !important;
}

.staff-popup {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 999;
}

.staff-popup.open {
	opacity: 1;
	visibility: visible;
}

.staff-popup-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: all 0.75s ease-in-out;
	z-index: 1;
}

.staff-popup-bg.open {
	opacity: 1;
	visibility: visible;
}

.staff-popup-content {
	width: 45%;
	height: 100%;
	position: absolute;
	top: 0;
	right: -100%;
	opacity: 0;
	visibility: hidden;
	background: var(--blue);
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.staff-popup-content.open {
	right: 0;
	opacity: 1;
	visibility: visible;
}

.staff-popup-repeat {
	color: var(--white);
	display: none;
}

.staff-popup-repeat .staff-name {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
	padding-bottom: 0.8rem;
}

.staff-popup-repeat .staff-jt {
	/* font-family: var(--font_medium); */
	padding-bottom: 3rem;
}

.staff-popup-close {
	position: absolute;
	top: 3%;
	right: 3%;
	z-index: 2;
	cursor: pointer;
}

/* landing events */

.sticky-landingEvents-titleBloc .tit {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_5_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
	color: var(--blue);
}

.left-landing-events {
	background: var(--white);
	border-radius: 0.8rem;
}

.inner-left-landingEvents {
	max-width: 87%;
	margin: 0 auto;
}

.inner-left-landingEvents .eventsPage-info-bloc {
	font-size: var(--size_1_4);
}

.inner-left-landingEvents .eventsPage-content .iora-cta-arrow {
	font-size: var(--size_1_5);
}

.inner-left-landingEvents .eventsPage-repeat:not(:last-child):after {
	width: calc(100% + 2%);
}

.pressRelease-bloc.lid .documents-repeat {
	background: #f8f9fa;
}

.pressRelease-bloc.lid .documents-repeat:hover {
	background: var(--blue);
}

/* indian ocean dialogue */

.com-meetings-section.iod {
	margin: 5rem 0;
}

.com-meetings-section.iod .inner-com-meetings {
	background: var(--white);
}

.com-meetings-section.iod .com-meetings-cnt {
	padding: 5rem 0;
}

.iod .comMeet-title-bloc {
	color: var(--dark_blue);
}

.iod .com-meetings-repeat:nth-child(odd) {
	background: rgba(102, 158, 207, 0.15);
}

.iod .com-meetings-repeat:first-child {
	background: var(--light_blue);
}

.iod .com-meetings-repeat:first-child .col {
	color: var(--white);
}

.iod .com-meetings-repeat .col {
	color: var(--dark_blue);
}

/* dialogue partners */

.dialogue-partners-repeat {
	padding: 2rem;
	border-radius: 0.4rem;
	color: var(--dark_blue);
}

.dialogue-partners-repeat:nth-child(odd) {
	background: rgba(102, 158, 207, 0.15);
}

.dialogue-partners-repeat:first-child {
	background: var(--light_blue);
	color: var(--white);
}

.dialogue-partners-repeat .col-right {
	text-align: center;
}

/* iabe */

.right-imageDesc .com-duties-repeat .com-duties-num {
	font-size: var(--size_2_4);
}

.right-imageDesc .com-duties-repeat .com-duties-text {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
	color: var(--blue);
}

.right-imageDesc .subtit-iabe {
	color: var(--light_blue);
	font-size: var(--size_2);
	line-height: 130%;
	letter-spacing: -0.028rem;
	padding-bottom: 1rem;
}

/* observer organisation */

.imageDesc-section .inner-bg {
	background: var(--white);
	border-radius: 0.8rem;
}

/* specialised agencies */

.sdp-events-section.sa .left-sticky-upcoming .upcoming-title {
	padding-top: 0;
}

.sdp-events-section.sa .sticky-upcoming-hidden .desc-text-bloc p {
	color: var(--dark_blue);
}

.sdp-events-section.sa .sa .core-values-repeated {
	width: 30%;
	margin-right: 5%;
}

.sdp-events-section.sa .sa .core-values-repeated:nth-child(3n) {
	margin-right: 0;
}

.sdp-events-section.sa .sa .core-values-repeated:nth-child(4n) {
	margin-right: 5%;
}

.sdp-events-section.sa .core-values-repeated .tit sup {
	color: var(--lighter_blue);
	font-size: var(--size_2_4);
	line-height: 130%;
	/*font-family: var(--kaisei);*/
	vertical-align: bottom;
}

.sdp-events-section.sa .core-values-repeated .tit {
	color: var(--light_blue);
	font-size: var(--size_1_8);
	line-height: 130%;
	/* font-family: var(--font_medium); */
}

.sa-contact-person:before {
	content: "";
	width: calc(100% + 5%);
	height: 1px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	background: rgba(10, 53, 92, 0.2);
}

.right-sa-contact .tit {
	/*font-family: var(--kaisei);*/
	font-size: var(--size_3_5);
	line-height: 130%;
	letter-spacing: -0.175rem;
	color: var(--blue);
}

.sa-contact-info .sa-name {
	/* font-family: var(--font_medium); */
	color: var(--blue);
	font-size: var(--size_2_4);
	line-height: 130%;
	letter-spacing: -0.02rem;
}

.sticky-upcoming-hidden .desc-text-bloc .right-sa-contact ul {
	padding-top: 0;
}

.sticky-upcoming-hidden .desc-text-bloc .right-sa-contact li {
	padding-left: 0;
	font-size: var(--size_1_8);
	color: var(--dark_blue);
}

.sticky-upcoming-hidden .desc-text-bloc .right-sa-contact li:before {
	display: none;
}

/* .sticky-upcoming-hidden .desc-text-bloc .right-sa-contact li .right a {
	font-family: var(--font_medium);
} */

/* documents */

.documents li {
	position: relative;
}

.documents li:not(:last-child) {
	margin-bottom: 1.2rem;
}

.documents li a {
	position: relative;
	padding-left: 2rem;
	color: var(--gray);
	display: table;
}

.documents li a:hover {
	color: var(--light_blue);
}

.documents li a:before {
	content: "";
	background: var(--lighter_blue);
	width: 0.8rem;
	height: 0.8rem;
	position: absolute;
	top: 0.5rem;
	left: 0;
	border-radius: 50%;
}

/* gallery */

.gallery .le-repeat .content {
	position: relative;
	/* bottom: 0;
	left: 0; */
	margin: 0 auto;
	text-align: center;
	padding: 2rem 4rem;
	z-index: 2;
}

.gallery .le-repeat .content .iora-cta a {
	border: 1px solid var(--lighter_blue);
}

/*.gallery .le-repeat .photo:after {*/
/*	content: "";*/
/*	background: transparent linear-gradient(180deg, transparent 0, #000 100%) 0%*/
/*		0% no-repeat padding-box;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	left: 0;*/
/*	transition: all 0.7s ease-in-out 0.2s;*/
/*	z-index: 1;*/
/*}*/

.gallery .le-repeat .title {
	/* color: var(--white); */
	padding-top: 3rem;
}

.le-repeat .gallery {
	display: none;
}

.naud-gallery .gallery {
	display: none;
}

.gallery .left-le-bloc > div {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.gallery .left-le-bloc.nau {
	padding-top: 7.5rem;
}

.gallery .left-le-bloc.nau .views-row {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
}

.gallery .left-le-bloc.nau .views-row:nth-child(3n) {
	margin-right: 0;
}

.gallery .left-le-bloc.nau .views-row .le-repeat {
	width: 100%;
	margin: 0 !important;
}

/* footer */

footer {
	background: var(--dark_blue);
	border-radius: 1.6rem 1.6rem 0 0;
	overflow: hidden;
	z-index: 1;
}

footer:after {
	content: "";
	width: 100%;
	height: 4px;
	background: var(--lighter_blue);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

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

.footer-bg img,
.footer-logo {
    display: none;
}

#hompageOnly .inner-footer {
   /* padding: 15rem 0 3rem; */
   padding: 3.8rem 0 2.4rem;
}

.inner-footer {
	padding: 3rem 0 3rem;
}

.left-top-footer li a {
	color: #e2eaf0;
	/*font-family: var(--kaisei);*/
	font-size: var(--size_1_6);
	line-height: 130%;
	font-weight: 400;
	margin-bottom: 2rem;
	letter-spacing: -0.06rem;
	display: table;
}

.left-top-footer li a:hover {
	color: var(--lighter_blue);
}

.right-top-rep:not(:last-child) {
	margin-bottom: 3rem;
}

.right-top-rep .tit {
	color: #6493be;
	/*font-family: var(--kaisei);*/
	font-size: var(--size_1_6);
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.054rem;
	padding-bottom: 2rem;
}

/* .right-top-rep .desc:not(:last-child) {
	margin-bottom: 1.5rem;
} */

.right-top-rep .desc a {
	color: #e2eaf0;
	font-size: var(--size_1_6);
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.018rem;
}

.right-top-rep .desc a:hover {
	color: var(--lighter_blue);
}

.social li:not(:last-child) {
	margin-right: 3.5rem;
}

.social li a:hover path {
	fill: var(--lighter_blue);
}

.bottom-footer {
	color: #e2eaf0;
	font-size: var(--size_1_5);
	letter-spacing: -0.014rem;
	/* font-family: var(--font_bold); */
}

.bottom-footer li:not(:last-child) {
	margin-right: 3rem;
}

.bottom-footer a:hover {
	color: var(--lighter_blue);
}

/* ! search */
.cnt {
	width: 100%;
	margin: 0 auto;
}

.cnt__1705 {
	max-width: 170.5rem;
}

.cnt__1630 {
	max-width: 163rem;
}

.cnt__1480 {
	max-width: 148rem;
	padding: 0;
}

.cnt__1155 {
	max-width: 115.5rem;
	padding: 0;
}

.cnt__wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.search_icon {
	width: 30px;
	height: 30px;
}

.search-trigger {
	display: flex;
	width: 100%;
	height: 100%;
}

.search-trigger svg {
	display: block;
	width: 100%;
	height: 100%;
}

.search-popup {
	position: fixed;
	background: var(--blue);
	width: 100%;
	height: 100vh;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transition: var(--g-transition);
	display: flex;
	top: 0;
	left: 0;
}

.search-popup .cnt__wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-popup.active {
	opacity: 1;
	pointer-events: auto;
}

.search-popup-content {
	max-width: 50rem;
	width: 90%;
	position: relative;
	text-align: center;
}

.search-popup-title {
	font-weight: 300;
	font-size: 8rem;
	line-height: 10rem;
	color: #ffff;
}

.search-popup-content form {
	display: flex;
	justify-content: space-between;
}

.search-popup-content form .form-type-search {
	width: 65%;
}

.search-popup-content form .form-type-search input {
	width: 100%;
	height: 4rem;
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	font-size: 1.8rem;
	color: #fff;
	/* font-family: var(--font_light); */
}

.search-popup-content form .form-actions {
	width: 120px;
}

.search-popup-content form .form-actions input {
	width: 100%;
	border: 1px solid #fff;
	height: 4rem;
	background: #fff;
	color: var(--career_blue);
	font-size: 1.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.search-popup-content form .form-actions input:hover {
	background: var(--lighter_blue);
	border: 1px solid var(--lighter_blue);
	color: #fff;
}

.search-popup-form {
	width: 100%;
	display: flex;
	margin-top: 8rem;
	flex-direction: column;
}

.search-close {
	position: fixed;
	top: 20%;
	right: 20%;
	width: 40px;
	height: 40px;
}

.search-close a {
	display: block;
	width: 100%;
	height: 100%;
}

.search-close a svg {
	display: block;
	width: 100%;
	height: 100%;
}

.search_banner {
	height: 30rem;
	background: var(--blue);
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 7rem;
	width: 100%;
	display: flex;
}

.search_banner h1 {
	font-size: 4rem;
	line-height: 4rem;
	color: #fff;
	/* font-family: var(--font_medium); */
}

.searchSection {
	display: flex;
	flex-direction: column;
	margin-top: 6rem;
}

.searchSection #block-iora-content {
	display: flex;
	flex-direction: column;
}

.searchSection #block-iora-content form {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 5rem;
}

.searchSection #block-iora-content form .form-type-search {
	display: flex;
}

.searchSection #block-iora-content form .js-form-wrapper {
	display: flex;
}
.searchSection #block-iora-content form .form-type-search label {
	font-size: 1.8rem;
	line-height: 2.4rem;
	/* font-family: var(--font_bold); */
	color: var(--blue);
	margin-right: 10px;
}
.searchSection #block-iora-content form .form-type-search input {
	width: 200px;
	height: 3rem;
	border: 1px solid var(--blue);
	padding: 1rem;
	font-size: 1.6rem;
	/* font-family: var(--font_medium); */
}
.searchSection #block-iora-content form #edit-submit {
	height: 3rem;
	background: var(--blue);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	border: none;
	font-size: 1.6rem;
	color: #fff;
	/* font-family: var(--font_medium); */
	padding: 0 15px;
	width: 100px;
}

.searchSection #block-iora-content form #edit-submit:hover {
	background: var(--cl-lb);
}

.searchSection #block-iora-content .search-help-link {
	display: none;
}

.searchSection #block-iora-content .search-advanced {
	display: none !important;
}

.searchSection #block-iora-content h2 {
	display: none;
}

.searchSection #block-iora-content ol {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.searchSection #block-iora-content ol li {
	border-bottom: 1px solid var(--blue);
	padding: 0 0 2rem 0;
}

.searchSection #block-iora-content ol li:last-child {
	border: none;
}

.custom-search-result {
	display: flex;
	flex-direction: column;
}

.custom-search-result h3 {
	font-size: 2.8rem;
	line-height: 3.6rem;
	/* font-family: var(--font_medium); */
	color: var(--career_blue);
	margin-bottom: 1rem;
}

.custom-search-result p {
	font-size: 1.8rem;
	line-height: 2.4rem;
	/* font-family: var(--font_regular); */
	color: var(--dark_blue);
}

.searchSection #block-iora-content .pager__items {
	display: flex;
	gap: 1rem;
	font-size: 1.4rem;
	color: var(--blue);
	margin-top: 5rem;
	margin-bottom: 5rem;
}

/* .searchSection #block-iora-content .pager__item.is-active {
	font-family: var(--font_bold); 
} */

.searchSection #block-iora-content .pager__item {
	/* font-family: var(--font_medium); */
	opacity: 0.8;
}

input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.banner-inner-section .pdt-100 {
	padding-top: 3rem;
}

.banner-inner-section .cnt-50 {
	max-width: 100%;
	margin: 0 auto 5rem;
}

.banner-inner-section .tal-center {
	text-align: left;
	margin-bottom: 3rem;
}

.banner-inner-section .inner-firstTitle-bloc .text h1 {
	text-align: left;
}

.banner-inner-section .inner-firstTitle-bloc.w100 {
	max-width: 100% !important;
}

/* Make the CTA look hidden and unclickable if .text is empty */
.iora-cta .text:empty {
  display: none;
}

.iora-cta .text:empty + .icn {
  display: none;
}

.iora-cta .text:empty ~ .icn,
.iora-cta .text:empty ~ * {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.children-documents .landing-events-repeat {
    width: 100% !important;
}

/* ! homepage v2 */
.cnt_1600 {
	max-width: 160rem;
}
.main.home {
   background: var(--white);
}

.cnt_wp {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.banner_home {
	background: #F5F7FA;
	margin-top: 20rem;
	margin-bottom: 7rem;
}

.banner_home-left {
	width: 75%;
}

.flag_banner_txt_wp {
	padding: 6rem 4rem 7rem;
	color: #0A355C;
	font-family: "Segoe UI";
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 4rem;
	letter-spacing: -0.84px;
}

.flag_banner_txt_wp p {
    letter-spacing: -0.84px;
}

.flag_banner_txt_wp a {
	color: #186AB1;
	/* text-decoration: underline; */
	transition: all 0.3s ease-in;
}

.flag_banner_txt_wp a:hover {
	color: #051A2D;
}

.banner_home-right {
	width: 25%;
	margin-left: auto;
	font-family: "Segoe UI";
}

.news_swiper_wp {
	padding: 6rem 4rem 5rem;
	position: relative;
}

.top_title_swiper {
	display: flex;
	justify-content: space-between;
}

.swiper_title {
	color: #0A355C;
	font-size: 4rem;
	font-weight: 600;
	line-height: 3rem; 
	letter-spacing: -0.4px;
	margin-bottom: 4rem;
}

.latest_news_repeat {
	display: flex;
	justify-content: flex-start;
	gap: 3rem;
}

.lastest_box-left {
	width: 30%;
}

.lastest_box-right {
	width: 45%;
	flex-grow: 1;
}

.lastest_news_nav .swiper-button-next,
.lastest_news_nav .swiper-button-prev {
	color: transparent;
	width: 5.5rem;
	height: 3.5rem;
	z-index: 1;
	left: initial;
	margin-top: initial;
    top: inherit;
}

.lastest_news_nav .swiper-button-next {
	right: 4rem;
}

.lastest_news_nav .swiper-button-prev {
	right: 9rem;
}

.latest_news_repeat:not(:last-child) {
	padding-bottom: 2.4rem;
	margin-bottom: 2.4rem;
	border-bottom: 1px solid rgba(1, 40, 63, 0.20);
}

.latest_news_repeat:last-child {
	margin-bottom: 4rem;
}

.top_txt {
	display: flex;
	justify-content: flex-start;
	gap: 1.6rem;
	margin-bottom: 1.6rem;
}

.iora_news {
	color: #186AB1;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.16px;
}

.news_date {
	color: rgba(1, 40, 63, 0.30);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.16px;
	text-transform: uppercase;
}

.news_title {
	color: #051A2D;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2rem;
	letter-spacing: -0.16px;
	margin-bottom: 0.8rem;
}

.cta_btn {
    color: #186AB1;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.8rem;
	letter-spacing: -0.16px;
	text-decoration: underline;
	transition: all 0.3s ease-in;
	font-family: 'Segoe UI';
}

.cta_btn:hover {
	color: #051A2D;
}

.cta_btn-view-all {
	display: inline-flex;
	border-radius: 4px;
	background: #0A355C;
	color: var(--white);
	text-decoration: none;
	line-height: initial;
	padding: 1.4rem 3rem;
	font-weight: 400;
}

.cta_btn-view-all:hover {
    background: var(--lighter_blue);
	color: var(--white);
}

.priority_area {
	padding-bottom: 16.5rem;
}

.priority_txt_wp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
}

.priority_txt {
	color: #0A355C;
	font-family: "Segoe UI";
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.2rem;
	letter-spacing: -0.4px;
}

.priority_box_wp {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
}

.proprity_box_repeat {
	text-align: center;
	width: 23.8%;
	min-height: 21rem;
	border-radius: 8px;
	border: 1px solid rgba(10, 53, 92, 0.50);
	transition: all 0.3s ease-in;
}

.proprity_box_repeat a {
	display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.proprity_box_repeat:hover {
	transform: translate(10px, -10px);
	box-shadow: -17px 17px 15px -17px rgba(89,85,85,0.75);
}

.priority_box-svg {
	mix-blend-mode: multiply;
}

.proprity_box_repeat:hover .priority_box-svg {
	mix-blend-mode: multiply;
}

.priority_box-txt {
	color: #0A355C;
	font-family: "Segoe UI";
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2.4rem;
	letter-spacing: -0.4px;
	padding: 2rem;
	letter-spacing: -0.4px;
}

/* footer v2 */

.block-iora-footerlargeblock .cnt_wp {
    display: unset !important;
}

.homepage .home_footer {
	display: block;
}

.homepage .innerpage_footer {
    display: none;
}

.innerpage .home_footer {
	display: none;
}

.innerpage .innerpage_footer {
    display: block;
}

.top-footer,
.bottom-footer {
	display: flex;
	justify-content: space-between;
}

.top-footer {
	padding-right: 8rem;
}

.left-bottom-footer a,
.right-bottom-footer ul li a {
	color: var(--white);
}

.right-bottom-footer ul li a {
	font-size: 1.5rem;
}

form.webform-submission-newsletter-v2-form {
	display: flex;
}

form.webform-submission-newsletter-v2-form input.js-form-submit.form-submit {
	position: relative;
}

/* form.webform-submission-newsletter-v2-form input.js-form-submit.form-submit::after {
	content: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5C0.723858 3.5 0.5 3.72386 0.5 4C0.5 4.27614 0.723858 4.5 1 4.5V4V3.5ZM12.3536 4.35355C12.5488 4.15829 12.5488 3.84171 12.3536 3.64645L9.17157 0.464466C8.97631 0.269204 8.65973 0.269204 8.46447 0.464466C8.2692 0.659728 8.2692 0.976311 8.46447 1.17157L11.2929 4L8.46447 6.82843C8.2692 7.02369 8.2692 7.34027 8.46447 7.53553C8.65973 7.7308 8.97631 7.7308 9.17157 7.53553L12.3536 4.35355ZM1 4V4.5H12V4V3.5H1V4Z' fill='white'/%3E%3C/svg%3E%0A");
    position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
} */

.submit_newsletter_txt {
	color: #6493BE;
	font-family: "Segoe UI";
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.8px;
	margin-bottom: 2rem;
}

.footer_btn_submit {
	display: flex;
	align-items: center;
	width: 100%;
}

.left-top-footer {
	width: 45rem;
}

.footer_btn_submit input[type="email"] {
	background: transparent;
	border:none;
	border-bottom: 1px solid var(--white);
	color: var(--white);
	font-size: 1.6rem;
	width: 100%;
	font-weight: 100;
	transition: all 0.3s ease-in;
	outline: none;
	border-radius: 0 !important;
	height: 3.5rem;
}

.footer_btn_submit input:hover {
	color: var(--lighter_blue);
}

.footer_btn_submit input::placeholder {
	color: var(--white);
	opacity: 0.85;
}

.footer_btn_submit input[type="submit"] {
	background: transparent;
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 400;
	border: none;
	outline: none;
	border-bottom: 1px solid var(--white);
    display: flex;
    align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: all 0.3s ease-in;
	border-radius: 0 !important;
	height: 3.5rem;
	transition: all 0.3s ease-in;
}

.footer_btn_submit input[type="submit"]:hover {
	color: var(--lighter_blue);
}

.footer_btn_submit button .submit_arrow {
	transition: all 0.3s ease-in;
}

.footer_btn_submit button:hover {
	color: var(--lighter_blue);
}

.footer_btn_submit button:hover .submit_arrow {
	transform: translateX(5px);
}

.footer_btn_submit button:hover .submit_arrow path {
	fill: var(--lighter_blue);
}

.right_top_wp {
	display: flex;
	align-items: flex-start;
	gap:6rem;
}

.right-top-rep:first-child {
    width: 30rem;
}

.innerpage_footer .bottom-footer {
	justify-content: space-between;
	width: 100%;
	padding: 2rem 0;
}

form.webform-submission-newsletter-v2-form div[aria-label="Error message"] {
    color: #dd4040;
    position: absolute;
    bottom: -2.5rem;
    font-size: 1.5rem;
}

/* who we are page v2 */
.who_we_are_page {
	margin-top: 30rem;
}

.who_we_are_page .inner-firstTitle-bloc {
	display: flex;
	align-items: flex-start;
}

.who_we_are_page .photo .inner::after {
	content: none;
}

.inner_who_are_we-left {
    width: 40%;
}

.inner_who_are_we-right {
   width: 55%;
   margin-left: auto;
   font-family: "Segoe UI";
}

.who_we_are_page .inner-firstTitle-bloc .text h1 {
   font-size: 5rem;
   margin-bottom: 3.8rem;
   font-family: inherit;
   letter-spacing: -2px !important;	
}

.who_we_are_page .inner-firstTitle-bloc .text h2 {
   margin-bottom: 1.6rem;
   font-family: inherit;
   font-weight: 600;
   letter-spacing: -0.9px !important;
   padding-top: 0;
}

.who_are_we-txt {
   color: #0B0B0B;
   font-size: 1.8rem;
   font-weight: 400;
   line-height: 2.2rem;
   font-family: inherit;
}

.landing-documents .landing-events-bloc {
	gap: 2.1rem;
	justify-content: flex-start;
}

.landing-documents .landing-events-repeat {
	width: 23.66666%;
	margin-right: initial;
	margin-bottom: initial;
}

.landing-documents .landing-events-repeat a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 3rem 4rem;
	gap: 3rem;
}

.landing-documents .landing-events-repeat .folder_img_wp {
	width: 25%;
}

.landing-documents .landing-events-repeat .text {
	font-family: "Segoe UI";
	text-align: left;
	font-size: 1.8rem;
	font-weight: 600;
	padding-top: 0;
	width: 75%;
	line-height: 2rem;
}

.documents-repeat .right-documents {
	width: initial;
	display: flex;
	align-items: center;
	border-radius: 99px;
    background: #0C355B;
    padding: 1rem 3rem;
	gap: 1.2rem;
}

.documents-repeat .right-documents svg {
	width: 1.65rem;
}

.documents-repeat:hover .left-top-documents .cat,
.documents-repeat:hover .left-top-documents .date,
.documents-repeat:hover .left-bottom-documents .tit {
    color: var(--white);
}

.documents-repeat:hover .right-documents,
.documents-repeat:hover .left-top-documents .dot {
	background: var(--white);
}

.documents-repeat:hover .right-documents .text {
	color: #0C355B;
}

.documents-repeat:hover .right-documents svg path {
    stroke: #0C355B;
}

.pager__item.pager__item--next span[aria-hidden="true"],
.pager__item.pager__item--previous span[aria-hidden="true"] {
    position: relative;
    display: block;
	color: #fff;
}

.pager__item.pager__item--next span[aria-hidden="true"]::after {
	content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='9.5' stroke='%23CCD6DF'/%3E%3Cg clip-path='url(%23clip0_2678_3527)'%3E%3Cpath d='M19.0382 15.0806C19.0382 15.2928 18.9537 15.5049 18.7851 15.6667L13.476 20.7571C13.1383 21.081 12.5908 21.081 12.2532 20.7571C11.9156 20.4334 11.9156 19.9085 12.2532 19.5847L16.9509 15.0806L12.2533 10.5765C11.9158 10.2527 11.9158 9.72781 12.2533 9.40415C12.5909 9.08017 13.1385 9.08017 13.4762 9.40415L18.7852 14.4945C18.9539 14.6564 19.0382 14.8685 19.0382 15.0806V15.0806Z' fill='%230A355C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2678_3527'%3E%3Crect width='12' height='7' fill='white' transform='matrix(0 -1 1 0 12 21)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	display: block;
	color: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	top: -3px;
	right: 10px;
}

.pager__item.pager__item--previous span[aria-hidden="true"]::after {
	content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='29.5' y='29.5' width='29' height='29' rx='9.5' transform='rotate(-180 29.5 29.5)' stroke='%23CCD6DF'/%3E%3Cg clip-path='url(%23clip0_2679_3528)'%3E%3Cpath d='M10.9618 14.9194C10.9618 14.7072 11.0463 14.4951 11.2149 14.3333L16.524 9.24286C16.8617 8.91905 17.4092 8.91905 17.7468 9.24286C18.0844 9.56655 18.0844 10.0915 17.7468 10.4153L13.0491 14.9194L17.7467 19.4235C18.0842 19.7473 18.0842 20.2722 17.7467 20.5959C17.4091 20.9198 16.8615 20.9198 16.5238 20.5959L11.2148 15.5055C11.0461 15.3436 10.9618 15.1315 10.9618 14.9194L10.9618 14.9194Z' fill='%230A355C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2679_3528'%3E%3Crect width='12' height='7' fill='white' transform='translate(18 9) rotate(90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	display: block;
	color: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	top: -3px;
}

.captcha.captcha-type-challenge--recaptcha,
.form-item-main-category,
.form-item-sub-category {
	display: none;
}

.inner_landing_events .children-documents > div {
	width: 33%;
}