﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html * {
	margin:0;
	padding:0;
    box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
body {
	background:#fff;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#333;
}
body::after{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease;
    z-index:8;
}
header, nav, article, section, footer, figure, aside, address {
	display:block;
	font-style:normal;
}
a:hover,
a {
	font-size:13px;
	color:#222;
	text-decoration:none;
}
textarea,
select,
input,
button {
	outline:none;
	resize:none;
	overflow:hidden;
    font-family:'Raleway', sans-serif;
}
button {
    cursor:pointer;
}
img {
	border:0;
	width:100%;
	height:auto;
	display:block;
}
ol,
ul {
	list-style-type:none;
}
*::-webkit-input-placeholder {
    color:#666;
    font-size:14px;
}
*:-moz-placeholder {
    color:#666;
    font-size:14px;
}
*::-moz-placeholder {
    color:#666;
    font-size:14px;
}
*:-ms-input-placeholder {
    color:#666;
    font-size:14px;
}
input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 30px white inset;
}
.clear {
	clear:both;
}
.recess {
	width:1400px;
	margin:auto;
}
.hero-video{
	position:relative;
	width:100%;
	height:100vh;
	min-height:100%;
	overflow:hidden;
	background:#000;
}
.hero-video__media{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}
.hero-video__overlay {
	position:absolute;
	inset:0;
	background:
		linear-gradient(
		to bottom,
		rgba(0,0,0,.45) 0%,
		rgba(0,0,0,.25) 22%,
		rgba(0,0,0,0) 40%
		),
		linear-gradient(
		to right,
		rgba(0,0,0,.45) 0%,
		rgba(0,0,0,.25) 22%,
		rgba(0,0,0,0) 40%
	);
}
.hero-video__content{
	position:relative;
	z-index:2;
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding:0 24px;
	color:#fff;
}
#header {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:10;
    will-change:transform;
}
#header.is-fixed {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.3);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    transform:translateY(var(--header-hide, -120px));
    transition:
        transform .9s cubic-bezier(.22,.61,.36,1),
        background .3s ease,
        backdrop-filter .3s ease;
	box-shadow:0 20px 20px -12px rgba(0,0,0,.15);
}
#header.is-fixed.is-visible {
    transform:translateY(0);
}
#header.is-menu-white {
	background:#fff !important;
	backdrop-filter:none !important;
	-webkit-backdrop-filter:none !important;
}
#header.is-menu-white #menu .menu-list ul li > span,
#header.is-menu-white #menu .menu-list ul li > a,
#header.is-menu-white #menu .lang-search ul li > a {
	color:#000;
}
#header.is-menu-white #menu .lang-search ul li:first-child {
	border-right-color:rgba(0,0,0,.35);
}
#header .recess {
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:solid 1px rgba(226,226,226,.35);
    transition:padding .35s ease, border-color .35s ease;
}
#header.is-menu-white .recess,
#header.is-fixed .recess {
    border-bottom:none;
}
#header .logo {
    width:70px;
    transition:width .35s ease;
}
#header.is-fixed .logo {
    width:50px;
}
#menu {
	display:flex;
	align-items:center;
}
#menu .menu-list {
	margin-right:50px;
}
#menu .menu-list ul li {
    display:inline-block;
    margin-right:20px;
    position:static;
}
#menu .menu-list ul li > span,
#menu .lang-search ul li > a,
#menu .menu-list ul li > a {
	color:#fff;
	font-size:15px;
	font-weight:600;
	font-family: "Montserrat", sans-serif;
	padding:0 10px;
	cursor:pointer;
	height:100px;
	display:flex;
	align-items:center;
	position:relative;
}
#header.is-fixed #menu .menu-list ul li > span,
#header.is-fixed #menu .lang-search ul li > a,
#header.is-fixed #menu .menu-list ul li > a {
	height:70px;
}
#menu .menu-list ul li > a::after,
#menu .menu-list ul li > span::after {
	content:"";
	position:absolute;
	left:10px;
	right:10px;
	bottom:0;
	height:5px;
	background:#fbab18;
	transform:scaleX(0);
	transform-origin:bottom;
	transition:transform .25s ease;
}
#menu .menu-list ul li > a:hover::after,
#menu .menu-list ul li > span:hover::after,
#menu .menu-list ul li.open > span::after,
#menu .menu-list ul li .sub-menu:hover ~ span::after {
	transform:scaleX(1);
}
#menu .menu-list ul li > .sub-menu {
    position:fixed;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    z-index:9;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(10px);
    transition:opacity .3s ease, transform .3s ease;
	box-shadow:0 20px 20px -12px rgba(0,0,0,.15);
	padding:80px 0;
}
#menu .menu-list ul li.open > .sub-menu {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}
#menu .menu-list ul li > span:hover + .sub-menu,
#menu .menu-list ul li .sub-menu:hover {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}
body::after{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease;
    z-index:8;
}
body.menu-overlay-open::after{
    opacity:1;
    visibility:visible;
}
#menu .menu-list ul li .sub-menu .left-column,
#menu .menu-list ul li .sub-menu .right-column {
    width:50%;
	display:flex;
}
#menu .menu-list ul li .sub-menu .left-column {
	flex-direction:column;
	padding-left:50px;
}
#menu .menu-list ul li .sub-menu .left-column a {
    font-size:17px;
	font-weight:600;
	margin-bottom:20px;
	width:max-content;
	position:relative;
	padding:5px 0 2px 25px;
}
#menu .menu-list ul li .sub-menu .left-column a:last-child {
	margin-bottom:0;
}
#menu .menu-list ul li .sub-menu .left-column a::before {
	content:"";
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	width:12px;
	height:100%;
	background:#9f9480;
}
#menu .menu-list ul li .sub-menu .right-column a {
    width:50%;
    display:flex;
    flex-direction:column;
	font-size:16px;
	font-weight:700;
}
#menu .menu-list ul li .sub-menu .right-column a:first-child {
    margin-right:40px;
}
#menu .menu-list ul li .sub-menu .right-column a figure {
    margin-bottom:10px;
}
#menu .lang-search ul li {
	display:inline-block;
}
#menu .lang-search ul li:first-child {
	padding-right:9px;
	margin-right:5px;
	border-right:solid 1px #fff;
}
#header.is-fixed #menu .lang-search ul li a,
#menu .lang-search ul li a {
	font-weight:500;
	padding:2px 0;
	height:auto
}
#header.is-fixed #menu .lang-search ul li:last-child a,
#menu .lang-search ul li:last-child a {
	width:15px;
	height:15px;
	background:url(../Images/search-icon.png) no-repeat;
	background-size:15px auto;
	display:block;
	cursor:pointer;
}
#header.is-menu-white #menu .lang-search ul li:last-child a {
	background-image:url(../Images/search-icon-black.png);
}
#header .search {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:240px;
    background:#fff;
    z-index:20;
    transform:translateY(-100%);
    transition:transform .5s cubic-bezier(.22,.61,.36,1);
	box-shadow:0 20px 20px -12px rgba(0,0,0,.15);
}
#header .search.is-open {
    transform:translateY(0);
}
#header .search .inner {
	max-width:1000px;
	margin:auto;
	padding:30px 0;
}
#header .search .inner .top {
    display:flex;
    align-items:center;
}
#header .search .inner .top span {
    font-size:26px;
	font-weight:700;
}
#header .search .inner .top a {
    margin-left:auto;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    position:relative;
    padding-right:34px;
}
#header .search .inner .top a::after {
    content:"✕";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    font-size:32px;
    font-weight:400;
    line-height:1;
}
#header .search .inner .bottom {
    position:relative;
	margin-top:50px;
}
#header .search .inner .bottom .input {
    width:100%;
    
	padding:22px 70px 22px 22px;
	border:solid 2px #ccc;
	border-radius:5px;
	font-size:19px;
}
#header .search .inner .bottom .input::placeholder {
    font-size:19px;
    font-weight:600;
    color:#555;
    letter-spacing:.05em;
}
#header .search .inner .bottom .input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 30px white inset;
}
#header .search .inner .bottom .button{
    border:none;
    width:80px;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    background:none;
    cursor:pointer;
}
#header .search .inner .bottom .button::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:12px;
    height:12px;
    border-top:3px solid #111;
    border-right:3px solid #111;
    border-radius:2px;
    transform:translate(-50%, -50%) rotate(45deg);
}
#scroll-page {
    position:absolute;
    z-index:2;
    bottom:80px;
    left:calc(50% - 700px);
}
#scroll-page .scroll-page-icon {
    background:url(../Images/scroll-page-icon-bg.png) no-repeat;
    width:29px;
    height:66px;
}
#index {
	padding:60px 0;
	font-family: "Montserrat", sans-serif;
}
#index h3{
	position:relative;
	font-size:34px;
	font-weight:600;
	margin:0 0 30px 100px;
	padding-left:30px;
}
#index h3::before {
	content:"";
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	width:20px;
	height:100%;
	background:#fbab18;
}
#index .about,
#index .projects,
#index .sectors {
	margin-bottom:100px;
}
#index .about .recess {
	display:flex;
}
#index .about .left-column {
	width:calc(100% - 600px);
	padding-right:50px;
	border-right:solid 1px rgba(0,0,0,.25);
}
#index .about .left-column h2 {
	font-size:30px;
	margin-bottom:30px;
}
#index .about .left-column h3 {
	font-size:26px;
	margin-bottom:20px;
	color:#fbab18;
	font-weight:600;
}
#index .about .left-column > p {
	line-height:24px;
	margin-bottom:100px;
}
#index .about .left-column ul {
	width:100%;
	display:flex;
	flex-wrap:wrap;
}
#index .about .left-column ul li {
	flex:0 0 calc(100% / 3);
	flex-direction:column;
	margin-bottom:30px;
}
#index .about .left-column ul li:not(:nth-last-child(-n+2)) {
	margin-bottom:60px;
}
#index .about .left-column ul li figure {
	width:60px;
	margin-bottom:10px;
}
#index .about .left-column ul li p {
	font-size:40px;
	font-weight:700;
}
#index .about .left-column ul li span {
	color:rgba(0,0,0,.45);
	font-size:18px;
}
#index .about .right-column{
    width:600px;
    padding:30px 0 0 50px;
    position:relative;
}
#index .about .right-column img{
    width:100%;
    height:100%;
    object-fit:cover;
}
#index .sectors ul {
	display:flex;
	flex-wrap:wrap;
}
#index .sectors ul li {
	flex:0 0 calc(100% / 3);
	aspect-ratio:1 / 1;
	box-sizing:border-box;
}
#index .sectors ul li a {
	position:relative;
	display:block;
	width:100%;
	height:100%;
}
#index .sectors ul li figure {
	overflow:hidden;
}
#index .sectors ul li figure img {
	object-fit:cover;
	transition:transform .8s cubic-bezier(.2,.6,.2,1);
}
#index .sectors ul li a:hover figure img {
	transform:scale(1.08);
}
#index .sectors ul li p {
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0;
	z-index:2;
	color:#fff;
	font-size:28px;
	font-weight:700;
	text-align:center;
	pointer-events:none;
}
#index .sectors ul li p::after{
	content:"";
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.35);
	z-index:-1;
}
#index .news .news-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
#index .news .news-track {
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0;
	gap: 30px;
	will-change: transform;
	user-select: none;
}
#index .news .news-track > li {
	list-style: none;
	box-sizing: border-box;
}
#index .news .news-track li a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	-webkit-user-drag: none;
	user-select: none;
}
#index .news .news-track figure {
    margin:0;
    width:100%;
    height:350px;
    overflow:hidden;
    position:relative;
}
#index .news .news-track figure img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}
#index .news .news-track p {
	padding:20px;
	font-size:18px;
	font-weight:600;
	line-height:28px;
}
#index .news .news-track img {
	display: block;
	width: 100%;
	height: auto;
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}
#index .news .news-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
	position: relative;
	z-index: 10;
}
#index .news .news-dots button {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: 0;
	background: #cfcfcf;
	cursor: pointer;
	padding: 0;
	transition:width .35s cubic-bezier(.22,.61,.36,1), background-color .25s ease;
}
#index .news .news-dots button.active {
	background: #000;
	width: 26px;
}
#index .news .news-arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    background:rgba(0,0,0,.55);
    cursor:pointer;
    z-index:20;
    padding:0;
}
#index .news .news-arrow.prev {
	left:10px;
}
#index .news .news-arrow.next {
	right:10px;
}
#index .news .news-arrow::after {
    content:"";
    position:absolute;
    inset:0;
    margin:auto;
    width:26px;
    height:26px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
}
#index .news .news-arrow.prev::after {
    background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M15 18l-6-6 6-6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
}
#index .news .news-arrow.next::after {
    background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M9 6l6 6-6 6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
}
#index .news .news-arrow:hover {
    background:rgba(0,0,0,.75);
}
#footer {
	display:flex;
}
#footer .left-column {
	width:100px;
	background:#fbab18;
	padding:5px;
}
#footer .left-column .top-page {
	height:80px;
	border-bottom:solid 1px rgba(255,255,255,.5);
	margin-bottom:30px;
}
#footer .left-column .top-page a {
	background:url(../Images/icon-arrow-top.png) no-repeat center;
	display:block;
	width:100%;
	height:100%;
	cursor:pointer;
}
#footer .left-column .social-media {
    margin:auto;
	width:min-content;
}
#footer .left-column .social-media ul li {
    margin-bottom:14px;
}
#footer .left-column .social-media ul li a {
    width:38px;
    height:38px;
    display:block;
    background:#fff no-repeat center;
    border-radius:50%;
    position:relative;
    overflow:visible;
    z-index:1;
}
#footer .left-column .social-media ul li.facebook a {
    background-image:url(../Images/icon-facebook.png);
}
#footer .left-column .social-media ul li.twitter a {
    background-image:url(../Images/icon-twitter.png);
}
#footer .left-column .social-media ul li.instagram a {
    background-image:url(../Images/icon-instagram.png);
}
#footer .left-column .social-media ul li.youtube a {
    background-image:url(../Images/icon-youtube.png);
}
#footer .left-column .social-media ul li.linkedin a {
    background-image:url(../Images/icon-linkedin.png);
}
#footer .left-column .social-media ul li a::after {
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    z-index:-1;
    transform:scale(1);
    opacity:0;
}
#footer .left-column .social-media ul li a:hover::after {
    animation:social-ripple .6s ease-out;
}
@keyframes social-ripple{
    0%{
        transform:scale(1);
        opacity:.6;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

#footer .right-column {
	flex:1;
}
#footer .right-column .top {
	background:#666;
	padding:80px 110px;
	color:#fff;
}
#footer .right-column .top a {
	color:#b3b3b3;
	font-size:16px;
}
#footer .right-column .top ul {
	display:flex;
	flex-wrap:wrap;
}
#footer .right-column .top ul li {
	flex:0 0 calc(100% / 4);
}
#footer .right-column .top ul li span {
	font-size:20px;
	font-weight:700;
	margin-bottom:20px;
	display:block;
}
#footer .right-column .top ul li p {
	margin-bottom:10px;
}
#footer .right-column .top ul li p:last-child {
	margin-bottom:0;
}
#footer .right-column .bottom {
	padding:40px 140px;
	display:flex;
	align-items:center;
}
#footer .right-column .bottom .logo {
	width:80px;
}
#footer .right-column .bottom .copyright {
	margin:0 70px;
}
#footer .right-column .bottom .menu ul {
	display:flex;
	gap:30px;
}
#footer .right-column .bottom .menu a {
	font-weight:700;
}
#footer .right-column .bottom .lang {
	width:100px;
	margin-left:auto;
}



