@charset "utf-8";

@font-face { font-family: 'HK Grotesk Wide'; src: local('HK Grotesk Wide Light'), local('HKGroteskWide-Light'), url('fonts/HKGroteskWide-Light.woff2') format('woff2'), url('fonts/HKGroteskWide-Light.woff') format('woff'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk Wide'; src: local('HK Grotesk Wide Regular'), local('HKGroteskWide-Regular'), url('fonts/HKGroteskWide-Regular.woff2') format('woff2'), url('fonts/HKGroteskWide-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'HK Grotesk Wide'; src: local('HK Grotesk Wide Medium'), local('HKGroteskWide-Medium'), url('fonts/HKGroteskWide-Medium.woff2') format('woff2'), url('fonts/HKGroteskWide-Medium.woff') format('woff'); font-weight: 500; font-style: normal; font-display: swap; }

:root {
/* COLOR VARIABLES */
--blue: #003EFF;
--white: #fff;
--black: #000;
--light-gray: #EAEAEA;
--dark-gray: #4D4D4D;

/* TRANSITION SPEED */
--all-fast: all 0.3s;
--all-medium: all 0.5s;
--all-slow: all 0.8s;
--offset: -30vh;
--radius-small: 4px;
--radius: 0px;
--rotation: 0deg;
--gap: 2.5vw;
--grid-item-width: 32vw;
--ratio: 1.3;
}

/* ========================== COMMON CSS ========================== */
*, ul, ol, li, a { margin: 0; padding: 0; list-style-type: none; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: 'Manrope', sans-serif; font-weight: 300; line-height: 1.4; color: inherit; color: #fff; }
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { font-family: 'HK Grotesk Wide'; font-weight: bold; }
input, input:focus, textarea, textarea:focus, .form-control, .form-control:focus { box-shadow: none; outline: none; background: transparent; color: rgba(0, 0, 0, 0.7); }
a, a:active, a:focus, a:hover, button:hover, button:focus, .page-link:focus { text-decoration: none; outline: 0; color: inherit; box-shadow: none; }
button { background: transparent; outline: none; box-shadow: none; cursor: pointer; }
[type=reset], [type=submit], button, button:focus, html [type=button], .btn-close:focus { -webkit-appearance: none; outline: none; border: none; box-shadow: none; }
a { display: inline-flex; flex-flow: row wrap; }
a:hover { color: var(--white); }

body { background: #010101; width: 100%; font-size: 16px; line-height: 1.4; width: 100%; position: relative; font-family: 'Manrope', sans-serif; font-weight: 400; color: #fff; z-index: 1; overflow-x: hidden; transition: var(--all-slow); }
body::before { content: ''; position: absolute; width: 1px; height: 100%; background: #2F2F2F; opacity: 0.7; left: 50px; top: 0; z-index: 1; }
body::after { content: ''; position: absolute; width: 1px; height: 100%; background: #2F2F2F; opacity: 0.7; right: 50px; top: 0; z-index: 1; }
body.show { opacity: 1; }
body p { font-size: 16px; line-height: 1.4; color: #AAAAAA; margin-bottom: 30px; font-weight: 400; font-family: 'Manrope', sans-serif; }

.no-scroll { overflow: hidden; }

hr { border-top: 1px solid #ddd; }

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

::-webkit-scrollbar { width: 5px; display: none; }
::-webkit-scrollbar-track { box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.4); }
::-webkit-scrollbar-thumb { background-color: #cccbcb; border-radius: 15px; }

.barContainer { position: fixed; top: 0; right: 0; width: 10px; height: 100vh; box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.8); background: #000; border-radius: 15px; z-index: 999; pointer-events: none; }
.bar { height: 20%; width: 100%; background-color: #888; border-radius: 15px; transition: all 0.8s; }

/* Chrome Safari Edge Opera */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.container { max-width: calc(100% - 300px); position: relative; z-index: 1; }

.form-control::-webkit-input-placeholder { color: rgba(0,0,0,0.7); }
.form-control::-moz-placeholder { color: rgba(0,0,0,0.7); }
.form-control:-ms-input-placeholder { color: rgba(0,0,0,0.7); }
.form-control::-ms-input-placeholder { color: rgba(0,0,0,0.7); }
.form-control::placeholder { transition: var(--all-fast); color: rgba(0,0,0,0.7); }

.form-group { position: relative; overflow: hidden; }
.form-control { font-size: 16px; line-height: 1; width: 100%; padding: 10px 15px; border: 1px solid #aaa; appearance: none; -webkit-appearance: none; border-radius: 0; }
.form-control:focus { border-color: #000; }

.link__graphic { position: absolute; bottom: 0; left: 0; pointer-events: none; }
.link__graphic path { fill: none; stroke: rgb(255 255 255 / 30%); stroke-width: 1px; }
.form-control:focus + .link__graphic--slide { transform: translate3d(-66.6%, 0, 0); transition: transform 0.7s; transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1); }

label { font-size: 16px; line-height: 1; font-weight: 400; padding: 0 10px; transition: 0.3s; margin: 0; }

select.form-control:not([size]):not([multiple]), textarea.form-control { height: auto; }

.img-box { display: inline-flex; width: 100%; }
img { width: 100%; height: 100%; object-fit: contain; transform: var(--all-medium); }

.fade-in-left { transform: translateX(-100px); opacity: 0; }
.fade-in-right { transform: translateX(100px); opacity: 0; }

#smooth-wrapper { overflow: hidden; }

/* Firefox */
input[type=number] { -moz-appearance: textfield; }

.loader { display: flex; flex-flow: row wrap; align-items: center; justify-content: center; background: #000; position: fixed; width: 100%; height: 100vh; top: 0; left: 0; bottom: 0; right: 0; z-index: 111111; transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1) 1.8s, visibility 1s cubic-bezier(0.77, 0, 0.175, 1) 1.8s, transform 1s cubic-bezier(0.77, 0, 0.175, 1) 1.2s; }
.loader__logo { position: absolute; background-size: 100%; background-repeat: no-repeat; background-color: transparent; background-image: url("../images/gray-icon.webp"); background-position: center bottom; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 1s, opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1) 1.2s; }
.loader-logo { display: block; width: 250px; height: auto; }
.loading .loader { opacity: 0; visibility: hidden; transform: translateY(-100%); }
.loading .loader__logo { opacity: 0; }
.loader__logo img { opacity: 0.1; }
.loader__logo div { content: ""; width: 250px; height: 250px; position: absolute; left: 0; bottom: 0; background-size: 100%; background-repeat: no-repeat; background-color: transparent; background-image: url("../images/colored-icon.webp"); background-position: center bottom; z-index: 10; -webkit-transition-property: all; transition-property: all; -webkit-transition-duration: 1s; transition-duration: 1s; -webkit-transition-timing-function: cubic-bezier(0, 0.01, 0.01, 0.98); transition-timing-function: cubic-bezier(0, 0.01, 0.01, 0.98); max-height: 0; -webkit-transform-origin: center; transform-origin: bottom; display: block; }

.button { position: relative; z-index: 1; padding: 12px 20px; border: 2px solid #fff; clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0% 10px); overflow: hidden; transition: var(--all-medium); }
.button::before { content: ''; width: 2px; height: 15px; position: absolute; left: -2px; top: -7px; background: #fff; transform: rotate(45deg); transform-origin: bottom left; transition: var(--all-medium); }
.button::after { content: ''; width: 2px; height: 15px; position: absolute; right: -2px; bottom: -7px; background: #fff; transform: rotate(45deg); transform-origin: top right; transition: var(--all-medium); }
.button .text { display: flex; color: #fff; text-transform: uppercase; overflow: hidden; pointer-events: none; }
.button span { position: relative; font-size: 14px; font-family: 'HK Grotesk Wide'; font-weight: 500; text-transform: uppercase; color: #fff; transform: translateY(0); transition: var(--all-medium); transition-delay: 0.1s; z-index: 1; }
.button span::after { content: attr(data-text); position: absolute; left: 0; top: 150%; display: block; color: #000; transition: var(--all-medium); }
.button:hover span, .button.white span { color: #000; transform: translateY(-150%); }
.button.white:hover span { transform: translateY(0%); }

.button .box { position: absolute; top: 101%; left: 0; display: block; width: 100%; height: 100%; background: #fff; z-index: -1; animation: moveDownTwo 0.5s linear 0s forwards; }
.button:hover .box { display: block; width: 100%; height: 100%; transition: var(--all-medium); animation: moveDownOne 0.5s linear 0s forwards; }

@keyframes moveDownOne {
0% { bottom: auto; top: -101%; border-radius: 50%; }
100% { bottom: auto; top: 0; border-radius: 0%; }
}
@keyframes moveDownTwo {
0% { top: auto; bottom: 0; border-radius: 0%; }
100% { top: auto; bottom: -101%; border-radius: 50%; }
}

.read-more { display: inline-flex; flex-flow: row wrap; align-items: center; }
.read-more span { font-size: 14px; font-weight: 400; color: #FEFFFF; font-family: 'HK Grotesk Wide'; text-transform: uppercase; line-height: 1; }
.read-more svg { width: 10px; margin-right: 10px; }
.read-more span + svg { width: 10px; margin-left: 10px; margin-right: 0; }

.section-title { width: 100%; font-size: 20px; font-weight: 400; color: #fff; text-transform: uppercase; font-family: 'HK Grotesk Wide'; margin-bottom: 50px; }
.section-title::before { content: ''; width: 12px; height: 12px; background: url(../images/icons/sec-title.svg) center center no-repeat; background-size: 100%; display: inline-flex; margin-right: 10px; }
.section-subtitle { font-size: 46px; line-height: 1.2; font-weight: 600; color: #fff; font-family: 'HK Grotesk Wide'; margin-bottom: 50px; }

/* HEADER */
.header { width: 100%; padding: 30px 0; position: fixed; left: 0; width: 100%; top: 0; z-index: 5; transform: translateY(-101%); transition: var(--all-medium); }
.header.active { background: #010101; }
.header.bg { background: #010101; padding: 15px 0; }
.header.bg .button { padding: 8px 20px; }
.header.bg .logo { width: 240px; }
.header.show { transform: translateY(0); }
.header .logo { display: flex; width: 270px; transition: var(--all-medium); }
.header.bg { transform: translateY(0);}


.header .navbar { padding: 0; }
.header .right { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-end; }
.header .right .lang { width: 30px; height: 30px; margin-right: 30px; }
.header .right .social { display: flex; flex-flow: row wrap; align-items: center; margin-right: 10px; }
.header .right .social li { margin-right: 20px; }
.header .right .social li a { display: flex; width: 25px; height: 25px; transition: var(--all-medium); }
.header .right .social li a:hover { opacity: 1; transform: scale(1.1); }

.hamburger { display: none;}
/* .mega-menu.mob-menu { display: none;} */
.mega-desk-menu .navar-nav { text-align: right;}
.mega-desk-menu .navar-nav  li { display:inline-flex; align-items: center;}
.mega-desk-menu .navar-nav  li  a { padding: 4px 0px; margin: 0px 25px; text-transform: uppercase; font-size: 18px; color:#fff; font-weight: 400; position: relative; }
.mega-desk-menu .navar-nav  li  a:before { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: #fff; transition: all 0.4s;}
.mega-desk-menu .navar-nav  li  a:hover:before { width: 100%;}

.mega-desk-menu .navar-nav li .dropdown .dropdown-menu { position: fixed; border:0px; width: 100%; left:0px; padding: 30px 50px 0px 50px; background: transparent; top:60%;border-radius: 0px;
   opacity: 0;
   z-index: -1;
  display: block;
  transform: translateY(30px);
  transition: all 0.8s; pointer-events: none; }

  .header.bg.show  .mega-desk-menu .navar-nav li .dropdown .dropdown-menu { padding-top: 50px;}

  .mega-desk-menu .navar-nav  li .dropdown .dropdown-menu.show{ opacity: 1; z-index: 1; transform: translateY(0); pointer-events: all;}
  
 .mega-desk-menu .navar-nav li .dropdown .dropdown-menu .dropdown-menu-bx { position: relative; padding: 40px 30px 15px 30px; background: rgba(0,0,0,1); border-radius: 0px; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px);  }
 .mega-desk-menu .navar-nav li .dropdown .dropdown-menu:after { content: ""; position: absolute; top: 16px; right: 27%; width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid #000; }

/* .mega-desk-menu .navar-nav  li .dropdown-menu-bx { position: absolute; width: 100vw; top:100%; left: 50%; display: block;opacity: 0; transition: all 0.5s; transform: translateX(-50%) translateY(-30px);pointer-events: none; background: #fff; z-index: 111; } */
/* .mega-desk-menu .navar-nav  li.dropdown-btn:hover .dropdown-menu-bx { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all} */

/* .mega-desk-menu .navar-nav  li .dropdown .dropdown-menu { width: 100vw; text-align: left;  border-radius: 0px; border:none; padding: 30px 0px 10px 0px; margin-top: -30px;} */
.mega-desk-menu .navar-nav  li .dropdown .dropdown-menu .dropdown-menu-bx { width:100%; padding-left: 80px; margin: auto; display: block; justify-content: space-around;}
.mega-desk-menu .navar-nav  li .dropdown .dropdown-menu .dropdown-menu-bx .content-wrap { width: 80%; margin: auto; }
/* .mega-desk-menu .navar-nav  li .dropdown .dropdown-menu .dropdown-menu-bx .content-wrap ul:nth-of-type(6){ width: auto; clear: left;} */
.mega-desk-menu .navar-nav  li .dropdown { display: flex; align-items: flex-start;}

.mega-desk-menu .navar-nav li .dropdown a { background: transparent; border:none; position: relative; padding-right: 0px; margin-right: 5px;}
.mega-desk-menu .navar-nav li .dropdown  { padding-right: 22px; margin-right: 20px;}
.mega-desk-menu .navar-nav li .dropdown .drop-in { position: relative;}
.mega-desk-menu .navar-nav li .dropdown  span { pointer-events: none; width:14px; padding: 0px;  height: 100%; position: absolute; top: 50%; right: 0px; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; z-index: 11111; }
.mega-desk-menu .navar-nav li .dropdown  span img { width: 100%;}
/* .mega-desk-menu .navar-nav li .dropdown  span .dropdown-toggle::after {  } */
.mega-desk-menu .navar-nav li .dropdown .dropdown-toggle::after { display: none!important; }
.mega-desk-menu .navar-nav li .dropdown span:hover .dropdown-toggle::after { color:#ea4c89}

.mega-desk-menu .navar-nav  li  .dropdown-menu-bx ul  { display: inline-flex; flex-direction: column; width: 12%; margin-bottom: 30px; margin-right: 20px;}
.mega-desk-menu .navar-nav  li .dropdown-menu-bx ul li { display: block; font-size: 18px; font-weight: 400; margin-bottom: 10px; color:#fff; border:none; text-align: left; }
.mega-desk-menu .navar-nav  li .dropdown-menu-bx ul  li a { display: block; font-size: 15px; display: inline-block; color: #a5a5a5; margin: 0px; padding-bottom: 4px!important; font-weight: 400; padding: 0px; border:0px }
.mob-menu { display: none;}



/* BANNER */
.banner { width: 100%; height: calc(100vh + 40px); padding: 80px 0 40px; position: relative; display: flex; flex-flow: row wrap; align-items: center; background: #fff; z-index: 1; }

.banner .video-box { position: absolute; left: 0; top: 0; width: 100%; height: 100%; aspect-ratio: 1.4; z-index: -1; background: #000; }
.banner .video-box video, .banner .video-box iframe { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; pointer-events: none; }

/* .banner .bottom-bg { position: absolute; width: 100%; top: 55%; z-index: 0; pointer-events: none; padding-top: 20px; display: flex; }
.banner .bottom-bg img { width: 100%; height: auto; object-position: top center; display: flex; } */

.banner .banner-content { padding: 40px 0; margin-bottom: 100px; }
.banner .title { font-size: 140px; font-weight: 300; color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 20px; margin-left: -10px; }
.banner .border-button { margin-right: 20px; }

.banner .slider { padding-bottom: 50px; }

.button.white { background: #fff; }
.button.white::before { background: #fff; }
.button.white::after { background: #fff; }
.button.white .text span { color: #fff; }
.button.white .box { background: #000; }
.button.white span::after { color: #000; }

.button.black { background: #000; border-color: #000; }
.button.black::before { background: #000; }
.button.black::after { background: #000; }
.button.black .text span { color: #fff; }
.button.black .box { background: #fff; }
.button.black span::after { color: #000; }


.swiper .swiper-pagination { bottom: 0; display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-start; }
.swiper .swiper-pagination .swiper-pagination-bullet { background: #D9D9D9; opacity: 0.5; width: 8px; height: 8px; margin: 0 8px; transition: var(--all-medium); position: relative; overflow: visible; }
.swiper .swiper-pagination .swiper-pagination-bullet::after { content: ''; width: 0; height: 1px; background: #555555; position: absolute; left: calc(100% + 10px); top: 50%; transition: var(--all-medium); }
.swiper .swiper-pagination .swiper-pagination-bullet-active { opacity: 1; width: 10px; height: 10px; margin-right: 160px; }
.swiper .swiper-pagination .swiper-pagination-bullet-active::after { width: 150px; }

.banner .img-box { position: absolute; top: 0; right: 0; height: 100vh; pointer-events: none; z-index: 1; }
.banner .img-box img { object-fit: cover; object-position: bottom right; }
.banner .img-box img:last-child { position: absolute; top: 0; left: 0; /* animation: disco 5s infinite; */ }

@keyframes disco {
0%, 5%, 10%, 15%, 20%, 25%, 30%, 35%, 40%, 45%, 50%, 55%, 60%, 100% {
  opacity: 1;
}
3%, 7%, 13%, 18%, 23%, 25%, 33%, 37%, 42%, 47%, 52%, 57%, 80% {
  opacity: 0.2;
}
}

/* WHO WE ARE */
.lighting-experts { width: 100%; padding: 150px 0; position: relative; display: flex; flex-flow: row wrap; align-items: center; align-content: center; overflow: hidden; }
.lighting-experts .section-title { color: #000; margin-bottom: 20px; }
.lighting-experts .section-subtitle { font-size: 76px; line-height: 1.1; font-weight: 600; color: #000; margin-bottom: 10px; }
.lighting-experts p { font-size: 18px; color: #333; font-weight: 400; line-height: 1.4; }

.lighting-experts .box { width: 100%; background: #fff; padding: 100px 100px 20px; clip-path: polygon(80px 0%, 100% 0%, 100% calc(100% - 80px), calc(100% - 80px) 100%, 0 100%, 0% 80px); transform: scale(1.2); transform-origin: top center; z-index: 1; }
.lighting-experts .box .card { background: none; border: none; border-radius: 0; flex-direction: column; align-items: center; margin-bottom: 80px; }
.lighting-experts .box .card .card-img { height: 80px; width: auto; margin-bottom: 15px; }
.lighting-experts .box .card .title { font-size: 100px; font-weight: 400; line-height: 1; font-family: 'HK Grotesk Wide'; color: #000; margin-bottom: 10px; }
.lighting-experts .box .card .title .counter-value { display: inline-flex; font-size: 100px; font-weight: 600; line-height: 1; font-family: 'HK Grotesk Wide'; color: #000; }
.lighting-experts .box .card .subtitle { font-size: 22px; font-weight: 400; color: #222; text-transform: uppercase; margin-bottom: 0; text-align: center; }
.lighting-experts .box .read-more span { color: #000; }
.lighting-experts .box .read-more path { stroke: #000; }

/* CORPORATE VIDEO */
.corporate-video { width: 100%; height: 100vh; z-index: 1; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; align-content: center; position: relative; z-index: 1; overflow: hidden; }
.corporate-video .section-title { position: absolute; top: 100px; z-index: 1; text-align: center; }
.corporate-video .video-box { width: 60vw; height: 60vh; overflow: hidden; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; align-content: center; z-index: 2; }
.corporate-video .video-box video, .corporate-video .video-box iframe { width: 100vw; height: 100vh; object-fit: cover; }

/* .corporate-video .bg { position: absolute; left: 0; top: 20%; width: 100%; height: 80%; z-index: -1; opacity: 1; display: flex; align-items: center; justify-content: center; opacity: 0.8; }
.corporate-video .bg img { width: 200%; height: auto; } */

.corporate-video .text-wrapper { width: 100%; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.corporate-video .text-wrapper .left,
.corporate-video .text-wrapper .right { min-width: 200vw; overflow: visible; display: flex; flex-flow: row; white-space: nowrap; font-size: 160px; color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #fff; font-family: 'HK Grotesk Wide'; opacity: 0.3; text-transform: uppercase; }
.corporate-video .text-wrapper .right { transform: translateX(-100vw); }

.cursor { position: fixed; top: 0; left: 0; width: 100px; height: 100px; display: block; pointer-events: none; opacity: 0; z-index: 9; }
.cursor__inner { fill: transparent; stroke:#ea4c89; stroke-width: 2px; }

/* WHAT WE PROVIDE */
.what-we-provide { padding: 20px 0px; height: auto; overflow: hidden; background: linear-gradient(to bottom,  #3d3364 0%,#5d4f9b 50%,#41376b 51%,#735ad4 100%); transition: background 0.5s ease; position: relative; }
.bg-colors-slider { position: absolute; top:0px; left: 0px; width: 100%; height: 100%; z-index: 0;}
.bg-colors-slider .bg-color { height: 100%; width: 100%;}
.bg-colors-slider .bg-color1 { background: linear-gradient(to bottom,  #3d3364 0%,#5d4f9b 50%,#41376b 51%,#735ad4 100%);}
.bg-colors-slider .bg-color2 { background: linear-gradient(rgb(73, 7, 47) 0%, rgb(205, 30, 131) 50%, rgb(120, 15, 76) 51%, rgb(196, 29, 126) 100%);}
.bg-colors-slider .bg-color3 { background: linear-gradient(rgb(146, 45, 147) 0%, rgb(210, 135, 219) 50%, rgb(146, 45, 147) 51%, rgb(210, 135, 219) 100%);}
.bg-colors-slider .bg-color4 { background: linear-gradient(rgb(47, 30, 101) 0%, rgb(78, 61, 210) 50%, rgb(47, 30, 101) 51%, rgb(78, 61, 210) 100%);}

.what-we-provide .left-box { height: 100vh; display: flex; flex-flow: row wrap; align-items: center; align-content: center; }

.product-space-wrapper { width: 100%; display: flex; flex-flow: row wrap; }
.product-space-wrapper .product-box-height { width: 100%; height: 100vh; }

/* product slider */

.product-wrapper { position: relative;}
.product-wrapper .product-slider .swiper-slide { opacity: 0!important}
.product-wrapper .product-slider .swiper-slide.swiper-slide-visible.swiper-slide-active { opacity: 1!important;}

.product-wrapper .swiper-button-next,
.product-wrapper .swiper-button-prev { z-index: 11; position: absolute; top:50%; transform: translateY(-50%); padding: 0; margin: 0; width: 55px; height: 55px; padding: 16px; border: 1px solid #fff; margin: 0 -0.5px;}
.product-wrapper .swiper-button-prev { clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 100% 100%, 0 100%, 0% 20px); left: 0px; }
.product-wrapper .swiper-button-next { clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0% 0%); right: 0px; }
.product-wrapper .swiper-button-next img,
.product-wrapper .swiper-button-prev img { opacity: 0.5; transition: var(--all-medium); }
.product-wrapper .swiper-button-next:hover img,
.product-wrapper .swiper-button-prev:hover img { opacity: 1; }
.product-wrapper .swiper-button-prev::before { content: ''; width: 2px; height: 30px; position: absolute; left: -3px; top: -10px; background: #fff; transform: rotate(45deg); transform-origin: bottom left; }
.product-wrapper .swiper-button-next::before { content: ''; width: 2px; height: 30px; position: absolute; right: -3px; bottom: -10px; background: #fff; transform: rotate(45deg); transform-origin: top right; }
.product-wrapper .swiper-button-next:after,
.product-wrapper .swiper-button-prev:after { display: none; }
.product-wrapper .product-slider .swiper-slide .img-bx{ width: 90%; margin: auto;}
.product-wrapper .product-slider .swiper-slide .img-bx img{ width: 100%;}

.product-wrapper .info { width: 100%; display: flex; flex-flow: column wrap; align-items: center; padding:0; margin-top: -20px; }
.product-wrapper .info .title { font-size: 90px; font-weight: 600; color: #fff; font-family: 'HK Grotesk Wide'; margin-bottom: 10px; position: relative; }
.product-wrapper .info .title::before { content: attr(data-title); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 160px; font-weight: 300; color: transparent; -webkit-text-stroke: 1px; -webkit-text-stroke-color: #fff; opacity: 0.3; white-space: nowrap; }


.swiper-pagination-progress { display: flex; flex-flow: row wrap; align-items: center; position: relative; margin-bottom: 50px; }
.swiper-pagination-progress .swiper-pagination { position: static; display: flex; width: 400px; height: 2px; margin-right: 50px; background: #555555; overflow: hidden; }
.swiper-pagination-progress .swiper-pagination .swiper-pagination-progressbar-fill { background: #FEFFFF; }
.swiper-pagination-progress .swiper-button-next,
.swiper-pagination-progress .swiper-button-prev { position: relative; padding: 0; margin: 0; width: 55px; height: 55px; padding: 16px; border: 1px solid #555555; margin: 0 -0.5px; left: 0; right: 0; }
.swiper-pagination-progress .swiper-button-prev { clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 100% 100%, 0 100%, 0% 20px); }
.swiper-pagination-progress .swiper-button-next { clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0% 0%); }
.swiper-pagination-progress .swiper-button-next img,
.swiper-pagination-progress .swiper-button-prev img { opacity: 0.5; transition: var(--all-medium); }
.swiper-pagination-progress .swiper-button-next:hover img,
.swiper-pagination-progress .swiper-button-prev:hover img { opacity: 1; }
.swiper-pagination-progress .swiper-button-prev::before { content: ''; width: 2px; height: 30px; position: absolute; left: -3px; top: -10px; background: #555555; transform: rotate(45deg); transform-origin: bottom left; }
.swiper-pagination-progress .swiper-button-next::before { content: ''; width: 2px; height: 30px; position: absolute; right: -3px; bottom: -10px; background: #555555; transform: rotate(45deg); transform-origin: top right; }
.swiper-pagination-progress .swiper-button-next:after,
.swiper-pagination-progress .swiper-button-prev:after { display: none; }

/* RECENT PROJECT */
.recent-projects { padding: 120px 0; }
.recent-projects .img-box { position: relative; padding-bottom: 45%; width: 100%; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.recent-projects .img-box img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.recent-projects .img-box .info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; }
.recent-projects .img-box .info .title { font-size: 36px; font-weight: 300; color: #fff; text-transform: uppercase; margin-bottom: 10px; line-height: 1; }
.recent-projects .img-box .info p { font-size: 18px; font-weight: 300; color: #fff; margin-bottom: 0; line-height: 1; display: none; }

.recent-projects .recent-projects-slider { padding-bottom: 40px; }
.recent-projects .swiper .swiper-pagination { justify-content: center; }
.recent-projects .recent-projects-slider .swiper-slide { opacity: 0!important}
.recent-projects .recent-projects-slider .swiper-slide.swiper-slide-visible.swiper-slide-active { opacity: 1!important;}

/* OUR CLIENTS */
.our-client { position: relative; padding: 120px 0; z-index: 1; }
.our-client .section-title { text-align: center; }
.our-client .swiper-wrapper { transition-timing-function: linear; }
.our-client .client-slider { border-top: 1px solid rgb(47 47 47 / 60%); border-bottom: 1px solid rgb(47 47 47 / 60%); }
.our-client .client-slider .img-box { border-right: 1px solid rgb(47 47 47 / 60%); }

/* TESTIMONIALS */
.testimonial-space { height: 200vh; width: 100%; pointer-events: none; }
.testimonial { background: #fff; padding: 120px 0; position: fixed; left: 0; top: 0; width: 100%; height: 100vh; display: flex; flex-flow: row wrap; align-items: center; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); opacity: 0; pointer-events: none; }
.testimonial .section-title { color: #000; }

.testimonial-slider { padding-bottom: 60px; }
.testimonial .client-logo { display: inline-flex; width: auto; height: 60px; margin-bottom: 40px; }
.testimonial .title { font-size: 28px; line-height: 1.2; font-weight: 300; font-family: 'HK Grotesk Wide'; color: #000; margin-bottom: 20px; }
.testimonial p { color: #333; margin-bottom: 40px; }
.testimonial .media { display: flex; flex-flow: row wrap; align-items: flex-end; }
.testimonial .media .media-img { width: 80px; height: 80px; margin-right: 20px; clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0% 15px); }
.testimonial .media .media-body { flex: 1; }
.testimonial .media .media-body .name { font-size: 24px; font-weight: 400; font-family: 'HK Grotesk Wide'; color: #000; margin-bottom: 0; }
.testimonial .media .media-body .designation { font-size: 18px; line-height: 1.4; font-weight: 300; color: #333; margin-bottom: 0; }

.testimonial .left-banner { position: absolute; top: 120px; left: 0; width: calc(100% / 12 * 6); height: calc(100% - 240px); display: flex; align-items: center; justify-content: center; z-index: 2; }
.testimonial .left-banner .img-box { height: 100%; width: 100%; position: relative; }
.testimonial .left-banner .img-box img { object-fit: cover; transform: scale(1); opacity: 0; }
.testimonial .left-banner .media { position: absolute; padding: 40px 0; max-width: 750px; flex-direction: column; align-items: flex-start; }
.testimonial .left-banner .media .media-img { width: 100px; height: 100px; margin-bottom: 30px; }
.testimonial .left-banner .media .media-img img { filter: invert(1); }
.testimonial .left-banner .media .media-body { font-size: 84px; font-weight: 600; color: #000; font-family: 'HK Grotesk Wide'; line-height: 1.1; text-transform: uppercase; }

/* ENQUIRY CTS */
.enquiry { padding: 120px 0; position: relative; }
.enquiry.work { padding: 0; position: relative; }
.enquiry #gradient-canvas { position: absolute; width: 100%; height: 100%; top: 0; left: 0; --gradient-color-1: #5b0083; --gradient-color-2: #a033ce; --gradient-color-3: #060E67; --gradient-color-4: #6648b7; z-index: 0; transition: var(--all-medium); pointer-events: none; }
.enquiry .img-box { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 80vh; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); overflow: hidden; }
.enquiry.work .img-box { min-height: 50vh; }
.enquiry .img-box .info { position: absolute; text-align: center; }
.enquiry .img-box .info .title { font-size: 80px; font-weight: 600; line-height: 1.1; font-family: 'HK Grotesk Wide'; text-transform: uppercase; color: #fff; letter-spacing: 5px; margin-bottom: 30px; }
.enquiry .img-box .info p { font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 20px; }
.enquiry .img-box .info .link-wrapper { display: flex; flex-flow: row wrap; align-items: center; justify-content: center; margin-bottom: 30px; }
.enquiry .img-box .info .link-wrapper a { padding: 0 10px; font-size: 20px; display: inline-flex; margin: 0 10px; text-decoration: underline; text-underline-offset: 4px; }

/* INSTAGRAM SOCIAL MEDIA */
.insta-feeds { padding: 80px 0 0; z-index: 2; position: relative; }
.insta-feeds .section-title { text-align: center; letter-spacing: 2px; }
.insta-feeds .section-title a { width: 16px; margin-right: 10px; }
.insta-feeds .section-title::before { display: none; }

.insta-feeds .list { display: grid; grid-template-columns: repeat(5, 1fr); }
.insta-feeds .list a { width: 100%; aspect-ratio: 1; }
.insta-feeds .list a img { object-fit: cover; }

/* FOOTER */
.footer-space { width: 100%; height: 705px; pointer-events: none; }
.footer { position: fixed; bottom: 0; left: 0; z-index: 0; padding: 80px 0 0; background: url(../images/krypton-footer-bg.webp) 0 0 no-repeat; background-size: 100%; opacity: 0; transform: translateY(50px); pointer-events: none; border-top: 1px solid #2F2F2F; }
.footer .left { width: 100%; height: 100%; display: flex; flex-flow: column wrap;  }
.footer .title { font-size: 76px; font-weight: 600; line-height: 1.1; font-family: 'HK Grotesk Wide'; text-transform: uppercase; margin-bottom: 30px; }
.footer .logo { width: 220px; margin-top: 80px; }
.footer .quick-links { display: inline-flex; flex-flow: row wrap; margin-bottom: 60px; width: 50%; }
.footer .quick-links li { width: 100%; }
.footer .quick-links li a { font-size: 20px; line-height: 1.2; font-weight: 400; color: #aaa; width: 100%; text-transform: capitalize; padding: 5px 0; position: relative; display: flex; align-items: center; transition: var(--all-medium); }
.footer .quick-links li a:hover { color: #fff; }
.footer .quick-links li a::after { content: ''; width: 16px; height: 16px; background: url(../images/icons/footer-link.svg) center center no-repeat; background-size: 100%; margin-left: 14px; transform: translate(-10px, 10px); opacity: 0; transition: var(--all-medium); }
.footer .quick-links li a:hover:after { transform: translate(0, 0); opacity: 1; }

.footer .social { display: inline-flex; flex-flow: row wrap; align-items: center; width: 50%; }
.footer .social li { margin-right: 10px; }
.footer .social li a { display: flex; width: 35px; height: 35px; padding: 6px; opacity: 0.7; transition: var(--all-medium); }
.footer .social li a:hover { opacity: 1; transform: scale(1.1); }

.footer .country { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 10px; font-family: 'Manrope', sans-serif; }
.footer address { font-size: 16px; font-weight: 300; color: #aaa; line-height: 1.5; margin-bottom: 15px; }
.footer .connect { font-size: 16px; font-weight: 300; color: #aaa; line-height: 1.5; }
.footer .connect a { font-size: 16px; font-weight: 300; color: #aaa; line-height: 1.5; transition: var(--all-medium); }
.footer .connect a:hover { color: #fff; }

/* COPY */
.copy { padding: 30px 0; border-top: 1px solid rgb(47 47 47 / 70%); margin-top: 150px; }
.copy p, .copy p span { font-size: 14px; font-weight: 400; color: #555555; margin-bottom: 0; }
.copy p a { font-size: 14px; font-weight: 400; color: #555555; margin-bottom: 0; transition: var(--all-medium); }
.copy p a:hover { color: #fff; font-weight: 400; }

.mob_wa { display: none; position: fixed; right: 60px; bottom: 40px; width: 55px; height: 55px; padding: 8px; border-radius: 50%; background: #25D366; z-index: 2; -webkit-animation: 1s infinite pulse-animation; animation: 1s infinite pulse-animation; }
.mob_wa img { width: 100%; -webkit-filter: invert(1); filter: invert(1); }
@-webkit-keyframes pulse-animation{0%{-webkit-box-shadow:0 0 0 0 rgb(37 211 102 / 100%);box-shadow:0 0 0 0 rgb(37 211 102 / 100%)} 100%{-webkit-box-shadow:0 0 0 20px rgb(37 211 102 / 0%);box-shadow:0 0 0 20px rgb(37 211 102 / 0%)}}
@keyframes pulse-animation{0%{-webkit-box-shadow:0 0 0 0 rgb(37 211 102 / 100%);box-shadow:0 0 0 0 rgb(37 211 102 / 100%)} 100%{-webkit-box-shadow:0 0 0 20px rgb(37 211 102 / 0%);box-shadow:0 0 0 20px rgb(37 211 102 / 0%)}}


/* INNER BANNER */
.inner-banner { position: relative; padding: 200px 0 180px; width: 100%; text-align: center; }
.inner-banner .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.inner-banner .bg img { object-fit: cover; object-position: 0 0; }
.inner-banner .title { font-size: 76px; font-weight: 500; line-height: 1; color: #fff; margin-bottom: 30px; text-transform: capitalize; }
.inner-banner p { font-size: 24px; font-weight: 200; line-height: 1.4; color: #fff; margin-bottom: 0; }

/* WHO WE ARE */
.who-we-are { position: relative; padding: 120px 0; background: #edecec; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); margin-top: -60px; overflow: hidden; }
.who-we-are .section-title { color: #010101; }
.who-we-are .section-subtitle { font-weight: 500; color: #010101; margin-bottom: 60px; }
.who-we-are .left { display: flex; width: 100%; clip-path: polygon(40px 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0% 40px); }
.who-we-are .right { display: flex; width: 100%; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); margin-bottom: 55px; }
.who-we-are .img-box img { object-fit: cover; }
.who-we-are p { font-size: 18px; font-weight: 400; line-height: 1.3; color: #333333; margin-bottom: 20px; }

/* TEAM */
.team { padding: 120px 0 140px; }
.team .section-subtitle { margin-bottom: 0; }
.team hr { margin: 40px 0; border-top: 1px solid #888; }

.team .team-list { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 50px 30px; }
.team .team-list li { transition: var(--all-medium); }
.team .team-list li.inactive { transform: scale(0.9); opacity: 0.5; }
.team .team-box { display: flex; flex-flow: column wrap; width: 100%; height: 100%; justify-content: space-between; }
.team .team-box .info { margin-bottom: 30px; }
.team .team-box .name { font-size: 24px; font-weight: 300; line-height: 1.2; color: #fff; font-family: 'HK Grotesk Wide'; margin-bottom: 5px; }
.team .team-box .designation { font-size: 18px; font-weight: 400; line-height: 1.2; color: #aaa; }

/* ABOUT US */
.about-us { display: flex; flex-flow: row wrap; overflow: hidden; }
.about-us .left { position: relative; display: inline-flex; flex-flow: row wrap; width: calc(100% / 12 * 5); background: #151515 url(../images/about/about-bg.webp) no-repeat; background-position: 0 100px; background-size: contain; padding: 100px 170px 100px 270px; clip-path: polygon(0 0, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px)); z-index: 1; }
.about-us .right { background: #edecec; position: relative; display: inline-flex; flex-flow: row wrap; align-content: center; width: calc(100% / 12 * 7); padding: 100px 150px 100px 100px; clip-path: polygon(0 0, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px)); }
.about-us .right .section-title, .about-us .right .section-subtitle { color: #010101; }
.about-us .right .section-subtitle { margin-bottom: 30px; }
.about-us .right p { font-size: 18px; font-weight: 400; line-height: 1.4; color: #333; margin-bottom: 20px; }
.about-us .right p:last-child { margin-bottom: 0; }
.commn-text { padding: 50px 0px 80px 0px;}
.commn-text p { color:#fff; font-size: 24px; text-align: center;}

.why-started { padding: 80px 0px;}
.why-started  .section-subtitle { margin-bottom: 30px; }


/* EXPERTISE */
.our-expertise { padding: 120px 0; overflow: hidden; }
.our-expertise .section-subtitle { font-weight: 400; margin-bottom: 60px; }
.our-expertise .divider { display: flex; width: 100%; height: 1px; background: linear-gradient(90deg, #FDFDFD 0%, #000 50.52%, #FDFDFD 100%); opacity: 0.5; }
.our-expertise .nav { display: flex; flex-flow: row wrap; width: 100%; }
.our-expertise .nav li { width: 100%; border-bottom: 1px solid rgb(203 203 203 / 20%); }
.our-expertise .nav li button { width: 100%; display: inline-flex; padding: 40px 0; font-size: 36px; font-weight: 300; color: #FEFFFF; opacity: 0.4; transition: var(--all-medium); }
.our-expertise .nav li button.active, .our-expertise .nav li button:hover { opacity: 1; }

.our-expertise .tab-content { margin: 40px 0 0; position: relative; }
.our-expertise .tab-content .img-box { position: relative; width: 100%; aspect-ratio: 2; overflow: hidden; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); border: 2px solid #808080; margin-bottom: 30px; }
.our-expertise .tab-content .img-box::before { content: ''; position: absolute; left: -4px; top: 60px; width: 86px; height: 2px; background: #808080; transform: rotate(-45deg); transform-origin: top left; }
.our-expertise .tab-content .img-box::after { content: ''; position: absolute; right: -2px; bottom: 60px; width: 88px; height: 2px; background: #808080; transform: rotate(-45deg); transform-origin: top right; }
.our-expertise .tab-content .img-box img { object-fit: cover; }
.our-expertise .tab-content p { font-size: 18px; font-weight: 300; line-height: 1.4; color: #aaa; margin-bottom: 0; }
.our-expertise .tab-content>.tab-pane { background: #010101; display: none; flex-flow: row wrap; width: 100%; }
.our-expertise .tab-content>.tab-pane.active { display: flex; }

.modal-backdrop { transition: var(--all-medium); }
.modal-backdrop.show { opacity: 0.85; }
.team-modal { --img-width: 45%; --info-padding: 60px; transition: opacity 0.5s; padding: 0 !important; }
.team-modal .modal.show .modal-dialog, .modal.fade .modal-dialog { transform: none !important; }
@media screen and (min-width: 1200px) {
  .team-modal .modal-lg { --bs-modal-width: 1065px; }
}
.team-modal .modal-content { clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.team-modal .modal-content .linkedin { position: absolute; right: var(--info-padding); width: 30px; top: 110px; z-index: 1; }
.team-modal .modal-body { position: relative; padding: 0; border-radius: 0; }
.team-modal .modal-body .btn-close { position: absolute; right: 16px; top: 16px; z-index: 1; }
.team-modal .modal-body .bio-wrapper { display: flex; flex-flow: row wrap; padding-left: var(--img-width); }
.team-modal .modal-body .bio-wrapper .img-box { position: absolute; left: 0; top: 0; width: var(--img-width); height: 100%; display: inline-flex; background: #000 linear-gradient(313deg, rgba(255, 255, 255, 0.23) -11.1%, rgba(2, 2, 2, 0.00) 53.53%, rgba(255, 255, 255, 0.50) 126.78%); }
.team-modal .modal-body .bio-wrapper .img-box img { object-position: bottom; }
.team-modal .modal-body .bio-wrapper .info { position: relative; display: inline-flex; flex-flow: row wrap; align-content: flex-start; align-items: flex-start; width: 100%; padding: var(--info-padding); }
.team-modal .modal-body .bio-wrapper .info .name { width: 100%; font-size: 46px; font-weight: 500; font-family: 'HK Grotesk Wide'; line-height: 1.2; margin-bottom: 0; color: #010101; }
.team-modal .modal-body .bio-wrapper .info .designation { width: 100%; font-size: 18px; font-weight: 500; line-height: 1.2; margin-bottom: 0; color: #555; }
.team-modal .modal-body .bio-wrapper .info hr { width: 100%; margin: 30px 0; border-color: rgb(0 0 0 / 50%); }
.team-modal .modal-body .bio-wrapper .info h6 { width: 100%; font-size: 24px; font-weight: 200; font-family: 'Manrope', sans-serif; line-height: 1.4; margin-bottom: 20px; color: #010101; }
.team-modal .modal-body .bio-wrapper .info p { width: 100%; font-size: 18px; font-weight: 300; line-height: 1.4; margin-bottom: 20px; color: #555; }
.team-modal .modal-body .bio-wrapper .info p:last-child { margin-bottom: 0; }

/* PRODUCTS PAGE */
.our-products { padding: 110px 0; margin-top: -60px; background: #010101; margin-top: -60px; z-index: 1; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.our-products .product-list { display: grid; grid-template-columns: repeat(1, 1fr); width: 100%; grid-gap: 90px; }
.our-products .product-list li .media { display: flex; flex-flow: row wrap; width: 100%; border: 2px solid #333333; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); position: relative; }
.our-products .product-list li .media::before { content: ''; position: absolute; left: -4px; top: 60px; width: 86px; height: 2px; background: #333333; transform: rotate(-45deg); transform-origin: top left; }
.our-products .product-list li .media::after { content: ''; position: absolute; right: -2px; bottom: 60px; width: 88px; height: 2px; background: #333333; transform: rotate(-45deg); transform-origin: top right; }

.our-products .product-list li .media .media-img { width: calc(100% / 12 * 5); position: relative; }
.our-products .product-list li .media > div:first-child { transform: translateX(-100px); opacity: 0; }
.our-products .product-list li .media > div:last-child { transform: translateX(100px); opacity: 0; }
.our-products .product-list li .media .media-img .prod-modal { position: absolute; bottom: 40px; left: 0; width: 100%; font-size: 100px; font-weight: 500; line-height: 1; color: transparent; font-family: 'HK Grotesk Wide'; text-align: center; -webkit-text-stroke: 2px #FFFFFF; }
.our-products .product-list li .media .media-img .prod-modal::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 140%; background: linear-gradient(0deg, #000 10%, rgb(0, 0, 0, 0) 100%); }

.our-products .product-list li .media .media-body { width: calc(100% / 12 * 7); padding: 80px; align-self: center; }
.our-products .product-list li .media .media-body .title { font-size: 90px; font-weight: 500; text-transform: uppercase; line-height: 1; font-family: 'HK Grotesk Wide'; margin-bottom: 20px; }
.our-products .product-list li .media .media-body .subtitle { font-size: 46px; font-weight: 400; line-height: 1.2; font-family: 'HK Grotesk Wide'; margin-bottom: 20px; }
.our-products .product-list li .media .media-body p { font-size: 18px; font-weight: 300; line-height: 1.5; color: #aaa; }

/* PROJECTS PAGE */
.projects { padding: 110px 0; margin-top: -60px; background: #010101; margin-top: -60px; z-index: 1; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.projects .project-list { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 80px 30px; margin-bottom: 120px; }
.projects .project-list li { display: none; }
.projects .project-list li.visible { display: flex; }
.projects .project-list .card { width: 100%; border: none; border-radius: 0; background: transparent; }
.projects .project-list .card .card-img { width: 100%; aspect-ratio: 1.7; clip-path: polygon(50px 0%, 100% 0%, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0% 50px); margin-bottom: 30px; overflow: hidden; }
.projects .project-list .card .card-img img { object-fit: cover; }
.projects .project-list .card .card-body { width: 100%; padding: 0; }
.projects .project-list .card .card-body .title { padding-right: 30px; display: inline-block; font-size: 36px; position: relative; font-weight: 300; text-transform: uppercase; line-height: 1.2; font-family: 'HK Grotesk Wide'; margin-bottom: 10px; }
.projects .project-list .card .card-body .title::after {
  content: '';
  position: absolute; top:50%; transform: translateY(-50%); right: 0px;
  width: 20px;
  height: 20px;
  background: url(../images/icons/footer-link.svg) center center no-repeat;
  background-size: 20px;
  margin-left: 14px;

  transition: var(--all-medium);
}
.projects .project-list .card .card-body p { font-size: 18px; font-weight: 200; text-transform: capitalize; line-height: 1.3; margin-bottom: 0; display: none; }

.pagination { display: flex; flex-flow: row wrap; justify-content: center; align-items: center; }
.pagination .page-item { margin: 0 8px; }
.pagination .page-item .page-link { background: transparent; border: none; font-size: 18px; font-weight: 300; line-height: 1; color: rgb(254 255 255 / 50%); text-transform: uppercase; padding: 12px 18px 12px 20px; border: 1px solid transparent; }
.pagination .page-item:first-child .page-link { font-weight: 400; color: #FEFFFF; letter-spacing: 4px; }
.pagination .page-item:last-child .page-link { font-weight: 400; color: #FEFFFF; letter-spacing: 4px;  }
.pagination .page-item.disabled .page-link { color: rgb(254 255 255 / 50%); }
.pagination .page-item.active .page-link { position: relative; clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 100% 100%, 0 100%, 0% 20px); border-color: #555; }
.pagination .page-item.active .page-link::before { content: ''; position: absolute; left: -3px; top: 20px; width: 30px; height: 2px; background: #333333; transform: rotate(-45deg); transform-origin: top left; }

/* PROJECT DETAILS PAGE */
.project-details { padding: 110px 0; margin-top: -60px; background: #010101; margin-top: -60px; z-index: 1; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.light-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 30px; margin-bottom: 60px; }
.light-gallery a { width: 100%; position: relative; }
.light-gallery a[data-iframe]:after { content: ''; display: flex; flex-flow: row wrap; width: 40px; height: 40px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: url(../images/icons/video-play.png) center center no-repeat; background-size: contain; }

/* CONTACT US */
/* ABOUT US */
.contact-us { position: relative; display: flex; flex-flow: row wrap; overflow: hidden; padding: 120px 0 50px; background: #010101; margin-top: -60px; z-index: 1; clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px); }
.contact-us .left { position: relative; display: inline-flex; flex-flow: row wrap; align-items: flex-start; align-content: flex-start; width: calc(100% / 12 * 5); background: #151515 url(../images/about/about-bg.webp) no-repeat; background-position: 0 100px; background-size: cover; padding: 100px; clip-path: polygon(0 0, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px)); z-index: 1; }
.contact-us .left .title { font-size: 64px; text-transform: uppercase; line-height: 1.2; margin-bottom: 30px; }
.contact-us .left address { font-size: 18px; line-height: 1.5; margin-bottom: 20px; width: 100%; }
.contact-us .left address p { margin-bottom: 0; }
.contact-us .left .info { display: flex; flex-flow: row wrap; align-items: center; width: 100%; }
.contact-us .left .info a { font-size: 18px; line-height: 1.4; margin: 0 10px; }
.contact-us .left .info a:first-child { margin-left: 0; }
.contact-us .right { background: #edecec; position: relative; display: inline-flex; flex-flow: row wrap; align-content: center; width: calc(100% / 12 * 7); padding: 100px 150px 100px 100px; clip-path: polygon(0 0, calc(100% - 60px) 0%, 100% 60px, 100% 100%, 60px 100%, 0% calc(100% - 60px)); }
.contact-us .right .container { max-width: 100%; }
.contact-us .right .section-title { color: #010101; margin-bottom: 30px; }
.contact-us .right .section-subtitle { margin-bottom: 30px; }
.contact-us .right p { font-size: 18px; font-weight: 400; line-height: 1.4; color: #333; margin-bottom: 20px; }
.contact-us .right p:last-child { margin-bottom: 0; }

.wpcf7-response-output { color: #fff; background: #ffb900; padding: 15px; font-weight: 400; }
.wpcf7 form .wpcf7-response-output { padding: 15px; clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0% 15px); }
.wpcf7-not-valid-tip { font-size: 12px; }
.wpcf7 form.sent .wpcf7-response-output { background: #46b450; color: #fff; }

/* product detail page  */
.inner-banner.product-detail { padding: 0px; height: auto;}
.inner-banner.product-detail .bg { position: relative;}

.inner-banner.product-detail .banner-content { position: absolute; right: 0px; bottom: 20px; width: 100%; text-align: right; }
/* .inner-banner.product-detail .banner-content .container { max-width: 100%; width: 100%;} */



.product-detail-intro { padding: 100px 0px 0px 0px;}
.product-detail-intro  .subtitle { font-size: 43px; font-weight: 400; line-height: 1.2; font-family: 'HK Grotesk Wide'; margin-bottom: 20px; }

.recent-projects.photo-gallery { padding: 80px 0px 80px 0px;}

.specification-sec { padding: 80px 0px; background: #e5e5e5; }
.specification-sec .section-title { color:#000; text-align: center;}
.specification-sec .specication-bx { display: block; padding-bottom: 20px; margin-bottom: 40px; position: relative;}
.specification-sec .specication-bx:after { content: ""; position: absolute; width: 85%; left: 0px; bottom: 0px; height: 1px; background:#d6d6d6 ;}
.specification-sec .specication-bx.border-none:after { display: none;}
.specification-sec .specication-bx.border-none{ padding-bottom: 0px; margin-bottom: 0px;}
.specification-sec .specication-bx h6 { font-size: 18px; color:#000; font-weight: 500; margin-bottom: 20px; text-transform: uppercase;}
.specification-sec .specication-bx ul li { font-size: 17px; line-height: 1.5; color:#000; margin-bottom: 12px; position: relative; padding-left: 15px;}
.specification-sec .specication-bx ul li:before { content: ""; position: absolute; top:10px; left:0px; width: 5px; height: 5px; border-radius: 50%;background: #000; }

.pdf-manual-sec { padding: 80px 0px; text-align: center;}
.pdf-manual-sec .pdf-grp { display: inline-block; text-align: center; width: 100%;}
.pdf-manual-sec .pdf-grp .dropdown { display: inline-block; margin: 5px 10px; width: 12%; }
.pdf-manual-sec .pdf-grp .dropdown button { background: #fff; width: 100%;     font-family: 'Manrope', sans-serif;  color:#000; border-radius: 0px; font-weight: 500; padding: 10px 20px; display: block; }
.pdf-manual-sec .pdf-grp .dropdown a { background: transparent; border:1px solid #eaeaea; color:#000; border-radius: 0px; padding: 10px 10px; display: block; }
.pdf-manual-sec .pdf-grp .dropdown .dropdown-menu { width: 100%; border-radius: 0px; background: #eaeaea; padding: 0px; }
.pdf-manual-sec .pdf-grp .dropdown .dropdown-menu li { border-bottom: 1px solid #dcdbdb;}
.pdf-manual-sec .pdf-grp .dropdown .dropdown-menu a { color:#000; text-align: center;     font-family: 'Manrope', sans-serif; }
.pdf-manual-sec .pdf-grp .dropdown .dropdown-menu .dropdown-item { font-size: 14px; }


.pdf-manual-sec .pdf-grp .dropdown .dropdown-menu { display: none; } 

/* product page  */
/* .commn-dropdown { position: relative; display: none;}
.commn-dropdown .dropdown-content { display: none; background: #000; padding: 10px 20px;  margin-top: 10px; border: 1px solid #333333 }
.commn-dropdown  .drop-link { width: 100%; border:1px solid #333333; padding: 10px 20px; }
.commn-dropdown .dropdown-content ul li a { color:#fff; font-size: 14px; display: block; padding: 12px 0px; border-bottom: 1px solid #333333; opacity: 0.7; transition: all 0.3s;}
.commn-dropdown .dropdown-content ul li a:hover { opacity: 1;}
.commn-dropdown .dropdown-content ul li:last-child a { border-bottom: none;}
.commn-dropdown .drop-link { padding-right: 20px; position: relative; font-size: 14px; font-family: 'HK Grotesk Wide';  text-transform: uppercase;}
.commn-dropdown .drop-link img { position: absolute; top:50%; transform: translateY(-50%); width: 12px; right: 15px; transition: all 0.3s; }
.commn-dropdown.active .drop-link img { transform: translateY(-50%) rotate(180deg);} */


/* specification section grid  */
.specification-list li:last-child .specication-bx { margin-bottom: 0px; border: none;}

  .specification-sec .cols-columns {
    display: flex;
    box-sizing: border-box;
  }
  
  .specification-sec .cols-columns > * {
    flex: 1;
    /* padding: 1rem; */
  }
  
  .specification-sec .cols-columns * {
    box-sizing: border-box;
  }
  
  .specification-sec .cols-columns img {
    display: block;
    width: 100%;
  }


