:root {
	--title-fonts: "Figtree", sans-serif;
	--body-fonts: "Space Grotesk", sans-serif;
	--primary-redcl: #ba2b31;
	--primary-darkcl: #434244;
	--primary-yellowcl: #ffe08f;
	--transition-03s: all 0.3s ease-in-out;

	--koloseco: #28a754;
	--kolosplus: #7d275f;
	--koloclassic: #ba2b31;
	--kolosecoplus: #2466b5;
	--kolosfinish: #168589;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
}

/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: red;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	padding: 10px;
}

*::-webkit-scrollbar-track {
	background: red;
}

*::-webkit-scrollbar-thumb {
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1;
	font-family: var(--body-fonts);
	color: var(--primary-darkcl);
	font-weight: 400;
	background: #f8f8f8;
}

body.overflow-hidden {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: inherit;
	margin: 0;
}

ol,
ul,
li {
	list-style: none;
}

a {
	outline: none;
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	transition: var(--transition-03s);
	-webkit-transition: var(--transition-03s);
	-moz-transition: var(--transition-03s);
	-ms-transition: var(--transition-03s);
	-o-transition: var(--transition-03s);
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

main {
	display: block;
}

section {
	display: flex;
	flex-direction: column;
	width: 100%;
}

img {
	border-style: none;
}

.img-res {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

/* ! Global css */
.cnt {
	width: 100%;
	margin: 0 auto;
}

.swiper {
	width: 100%;
	height: 100%;
}

/* ! Header */
.header {
	height: 14rem;
	width: 100%;
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	padding: 0 5% 0;
	align-items: flex-end;
	z-index: 999;
	transition: opacity 0.3s ease-in-out;
}

/* Hide the header */
.header.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

/* Optional shadow when scrolled */
.header.scrolled {
	background: var(--primary-darkcl);
	height: 8rem;
}

.header_logo {
	width: 11.6rem;
	padding-bottom: 2rem;
}

.header_logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.header_shareprice {
	border-radius: 0px 0px 15px 15px;
	background: #ba2b31;
	width: 14.1rem;
	height: 100%;
	margin-left: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1rem 1rem 1.8rem;
}

.header_shareprice__title {
	color: #f1f1f1;
	text-align: center;
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	letter-spacing: -0.14px;
}

.header_shareprice__value {
	color: #fff;
	text-align: center;
	font-family: var(--title-fonts);
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.22px;
	margin-top: 0.3rem;
}

.header_burger {
	margin-left: auto;
	margin-bottom: 2rem;
	position: relative;
	display: flex;
	cursor: pointer;
}
.header_burger-button {
	width: 45px;
	position: relative;
	display: flex;
}
.burger-trigger {
	position: absolute;
	top: -10px;
	left: 0;
	box-sizing: border-box;
	height: 0;
	cursor: pointer;
	z-index: 2;
	width: 40px;
	height: 40px;
}
.burger-trigger svg {
	stroke: #fff;
	transition: var(--transition-03s);
	width: 100%;
	height: 100%;
	display: block;
}
.burger-trigger svg g:first-child {
	opacity: 1;
	transition: opacity 0s 0.2s;
}
.burger-trigger svg g:first-child line {
	transition: transform 0.2s 0.2s;
	transform: translateY(0px);
}
.burger-trigger svg g:last-child {
	opacity: 0;
	transition: opacity 0s 0.2s;
}
.burger-trigger svg g:last-child line {
	transition: transform 0.2s;
	transform: rotate(0deg);
	transform-origin: center;
}
.header_burger.menu-open .burger-trigger svg {
	stroke: #fff;
}
.header_burger.menu-open .burger-trigger svg g:first-child {
	opacity: 0;
}
.header_burger.menu-open .burger-trigger svg g:first-child line {
	transition: transform 0.2s;
}
.header_burger.menu-open .burger-trigger svg g:first-child line:first-child {
	transform: translateY(7px);
}
.header_burger.menu-open .burger-trigger svg g:first-child line:last-child {
	transform: translateY(-7px);
}
.header_burger.menu-open .burger-trigger svg g:last-child {
	opacity: 1;
}
.header_burger.menu-open .burger-trigger svg g:last-child line {
	transition: transform 0.2s 0.2s;
}
.header_burger.menu-open .burger-trigger svg g:last-child line:first-child {
	transform: rotate(45deg);
}
.header_burger.menu-open .burger-trigger svg g:last-child line:last-child {
	transform: rotate(-45deg);
}
.header_burger-title {
	color: #fff;
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	margin-left: 1rem;
	transition: var(--transition-03s);
}

.header_burger:hover .header_burger-title {
	color: var(--primary-redcl);
}

.header_burger:hover .burger-trigger svg {
	stroke: var(--primary-redcl);
}

.header_overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	overflow: auto;
	background: var(--primary-darkcl);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-03s);
	display: flex;
	padding: 0 5% 0;
	flex-direction: column;
	z-index: 99;
}

.header_overlay.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header_overlay__navigation {
	width: 100%;
	height: 100%;
	padding-top: 22rem;
	position: relative;
}

.header_overlay__navigation nav {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

.header_overlay__navigation nav > ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2rem;
}