/*index slider*/
#index .projects ul li .shadow {
	width:550px;
	height:100%;
	background: rgba(0,0,0,.40);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position:absolute;
	top:0;
	left:0;
	padding:140px 40px 20px 70px;
	color:#fff;
	font-size:16px;
}
#index .projects ul li .shadow span {
	color:#fbab18;
	font-size:20px;
}
#index .projects ul li .shadow h6 {
	font-size:44px;
	margin-bottom:30px;
	font-weight:600;
}
#index .projects ul li .shadow p {
	margin-bottom:20px;
	line-height:24px;
}
#index .projects ul li .shadow a {
	color:#fff;
	display:block;
	width:max-content;
	margin-top:100px;
	padding-right:50px;
	background:url(../Images/icon-arrow.png) no-repeat center right;
}
#index .projects .projects-slider {
	position:relative;
	width:100%;
	/*overflow:hidden;*/
}
#index .projects .projects-track {
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	/*min-height:520px*/
	min-height:1000px;
}
#index .projects .projects-track > li {
	position:absolute;
	inset:0;
	display:flex;
	opacity:0;
	pointer-events:none;
	transition:opacity .8s ease;
}
#index .projects .projects-track > li.is-active {
	opacity:1;
	pointer-events:auto;
}
#index .projects .projects-track figure {
	margin:0;
	width:100%;
	/*height:520px;*/
	height:1000px;
	overflow:hidden;
}
#index .projects .projects-track figure img {
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
#index .projects ul li {
	position:absolute;
}
#index .projects .projects-track > li {
	position:absolute;
}
#index .projects .projects-arrow {
	position:absolute;
	/*top:50%;
	transform:translateY(-50%);*/
	bottom:50px;
	transform:translateY(-50%);
	width:54px;
	height:54px;
	border:0;
	cursor:pointer;
	/*background:rgba(0,0,0,.35) url(../Images/icon-arrow.png) no-repeat center;
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);*/
	background:url(../Images/icon-arrow.png) no-repeat center;
	border:solid 1px #fff;
	border-radius:50%;
}
#index .projects .projects-arrow.prev {
	right:100px;
	transform:translateY(-50%) rotate(180deg);
}
#index .projects .projects-arrow.next {
	right:30px;
}
@media (max-width: 900px){
	#index .projects ul li .shadow {
		width:100%;
		padding:110px 20px 20px 20px;
	}
	#index .projects .projects-track figure {
		height:520px;
	}
}
/*index slider*/
/*select style*/
.custom-select {
    position:relative;
}
.custom-select .select {
    display:none;
}
.select-selected {
}
.select-selected:after {
    position:absolute;
    content:"";
    top:20px;
    right:15px;
    width:0;
    height:0;
    border:solid 6px transparent;
    border-color:#333 transparent transparent transparent;
}
.shadow .shadow-box .box .form ul li .shell .select-selected:after  {
    top:17px;
    right:10px;
}
.select-selected.select-arrow-active:after {
    border-color:transparent transparent #333 transparent;
    top:12px;
}
.shadow .shadow-box .box .form ul li .shell .select-selected.select-arrow-active:after  {
    top:11px;
}
.select-items {
    overflow:auto;
    position:absolute;
    top:auto;
    bottom:100%;
    left:0;
    right:0;
    z-index:9;
    color:#333;
    margin-top:0;
    margin-bottom:3px;
    background:#f7f6f6;
    border-radius:3px;
}
.select-items div,
.select-selected {
    border:none;
    width:100%;
    line-height:34px;
    padding:3px 10px;
    cursor:pointer;
	font-weight:700;
	font-family: "Montserrat", sans-serif;
}
.shadow .shadow-box .box .form ul li .shell .select-items div,
.shadow .shadow-box .box .form ul li .shell .select-selected {
    line-height:30px;
    padding:3px 10px;
}
.select-selected {
    border-radius:3px;
    border:solid 2px #f0f0f0;
    background:#f0f0f0;
	background:url(../Images/icon-world.png) no-repeat left 5px center #f0f0f0;
	background-size:20px auto;
	padding-left:38px;
}
.shadow .shadow-box .box .form ul li .shell .select-selected {
}
.select-selected.warning {
    border-color:#c91f1f;
}
.select-items div {
}
.shadow .shadow-box .box .form ul li .shell .select-items div {
    border-radius:0;
    background:#fcfcfc;
    margin-bottom:0;
}
.select-items div:first-child {
}
.select-items div:last-child {
}
.select-items {
    
}
.select-hide {
    display:none;
}
.select-items div:hover,
.same-as-selected {
    background-color:#f0f0f0;
    border-radius:3px;
}
/*select style*/