@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('./resource/fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./resource/fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./resource/fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./resource/fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./resource/fonts/Montserrat-Bold.ttf') format('truetype');
}

* {
	box-sizing: border-box;
	transition: background-color 0.3s ease;
}

:root {
	--orange: #eb561c;
	--text: #333333;
	--text-description: #5a5a5a;
	--grey-200: #323232;
	--grey-400: #2a2a2a;
	--grey-600: #262626;
	--grey-800: #222222;


	--lightgrey-200: #f2f2f2;
	--lightgrey-400: #d6d6d6;
	--lightgrey-600: #ececec;
	--lightgrey-800: #c5c5c5;



	--polygon-radius: 15px;
	--polygon: polygon(0 var(--polygon-radius), var(--polygon-radius) 0, 100% 0, 100% calc(100% - var(--polygon-radius)), calc(100% - var(--polygon-radius)) 100%, 0 100%);

	--polygon-radius-button: 7px;
	--polygon-button: polygon(0 7px, 7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);

}

html, body, a, input, textarea, select, ul, li, ol {
	font-family: Montserrat;
}

body, html {
	overflow-x: hidden;
	color: var(--text);
	font-weight: 500;
}

body {
	margin: 0;
}

svg {
	fill: currentColor;
}

a {
	text-decoration: none;
	transition: color 0.3s ease, background-color 0.3s ease;
	color: var(--orange);
	font-weight: 500;
}

a:hover {
	color: var(--grey-200);
}

:target {
  scroll-margin-top: 70px;
}

.body-dark a:not(.box):hover{
	color: var(--lightgrey-400);
}
nav ul li, nav ol li {
	list-style-type: none;
}

img {
	max-width: 100%;
}

.hide {
	display: none !important;
}

.container, .elementor > .elementor-element > *:not(.elementor-widget-header), .elementor > .elementor-element > .e-con-inner > *:not(.elementor-widget-header) {
	max-width: 85rem !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 0 1rem !important;
	width: 100% !important;
}

.btn {
	padding: 0.5rem 1rem;
	border-width: 0;
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
	transition: clip-path 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	clip-path: var(--polygon-button);
	line-height: normal;
	/* width: max-content; */
	background-color: var(--orange);
	align-items: center;
	display: flex;
	gap: 0.5rem;
	max-width: 100%;
	text-align: center;
	width: max-content;
}

.btn svg {
	max-height: 1.2rem !important;
	width: auto;
	transition: fill 0.3s ease;
	min-width: 1.1rem;
	width: 1.1rem;
}

body.body-dark .btn:hover {
	background-color: var(--lightgrey-200);
	color: var(--grey-200);
}

.strip .strip-buttons .btn:hover {
	background-color: var(--grey-200);
	color: white;
}

body.body-dark .btn.btn-light:hover .btn-light-content {
	background-color: var(--lightgrey-200) !important;
}

.btn.btn-center {
	margin: 0 auto;
}

.btn.btn-right {
	margin-left: auto;
}

.btn.btn-light {
	color: var(--orange);
	background-color: var(--orange);
	padding: 1px;
	border: 0;
}

.btn.btn-light .btn-light-content {
	background-color: white;
	clip-path: var(--polygon-button);
	padding: 0.5rem 1rem;
	transition: clip-path 0.3s ease, background-color 0.3s ease, color 0.3s ease;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

body.body-dark .btn.btn-light .btn-light-content {
	background-color: var(--grey-200);
}

body.body-dark .feature .btn.btn-light .btn-light-content {
	background-color: var(--grey-400);
}

.btn.btn-light:hover {
	background-color: var(--orange);
}

.btn.btn-light:hover .btn-light-content {
	background-color: var(--orange);
	/* color: white; */
	clip-path: none;
}

.btn.btn-small {
	font-size: 0.75rem;
	padding: 0.4rem 0.7rem;
}

.btn:hover {
	color: white;
	background-color: var(--grey-200);
	clip-path: polygon(0 0, 0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
	border-color: var(--grey-200);
}

.text-orange {
	color: var(--orange);
}

main {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	/* background-image: url('./resource/images/background6.svg');
	background-size: cover; */
	padding-bottom: 7rem;
	background-position: center top;
	background-repeat: no-repeat;
	margin-bottom: -3rem;
}

body.home main {
	margin-top: -3.5rem;
}

nav.nav-main, nav.nav-mobile {
	position: fixed;
	width: 100%;
	top: 1rem;
	z-index: 999;
	max-width: 100rem;
	margin: 0 auto;
	left: 0;
	right: 0;
	padding: 0 1rem;
}

nav.nav-main::after, nav.nav-mobile::after {
	content: '';
	visibility: hidden;
	transition: visibility 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: calc(100% - 2rem - var(--polygon-radius));
	height: calc(100% - var(--polygon-radius));
	z-index: -1;
	opacity: 0;
}

.switch::before {
	content: '';
	transition: visibility 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: calc(100% - var(--polygon-radius-button));
	height: calc(100% - var(--polygon-radius-button));
	z-index: -1;
	margin: auto;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.562);
}

nav.fixed::after {
	visibility: visible;
	opacity: 1;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.562);
}

nav.nav-main .container, nav.nav-mobile .container {
	transition: 0.3s ease background-color;
}

nav.fixed .nav-body {
	padding: 0.5rem 2rem;
}

nav.fixed .nav-background {
	background-color: var(--grey-200);
}

nav .nav-background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	clip-path: var(--polygon);
	width: calc(100% - 2rem);
	padding: 0.5rem 2rem;
}

nav.fixed .nav-logo img {
	width: 2.5rem;
}

nav.nav-main .nav-left {
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 600;
	color: white;
	display: flex;
	gap: 1rem;
	align-items: center;
}

nav.nav-main .nav-left a {
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
}

nav.nav-main .nav-logo img {
	transition: width 0.3s ease, height 0.3s ease;
	height: 3.25rem;
	display: block;
	width: auto;
}

nav.nav-main.fixed .nav-logo img {
	height: 2rem;
}

nav.nav-main .nav-body,
nav.nav-mobile .nav-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	transition: padding 0.3s ease, background-color 0.3s ease;
	z-index: 1;
	position: relative;
}

nav ul {
	margin: 0;
	display: flex;
	gap: 1rem;
	padding: 0;
}

nav ul:nth-child(1) {
	gap: 3rem;
}

nav .menu > li.menu-item-has-children > a::after {
	content: '';
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	width: 0.4rem;
	height: 0.4rem;
	transform: rotate(-45deg);
	margin-bottom: 1px;
}

nav.nav-mobile .menu > li.menu-item-has-children > a::after {
	position: absolute;
	right: 1rem;
}

nav ul.sub-menu li.menu-item-has-children > a::after {
	content: '';
	display: block;
	position: relative;
	border-left: 2px solid var(--grey-200);
	border-bottom: 2px solid var(--grey-200);
	width: 0.4rem;
	height: 0.4rem;
	transform: rotate(-135deg);
	margin-bottom: 1px;
	transition: border-color 0.3s ease;
}