.header_overlay__navigation nav > ul > li .menu-item {
	color: #f1f1f1;
	font-size: 5rem;
	line-height: 5rem;
	font-weight: 700;
	letter-spacing: -1.5px;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.header_overlay__navigation nav > ul > li .menu-item .menu-item-num {
	font-size: 3rem;
	line-height: 2rem;
	font-weight: 400;
	letter-spacing: -2.22px;
	position: relative;
	top: -1rem;
}

.header_overlay__navigation nav > ul > li .menu-item:hover {
	color: var(--primary-redcl);
}

.header_overlay__navigation nav > ul > li .menu-item.active {
	color: var(--primary-redcl);
}

.menu_dropdown {
	width: 65rem;
	position: absolute;
	left: 0;
	top: 20rem;
	display: flex;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: var(--transition-03s);
}

.menu_dropdown.active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.menu_dropdown-img {
	width: 55%;
}

.menu_dropdown-nav {
	display: flex;
	flex-direction: column;
	margin-left: 5rem;
	gap: 2rem;
}

.menu_dropdown-nav li a {
	color: #f1f1f1;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 4rem;
	letter-spacing: -1.2px;
}

.menu_dropdown-nav li a:hover {
	color: var(--primary-redcl);
}

.header_overlay_bot {
	width: 100%;
	height: 18rem;
	margin-top: auto;
	display: flex;
}

.header_overlay_bot-left {
	display: flex;
	gap: 5rem;
}

.header_overlay-contact {
	display: flex;
	flex-direction: column;
}

.header_overlay-contact-title {
	color: #fff;
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.14px;
	margin-bottom: 0.4rem;
}

.header_overlay-contact ul {
	display: flex;
	flex-direction: column;
	color: #fff;
}

.header_overlay-contact ul li {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.header_overlay-contact a {
	color: #fff;
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	line-height: 1.8rem;
	line-height: normal;
	letter-spacing: 0.14px;
}

.header_overlay-contact a:hover {
	color: var(--primary-redcl);
}

.header_overlay_bot-right {
	margin-left: auto;
}

.header_overlay_bot-right ul {
	display: flex;
	gap: 2rem;
}
.header_overlay_bot-right ul li a {
	color: #fff;
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	line-height: 2.8rem;
	letter-spacing: 0.14px;
	cursor: pointer;
	gap: 0.6rem;
	display: flex;
}

.header_overlay_bot-right ul li a:hover {
	color: var(--primary-redcl);
}

/* ! Footer */
.Sticky__footer {
	min-height: calc(100vh - 60rem);
}

.footer {
	height: 60rem;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.footer_top {
	width: 100%;
	height: 56rem;
	background: #e7e7e8;
	display: flex;
	padding: 7.5rem 5% 0;
	flex-direction: column;
}

.footer_top-topside {
	display: flex;
}

.footer_top-topside-navigation {
	display: flex;
	gap: 8rem;
}

.footer_nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer_nav-title {
	color: var(--primary-redcl);
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2rem;
	letter-spacing: 0.18px;
	text-transform: uppercase;
}

.footer_nav ul {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.footer_nav ul li a {
	font-size: 1.4rem;
	line-height: 2.5rem;
	letter-spacing: -0.14px;
}

.footer_nav ul li a:hover {
	color: var(--primary-redcl);
}

.footer_contact {
	text-align: right;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	align-items: flex-end;
	gap: 4.5rem;
}

.footer_contact-nav {
	display: flex;
	flex-direction: column;
}

.footer_contact-nav-title {
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.14px;
	margin-bottom: 0.4rem;
}

.footer_contact-nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.footer_contact-nav ul li {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.footer_contact-nav a {
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	line-height: 1.8rem;
	line-height: normal;
	letter-spacing: 0.14px;
}

.footer_contact-nav a:hover {
	color: var(--primary-redcl);
}

.footer_top-botside {
	margin-top: auto;
	display: flex;
	align-items: flex-end;
	margin-bottom: 4rem;
}

.footer_top-botside-logo {
	width: 19.9rem;
}

.footer_top-botside-social {
	display: flex;
	margin-left: auto;
}

.footer_top-botside-social ul {
	display: flex;
	gap: 2rem;
}
.footer_top-botside-social ul li a {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	line-height: 2.8rem;
	letter-spacing: 0.14px;
	cursor: pointer;
	gap: 0.6rem;
	display: flex;
}

.footer_top-botside-social ul li a:hover {
	color: var(--primary-redcl);
}

.footer_bot {
	height: 4rem;
	background: #fff;
	padding: 0 5%;
	display: flex;
	align-items: center;
}

.footer_bot-right__copyright {
	font-family: var(--title-fonts);
	font-size: 1.2rem;
	letter-spacing: 0.12px;
}

.footer_bot-right {
	margin-left: auto;
	display: flex;
	gap: 2rem;
}

.footer_bot-right li a {
	font-family: var(--title-fonts);
	font-size: 1.2rem;
	letter-spacing: 0.12px;
}

.footer_bot-right li a:hover {
	color: var(--primary-redcl);
}

/* ! Homepage */

/* ? Fullscreen banner */
.fullscreen_banner {
	height: 100vh;
	padding: 2%;
	display: flex;
	flex-direction: column;
}

.fullscreen_wp {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 17px;
	overflow: hidden;
	position: relative;
	cursor: none;
}

.fullscreen_item {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 17px;
	overflow: hidden;
	position: relative;
	cursor: none;
}

.fullscreen_item::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.fullscreen_item-title {
	color: #fff;
	font-size: 18rem;
	font-weight: 700;
	line-height: 17rem;
	letter-spacing: -1.8px;
	text-transform: uppercase;
	width: 60%;
	position: absolute;
	left: 2.5%;
	bottom: 7%;
	z-index: 1;
}

.fullscreen_item-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem; /* 138.462% */
	letter-spacing: -0.78px;
}

.fullscreen_btn {
	position: absolute;
	right: 2.5%;
	bottom: 7%;
	width: 40rem;
	height: 7.5rem;
	z-index: 1;
}

.fullscreen_btn a {
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: 2px solid #ffd668;
	color: #e4e4e4;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	align-items: center;
	padding: 0 10%;
}

.banner_btn_arrow {
	margin-left: auto;
	width: 2.7rem;
}

.fullscreen_btn a:hover {
	border: 2px solid #fff;
	background: var(--primary-redcl);
}

.banner_btn_arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.filtered-overlay-clone {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 999;
	clip-path: circle(96px at var(--cursor-x, -100px) var(--cursor-y, -100px));
	transition: clip-path 0.05s linear;
	user-select: none;
}

.filtered-overlay-clone .clone-inner {
	width: 100%;
	height: 100%;
	filter: invert(90%) sepia(5%) saturate(200%) hue-rotate(20deg) contrast(100%);
}

.filtered-overlay-clone .drag-label {
	position: absolute;
	width: 192px;
	height: 192px;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	transform: translate(
		calc(var(--cursor-x, -100px) - 96px),
		calc(var(--cursor-y, -100px) - 96px)
	);
	color: #fff; /* Make sure this is white */
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: -0.75px;
	pointer-events: none;
	z-index: 1001;
	font-family: sans-serif;
}

/* ? Our products */
.hm_products {
/*	padding: 10rem 0;*/
	padding: 5rem 0;
}

.hm_products-wp {
	width: 100%;
	display: flex;
	padding-left: 5%;
}

.hm_products-left {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.timeline_wp-top .redtitle {
	/*color: var(--primary-redcl);*/
	color: #fff;
}

.redtitle {
	color: var(--primary-redcl);
	font-size: 3.5rem;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.redtitleWithIcn {
	display: flex;
	gap: 3.5rem;
	align-items: center;
}

.redtitleWithIcn span {
	width: 6.3rem;
}

.redtitle_txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 1.2rem;
	width: 60%;
}

.redtitle_txt strong {
	font-weight: 700;
}

.redtitle_bigtxt {
	color: var(--primary-darkcl);
	font-size: 6rem;
	font-style: normal;
	font-weight: 700;
	line-height: 6.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
	margin-top: 3rem;
	clip-path: inset(0% 0% 0% 0%);
	will-change: transform, clip-path, opacity;
}

.product_swipeText {
	margin-top: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.products_hmDetails {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.product_swipe-title {
	color: #848484;
	font-size: 5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.product_swipe-txt {
	color: var(--primary-darkcl);
	font-size: 10rem;
	font-style: normal;
	font-weight: 700;
	line-height: 11.2rem;
	letter-spacing: -3.3px;
	text-transform: uppercase;
}

.hm_products-right {
	width: 46%;
	margin-left: auto;
}

.productImg_item {
	width: 100%;
}

.productImg_item a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0 5%;
}

.productImg_item-img {
	width: 100%;
}

.productImg_item-info {
	display: none;
}

/* Custom Cursor Style */
.custom-cursor {
	position: fixed;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	background: var(--primary-yellowcl);
	color: var(--primary-darkcl);
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.cursor-text {
	pointer-events: none;
}

/* ! Find partners */
.hm_partners {
	/*padding: 10rem 5%;*/
	padding: 5rem 5%;
}

.hm_partners-wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.hm_partners-top {
	background: var(--primary-redcl);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 4rem 4%;
	display: flex;
}

.hm_partners-top-box {
	width: 33.3333%;
	height: 16.4rem;
	position: relative;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hm_partners-top-box::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #f1f1f1;
	pointer-events: none;
	right: 0;
}

.hm_partners-top-box:last-child::after {
	display: none;
}

.hm_partners-top-box-title {
	color: #f1f1f1;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 4.5rem;
	letter-spacing: -0.45px;
	width: 31.6rem;
}

.hm_partners-top-box-keynum {
	color: #f1f1f1;
	text-align: center;
	font-size: 9rem;
	font-weight: 700;
	line-height: 9rem;
	letter-spacing: -2.7px;
	text-transform: uppercase;
	/*display: flex;*/
	/*flex-direction: column;*/
}

.hm_partners-top-box-keynum .count-num {
    color: #f1f1f1;
	font-size: 9rem;
	font-weight: 700;
	line-height: 9rem;
	letter-spacing: -2.7px;
	text-transform: uppercase;
	display: inline-block;
}

.hm_partners-top-box-keynum span {
	text-align: center;
	font-family: var(--title-fonts);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2.4rem;
	letter-spacing: -0.26px;
	display: block;
}

.hm_partners-top-select {
	width: 100%;
	height: 7.5rem;
}

.hm_partners-top-select select {
	border-radius: 10px;
	border: 2px solid #f1f1f1;
	background-color: transparent;
	appearance: none;
	padding: 0 3rem;
	width: 100%;
	height: 100%;
	transition: var(--transition-03s);
	color: #f1f1f1;
	font-family: var(--body-fonts);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	cursor: pointer;

	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAWCAYAAAAxSueLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEFSURBVHgBxZXhDYIwEEavhAFgAzYQN9AN2EDdwA1kA9mEERwBNpANKvAb8DstEUljUFp8SUMvR3i94wJEM6iqKirLUtZ1fZpyv0Mz6Lpug4vXtm08VfgzUkoPlWVYHa8lhAFE116I1u7IJn8XIt6QTUZChDIc5gUZhoWO42TYelg3TOrW9/2cc7NGXwceXLCARSyEOOUDcE7w+LquG5JhhBCrpmkSFT4OILjHCAKyT2G8jZ9wVX8DMk+I93VW+2cbyQI88hBd6DWRax4c421Uo5/S++gXnDNamRJxRQHHqqK8zxurTCM6DEXG0HwX92QDjehINhj/PBHHZAsIkkVEDATRN6I7iZEER1rxitsAAAAASUVORK5CYII=);
	background-position: right 3rem center;
	background-repeat: no-repeat;
	background-size: 2.7rem;
}

.hm_partners-top-select select:hover {
	border: 2px solid var(--primary-darkcl);
	background-color: var(--primary-darkcl);
}

.hm_partners-bottom {
	display: flex;
	width: 100%;
	margin-top: 3rem;
}

.hm_partners-map {
	width: 55%;
	height: 80rem;
	background: #d9d9d9;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map_cnt {
	width: 55%;
	position: relative;
}

.map_cnt ul {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.map_cnt ul li {
	border-radius: 50%;
	width: 6rem;
	height: 6rem;
	background: var(--primary-darkcl);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f1f1f1;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: 2rem;
	position: absolute;
	cursor: pointer;
	transition: var(--transition-03s);
}

.map_cnt ul li:hover,
.map_cnt ul li.active {
	background: var(--primary-redcl);
}

.map_location_1 {
	top: 1%;
	left: 47%;
}

.map_location_2 {
	top: 16%;
	right: 13%;
}

.map_location_3 {
	top: 25%;
	left: 33%;
}

.map_location_4 {
	top: 48%;
	right: 5%;
}

.map_location_5 {
	top: 45%;
	right: 32%;
}

.map_location_6 {
	top: 58%;
	right: 51%;
}

.map_location_7 {
	top: 54%;
	left: 9%;
}

.map_location_8 {
	bottom: 15%;
	right: 27%;
}

.map_location_9 {
	bottom: 0%;
	left: 23%;
}

.hm_partners-zoneContent {
	width: 43%;
	height: 80rem;
	display: flex;
	flex-direction: column;
	position: relative;
	margin-left: auto;
}

.zoneContent_box {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-03s);
	pointer-events: none;
}

.zoneContent_box.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.zoneContent_box-top {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.zoneContent_box-title {
	color: var(--primary-redcl);
	font-size: 3rem;
	font-weight: 600;
	line-height: 3.5rem;
	text-transform: uppercase;
}

.zoneContent_box-sales {
	display: flex;
	flex-wrap: wrap;
}

.zoneContent_box-sales-img {
	width: 13.4rem;
	height: 13.4rem;
	background: #d9d9d9;
	display: flex;
}

.zoneContent_box-sales-desc {
	margin-left: 4rem;
	display: flex;
	flex-direction: column;
	padding: 0.4rem 0;
}

.zoneContent_box-sales-title {
	font-family: var(--title-fonts);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2.4rem;
}

.zoneContent_box-sales-name {
	margin-top: auto;
}

.zoneContent_box-sales-name,
.zoneContent_box-sales-phone,
.zoneContent_box-sales-mail {
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.zoneContent_box-sales-phone a:hover,
.zoneContent_box-sales-mail a:hover {
	color: var(--primary-redcl);
}

.zoneContent_box-sales-mail a {
	text-decoration: underline;
}

.zoneContent_box-bottom {
	display: flex;
	flex-direction: column;
}

.zoneContent_box-bottom-title {
	width: 100%;
	color: #848484;
	font-size: 5rem;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-top: 2.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #848484;
}

.zoneContent_box-bottom-list {
	width: 100%;
	display: flex;
}

.zoneContent_box-bottom-list ul {
	flex-direction: column;
	width: 100%;
	display: flex;
	padding: 4rem 0 0 0;
}

.zoneContent_box-bottom-list li {
	height: 11rem;

	width: 100%;
	margin-bottom: 3rem;
}

.reseller-list-inner {
	display: flex;
}

.resellers_details {
	display: flex;
	width: 60%;
	height: 100%;
	flex-direction: column;
}

.resellers_details-name {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2.4rem;
	margin-bottom: auto;
}

.resellers_details-address,
.resellers_details-contact {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.resellers_details-contact a:hover {
	color: var(--primary-redcl);
}

.resellers_locations {
	margin-left: auto;
}

.resellers_locations a {
	display: flex;
	color: #848484;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.75px;
}

.resellers_locations a:hover {
	color: var(--primary-redcl);
}

.filltored {
	fill: #848484;
	transition: var(--transition-03s);
}

.resellers_locations-arrow {
	width: 2.2rem;
	margin-left: 2rem;
}

.resellers_locations-arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.resellers_locations a:hover .filltored {
	fill: var(--primary-redcl);
}

.popup_map {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2;
	pointer-events: none;
	transition: var(--transition-03s);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.popup_map.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.popup_map_cnt {
	background: #f1f1f1;
	height: 50rem;
	width: 100%;
	max-width: 80rem;
	border-radius: 17px;
	overflow: hidden;
	display: flex;
	position: relative;
}

.close-button {
	position: absolute;
	top: 10px;
	right: 15px;
	background: var(--primary-redcl);
	color: #fff;
	border: none;
	padding: 1rem 2rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: var(--transition-03s);
}

.close-button:hover {
	background: var(--primary-darkcl);
}

.popup_map_ifr {
	width: 60%;
	height: 100%;
}

.popup_map_ifr iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 6px;
	margin-bottom: 15px;
}

.popup_map_info {
	padding: 8rem 2rem;
	width: 40%;
	height: 100%;
	background: #f1f1f1;
}

.popup_map_content {
	display: flex;
	flex-direction: column;
}

.popup_map_name {
	margin-bottom: 2rem;
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.4em;
	font-weight: 700;
	line-height: 2.4rem;
}

.popup_map_address,
.popup_map_contact {
	display: flex;
	color: var(--primary-darkcl);
	font-size: 1.6rem;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.75px;
	display: flex;
	gap: 1rem;
}

.zoneContent_box-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.2rem;
	color: var(--primary-darkcl);
}

.zoneContent_box-pagination button {
	padding: 6px 12px;
	border: none;
	background: var(--primary-redcl);
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.2rem;
	cursor: pointer;
	border-radius: 4px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: var(--title-fonts);
	letter-spacing: -0.12px;
	transition: var(--transition-03s);
}

.zoneContent_box-pagination button:disabled {
	background: #d9d9d9;
	cursor: default;
	pointer-events: none;
}

.zoneContent_box-pagination button:hover {
	background: var(--primary-darkcl);
}

/* ! hm darkblock */
.hm_darkBlock {
	padding: 10rem 5% 14rem;
	background: var(--primary-darkcl);
}

.hm_darkBlock-wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.hm_darkBlock-box {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 5rem;
}

.hm_darkBlock-box:last-child {
	margin-bottom: 0;
}

.hm_darkBlock-box-title {
	width: 100%;
	color: var(--primary-yellowcl);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
	margin-bottom: 4rem;
}

.hm_darkBlock-box-left {
	width: 55%;
	display: flex;
	flex-direction: column;
}

.hm_darkBlock-box-left-txt {
	color: #f1f1f1;
	font-size: 11rem;
	font-weight: 700;
	line-height: 10rem;
	letter-spacing: -3.3px;
	text-transform: uppercase;
	width: 65%;
}

.hm_darkBlock-box-right {
	width: 43%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.hm_darkBlock-box-right-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	width: 80%;
}

.hm_darkBlock-box-btn {
	display: flex;
	margin-top: 4.4rem;
}

.btn_global {
	display: flex;
	width: max-content;
	max-width: 40.5rem;
	height: 7.5rem;
	border-radius: 10px;
	border: 2px solid var(--primary-darkcl);
	color: var(--primary-darkcl);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	align-items: center;
	padding: 0 4%;
}

.btn_global_arrow {
	margin-left: 1rem;
	width: 2.7rem;
}

.btn_global:hover {
	border: 2px solid #fff;
	background: var(--primary-redcl);
}

.btn_global svg {
	width: 100%;
	height: 100%;
	display: block;
}

.btn_global.btn_redline {
	border: 2px solid var(--primary-redcl);
	color: #fff;
}

.btn_global.btn_redline:hover {
	border: 2px solid var(--primary-redcl);
	background: var(--primary-redcl);
}

/* ! purpose block */
.hm_purpose_block {
	padding: 13rem 5%;
}

.hm_purpose_block.reduce-margin {
    padding: 13rem 5% 10rem;
}

.hm_purpose_block-wp {
	width: 100%;
	display: flex;
}

.hm_purpose_block-left {
	width: 55%;
	display: flex;
	flex-direction: column;
}

.smallImg_block {
	display: flex;
	/* margin-top: 20rem; */
	margin-top: auto;
}

.smallImg {
	width: 34%;
}

.smallImg_desc {
	display: flex;
	flex-direction: column;
	width: 40%;
	margin-left: 5.5rem;
	justify-content: flex-end;
}

.smallImg_txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.smallImg_btn {
	display: flex;
	margin-top: 5rem;
}

.hm_purpose_block-right {
	width: 43%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.bigImg {
	width: 100%;
	display: flex;
}

.bigImg img {
	clip-path: inset(0% 0% 0% 0%);
	will-change: transform, clip-path, opacity;
}

/* ! homepage work */
.hm_work {
	display: flex;
	height: 100vh;
	background: #dfdfdf;
	flex-direction: row;
	overflow: hidden;
}

.hm_work_left {
	width: 55%;
	overflow:hidden;
}

.hm_work_left img {
	height: 100%;
	object-fit: cover;
	clip-path: inset(0% 0% 0% 0%);
	will-change: transform, clip-path, opacity;
}

.hm_work_right {
	width: 45%;
	height: 100%;
	padding: 8rem 5rem;
	display: flex;
	flex-direction: column;
}

.hm_work_right_down {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.hm_work_right_btns {
	display: flex;
	margin-top: 3rem;
}

.largeImg_desc {
	display: flex;
	flex-direction: column;
	width: 60%;
	margin-left: 0;
	justify-content: flex-end;
	margin-top: 7rem;
}

.largeImg_desc .smallImg_btn {
	margin-top: 3rem;
}

/* ! Hm Tabbing */
.hm_tabbing {
	padding: 5rem 5% 10rem;
}

.hm_tabbing-wp {
	display: flex;
	flex-direction: column;
}

.hm_tabbing-wp .redtitle_bigtxt {
	width: 70%;
}

.hm_tabbing-inner {
	width: 100%;
	display: flex;
	margin-top: 7.5rem;
}

.hm_tabbing-left {
	width: 26%;
	display: flex;
	flex-direction: column;
}

.hm_tabbing-img {
	width: 100%;
	margin-top: 16rem;
	position: sticky;
	top: 2rem;
}

.hm_tabbing-left img,
.hm_tabbing-right-img img {
	clip-path: inset(0% 0% 0% 0%);
	will-change: transform, clip-path, opacity;
}

.hm_tabbing-right {
	width: 70%;
	margin-left: auto;
	display: flex;
	flex-direction: var(--body-fonts);
	flex-direction: column;
}

.hm_tabbing-right-img {
	width: 100%;
}

.hm_tabbing-right .largeImg_desc {
	width: 100%;
	margin-top: 6rem;
}

.hm_tabbing-listing {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 6rem;
}

.hm_tabbing-listing li {
	display: flex;
	flex-direction: column;
}

.hm_tabbing-listing-head {
	height: 11.2rem;
	background: transparent;
	color: var(--primary-darkcl);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
	transition: var(--transition-03s);
	cursor: pointer;
	display: flex;
	padding: 2rem 3rem;
	align-items: center;
	border-bottom: 1px solid #848484;
	position: relative;
}

.hm_tabbing-listing-body {
	background: transparent;
	display: flex;
	padding: 2rem 3rem;
	align-items: center;
	position: relative;
}

.hm_tabbing-listing-body-txt {
    color: var(--primary-darkcl);
	font-size: 2rem;
	font-style: normal;
	line-height: normal;
}

.hm_tabbing-listing li:hover .hm_tabbing-listing-head {
	background: var(--primary-redcl);
	color: #fff;
}

.hm_tabbing-listing li:last-child .hm_tabbing-listing-head {
	border-bottom: none;
}

.tabbing-icn {
	width: 3.4rem;
	height: 3.4rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 3rem;
	transition: var(--transition-03s);
	opacity: 0;
	visibility: hidden;
}

.tabbing-icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.hm_tabbing-listing li:hover .tabbing-icn {
	opacity: 1;
	visibility: visible;
}

/* ! newsroom */
.newsroomBlock {
	padding: 10rem 5% 14rem;
	background: var(--primary-darkcl);
}

.newsroomBlock_wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.newsroomBlock-top {
	display: flex;
	align-items: center;
	margin-bottom: 5rem;
}

.newsroomBlock-top .hm_darkBlock-box-title {
	margin-bottom: 0;
}

.newsroomBlock-btn {
	margin-left: auto;
}

/*.newsroomBlock-btn a {*/
/*	width: 30rem;*/
/*	padding: 0 10%;*/
/*}*/

.newsroomBlock-slider {
	display: flex;
	width: 100%;
}

.newsroom_box {
	width: 100%;
	display: flex;
}

.newsroom_box a {
	display: flex;
	flex-direction: column;
}

.newsroom_box-title {
	color: #f1f1f1;
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
	height: 20rem;
}

.newsroom_box-img {
	margin-top: 8rem;
	width: 100%;
	display: flex;
}

.newsroom_box-bot {
	display: flex;
	margin-top: 3rem;
}

.newsroom_box-txt {
	width: 55%;
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.newsroom_box-btn {
	display: flex;
	margin-left: auto;
	/*width: 30%;*/
}

/*! Expertise page */
.introImage-right .redtitle_bigtxt {
	margin-top: 3rem;
	width: 65%;
	margin-bottom: 5rem;
}

.introImage-right .redtitle_txt {
	margin-top: 0;
	width: 75%;
}

.introImage-right .smallImg_btn {
	margin-top: auto;
}

.introImage-right .bigImg img {
	clip-path: inset(0% 0% 0% 0%);
	will-change: transform, clip-path, opacity;
}

/* ! dark video block */
.hm_darkBlock_videoBlock .hm_darkBlock-box-right-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2.6rem;
	letter-spacing: -0.54px;
}

.hm_darkBlock-box-right-txt h3 {
	color: #f1f1f1;
	font-family: var(--body-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.hm_darkBlock-box-right-txt strong {
    font-weight: 600;
}

.hm_darkBlock-box-right-txt ul {
	padding-left: 0;
}

.hm_darkBlock-box-right-txt ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	position: relative;
	padding-left: 0;
}

.hm_darkBlock-box-right-txt ul li::before {
	content: "•";
	color: #f1f1f1;
	font-size: 1.6em;
}

.hm_darkBlock.hm_darkBlock_videoBlock .hm_darkBlock-box-left .videoSpot {
    width: 75%;
	position: sticky;
	top: 2rem;
	cursor: pointer;
}

.videoSpot {
	width: 75%;
	position: relative;
	cursor: pointer;
}

.BigplayIcn {
	position: absolute;
	width: 12.5rem;
	height: 12.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.BigplayIcn svg {
	width: 100%;
	height: 100%;
	display: block;
}
.videoSpot .playIcnWhitetoRed {
	fill: #f1f1f1;
	transition: var(--transition-03s);
}

.videoSpot:hover .playIcnWhitetoRed {
	fill: var(--primary-redcl);
	transition: var(--transition-03s);
}

/* ! lightBlock */
.lightBlock {
	padding: 10rem 5%;
	background: #e7e7e7;
}

.lightBlock-wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.lightBlock-box {
	display: flex;
	margin-bottom: 14rem;
}

.lightBlock-box:last-child {
	margin-bottom: 0;
}

.lightBlock-box-left {
	width: 43%;
	display: flex;
	flex-direction: column;
	position: relative;
}

#retourntoplastik .lightBlock-box-left {
    position: relative;
}

.plastic_collected_wp {
    position: absolute;
    bottom: 11rem;
    color: #fff;
    padding: 0 7rem;
}

.counter_kg {
    font-size: 12rem;
    margin-bottom: 2rem;
}

.plastic_collected_txt {
    font-size: 4rem;
    max-width: 38rem;
    line-height: 5rem;
    letter-spacing: -1.3px;
}

.lightBlock-box-right {
	width: 43%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

#csr .lightBlock-box-right {
    position: relative;
}

.employee_wp {
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background: #ba2b31;
    padding: 3rem;
}

.employee_txt {
    font-size: 2.5rem;
    line-height: 3rem;
    max-width: 50rem;
}

.numb_employee {
    font-size: 6rem;
    font-weight: 700;
}

.redtitle_medtxt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem; /* 138.462% */
	letter-spacing: -0.78px;
	margin-top: 3.5rem;
}

.redtitle_medtxt h3 {
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	font-family: var(--body-fonts);
}

.lightBlock_btns {
	display: flex;
	margin-top: auto;
	gap: 3rem;
}

.lightBlock_btns .btn_global {
	width: auto;
	max-width: 100%;
	height: 7.5rem;
	font-size: 2rem;
	padding: 0 3%;
	gap: 1rem;
}

.lightBlock_btns .btn_global_arrow {
	width: 2rem;
}

/* ! carbon block */
.carbonBlock {
	padding: 10rem 5%;
	background: #f1f1f1;
}

.carbonBlock-wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.carbonBlock-title {
	width: 38%;
}

.carbonBlock-slider {
	width: 100%;
	display: flex;
	margin-top: 7rem;
}

.carbonBlock-box {
	width: 100%;
	display: flex;
}

.carbonBlock-box a {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.carbonBlock-box-title {
	color: var(--primary-darkcl);
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 4.5rem;
}

.carbonBlock-box-img {
	width: 100%;
	margin-bottom: 5rem;
}

.carbonBlock-box-text {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-bottom: 2rem;
	width: 60%;
}

.carbonBlock-box-btn {
	display: flex;
}

/* ! Resources block */
.resourcesBlock .newsroomBlock-top {
	flex-direction: column;
	align-items: flex-start;
}

.resourcesBlock .hm_darkBlock-box-title {
	margin-bottom: 3rem;
}

.resourcesBlock .hm_darkBlock-box-right-txt {
	margin-left: 0;
	width: 100%;
}

.resourcesBlock_listing {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 13rem;
}

.resourcesBlock_listing li {
    height: auto;
	/*height: 28rem;*/
	border-top: 1px solid #c4c4c4;
	padding: 4rem 0;
	display: flex;
}

.resourcesBlock_listing li:last-child {
	border-bottom: 1px solid #c4c4c4;
}

.resourcesBlock_left {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.resourcesBlock_left-title {
	color: #f1f1f1;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.resourcesBlock_left-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	width: 60%;
}

.resourcesBlock_links {
	display: flex;
	flex-direction: column;
	width: 33.3333%;
	margin-left: auto;
	align-items: flex-end;
}

.resourcesBlock_links a {
	color: #f1f1f1;
	font-size: 2rem;
	font-style: normal;
	font-weight: 700;
	line-height: 4rem;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	display: flex;
	gap: 4rem;
	margin-bottom: 1.5rem;
}

.resourcesBlock_links a:last-child {
	margin-bottom: 0;
}

.resourcesBlock_links a:hover {
	color: var(--primary-yellowcl);
}

.redToyellow {
	fill: var(--primary-redcl);
	transition: var(--transition-03s);
}

.resourcesBlock_links a:hover .redToyellow {
	fill: var(--primary-yellowcl);
}

.resourcesBlocks_slider {
	width: 100%;
	display: flex;
}

.usefull_box {
	display: flex;
	width: 100%;
}

.usefull_box a {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.usefull_box-img {
	width: 100%;
	margin-bottom: 4rem;
}

.usefull_box-title {
	color: #f1f1f1;
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 4rem;
	letter-spacing: -0.35px;
	text-transform: uppercase;
	transition: var(--transition-03s);
}

.usefull_box a:hover .usefull_box-title {
	color: var(--primary-redcl);
}

.newsroomBlock-top.removemargin {
	margin-bottom: 0;
}

.hover-circle-label {
	position: fixed;
	top: 0;
	left: 0;
	width: 12rem;
	height: 12rem;
	background: var(--primary-yellowcl);
	border-radius: 50%;
	color: var(--primary-darkcl);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 300;
	pointer-events: none;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 9999;
	transition: opacity 0.2s ease, transform 0.1s ease;
	text-transform: uppercase;
}

/* ! corp governance */
.bod {
	padding: 10rem 5%;
}

.bod-wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.bod_listing {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	justify-content: flex-end;
	margin-top: 9.5rem;
}

.bod_box {
	width: 23.5%;
	height: 54rem;
	background: #d9d9d9;
	margin-bottom: 4rem;
	position: relative;
	cursor: pointer;
	transition: var(--transition-03s);
	overflow: hidden;
}

.bod_box-hovers {
	width: 100%;
	height: 200px;
	background: var(--primary-redcl);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: var(--transition-03s);
	transform: translateY(100%);
	display: flex;
	flex-direction: column;
}

.bod_box:hover .bod_box-hovers {
	transform: translateY(0);
}

.bod_box-popup {
	background: var(--primary-darkcl);
	color: #f1f1f1;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.25px;
	text-transform: uppercase;
	padding: 1rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.bod_box-bottom {
	padding: 2rem 3rem 1rem;
	display: flex;
	flex-direction: column;
	height: 13rem;
}

.bod_box-name {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.25px;
	text-transform: uppercase;
}

.bod_box-position {
	margin-top: auto;
	color: #f1f1f1;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.18px;
}

.bod_box-txt {
	display: none;
}

.bod_box-img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.bod_pop {
	position: fixed;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-03s);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.bod_pop.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bod_pop_cnt {
	width: 80%;
	height: 70%;
	background: #f1f1f1;
	display: flex;
	position: relative;
}

.bod_pop_close {
	width: 5rem;
	height: 5rem;
	position: absolute;
	right: 0rem;
	top: 0rem;
	cursor: pointer;
}

.bod_pop_close svg {
	width: 100%;
	height: 100%;
	display: block;
}

.bod_pop_close:hover .redToyellow {
	fill: var(--primary-darkcl);
	transition: var(--transition-03s);
}

.bod_popup_wp {
	width: 100%;
	display: flex;
	padding: 8rem 8rem 4rem;
	align-items: flex-start;
}

.bod_popup_wp .bod_box-img {
	width: 28%;
	background: #d9d9d9;
	position: inherit;
	transform: inherit;
	padding-top: 4rem;
}

.bod_box-right {
	display: flex;
	width: 65%;
	flex-direction: column;
	margin-left: auto;
}

.bod_box-right .bod_box-name {
	color: var(--primary-redcl);
}

.bod_box-right .bod_box-position {
	color: var(--primary-darkcl);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.26px;
	text-transform: capitalize;
	margin-top: 1.5rem;
}

.bod_box-right .bod_box-txt {
	display: block;
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 3rem;
}

.bod_pop_nav {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
	gap: 0.5rem;
}

.bod_pop_nav button {
	background: var(--primary-redcl);
	color: #f1f1f1;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: 500;
	transition: var(--transition-03s);
	text-transform: uppercase;
}

.bod_pop_nav button:hover {
	background: var(--primary-darkcl);
}

.committee {
	padding: 10rem 5%;
	background: #e7e7e7;
}

.committee_wp {
	display: flex;
	width: 100%;
}

.committee_left {
	width: 45%;
	display: flex;
	flex-direction: column;
}

.committee_right {
	width: 48%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.bod_values {
	padding: 5rem 5% 15rem;
	background: #e7e7e7;
}

.bod_values-wp {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}

.bod_values-box {
	width: 31.3333%;
	flex-direction: column;
	display: flex;
}

.bod_values-box-icon {
	width: 8.5rem;
}

.bod_values-box-title {
	color: var(--primary-darkcl);
	font-size: 4rem;
	font-style: normal;
	font-weight: 700;
	line-height: 5.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
	margin-top: 3rem;
	height: 10rem;
}

.bod_values-box-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	line-height: 2.8rem;
	letter-spacing: -0.54px;
	margin-top: 3rem;
}

.dark_cPBlock {
	background: var(--primary-darkcl);
	display: flex;
	flex-direction: row;
	height: 100vh;
}

.dark_cPBlock-left {
	width: 55%;
	padding: 8rem 5% 10rem;
	display: flex;
	flex-direction: column;
}

.dark_cPBlock-bigtitle {
	color: #f1f1f1;
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
}

.dark_cPBlock-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	margin-top: 4rem;
}

.dark_cPBlock_btn {
	display: flex;
	margin-top: auto;
}

.dark_cPBlock_btn .btn_global.btn_redline {
	border-color: #fff;
}

.dark_cPBlock-right {
	width: 45%;
}

.dark_cPBlock-right img {
	height: 100%;
	object-fit: cover;
}

/* ! career */
.career_intro {
	padding: 10rem 5%;
}
.career_intro-wp {
	width: 100%;
	display: flex;
}

.career_intro-left {
	width: 45%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.career_intro-left .redtitle_txt {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.career_intro-left-bot {
	/*margin-top: auto;*/
	display: flex;
	flex-direction: column;
}

.career_intro-left-bot-title {
	color: var(--primary-darkcl);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.25px;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.career_intro-left-bot-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 1.2rem;
	width: 60%;
}

.career_intro-left-bot-txt ul {
	padding-left: 0;
}

.career_intro-left-bot-txt ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	position: relative;
	padding-left: 0;
}

.career_intro-left-bot-txt ul li::before {
	content: "•";
	color: var(--primary-darkcl);
	font-size: 1.6em;
}

.career_intro-right {
	width: 50%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.lightBlock-box .career_intro-right img {
    opacity: 1;
}

.swipeNav {
	width: 100%;
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 8rem;
}

.swipeNav .swiper-button-next,
.swipeNav .swiper-button-prev {
	width: 8rem;
	height: 100%;
	position: initial;
	left: inherit;
	right: inherit;
	bottom: inherit;
	top: inherit;
	background: var(--primary-darkcl);
	margin: 0;
	transition: var(--transition-03s);
}

.swipeNav .swiper-button-next:after,
.swipeNav .swiper-button-prev:after {
	font-size: 2.5rem;
	color: #fff;
}

.swipeNav .swiper-button-next:hover,
.swipeNav .swiper-button-prev:hover {
	background: var(--primary-redcl);
}

/* ! cluture */
.culture {
	background: #e7e7e7;
	flex-direction: row;
	min-height: 100vh;
}

.culture_left {
	width: 65%;
	padding: 10rem 5% 10rem;
	display: flex;
	flex-direction: column;
}

.culture_left .redtitle_txt {
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
}

.culture_right {
	width: 35%;
}

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

.culture_list {
	display: flex;
	width: 100%;
	margin-top: 5rem;
}

.culture_list ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.culture_list ul li {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: var(--transition-03s);
}

.culture_list-title {
	color: #b3b3b3;
	font-size: 9rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.9px;
	text-transform: uppercase;
	transition: var(--transition-03s);
}

.culture_list-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	width: 43%;
	margin-left: 5%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-20%);
	transition: var(--transition-03s);
}

.culture_list ul li:nth-child(1):hover .culture_list-title,
.culture_list ul li:nth-child(1).active .culture_list-title {
	color: #15625f;
}
.culture_list ul li:nth-child(2):hover .culture_list-title,
.culture_list ul li:nth-child(2).active .culture_list-title {
	color: #c12929;
}
.culture_list ul li:nth-child(3):hover .culture_list-title,
.culture_list ul li:nth-child(3).active .culture_list-title {
	color: #f2ab00;
}
.culture_list ul li:nth-child(4):hover .culture_list-title,
.culture_list ul li:nth-child(4).active .culture_list-title {
	color: #87294a;
}
.culture_list ul li:nth-child(5):hover .culture_list-title,
.culture_list ul li:nth-child(5).active .culture_list-title {
	color: #e36708;
}
.culture_list ul li:nth-child(6):hover .culture_list-title,
.culture_list ul li:nth-child(6).active .culture_list-title {
	color: #15625f;
}

.culture_list ul li:hover .culture_list-txt,
.culture_list ul li.active .culture_list-txt {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}

/* ! kTeam */
.kTeam {
	padding: 10rem 5%;
}

.kTeam_wp {
	width: 100%;
	display: flex;
}

.kTeam .redtitle_txt {
	margin-top: 5rem;
	width: 75%;
	margin-bottom: 0;
}

.keyTeamNum {
	padding: 5rem 5% 10rem;
}

.keyTeamNum_wp {
	background: var(--primary-redcl);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 4rem 2%;
	display: flex;
}

.keyTeamNum_box {
	height: 16rem;
	position: relative;
	width: 50%;
	display: flex;
	align-items: center;
	padding: 0 3%;
}

.keyTeamNum_box-left {
	display: flex;
	flex-direction: column;
	color: #f1f1f1;
	font-size: 4rem;
	font-style: normal;
	font-weight: 700;
	line-height: 4.5rem;
	letter-spacing: -0.45px;
}

.keyTeamNum_box-left span {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.42px;
	margin-top: 0.6rem;
}

.keyTeamNum_box-right {
	color: #f1f1f1;
	font-size: 11rem;
	font-style: normal;
	font-weight: 700;
	line-height: 8rem;
	letter-spacing: -3.3px;
	text-transform: uppercase;
	margin-left: auto;
}

.keyTeamNum_box::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #f1f1f1;
	pointer-events: none;
	right: 0;
}

.keyTeamNum_box:last-child::after {
	display: none;
}

.innerBg_block {
	background: #e7e7e7;
}

.innerBg_block .redtitle {
	color: var(--primary-darkcl);
}

.innerBg_block .redtitle_txt {
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	width: 80%;
	margin-top: 4rem;
}

.career_listing_wp {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 1.5%;
}

.career_listing_box {
	width: 32.3333%;
	position: relative;
	cursor: pointer;
	transition: var(--transition-03s);
	overflow: hidden;
	margin-bottom: 2.5rem;
	display: flex;
}

.career_listing_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.career_listing_box-top {
	height: 40rem;
	background: var(--primary-redcl);
	display: flex;
	width: 100%;
	padding: 2.5rem 4rem 3rem 4rem;
	flex-direction: column;
	color: #f1f1f1;
	transition: var(--transition-03s);
}

.career_listing_box-title {
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 4.5rem;
	letter-spacing: -1.05px;
	text-transform: uppercase;
}

.career_listing_box-txt {
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 1.5rem;
}

.career_listing_box-bottom {
	display: flex;
	margin-top: auto;
}

.career_listing_box-more {
	font-family: var(--title-fonts);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem; /* 96% */
	letter-spacing: -0.75px;
	text-decoration: underline;
}

.career_listing_box-date {
	margin-left: auto;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.career_listing_box-bot {
	width: 100%;
	height: 5rem;
	display: flex;
	align-items: center;
	background: #f1f1f1;

	color: var(--primary-darkcl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	padding: 0 4rem;
}

.career_listing_box-bot span {
	width: 2rem;
	margin-left: auto;
}
.career_listing_box-bot span svg {
	width: 100%;
	height: 100%;
	display: block;
}

.career_listing_box a:hover .career_listing_box-top {
	background: var(--primary-yellowcl);
	color: var(--primary-darkcl);
}

.filterJob select {
	width: auto;
	height: 8rem;
	background-color: transparent;
	border: none;
	color: rgba(241, 241, 241, 0.5);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	padding: 1rem 4rem 1rem 0rem;
	border-bottom: 1px solid #c4c4c4;
	appearance: none;
	text-transform: uppercase;

	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAPCAYAAAD+pA/bAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADqSURBVHgBtZS7EYJAEIZ3oQEzDQkdMTg60ETHHgykE6hEA3twINEOINExJHSMKABmveU1IyIPhS86lr3v5w44dHWDYEAUGBgOCGA4AiWOaTlQSMBu5NFpKjRVxbMcatAPiXxz9wPMK1mIJ4cj+ANECKOIDJbzdfGS00KyXSH8CMuJ0icvauUmVxdClnm7Oq0kl6+uvv9Wr2rOQjzoBBllOVP5H6SNZEJ7uVklZ7BumlzJTrbsoVl++Ha3NqA5pF7ONB4VLCAk+0NNZDfJGRVacHw+LtvxRH4ouMjl65tvQd84c2E5M2F1mfMCQaRlgxb6wR4AAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 2rem;
	cursor: pointer;
}

.jobBanner .fullscreen_item-title {
	color: #fff;
	font-size: 12rem;
	font-weight: 700;
	line-height: 14rem;
	letter-spacing: -1.8px;
	text-transform: uppercase;
	width: 60%;
	position: absolute;
	left: 2.5%;
	bottom: 20%;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.jobBanner .fullscreen_item-title span {
	color: #fff;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 2rem;
	letter-spacing: 0px;
}

.jobBanner .fullscreen_btn {
	position: absolute;
	right: auto;
	bottom: 5%;
	width: 40rem;
	height: 7.5rem;
	z-index: 1;
	left: 2.5%;
}

.careerDetails {
	padding: 10rem 5%;
}

.careerDetails_wp {
	display: flex;
	align-items: flex-start;
}

.careerDetails_left {
	width: 15%;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 5rem;
}

.careerDetails-dateTitle {
	color: var(--primary-redcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2rem;
	letter-spacing: -0.54px;
}

.careerDetails-date {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 300;
	line-height: 2rem; /* 200% */
	letter-spacing: -0.54px;
}

.careerDetails_right {
	width: 70%;
	margin-left: 5%;
	display: flex;
	flex-direction: column;
}

.careerDetails_box-repeatable {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 6rem;
}

.careerDetails_box-repeatable:last-child {
	margin-bottom: 0;
}

.careerDetails_box-repeatable-title {
	color: var(--primary-darkcl);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
	margin-bottom: 3rem;
}

.careerDetails_box-repeatable-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.5rem;
	letter-spacing: -0.54px;
}

.careerDetails_box-repeatable-txt ul {
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.careerDetails_box-repeatable-txt ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	position: relative;
	padding-left: 0;
}

.careerDetails_box-repeatable-txt ul li::before {
	content: "•";
	color: var(--primary-darkcl);
	font-size: 1.6em;
	position: relative;
	top: -0.2rem;
}

/* ! News Page */
.newslistingBanner .fullscreen_item-title {
	color: #fff;
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -0.65px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
}

.newslistingBanner .fullscreen_item-title span {
	color: #fff;
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 2rem;
	letter-spacing: 0px;
}

.newslistingBanner .fullscreen_item-txt {
	margin-top: 5rem;
}

.newslisting {
	width: 100%;
	padding: 10rem 5%;
}

.newslisting_wp {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.newslisting .hm_darkBlock-box-title {
	color: var(--primary-redcl);
}

.newslisting .filterJob select {
	color: rgba(67, 66, 68, 0.5);
}

.newslisting_wp-bottom {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 2.5%;
}

.newslisting_box {
	width: 31.3333%;
	position: relative;
	cursor: pointer;
	transition: var(--transition-03s);
	overflow: hidden;

	display: flex;
	margin-bottom: 10rem;
}

.newslisting_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.newslisting_box-img {
	display: flex;
	width: 100%;
	margin-bottom: 4rem;
	overflow: hidden;
}

.newslisting_box-img img {
	transform: scale(1);
	transition: var(--transition-03s);
}

.newslisting_box a:hover .newslisting_box-img img {
	transform: scale(1.05);
}

.newslisting_box-title {
	color: var(--primary-darkcl);
	font-size: 3.5rem;
	line-height: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
	text-transform: uppercase;
	margin-bottom: 1.4rem;
	transition: var(--transition-03s);
}

.newslisting_box a:hover .newslisting_box-title {
	color: var(--primary-redcl);
}

.newslisting_box-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

/* ! news details */
.newsDetails {
	padding: 10rem 5%;
}

.newsDetails_cnt {
	margin: 0 auto;
	width: 100%;
	max-width: 105.5rem;
}

.newsDetails_wp {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.newsDetails_title {
	color: var(--primary-darkcl);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
	margin-bottom: 6.5rem;
	width: 100%;
}

.newsDetails_info {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 5rem;
	border-bottom: 1px solid rgba(140, 140, 140, 0.8);
	margin-bottom: 7rem;
}

.newsDetails_info-box {
	display: flex;
	flex-direction: column;
	width: 33.3333%;
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
}

.newsDetails_info-box span {
	color: var(--primary-redcl);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.78px;
	margin-bottom: 0.7rem;
}

.newsDetails_Desc {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.newsDetails_text {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.6rem; /* 144.444% */
	letter-spacing: -0.54px;
	padding: 2.5rem 0;
}

.newsDetails_text h3 {
	font-family: var(--body-fonts);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}

.newsDetails_Fullimg {
	padding: 2.5rem 0;
}

.newsDetails_quote {
	display: flex;
	color: var(--primary-darkcl);
	padding: 2.5rem 0;
}

.newsDetails_quote-icn {
	font-family: "Space Grotesk";
	font-size: 10rem;
	font-style: normal;
	font-weight: 700;
	line-height: 10rem;
	letter-spacing: -3px;
	text-transform: uppercase;
	width: 9%;
	position: relative;
	top: -5px;
}

.newsDetails_quote-txt {
	font-family: var(--title-fonts);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4.5rem;
	letter-spacing: -1.05px;
	width: 91%;
	margin-left: auto;
}

.newsDetails_sepImage {
	display: flex;
	padding: 2.5rem 0;
	gap: 3rem;
}

.newsDetails_sep_img {
	width: 50%;
}

.nextNews {
	width: 100%;
	padding: 10rem 5%;
	background: var(--primary-darkcl);
}

.nextNews .hm_darkBlock-box-title {
	border-bottom: 1px solid rgba(140, 140, 140, 0.4);
	padding-bottom: 3rem;
}

.nextNews_box {
	display: flex;
	width: 100%;
}

.nextNews_box a {
	display: flex;
	width: 100%;
}

.nextNews_box-img {
	width: 35%;
}

.nextNews_box-info {
	width: 60%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.nextNews_box-title {
	color: #fff;
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
	text-transform: uppercase;
	transition: var(--transition-03s);
}

.nextNews_box-txt {
	color: #fff;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 1.5rem;
}

.nextNews_box a:hover .nextNews_box-title {
	color: var(--primary-redcl);
}

.inverstorsShareprice .btn_global {
	display: flex;
	width: 47rem;
	max-width: 100%;
}

.sharepriceBlock {
	width: 100%;
	height: 55rem;
	background: var(--primary-darkcl);
	padding: 9rem 8rem;
	display: flex;
	flex-direction: column;
}

.sharepriceBlock-num {
	color: #f1f1f1;
	font-size: 10rem;
	font-style: normal;
	font-weight: 700;
	line-height: 11rem;
	letter-spacing: -3.3px;
	text-transform: uppercase;
}

.sharepriceBlock-date {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
}

.sharepriceBlock_dl {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 3rem;
	margin-top: auto;
	border-top: 1px solid var(--primary-redcl);
	gap: 3rem;
}

.sharepriceBlock_dl li a {
	display: flex;
	color: #f1f1f1;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	align-items: center;
}

.sharepriceBlock_dl-icn {
	width: 1.8rem;
}

.sharepriceBlock_dl-icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.sharepriceBlock_dl-txt {
	width: 60%;
	margin-left: 3rem;
}

.sharepriceBlock_dl-date {
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin-left: auto;
	width: 30%;
	text-align: right;
}

.sharepriceBlock_dl li a:hover {
	color: var(--primary-redcl);
}

/* ! At a glance */
.atAglance {
	padding: 10rem 5% 5rem;
	background: #e4e4e4;
}

.atAglance_wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.atAglance_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 15rem;
}

.atAglance_box {
	display: flex;
	flex-direction: column;
	width: 33.3333%;
	color: var(--primary-darkcl);
	margin-bottom: 10rem;
}

.atAglance_price {
	color: var(--primary-darkcl);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -1.95px;
	text-transform: uppercase;
}

.atAglance_num {
	font-size: 11rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem;
	letter-spacing: -3.3px;
	text-transform: uppercase;
	margin-top: 1rem;
}

.atAglance_stext {
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	margin-top: 1.5rem;
}

.investorsReport {
	padding: 10rem 5%;
}

.investorsReport_wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.investorsReport_filter {
	width: 100%;
	height: 20rem;
	background: var(--primary-darkcl);
	padding: 2rem 5% 2rem;
	margin-top: 4rem;
	display: flex;
	align-items: center;
}

.investorsReport_filter-left {
	display: flex;
	gap: 10rem;
}

.investorsReport_filter-left select {
	color: #f1f1f1;
}

.investorsReport_filter-search {
	height: 7.5rem;
	width: 30%;
	display: flex;
	margin-left: auto;
}

.investorsReport_filter-search input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	font-family: var(--body-fonts);
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.25px;
	padding: 1rem 3rem 1rem 3rem;
	border: 2px solid #f1f1f1;
	appearance: none;
	text-transform: uppercase;
	border-radius: 10px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAWCAYAAAAxSueLAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFlSURBVHgBtdahV4NAHAfwL2pbccFlWHVlBbta1TamzVmZcay4KfsTZiaLVa2uz+AKZQTMkLEQkN/5QJhMfOP4Fu69u/c+3N3v7p1wdHgcYsPIsoz+tYrnpxeYplk4fgsl0mrto1arQel2oChK4fjtptS8xYZZLm20223U67sMBgRYllUNFgQBFu8LyAcymyGBnufBcT74YxTf9zGfvyUgfdeBpfYsjuu6GN2M2Zei9tVolq1qsDxQGw4gSWI1WBr0/U+2pPpEz4BcsR9wlIDaUEOj0WB9wunJWShJEnhHFEX0ri5TPzCGYNt2GMtVhkDuy/hXhPPuRTSzPfCOGG1Nr5ddxh1qxOXKK1QDitJhbTr08ZHgvoy0/3TGqBLTEIUrRpA+uUtKnSDHcZJ+btgqNJ3eZyBuWB40e539GlcaW4UMw8iFSmPf19EggcyHR/ZEWJdSGJV3fNURVPQOKYXFT4D/QJQvOB6nAgHUBhgAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-position: right 2.5rem center;
	background-size: 2rem;
}

.investorsReport_filter-search input::-webkit-input-placeholder {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 300;
	font-family: var(--body-fonts);
	opacity: 0.8;
}
.investorsReport_filter-search input ::-moz-placeholder {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 300;
	font-family: var(--body-fonts);
	opacity: 0.8;
}
.investorsReport_filter-search input:-ms-input-placeholder {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 300;
	font-family: var(--body-fonts);
	opacity: 0.8;
}
.investorsReport_filter-search input:-moz-placeholder {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-weight: 300;
	font-family: var(--body-fonts);
	opacity: 0.8;
}

.investorsReport_listing {
	display: flex;
	width: 100%;
	padding: 4rem 5% 0rem;
	flex-direction: column;
}

.investorsReport_listing li {
	padding: 2rem 0;
	border-bottom: 1px solid #8c8c8c;
}

.investorsReport_listing li a {
	display: flex;
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
}

.investorsReport_listing li a:hover {
	color: var(--primary-redcl);
}

.investorsReport_listing-txt {
	width: 80%;
}

.investorsReport_listing-icn {
	width: 1.7rem;
	margin-left: auto;
}

.investorsReport_listing-icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.aDocuments {
	padding: 10rem 5%;
}

.aDocuments_wp {
	width: 100%;
	display: flex;
}

.aDocuments-left {
	width: 30%;
	flex-direction: column;
	display: flex;
}

.aDocuments_btn {
	display: flex;
	margin-top: auto;
}

.dl_btn {
	border-radius: 10px;
	border: 2px solid var(--primary-darkcl);
	color: var(--primary-darkcl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 1.5rem 4rem;
	display: flex;
	gap: 2rem;
}

.aDocuments_arrow {
	width: 1.7rem;
}

.aDocuments_arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.dl_btn:hover {
	background: var(--primary-darkcl);
	color: #f1f1f1;
}

.aDocuments-right {
	width: 60%;
	margin-left: auto;
}

.susReport {
	padding: 10rem 5% 0;
	background: var(--primary-darkcl);
}

.susReport_wp {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.susReport_top {
	display: flex;
	width: 100%;
	align-items: flex-start;
}

.susReport_top-left {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.susReport_top-left .hm_darkBlock-box-right-txt {
	width: 100%;
}

.susReport_filter {
	margin-left: auto;
	display: flex;
	gap: 5rem;
}

.susReport_filter .filterJob select {
	height: auto;
}

.susReport_filter .filterJob {
    display: none;
}

.susReport_pag {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	/* margin-top: 20px;
	position: absolute;
	bottom: 0;
	left: 0; */
	font-size: 1.2rem;
	color: #f1f1f1;
}

.susReport_pag button {
	padding: 6px 12px;
	border: none;
	background: var(--primary-redcl);
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.2rem;
	cursor: pointer;
	border-radius: 4px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: var(--title-fonts);
	letter-spacing: -0.12px;
	transition: var(--transition-03s);
}

.susReport_pag button:disabled {
	background: #d9d9d9;
	cursor: default;
	pointer-events: none;
}

.susReport_pag button:hover {
	background: var(--primary-darkcl);
}

.susReport_listing {
	width: 100%;
	display: flex;
	margin-top: 10rem;
	flex-wrap: wrap;
	gap: 2.66%;
}

.susReport_box {
	width: 23%;
	margin-bottom: 4rem;
	display: flex;
}

.susReport_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.susReport_box-img {
	width: 100%;
	overflow: hidden;
}

.susReport_box-img img {
	transform: scale(1);
	transition: var(--transition-03s);
}

.susReport_box a:hover img {
	transform: scale(1.05);
}

.susReport_box-desc {
	height: 11.2rem;
	background: var(--primary-redcl);
	color: #f1f1f1;
	display: flex;
	flex-direction: column;
	padding: 2rem 3rem;
}

.susReport_box-date {
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.14px;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
}

.susReport_box-title {
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2rem;
	letter-spacing: -0.18px;
	width: 70%;
}

.ar {
	background: #e4e4e4;
	padding: 10rem 5%;
}

.ar_wp {
	display: flex;
	flex-direction: column;
}

.ar .hm_darkBlock-box-title {
	color: var(--primary-redcl);
}

.ar .hm_darkBlock-box-right-txt {
	color: var(--primary-darkcl);
}

.ar select {
	color: var(--primary-darkcl);
}

.ar_listing {
	width: 100%;
	display: flex;
	margin-top: 10rem;
	flex-wrap: wrap;
	gap: 2.66%;
}

.ar_box {
	width: 23%;
	margin-bottom: 4rem;
	display: flex;
}

.ar_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.ar_box-top {
	background: var(--primary-redcl);
	height: 35rem;
	display: flex;
	padding: 4rem 4rem;
}

.ar_box-date {
	color: #e5e5e5;
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.35px;
}

.ar_box-bot {
	height: 8rem;
	background: var(--primary-darkcl);
	display: flex;
	color: #f1f1f1;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2rem;
	letter-spacing: -0.18px;
	text-transform: capitalize;
	align-items: center;
	padding: 0 4rem;
	justify-content: space-between;
}

.bigImgvideo {
	position: relative;
}

.bigImgvideo_shape {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12rem;
}

.bigImgvideo_shape svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bigImgvideo a:hover .redToyellow {
	fill: var(--primary-yellowcl);
}

.hm_darkBlockMission .hm_darkBlock-wp {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.hm_darkBlockMission-box {
	width: 47%;
	display: flex;
	flex-direction: column;
}

.hm_darkBlockMission-title {
	color: var(--primary-yellowcl);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	display: flex;
	gap: 3rem;
	text-transform: uppercase;
	align-items: center;
	min-height: 10rem;
}

.hm_darkBlockMission-icn {
	width: 6.7rem;
}

.hm_darkBlockMission-txt {
	display: flex;
	width: 100%;
	margin-top: 3.4rem;
	height: 10rem;
	margin-bottom: 5rem;
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
}

/* ! values */
.about_values {
	padding: 10rem 5%;
	background: #e7e7e7;
}

.about_values-inner {
	display: flex;
	width: 100%;
}

.about_values-wp {
	width: 100%;
	display: flex;
	align-items: flex-start;
	margin-top: 10rem;
}

.about_values-left {
	width: 30%;
	display: flex;
	flex-direction: column;
}

.about_values-left-img {
	display: flex;
	width: 100%;
}

.about_values-right {
	width: 60%;
	margin-left: auto;
	display: flex;
}

.about_values-listing {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.about_values-listing li {
	width: 50%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	padding-bottom: 5rem;
	display: flex;
	flex-direction: column;
	margin-bottom: 4rem;
}

.about_values-listing li:nth-child(even) {
	padding-left: 6%;
}

.about_values-listing li:last-child {
	border: none;
}

.about_values-listing li:nth-last-child(2) {
	border: none;
}

.about_values-listing-title {
	color: var(--primary-darkcl);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.about_values-listing-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	margin-top: 1.5rem;
	height: 15rem;
}

.redtitle_smltxt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 10rem;
	position: sticky;
	top: 10rem;
}

.bod_inner {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 5rem;
}

.bod_inner .redtitle_medtxt {
	font-weight: 600;
}

.bod_inner .bod_listing {
	margin-top: 4.5rem;
}

.lightBlockNews {
	background: #fff;
}

.lightBlockNews .redtitle_smltxt {
	margin-top: 3rem;
	position: inherit;
	width: 65%;
}

.aboutblackBlock .newsroomBlock-top {
	display: flex;
	flex-direction: row;
}

.newsroomBlock-top-left {
	display: flex;
	flex-direction: column;
}

.newsroomBlock-top-right {
	margin-left: auto;
}

.resourcesBlock_bgTxt {
	display: flex;
	flex-direction: column;
	width: 50%;
	margin-left: auto;
	align-items: flex-end;
	color: #f1f1f1;
	font-size: 2rem;
	font-style: normal;
	font-weight: 700;
	line-height: 3.5rem;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.resourcesBlock_bgTxt:hover {
    color: var(--primary-yellowcl);
}

.aboutblackBlock .resourcesBlock_listing li {
	height: auto;
}

.timeline_block {
	padding: 5rem 5% 10rem;
}

.timeline_wp {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.timeline_wp-top {
	display: flex;
	margin-bottom: 3rem;
	align-items: center;
}

.timeline_slider {
	display: flex;
	margin-left: auto;
	width: 50%;
}

.timeline_slider .swiper-slide {
	color: #bbb;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	cursor: pointer;
	transition: var(--transition-03s);
}

.timeline_slider .swiper-slide:hover {
	color: var(--primary-redcl);
}

.timeline_slider .swiper-slide.swiper-slide-thumb-active {
	color: var(--primary-redcl);
}

.timeline_tabs {
	width: 100%;
	display: flex;
	margin-top: 1rem;
}

.timeline_tab-box {
	display: flex;
	width: 100%;
	background: #dbdbdb;
}

.timeline_tab-img {
	width: 65%;
}

.timeline_tab-inner {
	display: flex;
	flex-direction: column;
	width: 35%;
	padding: 10rem 8rem;
}

.timeline_tab-title {
	color: var(--primary-darkcl);
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.timeline_tab-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	margin-top: 10rem;
}

.timeline_block-wp {
	display: flex;
	margin-top: 8rem;
	align-items: center;
}

.timeline_block-left {
	width: 20%;
	display: flex;
	background: red;
}

.timeline_block-wp ul {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.timeline_block-wp ul li {
	/*color: #bbb;*/
	color: #fff;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	cursor: pointer;
	transition: var(--transition-03s);
}

.timeline_block-wp ul li.active,
.timeline_block-wp ul li:hover {
	color: var(--primary-redcl);
}

.timelineKolos {
	width: 85%;
	margin-left: auto;
}

.timelineKolos_box {
	width: 100%;
	display: flex;
}

.timelineKolos_box-inner {
	/*color: var(--primary-darkcl);*/
	color: #fff;
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	width: 80%;
}

.timelineKolos_box-img {
	width: 60%;
	display: flex;
	margin-left: auto;
}

.timelineKolos_box-date {
	display: none;
}

/* ! products intro */
.product_intro {
	padding: 10rem 5%;
}

.product_intro-wp {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product_intro-wp .redtitle_medtxt {
	width: 35%;
}

.product_listing {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25%;
	margin-top: 10rem;
}

.product_listing li {
	width: 19%;

	cursor: pointer;
}

.product_listing li .product_box-img {
	height: 42rem;
	background: #dbdbdb;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	transition: var(--transition-03s);
}

.product_listing li .product_box-img img {
	width: 60%;
}

.product_box-title {
	padding: 2rem 0rem;
	color: var(--primary-darkcl);
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: var(--transition-03s);
}

.product_listing li.product_koloseco2:hover .product_box-img {
	background: var(--koloseco);
}
.product_listing li.product_kolosplus:hover .product_box-img {
	background: var(--kolosplus);
}
.product_listing li.product_kolosclassic:hover .product_box-img {
	background: var(--koloclassic);
}
.product_listing li.product_kolosecoplus:hover .product_box-img {
	background: var(--kolosecoplus);
}
.product_listing li.product_kolosfinish:hover .product_box-img {
	background: var(--kolosfinish);
}

.product_listing li.product_koloseco2:hover .product_box-title {
	color: var(--koloseco);
}
.product_listing li.product_kolosplus:hover .product_box-title {
	color: var(--kolosplus);
}
.product_listing li.product_kolosclassic:hover .product_box-title {
	color: var(--koloclassic);
}
.product_listing li.product_kolosecoplus:hover .product_box-title {
	color: var(--kolosecoplus);
}
.product_listing li.product_kolosfinish:hover .product_box-title {
	color: var(--kolosfinish);
}

.product_view {
	height: 100vh;
}

.product_view_mobile {
    display: none;
}

.product_view-box {
	display: flex;
	width: 100%;
	height: 100%;
}

.product_view-box-left {
	width: 65%;
	height: 100%;
	background: #e8e7e7;
	padding: 10rem 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product_view-box-right {
	width: 35%;
	margin-left: auto;
	position: relative;
}

.product_view-box-right-img,
.product_view-box-right-img-hover {
	width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* transition: var(--transition-03s); */
	transition: all 0.1s ease-in-out;
}

.product_view-box-right-img-hover {
	opacity: 0;
}

.product_view-box .product_view-box-right:hover .product_view-box-right-img {
	opacity: 0;
}

.product_view-box
	.product_view-box-right:hover
	.product_view-box-right-img-hover {
	opacity: 1;
}

.ifnew {
	color: #f1f1f1;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 1rem 2rem;
	background: var(--primary-redcl);
	display: flex;
	margin-bottom: 5rem;
}

.product_view-box-right-title {
	display: flex;
	align-items: flex-end;
	gap: 5rem;
}
.product_viewMain-title {
	color: var(--primary-darkcl);
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 7.5rem; /* 115.385% */
	letter-spacing: -1.95px;
	text-transform: uppercase;
}

.product_ref {
	color: var(--primary-darkcl);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	position: relative;
	top: -1rem;
}

.product_view-box-right-text {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3.6rem;
	letter-spacing: -0.78px;
	margin-top: 5rem;
}

.product_view-box-right-btn {
	display: flex;
	width: 100%;
	margin-top: auto;
}

.product_view-box-right-btn .btn_global {
	display: flex;
	width: auto;
	max-width: 100%;
	gap: 2rem;
}

.product_view-box.product_koloseco2 .product_view-box-right {
	background: var(--koloseco);
}

.product_view-box.product_kolosplus .product_view-box-right {
	background: var(--kolosplus);
}

.product_view-box.product_kolosclassic .product_view-box-right {
	background: var(--koloclassic);
}

.product_view-box.product_kolosecoplus .product_view-box-right {
	background: var(--kolosecoplus);
}

.product_view-box.product_kolosfinish .product_view-box-right {
	background: var(--kolosfinish);
}

.product_view-box.product_koloseco2 .product_viewMain-title {
	color: var(--koloseco);
}

.product_view-box.product_kolosplus .product_viewMain-title {
	color: var(--kolosplus);
}

.product_view-box.product_kolosclassic .product_viewMain-title {
	color: var(--koloclassic);
}

.product_view-box.product_kolosecoplus .product_viewMain-title {
	color: var(--kolosecoplus);
}

.product_view-box.product_kolosfinish .product_viewMain-title {
	color: var(--kolosfinish);
}

.bannerproduct_koloseco2 .fullscreen_wp {
	background: var(--koloseco);
}
.bannerproduct_kolosplus .fullscreen_wp {
	background: var(--kolosplus);
}
.bannerproduct_kolosclassic .fullscreen_wp {
	background: var(--koloclassic);
}
.bannerproduct_kolosecoplus .fullscreen_wp {
	background: var(--kolosecoplus);
}
.bannerproduct_product_kolosfinish .fullscreen_wp {
	background: var(--kolosfinish);
}

.product_details-banner {
	width: 100%;
	display: flex;
	padding: 0 7%;
}

.product_details-banner-img {
	padding: 12%;
	width: 50%;
}

.product_details-banner-info {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.product_details-banner-subtitle {
	color: #fff;
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 5rem;
}

.product_details-banner-title {
	color: #f1f1f1;
	font-size: 13rem;
	font-style: normal;
	font-weight: 700;
	line-height: 13rem;
	letter-spacing: -1.8px;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.product_details-banner-txt {
	color: #f1f1f1;
	font-family: var(--title-fonts);
	font-size: 2rem;
	font-style: normal;
	font-weight: 300;
	line-height: 3rem;
	letter-spacing: -0.78px;
}

.fullscreenproduct .fullscreen_item::after {
	display: none;
}

.fullscreenproduct .fullscreen_btn {
	position: inherit;
	margin-top: 5rem;
}

.fullscreenproduct .fullscreen_btn a {
	gap: 2rem;
}

.product_sheetBlock {
	padding: 2rem 5%;
}

.product_sheetBlock-wp {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.product_sheetBlock-box {
	display: flex;
	flex-direction: column;
	width: 46%;
}

.product_sheetBlock-box-repeat {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
	min-height: 30rem;
}

.product_sheetBlock-box-repeat:last-child {
	margin-bottom: 0;
}

.product_sheetBlock-box-repeat-title {
	color: var(--primary-darkcl);
	font-size: 2.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.product_sheetBlock-box-repeat-txt {
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: -0.54px;
	margin-top: 5rem;
}

.product_sheetBlock-box-repeat-txt ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.product_sheetBlock-box-repeat-txt ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	position: relative;
	padding-left: 0;
}

.product_sheetBlock-box-repeat-txt ul li::before {
	content: "•";
	color: var(--primary-darkcl);
	font-size: 1.6rem;
	position: relative;
	top: -0.2rem;
}

.product_sheetBlock-box-repeat-links {
	display: flex;
	margin-top: auto;
	flex-direction: column;
	gap: 2rem;
}

.btnRepeat {
	width: 100%;
	display: flex;
	border-radius: 10px;
	border: 2px solid var(--primary-darkcl);
	height: 6rem;
	color: var(--primary-darkcl);
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 0 2rem;
	gap: 2rem;
	align-items: center;
}

.btnRepeat_icn {
	width: 2rem;
}

.btnRepeat_icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.btnRepeat:hover {
	background: var(--primary-yellowcl);
}

.product_application {
	background: #d9d9d9;
	display: flex;
	flex-direction: row;
	min-height: 100vh;
	margin-top: 5rem;
}

.product_application-left {
	width: 55%;
	padding: 8rem 5% 10rem;
	display: flex;
	flex-direction: column;
}

.product_application-right {
	width: 45%;
	display: flex;
}

.product_application-boxes {
	display: flex;
	width: 100%;
}

.product_application-boxes {
	display: flex;
	flex-direction: column;
	margin-top: 5rem;
}

.product_application-box {
	display: flex;
	flex-direction: column;
	margin-bottom: 5rem;
}

.product_application-box:last-child {
	margin-bottom: 0;
}

.product_application-boxtitle {
	color: var(--primary-darkcl);
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 4rem;
}

.product_application-listing {
	display: flex;
	gap: 2rem;
	display: flex;
	flex-wrap: wrap;
}

.product_application-listing li {
	display: flex;
	width: 48%;
	align-items: center;
	gap: 2rem;
	color: var(--primary-darkcl);
	font-family: var(--title-fonts);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 300;
	line-height: 2.6rem;
	letter-spacing: -0.54px;
}

.app_icn {
	width: 4rem;
}

.app_txt {
	margin-left: 3rem;
}

.timeline_tab-date {
	display: none;
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	cursor: pointer;
	transition: var(--transition-03s);
	color: var(--primary-redcl);
}

.lightBlock-box img,
.lightBlock-box .redtitle,
.lightBlock-box .redtitle_medtxt,
.lightBlock-box .redtitle_smltxt,
.lightBlock-box .lightBlock_btns {
	opacity: 0;
	transform: translateY(50px);
}


.timeline_block#company {
    flex-direction: row;
    position: relative;
}

.timeline_block#company::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
    z-index: 1;
}

.timeline_left,
.timeline_right{
    width: 80%;
    position: relative;
    z-index: 3;
}

.btnTitle-wp {
    display: flex;
    width: 100%;
    align-items: flex-end;
}

.btnTitle-wp .redtitle_bigtxt {
    width: 70%;
}

.btnTitle-wp .hm_work_right_btns {
    width: 30%;
}

.btnTitle-wp .hm_work_right_btns .btn_global {
    margin-left: auto;
}

.fullscreen_txt {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.fullscreen_txt .redtitle_medtxt {
    width: 100%;
}