body.body-dark nav ul.sub-menu li.menu-item-has-children:hover > a::after {
	border-color: white;
}

nav.nav-main .menu > li > a:before {
	content: '';
	background-color: var(--orange);
	height: 2px;
	width: 2rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.3rem;
	margin: 0 auto;
	transform: scale(0);
	transition: 0.3s ease transform;
}

nav.nav-main .menu > li > a:hover::before {
	transform: scale(1);
}

nav li {
	margin: 0;
	position: relative;
}

nav ul ul {
	transform-origin: top left;
	transform: scale(0);
	display: flex;
	position: absolute;
	min-width: 20rem;
	flex-direction: column;
	background-color: white;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.285);
	padding: 0;
	gap: 0;
	transition: transform 0.15s ease, opacity 0.15s ease;
	opacity: 0;
}

body.body-dark nav ul ul {
	background-color: var(--grey-200);
}

body.body-dark nav ul ul a {
	color: white;
}

body.body-dark nav ul ul li:hover > a {
	/* color: var(--grey-200); */
	/* background-color: var(--lightgrey-200); */
}

body.body-dark nav ul ul a::after {
	border-color: white !important;
}

body.body-dark nav ul ul li:hover > a::after {
	/* border-color: var(--grey-200) !important; */
}

nav.nav-mobile ul ul li:has(ul) > a::after {
	border-color: white !important;
	position: absolute !important;
	right: 1rem;
	transform: rotate(-45deg) !important;
}

nav ul ul li:has(ul):hover > a::after {
	border-color: white;
	transform: rotate(-45deg) translateX(3px) translateY(3px);
}

nav.nav-main ul ul a, nav.nav-mobile ul ul a {
	color: var(--text);
	padding: 0.6rem 1rem;
	display: block;
	transition: color 0.3s ease, background-color 0.3s ease;
	font-size: 0.95rem;
	position: relative;
	display: flex;
	justify-content: space-between;
}

body.body-dark nav ul ul a:hover {
	color: white;
}

nav ul ul li:hover > a {
	background-color: var(--orange);
	color: white !important;
}

nav ul ul li:hover > a::after {
	border-color: white !important;
}

nav li:hover > ul, nav li.active > ul {
	transform: scale(1);
	opacity: 1;
}
li ul li ul{
    left: 100%;
    top: 0;
    margin: 0;
}
nav.nav-main a, nav.nav-mobile a {
	color: white;
	position: relative;
	font-size: 1.15rem;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	cursor: pointer;
}

nav.nav-main a svg, nav.nav-mobile a svg {
	width: 1.5rem !important;
	height: auto !important;
}

nav .open-navbar a svg, nav .close-navbar a svg {
	width: 1.5rem;
}

nav a:hover {
	color: var(--lightgrey-200);
}

nav ul.menu > li > a {
	padding: 0.5rem 0;
}

.loading {
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999999999;
	flex-direction: column;
	gap: 1rem;
}

.loading video:not(.active) {
	display: none
}

.loading.active {
	visibility: visible;
	opacity: 1;
}

.loading img, .loading svg {
	width: 6%;
	min-width: 7rem;
}

.loading svg #rect11,
.loading svg #rect21,
.loading svg #rect31 {
	transform-origin: 300% center;
	transform-box: fill-box;
}

.loading svg #rect12,
.loading svg #rect22,
.loading svg #rect32 {
	transform-origin: 175% center;
	transform-box: fill-box;
}

.loading svg #rect11,
.loading svg #rect21,
.loading svg #rect31 {
	animation:spin 1.5s linear infinite;
}

.loading svg #rect12,
.loading svg #rect22,
.loading svg #rect32 {
	animation:spin 1s linear infinite;
}

@keyframes spin { 
    100% {
        transform:rotate(360deg); 
    } 
}

.loading svg g {
	position: relative;
}

body.body-dark .loading {
	background-color: var(--grey-200);
}

body.body-dark .loading span {
	color: var(--lightgrey-200);
}

body.body-dark .loading svg path {
	stroke: var(--lightgrey-200) !important;
}

body.body-dark .loading svg *:is(#rect11, #rect12, #rect21, #rect22, #rect31, #rect32) {
	fill: var(--grey-200) !important;
	stroke: var(--grey-200) !important;
}

header.header-main {
	background-image: url('./resource/images/headers/other.webp');
	background-position: center;
	box-shadow: 0px 12px 50px 20px #0000006b;
	min-height: max(30vh, 17rem);
	background-color: grey;
	display: flex;
	align-items: center;
	background-size: cover;
	position: relative;
	padding-bottom: 5rem;
	padding-top: 8rem;
}

@media (min-width: 800px) {
	body.home header.header-main {
		padding-left: 5rem;
	}
}

@media (max-width: 799px) {
	header.header-main .container {
		text-align: center;
		justify-content: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

header.header-main.header-top {
	background-position: center top;
}

header.header-main.header-bottom {
	background-position: center bottom;
}

header.header-main .header-description {
	max-width: min(61rem, 100%);
	line-height: 1.6;
	font-size: 1.15rem;
	color: #f2f2f2;
	font-weight: 400;
}

header.header-main.header-medium {
	min-height: max(60vh, 30rem);
}

header.header-main.header-big {
	min-height: 84vh;
}

header.header-main .header-sub {
	font-size: 2.5em;
}

.feature + .gallery {
	margin-top: 2rem;
}

header.header-main .categories {
	font-size: 1.2rem;
	display: block;
}

header.header-main .categories a {
	color: white;
}

header.header-main .categories a:hover {
	color: var(--lightgrey-800);
}

header.header-main video {
	width: 100%;
	height: calc(100% - 3rem);
	object-fit: cover;
	position: absolute;
	left: 0;
}

header.header-main::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.6;
}

header.header-main .container {
	z-index: 1;
	padding: 0 3rem !important;
}

header .container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: white;
	align-items: flex-start;
	font-size: 1.5;
	font-size: clamp(0.8rem, 2vw, 1rem);
}

header .header-sub-heading {
	font-size: 2.5em;
}

header.header-main h1 {
	margin: 0;
	color: white;
	font-weight: 500;
	font-size: 3em;
	line-height: 1.6;
	text-transform: uppercase;
}

header.header-main .highlighted {
	background-color: var(--orange);
	padding: 0.5rem 1.5rem;
	clip-path: var(--polygon);
	display: inline-block;
	line-height: normal;
}

h2 {
	font-size: 2.2rem;
	margin-top: 0;
	margin-bottom: 2rem;
	position: relative;
}

h2::after {
	content: '';
	position: absolute;
	/* background-image: url('./images/heading.svg'); */
	top: 100%;
	margin: 0 auto;
	left: 0;
	right: auto;
	width: 5rem;
	height: 0.15rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 0.5rem;
	background-color: var(--orange);
	border-radius: 100px;
}

body.home h2 {
	text-align: center;
	font-size: 2.5rem;;
}

body.home h2:after {
	right: 0;
	height: 0.2rem;
}

.box-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: -6rem;
}

.box-list > :first-child {
	clip-path: polygon(var(--polygon-radius) 0, 100% 0, 101% 100%, 0 100%, 0 var(--polygon-radius));
}

.box-list > :last-child {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--polygon-radius)), calc(100% - var(--polygon-radius)) 100%, 0 100%);
}

.box {
	background-color: var(--grey-200);
	padding: 1.5rem 2rem;
	font-weight: 600;
	position: relative;
	color: white;
	min-width: 17rem;
	transition: 0.3s ease transform;
	cursor: pointer;
}

body.body-dark .box:not(:nth-child(4)) {
	color: var(--lightgrey-600);
}

.box:hover {
	transform: translateY(-5px);
	color: white;
}

.box.box-grey-400 {
	background-color: #3c3c3c;
}

.box.box-grey-500 {
	background-color: #464646;
}

.box.box-orange {
	background-color: var(--orange);
}

.box .box-title {
	font-size: 1.5rem;
	font-weight: 400;
}

.box .box-subtitle {
	font-size: 2.2rem;
	font-weight: 600;
	margin-top: 5px;
}

.box .box-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.box svg {
	width: 2.5rem;
	fill: rgba(0, 0, 0, 0.4);
	max-height: 2rem;
}

.feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
	position: relative;
	align-self: flex-start;
}

.feature .feature-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

body.body-dark .feature.feature-text .feature-content-border {
	color: var(--lightgrey-400);
}

.feature.feature-text .feature-content-border *:is(h1, h2, h3, h4, h5, h6) {
	color: var(--text);
}

body.body-dark .feature.feature-text .feature-content-border *:is(h1, h2, h3, h4, h5, h6) {
	color: var(--lightgrey-600);
}

.feature.feature-text .feature-content-border > *:first-child {
	margin-top: 0;
}

.feature.feature-text .feature-content-border > *:last-child {
	margin-bottom: 0;
}

.feature .feature-content-border {
	display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.feature.feature-left {
	text-align: left;
}

.feature.feature-left .feature-content-border {
	align-items: flex-start;
}

.feature.feature-right .feature-content-border {
	align-items: flex-end;
}

.feature.feature-border,
.feature.feature-text {
	padding: 0;
}

.feature.feature-text > img ~ .feature-content .feature-content-border::before {
    content: '';
    width: 48%;
    display: block;
    float: left;
    height: 20rem;
    margin-right: 0.5rem;
}

.feature.feature-text > img {
    float: left;
    max-width: 50%;
    margin-right: 0.5rem;
    display: block;
    margin-bottom: 0.5rem;
    clip-path: var(--polygon);
    position: absolute;
    width: 50rem;
    height: 23rem;
    left: -2rem;
    top: -1.5rem;
    z-index: 3;
    object-fit: cover;
}

@media (max-width: 1000px) {
	.feature.feature-text > img {
		position: relative;
		width: 100%;
		left: 0;
		right: 0;
		top: 0;
		max-width: 100%;
	}

	.feature.feature-text > img ~ .feature-content .feature-content-border::before {
		display: none;
	}
}

@media (max-width: 1400px) {
	.feature.feature-text > img {
		left: 0;
	}

	.feature.feature-text > img ~ .feature-content .feature-content-border::before {
		margin-right: 3rem;
	}
}

.feature.feature-left .feature-body {
	align-items: flex-start;
	align-self: flex-start;
}

.feature.feature-right {
	text-align: right;
}

.feature.feature-right .feature-body {
	align-items: flex-end;
}

.feature.feature-horizontal {
	text-align: left;
}

.feature.feature-border:hover::after {
	box-shadow: 0 0 50px 0 #00000030;
}

.feature.feature-border::after {
	content: '';
	position: absolute;
	width: calc(100% - 1 * var(--polygon-radius) - 2rem);
	height: calc(100% - 1 * var(--polygon-radius));
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	transition: box-shadow 0.3s ease;
}

.feature.feature-horizontal .feature-content {
	z-index: 2;
	width: 100%;
}

.feature.feature-border .feature-content,
.feature.feature-text .feature-content {
	background-color: rgb(230, 230, 230);
	clip-path: var(--polygon);
	padding: 1px;
	z-index: 2;
	width: 100%;
}

.feature.feature-border .feature-content-border,
.feature.feature-text .feature-content-border {
	background-color: white;
	clip-path: var(--polygon);
	margin: auto;
	padding: 2rem;
}

.feature.feature-text .feature-content-border {
	display: block;
	width: 100%;
	text-align: left;
	color: var(--text-description);
	line-height: 1.6;
}

.feature.feature-small .feature-title,
.feature.feature-small .feature-icon {
	font-size: 1.2rem;
}

.feature.feature-small .feature-content-border {
	padding: 1.5rem;
}

.feature.feature-small .feature-icon svg {
	max-height: 1.75rem;
	width: max-content;
}

.feature.feature-small .feature-content-border {
	align-items: center;
	gap: 1rem;
}

.feature.feature-horizontal .feature-content-border {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	width: calc(100%);
	height: 100%;
	flex-direction: row;
}

.feature.feature-horizontal .feature-body {
	align-items: flex-start;
}

/* .feature:is(.feature-left, .feature-right) .feature-title {
	margin-bottom: 0.5rem;
	margin-top: -0.3rem;
} */

.feature .feature-icon svg {
	height: 4rem !important;
	fill: var(--orange);
	display: block;
	width: auto !important;
}

.feature .btn svg {
	fill: currentColor;
	aspect-ratio: 1;
}

.feature.feature-horizontal svg {
	width: 3.5rem;
	max-height: 3.5rem;
}

a.feature .feature-title {
	color: var(--text);
}

.feature.feature-horizontal .feature-icon {
	color: var(--orange);
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.feature .feature-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	align-self: center;
	max-width: 100%;
}

.feature .feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.feature .feature-description {
	white-space: pre-line;
}

.feature .feature-description, .card .card-description {
	color: var(--text-description);
	line-height: 1.6;
	margin-bottom: auto;
}

.feature-field-image .feature-title {
	max-width: 15rem;
	min-height: 4rem;
}

.feature-field-image .feature::before {
	content: '';
	width: 40%;
	height: 100%;
	bottom: 0;
	right: 0.5rem;
	position: absolute;
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 10;
	transition: background-size 0.3s ease;
	transform:scale(0.7);
	position: absolute;
	margin:-5px -2px -5px -4px;
	user-select:none;
	vertical-align:baseline;
	cursor:pointer;
	background-image: var(--image);
}

.feature-it .feature::before,
.feature-str .feature::before,
.feature-ele .feature::before {
	width: 50%;
	height: calc(100% + 5rem);
	bottom: 0;
	right: 0rem;
	background-size: min(12rem, 90%);
	background-repeat: no-repeat;
	background-position: center bottom;
	z-index: 10;
	transition: background-size 0.3s ease;
	transform: scale(1);
	background-image: none;
	margin: 0;
}

.feature-it .feature::before {
	background-image: url('./resource/images/fields/7-removed.png');
	transform: scaleX(-1);
}

.feature-ele .feature::before {
	background-image: url('./resource/images/fields/6-removed.png');
}

.feature-str .feature::before {
	background-image: url('./resource/images/fields/obrazek-removebg-preview.png');
	right: -1rem;
	width: 55%;
	transform: scale(-1, 1);
}

.feature-field-image .feature:hover::before {
	background-size: min(14rem, 100%);
}


.feature-field-image .feature-content-border{
	align-items: flex-start;
	padding-right: calc(40% + 2rem + 0.5rem);
}

.feature-field-image .feature-body {
	align-items: flex-start;
	text-align: left;
}

.feature-building h3 {
	font-size: 2.5rem;
    text-transform: uppercase;
    max-width: 20rem;
}

.feature-building .btn {
	padding: 0.7rem 1.8rem;
    font-size: 1.1rem;
}

.feature-building .feature-content-border {
	min-height: 15rem;
	padding: 4rem !important;
}

.feature-building .feature-content-border::before {
	content: '';
    width: 45rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(./images/building.png);
    mix-blend-mode: multiply;
    opacity: 0.3;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 80px 0px 40px -20px white inset;
}

@media (max-width: 25rem) {
	.feature-it .feature::before, .feature-str .feature::before, .feature-ele .feature::before {
		display: none !important;
	}
}

.strip {
	position: relative;
}

.strip::before {
	content: '';
	width: calc(100% - var(--polygon-radius));
	height: calc(100% - var(--polygon-radius));
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	box-shadow: none;
	transition: box-shadow 0.3s ease;
}

.strip:hover::before {
	box-shadow: 0 0 50px 0 #00000046;
}

.strip .strip-content {
	width: 100%;
	color: white;
	font-weight: 500;
	font-size: 1.3rem;
	padding: 1.5rem 2rem;
	background-color: var(--orange);
	text-align: center;
	clip-path: var(--polygon);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	text-transform: uppercase;
	flex-wrap: wrap;
	text-align: left;
}

.elementor-widget-strip {
	margin-top: -5rem !important;
}

.strip .strip-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.strip .strip-buttons a:not(:hover) {
	background-color: #0000002b;
}

.strip .strip-buttons a {
	font-size: 1rem;
	padding: 0.7rem 1.2rem;
}

.strip h3 {
	margin: 0;
	font-weight: 500;
	font-size: 1.5rem;
}

.card {
	position: relative;
}

.card .card-body {
	position: relative;
	margin-top: 1rem;
	margin-left: 8rem;
}

.card.card-right .card-body {
	margin-left: 0;
	margin-right: 8rem;
}

.card .card-body::after {
	content: '';
	width: calc(100% - 2 * var(--polygon-radius));
	height: calc(100% - 2 * var(--polygon-radius));
	/* top: 0; */
	right: var(--polygon-radius);
	bottom: var(--polygon-radius);
	/* left: 0; */
	position: absolute;
	margin: auto;
	z-index: 1;
	/* visibility: hidden; */
	z-index: -1;
	transition: box-shadow 0.3s ease;
}

.card.card-right::after {
	right: auto;
	left: var(--polygon-radius);
}

.card:hover .card-body::after {
	box-shadow: 0 0 50px 0 #00000030;
} 

.card .card-content {
	background-color: #e6e6e6;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: clip-path;
	transform: translateZ(0);
	clip-path: var(--polygon);
	position: relative;
	z-index: 2;
}

.card .card-border {
	background-color: white;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	clip-path: var(--polygon);
	display: grid;
	overflow: hidden;
}

.card .card-label {
	height: auto;
	top: 0;
	right: 0;
	position: absolute;
	background-color: #ffb923;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
	padding: 0.3rem 0.8rem;
}

.card .card-label.card-label-red {
	background-color: #ff3044;
}

.card .card-label.card-label-blue {
	background-color: #016dfd;
}

.card .card-label span {
	top: 0.5rem;
	right: 0.5rem;
	font-weight: 500;
	font-size: 1.3rem;
	color: white;
}

.card:hover .image img, .image:hover .image-content img, .feature:hover .image img {
	transform: scale(1.1);
}

.card .card-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lightgrey-200);
	z-index: 0;
	max-height: 100%;
}

.card .card-placeholder svg {
	width: 10rem;
	max-height: 9rem;
	fill: #00000010;
}

.card .card-body .card-body-border > *:not(.card-placeholder) {
	z-index: 1;
}

.post-image img {
	height: 30rem;
	max-height: 30rem;
	width: auto;
}

@media (min-width: 700px) {
	.card.card-horizontal .card-border {
		display: flex;
	}
	
	.card.card-horizontal .image {
		min-width: 300px;
		max-width: 300px;
		/* clip-path: polygon(0 0, 100% 0, calc(100% - var(--polygon-radius)) var(--polygon-radius), calc(100% - var(--polygon-radius)) calc(100% - var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%); */
		z-index: 9;
	}
	
	.card.card-horizontal .card-body {
		/* width: auto; */
		/* height: 100%; */
		text-align: left;
		/* align-items: flex-start; */
		/* margin-left: -1.2rem; */
		/* background-color: white; */
		margin-top: 0;
		z-index: 9;
		/* padding: 0; */
	}
}

.card .card-body-content {
	display: flex;
	/* height: calc(100% - 10rem); */
	/* position: relative; */
	/* margin-top: -2.5rem; */
	position: relative;
	flex-direction: column;
	/* padding: 2rem; */
	background-color: rgb(230 230 230);
	align-items: flex-start;
	gap: 1rem;
	clip-path: polygon(0 calc(2 * var(--polygon-radius)), calc(2 * var(--polygon-radius)) 0, 100% 0, 100% calc(100% - 2 * var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%);
	/* margin-top: 3rem; */
	/* margin-left: -16rem; */
	padding-top: 1px;
	padding-bottom: 1px;
	width: 100%;
}

.card.card-right .card-body-content {
	margin-right: -16rem;
	margin-left: 0;
}

.card .card-body-content::after {
    /* content: ''; */
    position: absolute;
    width: calc(100% - var(--polygon-radius));
    height: calc(100% - 3 *var(--polygon-radius));
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0px -20px 20px 20px #00000050;
    z-index: 1;
    /* margin-left: -0.5rem; */
    visibility: hidden;
}

.card .card-body .card-body-border {
	clip-path: polygon(0 calc(2 * var(--polygon-radius)), calc(2 * var(--polygon-radius)) 0, 100% 0, 100% calc(100% - 2 * var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%);
	height: 100%;
	width: calc(100% - 2px);
	background-color: white;
	z-index: 5;
	padding: 2rem 3rem;
	display: flex;
	flex-direction: column;
	/* align-items: flex-start; */
	gap: 1rem;
	/* padding-top: 3rem; */
	position: relative;
	/* text-align: left; */
	margin: auto;
	padding-left: 18rem;
	align-items: flex-start;
	text-align: left;
}

.card.card-right .card-body .card-body-border {
	padding-left: 3rem;
	padding-right: 18rem;
	text-align: right;
	align-items: flex-end;
}

@media (min-width: 700px) {
	.card.card-horizontal .card-body .card-body-border {
		clip-path: none;
		align-items: flex-start;
		padding: 2rem;
	}
}

.card .card-title {
	font-size: 1.5rem;
	font-weight: 700;
}


.card .card-image {
	position: absolute;
	top: 0;
	left: 0;
}

.card.card-right .card-image {
	left: auto;
	right: 0;
}

.card .card-image .image {
	min-height: auto;
	z-index: 10;
	height: 14.5rem;
}

.card .card-image .image .image-content {
	width: min(24rem, calc(100vw - 3rem));
	min-height: 14rem;
	min-width: 100%;
}

.items-cneter {
	align-items: center;
}


.list {
	display: grid !important;
	gap: 2rem !important;
}

.list-two-columns {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 30rem), 1fr)) !important;
}

.list-three-columns {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr)) !important;
}

.list-five-columns {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)) !important;
}

.gap-2 {
	gap: 2rem !important;
}

.gap-3 {
	gap: 3rem !important;
}

.gap-4 {
	gap: 4rem !important;
}

.panel {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	margin: auto 0;
	z-index: 9;
	height: max-content;
	/* transform: translateY(50%); */
	transition: bottom 0.3s ease, transform 0.3s ease, left 0.3s ease;
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.panel:not(.panel-small) {
	bottom: 50% !important;
	transform: translateY(50%);
	left: 1rem !important;
}

.panel::after {
	/* content: ''; */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: calc(100% - var(--polygon-radius));
	height: calc(100% - var(--polygon-radius));
	/* box-shadow: 0 0 20px 5px #00000069; */
	z-index: -1;
}

.panel .panel-body {
	display: flex;
	flex-direction: column;
	/* clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--polygon-radius)), calc(100% - var(--polygon-radius)) 100%, 0 100%); */
	align-items: flex-start;
	transform: scale(1);
	transform-origin: bottom center;
	transition: transform 0.3s ease, height 0.3s ease, opacity 0.3s ease;
	/* height: auto; */
	opacity: 1;
	bottom: 0;
	position: relative;
}


.panel-small .panel-body {
	bottom: 4rem;
	position: absolute;
}
.panel .panel-button-content {
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	color: white;
	display: flex;
	position: relative;
	overflow: hidden;
}

.panel .panel-button-menu svg {
	position: absolute;
}

.panel .panel-button.panel-button-menu .panel-button-icon {
	clip-path: var(--polygon-button);
}

.panel .panel-button {
	position: relative;
}

.panel .panel-button:hover {
	cursor: pointer;
}

.panel .panel-button:hover .panel-button-icon {
	clip-path: polygon(0 0, 0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}

.panel .panel-button-menu::after, .panel .panel-body::after {
	content: '';
	position: absolute;
	width: calc(51px - 7px);
	height: calc(100% - 7px);
	top: 0;
	left: calc(7px/2);
	bottom: 0;
	margin: auto;
	box-shadow: 0px 0px 20px 0px #00000099;
	z-index: -1;
}

.panel .panel-body > *:first-child .panel-button-content {
	clip-path: polygon(7px 0, 100% 0, 100% 100%, 0 100%, 0 7px);
}

.panel .panel-body > *:last-child .panel-button-content {
	margin-top: -1px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
}

.panel .panel-button span {
	transition: width 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
	width: 8rem;
	display: block;
	/* width: 0; */
	text-overflow: inherit;
	/* overflow: hidden; */
	/* height: 1.2rem; */
	padding: 1rem;
	padding-left: 0;
	padding-right: 0;
	white-space: nowrap;
	/* background-color: var(--grey-200); */
	/* position: relative; */
	/* z-index: 1; */
	/* left: 0; */
	/* padding-left: 0 !important; */
	background-color: var(--orange);
	/* min-width: 0; */
	/* max-width: 0; */
	width: 0;
}

.panel .panel-button:hover svg {
	background-color: var(--grey-200);
	/* transform: none; */
	/* padding-left: 3rem; */
	background-color: transparent;
}

.panel .panel-button:hover .panel-button-icon {
	/* padding-left: 100%; */
	background-color: var(--grey-200);
}

.panel .panel-button:hover span {
	padding-right: 1rem;
	/* margin-left: 1rem; */
	width: max-content;
	position: relative;
	width: 8rem;
	background-color: var(--grey-200);
	padding-left: 1rem;
	/* max-width: 100%; */
}

.panel .panel-button .panel-button-icon svg {
	fill: white;
	width: 1.25rem;
	height: 1.25rem;
	/* padding: 1rem; */
	min-width: 3.2rem;
	transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	z-index: 2;
	display: block;
	transform: none;
	opacity: 1;
}

.panel .panel-button.draggable svg.active {
	opacity: 0;
	transform: scale(0);
}

.panel .panel-button.draggable svg:not(.active) {
	opacity: 1;
	transform: scale(1);
}

.panel:not(.panel-small) .panel-button-menu {
	display: none;
}

.panel .panel-button-icon {
	background-color: var(--orange);
	width: 3.2rem;
	height: 3.2rem;
	/* clip-path: var(--polygon-button); */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: clip-path 0.3s ease, background-color 0.3s ease;
}
.panel.panel-open-left .panel-body {
	right: 0;
    align-items: flex-end;
}

.panel.panel-open-left .panel-body::after {
	left: auto;
	right: 7px;
}

.panel.panel-open-left .panel-button-content {
	flex-direction: row-reverse;
}

.panel .panel-button-menu svg:not(.active) {
	transform: scale(0);
	opacity: 0
}

.panel.panel-small {
	transform: none;
}

.panel:not(.panel-small) .panel-body {
	right: auto !important;
	align-items: flex-start !important;
}

.panel:not(.panel-small) .panel-button-content {
	flex-direction: row !important;
}

.panel.panel-small .panel-body:not(.active) {
	/* height: 0; */
	/* display: none; */
	transform: scale(0);
	opacity: 0;
}

.panel:not(.panel-small) .panel-body::after {
	right: auto !important;
	left: calc(7px / 2) !important;
}

.panel.panel-open-bottom .panel-body {
	bottom: auto;
	top: 4rem;
	transform-origin: top center;
}


footer {
	color: var(--lightgrey-200);
	position: relative;
}

footer .strip {
	/* position: absolute; */
	/* top: -2rem; */
	left: 0;
	right: 0;
	z-index: 2;
	width: max-content;
	margin: 0 auto;
	width: min(80rem, 100%);
	max-width: 80rem;
	margin-bottom: -2rem;
}

footer .strip .strip-content {
	padding: 1rem 2rem;
}

footer .strip h3 {
	font-size: 1.2rem;
}

footer .strip .btn {
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
}

footer .strip .btn svg {
	height: 0.9rem !important;
}

footer .footer-main {
	background-color: var(--grey-200);
	clip-path: var(--polygon);
	font-weight: 400;
}

footer .footer-copyright {
	background-color: #232323;
	padding: 1rem 0;
	text-align: center;
	font-family: Consolas;
	font-size: 0.9rem;
	line-height: 1.4;
	clip-path: var(--polygon);
	padding-top: 2rem;
	margin-top: -2rem;
}

footer .footer-body {
	/* padding: 2rem 0; */
	display: flex;
	/* align-items: stretch; */
	flex-wrap: wrap;
	/* padding-bottom: 3rem; */
}

footer .footer-body > * {
	padding: 4rem 3rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
}

body.body-dark footer .footer-social svg {
	fill:white;
}

footer .container {
	padding: 0 !important;
}

footer .footer-body .footer-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--grey-600);
}

footer .footer-menu {
	background-color: var(--grey-400);
}

footer .footer-body .footer-image, footer .footer-body .footer-text {
	flex-grow: 1;
}

footer h4 {
	margin-top: 0;
	font-size: 1.4rem;
}

footer .menu {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 1rem;
}

footer .menu li {
	list-style-type: none;
}

footer .menu li a {
	color: var(--lightgrey-200);
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-weight: 400;
}

footer .menu li a:hover {
	color: var(--orange);
}

footer .menu li a svg {
	width: 1rem;
	height: auto;
}

.switch {
	position: absolute;
	left: 1rem;
	top: 99%;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.switch .switch-body {
	background-color: var(--grey-200);
	padding: 0.4rem 0.7rem;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--polygon-radius-button)), calc(100% - var(--polygon-radius-button)) 100%, 0 100%);
}


.nav-main.fixed .switch {
	opacity: 1;
}
.radio label {
	width: 2.2rem;
	height: 1rem;
	background-color: var(--grey-400);
	display: block;
	position: relative;
	cursor: pointer;
}

.radio input {
	display: none;
}

.radio label::after {
	content: '';
	width: 0.6rem;
	height: 0.6rem;
	position: absolute;
	top: 0;
	left: 0.25rem;
	bottom: 0;
	margin: auto 0;
	margin-left: 0;
	margin-right: auto;
	background-color: white;
	transition: transform 0.3s ease;
}

.radio input:checked + label::after {
	transform: translateX(1.1rem);
}

body.body-dark {
	background-color: var(--grey-200);
	color: var(--lightgrey-400);
}

body.body-dark .block {
	background-color: var(--grey-600);
}

body.body-dark .card.card-horizontal .card-image .card-date {
	background-color: var(--grey-400);
}

body.body-dark .feature {
	color: var(--lightgrey-600);
}

body.body-dark footer .footer-main {
	background-color: var(--grey-400);
}

body.body-dark footer .footer-menu {
	background-color: var(--grey-600);
}

body.body-dark footer .footer-body .footer-image {
	background-color: var(--grey-800);
}


body.body-dark footer .footer-copyright {
	background-color: var(--grey-400);
}

body.body-dark .box:not(:nth-child(4)) {
	background-color: var(--grey-800) !important;
}

body.body-dark .box:first-child + .box:not(.box-orange) {
	background-color: var(--grey-600) !important;
}

body.body-dark .box:first-child + .box + .box:not(.box-orange) {
	background-color: var(--grey-400) !important;
}

body.body-dark .card .card-body .card-body-content,
body.body-dark .feature.feature-border .feature-content,
body.body-dark .feature.feature-text .feature-content,
body.body.dark .section {
	background-color: var(--grey-600);
}

body.body-dark .card .card-body .card-body-border,
body.body-dark .feature.feature-border .feature-content-border,
body.body-dark .feature.feature-text .feature-content-border,
body.body.dark .section .e-con-inner {
	background-color: var(--grey-400);
}

body.body-dark .card .card-title,
body.body-dark .feature .feature-title,
body.body-dark h1,
body.body-dark h2,
body.body-dark h3,
body.body-dark h4,
body.body-dark h5,
body.body-dark h6 {
	color: var(--lightgrey-600);
}

body.body-dark .card .card-description,
body.body-dark .feature .feature-description{
	color: var(--lightgrey-400);
}

body.body-dark ul li, body.body-dark p {
	color: var(--lightgrey-400);
}

.cookie-stripe {
    background: linear-gradient(135deg, #00000062, #00000031);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%);
    width: calc(100% - 1rem);
    max-width: 1240px;
    min-height: 80px;
    padding: .5rem 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 99999;
    clip-path: var(--polygon);
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-stripe.active {
	display: flex;
	width: calc(100% - 36px);
	bottom: 1rem;
}

.cookie-stripe .cookie-stripe-text {
    display: flex;
    align-items: center;
    gap: 1rem;
	font-size: 1.1rem;
	color: white;
}

.cookie-stripe .cookie-stripe-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-popup.active {
    display: flex;
}

.cookie-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    justify-content: center;
    top: 0;
    background-color: #0000007d;
    z-index: 9999999;
    align-items: center;
}

.cookie-popup .cookie-popup-content {
    max-width: 40rem;
    background-color: #fff;
	clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.cookie-popup .cookie-popup-content .cookie-popup-head {
    background-color: var(--grey-200);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: white;
    z-index: -1;
    position: relative;
    font-size: 1.2rem;
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.cookie-popup .cookie-popup-content .cookie-popup-body {
    z-index: 999;
    position: relative;
    background-color: white;
    padding: 1.5rem;
}

.cookie-popup .cookie-popup-content .cookie-panel {
    display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item {
    display: grid;
    grid-template-areas:
        "name switch"
        "description switch";
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-name {
    grid-area: name;
    font-size: 18px;
    font-weight: 600;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-description {
    grid-area: description;
    font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-description);
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch {
    grid-area: switch;
    cursor: pointer;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch input:checked+.cookie-switch-square {
    background-color: green;
}
.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch .cookie-switch-square {
    width: 40px;
    height: 20px;
    position: relative;
    background-color: red;
    transition: background-color .3s ease;
    box-shadow: 0 0 7px 1px #00000054 inset;
    display: flex;
    align-items: center;
    border-radius: 100px;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch input:checked+.cookie-switch-square:before {
    left: 22px;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch .cookie-switch-square:before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fff;
    left: 3px;
    top: 2px;
    border-radius: 100%;
    transition: left .3s ease;
    display: block;
    position: absolute;
    border: 1px solid #c9c9c9;
}

.cookie-popup .cookie-popup-content .cookie-panel .cookie-item .cookie-switch input {
    display: none;
}

.trophy-layout {
	display: grid;
	/* gap: 5rem; */
	/* width: 100%; */
	flex-wrap: wrap;
	grid-template-areas:
		"one trophy four"
		"two trophy five"
		"three trophy six";
	column-gap: 5rem;
	grid-template-columns: 1fr 11rem 1fr;
}

.trophy-layout .feature-position-1 {
	grid-area: one;
}

.trophy-layout .feature-position-2 {
	grid-area: two;
}

.trophy-layout .feature-position-3 {
	grid-area: three;
}

.trophy-layout .feature-position-4 {
	grid-area: four;
}

.trophy-layout .feature-position-5 {
	grid-area: five;
}

.trophy-layout .feature-position-6 {
	grid-area: six;
}

.trophy-layout .trophy {
	grid-area: trophy;
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	/* justify-content: center; */
	align-items: center;
}

.trophy-layout .trophy .trophy-content {
	margin-top: calc(12rem - 50%);
	position: relative;
}

.trophy-layout .trophy-content .trophy-image {
	width: 10rem;
	height: 10rem;
}

.trophy-layout .trophy .trophy-content svg:not(.trophy-image) {
	position: absolute;
	width: 7rem;
	height: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	fill: white;
}

.trophy-layout .feature {
	height: 10rem;
}

.trophy-layout .trophy .btn {
	position: absolute;
	bottom: 2rem;
	width: max-content;
}

.trophy-layout .trophy .trophy-lines {
	content: '';
	position: absolute;
	transform: scale(3.4);
	z-index: -1;
	margin-top: 9rem;
}

@media (max-width: 1000px) {
	.trophy-layout {
		gap: 2rem;
	}
	.trophy-layout .feature {
		height: auto;
	}
	.trophy-layout .trophy .trophy-lines {
		display: none;
	}

	.trophy-layout .trophy {
		justify-content: center;
	}

	.trophy-layout .trophy .trophy-image {
		margin: 0;
		justify-self: center;
	}
}

@media (max-width: 700px) {
	.trophy-layout {
		display: flex;
		flex-direction: column;
	}

	.trophy-layout .feature .feature-body {
		align-items: flex-start;
	}

	.trophy-layout .feature .feature-description {
		text-align: left;
	}

	.trophy-layout .trophy .btn {
		position: relative;
		bottom: auto;
		margin-top: 2rem;
	}

	.trophy-layout .trophy .trophy-content {
		margin: 0;
	}
}

.gallery {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
}

.gallery a {
	height: 100%;
}

.gallery img {
	height: 100%;
	object-fit: cover;
}

.block-list {
	clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
	/* grid-template-rows: auto auto; */
	gap: 20px;
}

.block-list > *:first-child {
	margin: 0;
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	background-color: var(--grey-200);
	/* clip-path: polygon(var(--polygon-radius) 0, 100% 0, calc(100% - var(--polygon-radius)) var(--polygon-radius), calc(100% - var(--polygon-radius)) calc(100% - var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%, 0 var(--polygon-radius)); */
	/* margin-right: -2rem; */
	z-index: 9;
	color: white;
	position: relative;
	font-size: 1.5rem;
}

.block-list .block-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.4;
}

.block {
	text-align: center;
	background-color: var(--orange);
	clip-path: var(--polygon);
	/* padding: 1.5rem 2rem; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* margin: 1rem; */
	/* background-color: #e9e9e9; */
	color: white;
	/* border: 1px solid #e6e6e6; */
	padding: 1.5rem 2rem;
	position: relative;
	background-size: 120%;
	background-position: center;
	transition: background-size 0.3s ease;
}

.block:hover {
	background-size: 130%;
}

.block .block-number {
	font-weight: 600;
	font-size: 3.5em;
	z-index: 1;
}

.block .block-title {
	font-size: 1.2em;
	z-index: 1;
}

@media (max-width: 500px) {
	.box-list .box {
		width: 100%;
	}
}

.scroll-top {
	color: white;
	padding: 9px;
	background-color: var(--orange);
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
}

.scroll-top:hover {
	color: white;
}

.image {
	position: relative;
	/* min-height: 15rem; */
	display: block;
	cursor: pointer;
}

.image .image-content {
	position: relative;
	clip-path: var(--polygon);
	height: 100%;
	display: flex;
	align-items: flex-end;
	z-index: 1;
	overflow: hidden;
	text-align: left;
}

.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	transition: transform 0.3s ease;
}

.image .image-content .image-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background-color: var(--orange);
	color: white;
	padding: 0.2rem 0.6rem;
	font-weight: 500;
	/* clip-path: polygon(0 5px, 5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%); */
	/* letter-spacing: 1px; */
	z-index: 1;
}

.image .image-content .image-label.image-label-small {
	font-size: 0.9rem;
}


.image .image-content .image-label.image-label-right {
	left: auto;
	right: 1rem;	
}

.image .image-content::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background: linear-gradient(0deg, #141414 0, rgba(0, 49, 102, 0) 100%);
	transition: height 0.3s ease;
	display: none;
}

.card .image .image-content::after {
	background-color: black;
	opacity: 0.1;
}

.image .image-description {
	position: absolute;
	top: 100%;
	color: white;
	left: 1.5rem;
	z-index: 1;
	font-weight: 400;
	transition: transform 0.3s ease;
	width: calc(100% - 3rem);
}

.image:hover .image-title {
	transform: translateY(-3rem);
}

.image:hover .image-description {
	transform: translateY(calc(-100% - 1.5rem));
}

nav.nav-mobile {
	display: flex;
	position: fixed;
	right: 0;
	top: 0;
	background-color: var(--grey-200);
	width: 20rem;
	margin: 0;
	left: auto;
	padding: 0;
	height: 100%;
	z-index: 99999;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

nav.nav-mobile .nav-body {
	padding: 0;
	width: 100%;
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

nav.nav-mobile .nav-body > * {
	width: 100%;
}

nav.nav-mobile .nav-body .menu {
	display: flex;
	flex-direction: column;
	gap: 0;
}

nav.nav-mobile .nav-body .menu li:hover > a,
nav.nav-mobile .nav-body .menu li.active > a {
	background-color: var(--orange);
}

nav.nav-mobile .menu li:not(.active):hover ul {
	transform: scale(0);
	height: 0;
}

nav.nav-mobile .nav-body .menu li ul {
	position: relative;
	background-color: var(--grey-400);
	left: 0;
	box-shadow: none;
	overflow: hidden;
	height: 0;
	transition: height 0.15s ease;
}

nav.nav-mobile .nav-body .menu li.active > ul {
	height: 100%;
}

nav.nav-mobile .nav-body .menu li ul ul {
	background-color: var(--grey-600);
}

nav.nav-mobile .nav-body .menu li ul a {
	color: white;
}

nav.nav-mobile .nav-body .menu a {
	padding: 0.9rem 2rem;
	color: white;
}

nav.nav-mobile  a:hover::before, nav.nav-main .open-navbar a::before {
	display: none !important;
}

nav .open-navbar {
	display: none;
}

.opacity {
	background-color: black;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: none;
	position: fixed;
	z-index: 99998;
}

nav.nav-mobile.active ~ .opacity {
	display: block;
}


@media (max-width: 70rem) {

	nav .open-navbar {
		display: block;
	}

	.nav-mobile.active {
		transform: translateX(0);
	}

	nav:not(.nav-mobile) li:not([data-js="nav-open"]) {
		display: none;
	}

	nav:not(.nav-mobile) .nav-body {
		justify-content: space-between;
	}

}


@media (max-width: 46rem) {
	
	.card {
		display: flex;
		flex-direction: column;
	}

	.card::after {
		
	}

	.card .card-body {
		margin-right: 0 !important;
		margin-left: 0 !important;
		height: auto;
		margin-top: -2rem;
	}

	.card .card-body .card-body-content {
		margin-left: 0;
	}

	.card .card-body .card-body-border {
		padding-left: 3rem !important;
		padding-right: 3rem !important;
		padding-top: 4rem;
		text-align: left !important;
		align-items: flex-start !important;
	}

	.card.card-right {
		flex-direction: column-reverse;
	}

	.card .card-image {
		position: relative;
		margin: 0 auto;
	}
}

nav .close-navbar a {
    justify-content: center;
}

p {
	line-height: 1.6;
	color: var(--text-description);
}

.page404 {
	width: 100vw;
	height: 100%;
	background-color: var(--grey-200);
	color: var(--lightgrey-400);;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

.page404 .page404-body {
	display: flex;
	gap: 4rem;
	align-items: center;
	flex-wrap: wrap;
	max-width: 80rem;
	line-height: 1.6;
}

.page404 .page404-text {
	width: 100%;
	flex-grow: 1;
	flex-basis: 40rem;
}

.page404 h1 {
	color: var(--lightgrey-600);
	margin-bottom: 1rem;
}

.page404 .btn {
	margin-top: 1rem;
}

.page404 .page404-image svg {
	width: 15rem;
	height: 15rem;
}

.pagination {
	width: max-content;
	background-color: var(--orange);
	clip-path: var(--polygon-button);
	display: flex;
	margin-top: 2rem;
}
.pagination > * {
	padding: 0.5rem 0.7rem;
	color: white;
	display: block;
	min-width: 2.1rem;
	text-align: center;
}
.pagination a:hover {
	background-color: var(--grey-200);
	color: white;
}
.pagination .current {
	background-color: var(--grey-200);
}










/* ELEMENTOR */
h2.elementor-heading-title {
	margin-bottom: 0.5rem;
}
h3.elementor-heading-title {
	margin-bottom: -0.5rem;
}
.elementor .elementor-element + .elementor-widget-heading {
	margin-top: 0.75rem !important;
}
.elementor .elementor-element.elementor-widget-image img {
	clip-path: var(--polygon);
}

.elementor-element.elementor-widget-text-editor > *:first-child,
.elementor-element.elementor-widget-text-editor .elementor-text-editor > *:first-child {
	margin-top: 0;
}

.elementor-element.elementor-widget-text-editor > *:last-child,
.elementor-element.elementor-widget-text-editor .elementor-text-editor > *:last-child {
	margin-bottom: 0;
}

.elementor-element.elementor-widget-text-editor {
	line-height: 1.6;
}

.elementor {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.elementor .elementor-widget-wrap {
	padding: 0;
}

.elementor > .elementor-element {
	padding: 0 !important;
}

.elemntor .elementor-element.gallery .e-con-inner {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
    gap: 2rem;
}

.elementor .elementor-element.elementor-widget-card .elementor-widget-container {
	display: flex;
}

.elementor .elementor-element.elementor-widget-carousel {
	overflow: hidden;;
}

.elementor .elementor-element.elementor-widget-carousel .cc-card {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 8px;
}

.elementor .elementor-element.elementor-widget-carousel .cc-image img {
	clip-path: var(--polygon);
}

.elementor .elementor-element.elementor-widget-carousel .cc-subheading {
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0.6rem 0;
}
.elementor .elementor-element.elementor-widget-carousel .cc-title {
	margin: 14px 0 6px;
	font-size: clamp(1.1rem, 1.2vw + 1rem, 1.6rem);
	font-weight: 700;
}
.elementor .elementor-element.elementor-widget-carousel .cc-desc {
	line-height: 1.6;
	color: var(--text-description);
}
.elementor .elementor-element.elementor-widget-carousel .swiper-button-prev,
.elementor .elementor-element.elementor-widget-carousel .swiper-button-next {
	color: inherit;
	width: 44px; height: 44px;
}
.elementor .elementor-element.elementor-widget-carousel .swiper-button-prev:after,
.elementor .elementor-element.elementor-widget-carousel .swiper-button-next:after {
	font-size: 20px;
}

table {
	border-collapse: collapse;
	width: 100%;
	background-color: white;
	clip-path: var(--polygon);
}

body.body-dark table {
	background-color: var(--grey-400);
}

body.body-dark table *:is(td, th) {
	border-color: var(--grey-800);
}

body.body-dark *:is(td, th) {
	color: white;
}

table td, table th {
	border: 1px solid rgb(230, 230, 230);
	padding: 0.8rem 1.2rem;
	color: var(--text-description);
}

table th > *:first-child,
table td > *:first-child {
	margin-top: 0;
}

table th > *:last-child,
table td > *:last-child {
	margin-bottom: 0;
}

figure {
	margin: 0 !important;
}

.feature.feature-text *:is(.elementor-element, .elementor-widget-wrap, .elementor-column, .elementor-section, .elementor-container, .elementor) {
	display: contents !important;
}

.feature.feature-text .elementor-container img {
	display: inline-block;
	width: 33%;
}

.feature .feature-image {
	width: 100%;
	margin-bottom: -2rem;
	z-index: 3;
	position: relative;
}

.swiper-container .swiper-slide .image img {
	height: 25rem;
	object-position: center 40%;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
	background-color: var(--orange);
	color: white;
	clip-path: var(--polygon-button);
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
	background-color: var(--grey-200);
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
	color: white;
}

.elementor-element.elementor-widget-counter {
	display: flex;
	position: relative;
	flex-direction: column;
	background-color: rgb(230 230 230);
	align-items: flex-start;
	gap: 1rem;
	clip-path: polygon(0 calc(2 * var(--polygon-radius)), calc(2 * var(--polygon-radius)) 0, 100% 0, 100% calc(100% - 2 * var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%);
	padding-top: 1px;
	padding-bottom: 1px;
	width: 100%;
}

.elementor-element.elementor-widget-counter .elementor-counter {
	clip-path: polygon(0 calc(2 * var(--polygon-radius)), calc(2 * var(--polygon-radius)) 0, 100% 0, 100% calc(100% - 2 * var(--polygon-radius)), calc(100% - 2 * var(--polygon-radius)) 100%, 0 100%);
	height: 100%;
	width: calc(100% - 2px);
	background-color: white;
	z-index: 5;
	padding: 2rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	margin: auto;
	align-items: flex-start;
	text-align: left;
}

.elementor-element.elementor-widget-counter .elementor-counter .elementor-counter-title {
	color: var(--text-description);
	line-height: normal;
}

body.body-dark .elementor-element.elementor-widget-counter .elementor-counter {
	background-color: var(--grey-400);
}

body.body-dark .elementor-element.elementor-widget-counter {
	background-color: var(--grey-600);
}

.wp-block-table {
	overflow: hidden;
	overflow-x: auto;
}

.elementor-element[data-widget_type="partners.default"] a {
	text-align: center;
	font-size: 1.5rem;
}

.elementor-element[data-widget_type="carousel.default"]::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3rem;
}

.elementor-widget-n-accordion .e-n-accordion {
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elementor-widget-n-accordion .e-n-accordion  summary {
	border-color: rgb(230, 230, 230);
	padding: 1rem 1.5rem;
}

.elementor-widget-n-accordion .e-n-accordion summary + div {
	border-top-width: 0;
	border-color: rgb(230, 230, 230);
	padding: 1rem 1.5rem;
}