/* NAVIGATION */
body > nav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 85px;
	padding-right: 15px;
	background: var(--black);
	z-index: 10;
}
nav .menu {
	position: absolute;
    left: 50%;
	display: flex;
	justify-content: space-around;
    min-width: 880px;
	height: 100%;
	margin: 0 auto;
	list-style-type: none;
	transform: translateX(-50%);
}
nav .menu li {
	display: flex;
	align-items: center;
	margin: 0 15px;
}
nav .menu li:before {
	content: unset;
}
nav .menu li.menu-item-has-children:after {
	position: relative;
	top: 2px;
	width: 16px;
	height: 6px;
	margin-left: 10px;
	background: url('../img/icon-menu-arrow.svg') no-repeat;
	background-size: contain;
	content: '';
}
nav .menu li.menu-item-has-children > a {
	pointer-events: none;
}
nav .menu > li > a {
	border-bottom: 1px solid transparent;
}
nav .menu > li:hover > a {
	font-weight: 700;
	letter-spacing: -0.7px;
}
nav .menu li a {
	color: var(--white);
}
nav .menu li .sub-menu {
	display: none;
	flex-wrap: wrap;
    justify-content: flex-start;
}
nav .menu li .sub-menu li {
	margin: 0;
	padding: 20px 0;
    white-space: nowrap;
}
nav .menu li .sub-menu {
	position: fixed;
	top: 85px;
	left: 50%;
	width: 100%;
	max-width: 895px;
	padding: 20px 0;
	margin: 0;
	background: var(--black);
	transform: translateX(-50%);
}
nav .menu li .sub-menu:before,
nav .menu li .sub-menu:after {
	position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--black);
    content: '';
    transform: translateX(-50%);
    z-index: 0;
}
nav .menu li .sub-menu:after {
    width: 100vw;
	border-bottom: 1px solid var(--primary);
    z-index: -1;
}
nav .menu li:hover .sub-menu {
	display: flex;
}

nav .menu li .sub-menu a {
	padding-left: 16px;
    padding-bottom: 3px;
	font-size: 20px;
	font-weight: 300;
}

nav .menu li .sub-menu a:hover {
	font-weight: 700;
}

nav .menu li.industries .sub-menu li,
nav .menu li.resources .sub-menu li,
nav .menu li.services .sub-menu li {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: calc(100% / 3);
}
nav .menu li.industries .sub-menu li a,
nav .menu li.resources .sub-menu li a,
nav .menu li.services .sub-menu li a {
	display: flex;
	align-items: center;
	width: 100%;
	border-left: 1px solid transparent;
}
nav .menu li.services .sub-menu li a {
	padding-right: 50px;
    white-space: normal;
}
nav .menu li.industries .sub-menu li a:hover,
nav .menu li.resources .sub-menu li a:hover,
nav .menu li.services .sub-menu li a:hover {
	/* border-color: var(--primary); */
	letter-spacing: -1px;
}

nav .menu li.what-we-do > .sub-menu {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	padding: 20px 0 !important;
	padding-bottom: 40px !important;
}
nav .menu li.what-we-do:hover > .sub-menu {
	display: grid;
}
nav .menu li.what-we-do > .sub-menu > li {
	display: block;
}
nav .menu li.what-we-do .what-we-do__industries { grid-area: 1 / 1 / 3 / 2; }
nav .menu li.what-we-do .what-we-do__data-ai { grid-area: 1 / 2 / 2 / 3; }
nav .menu li.what-we-do .what-we-do__software { grid-area: 2 / 2 / 3 / 3; }
nav .menu li.what-we-do .what-we-do__links { grid-area: 3 / 2 / 4 / 3; }

nav .menu li.what-we-do > .sub-menu .sub-menu {
	display: block;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-width: unset;
    transform: none;
}
nav .menu li.what-we-do > .sub-menu > li:hover .sub-menu {
	display: block;
}
nav .menu li.what-we-do li {
	white-space: unset;
}
nav .menu li.what-we-do > .sub-menu > li > a {
    display: block;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 300 !important;
	color: var(--primary);
}
nav .menu li.what-we-do .what-we-do__industries .sub-menu a {
	font-size: 36px;
}
nav .menu li.what-we-do .what-we-do__industries .sub-menu a:hover {
	font-weight: 700 !important;
	letter-spacing: -3px;
}
nav .menu li.what-we-do li:not(.what-we-do__industries) .sub-menu a {
	padding: 0;
    padding-left: 60px;
	font-size: 18px;
}
nav .menu li.what-we-do li.what-we-do__links > a {
	display: none;
}
nav .menu li.what-we-do li.what-we-do__links .sub-menu a {
	padding-left: 16px;
}
nav .menu li.what-we-do li:not(.what-we-do__industries) .sub-menu a:hover {
	font-weight: 700;
}
nav .menu li.what-we-do .sub-menu .sub-menu li {
	padding: 0;
	padding-top: 20px;
}
nav .menu li.what-we-do .sub-menu .sub-menu li:first-child {
	padding-top: 0;
}
nav .menu li.what-we-do .sub-menu .what-we-do__industries .sub-menu li {
	padding: 0;
	padding-top: 60px;
}
nav .menu li.what-we-do .sub-menu .what-we-do__industries .sub-menu li:first-child {
	padding-top: 0;
}
nav .menu li.what-we-do .sub-menu .what-we-do__links .sub-menu li {
	padding: 0;
	padding-top: 20px;
}
nav .menu li.what-we-do .sub-menu .what-we-do__links .sub-menu li:first-child {
	padding-top: 0;
}
nav .menu li.what-we-do .sub-menu {
	padding: 0;
}



nav .menu li .sub-menu li.menu-item-has-children > a {
	pointer-events: all;
}
nav .menu li .sub-menu li.menu-item-has-children:hover > a {
	font-weight: 700;
}
nav .menu li .sub-menu .sub-menu {
	display: none;
}
nav .menu li .sub-menu .sub-menu li {
	width: auto;
	padding-right: 30px;
}
nav .menu li .sub-menu .sub-menu a {
	font-size: 16px;
}
nav .menu li .sub-menu .sub-menu a:hover {
	font-weight: 300;
}
nav .menu li .sub-menu li:hover .sub-menu {
	display: flex;
}
nav .menu li .sub-menu li.menu-item-has-children:after {
	content: unset;
}



nav .menu + .button {
	min-height: 44px;
	padding: 10px 35px !important;
	font-size: 14px;
}
nav .menu + .button:after {
	content: unset;
}

nav .hamburger {
	display: none;
	padding: 0;
	background: transparent;
    border: 0;
	cursor: pointer;
    outline: none;
}
nav .hamburger:before,
nav .hamburger:after {
    position: relative;
	display: block;
	width: 24px;
	height: 5px;
	margin: 7px 0;
	background: var(--white);
	content: '';
	transition: all 0.2s ease-in-out;
}
nav .hamburger.active:before {
	top: 6px;
	transform: rotate(45deg);
}
nav .hamburger.active:after {
	top: -6px;
	transform: rotate(-45deg);
}
nav .mobile-menu {
	position: fixed;
	top: 85px;
	left: 0;
	display: none;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 50px);
	padding: 40px;
	padding-bottom: 120px;
	background: var(--black);
	overflow: auto;
	z-index: 1;
}
nav .mobile-menu.opened {
	display: flex;
}
nav .mobile-menu li {
	margin-bottom: var(--size-s);
	padding: 0;
	list-style-type: none;
}
nav .mobile-menu li:before {
	content: unset;
}
nav .mobile-menu li.what-we-do a:after,
nav .mobile-menu li.industries a:after,
nav .mobile-menu li.data-ai a:after,
nav .mobile-menu li.software a:after,
nav .mobile-menu li.resources a:after,
nav .mobile-menu li.technologies a:after {
	position: relative;
	top: 3px;
	display: inline-block;
	width: 6px;
	height: 16px;
	margin-left: 20px;
	background: url('../img/icon-next-arrow.svg') no-repeat;
	background-size: contain;
    content: '';
}
nav .mobile-menu li a {
	color: var(--white);
	font-size: 24px;
}
nav .mobile-menu li .children {
	padding: 20px 40px;
	padding-right: 0;
}

nav .mobile-submenu {
	display: none;
}
nav .mobile-submenu li a {
	font-size: 18px;
}
nav .mobile-submenu .h3 {
	cursor: pointer;
}
nav .mobile-submenu .h3:before {
	display: inline-block;
	width: 6px;
	height: 16px;
	margin-right: 20px;
	background: url('../img/icon-back-arrow.svg') no-repeat;
	content: '';
}

/* LOGO */
.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 100%;
	padding: 0 20px;
	background: var(--white);
}
.logo img {
	width: 119px;
	height: 32px;
}

/* HEADER */
header h1 {
	text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* BUTTON */
.button {
	display: block;
	width: fit-content;
	min-height: 54px;
	padding: 16px 56px;
	background: var(--black-general);
	border: 0.5px solid var(--black-general);
	border-radius: 2px;
	color: var(--white-general);
	font-size: 16px;
	font-weight: 700;
	line-height: 135%;
	text-align: center;
	transition: all 0.2s ease-in-out;
}
.button:not(.secondary):hover {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
	color: var(--white-general);
}
.button.w {
	background: var(--white-general);
	border-color: var(--gray-light);
	color: var(--black-general);
}
.button.w:hover {
	color: var(--black-general);
}
.button.secondary {
	min-width: 140px;
	padding: 16px 0;
	background: transparent;
	border: 0;
	color: var(--black);
	font-weight: 400;
}
.button.secondary.w {
	color: var(--white);
}
.button.secondary:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 140px;
	height: 1px;
	background: var(--primary);
	content: '';
}
.button.secondary:hover {
	color: var(--primary);
}
.button.w-100 {
	width: 100%;
}
.button .button__additional-info {
    display: inline-block;
    text-indent: -100000px;
}
.button:after {
	position: relative;
	top: 1px;
	display: inline-block;
	width: 0;
	height: 17px;
	background-image: url('data:image/svg+xml,<svg width="9" height="15" viewBox="0 0 9 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.42669 7.68773L0.250603 1.83077L1.74924 0.506348L8.08426 7.67469L1.7557 14.9789L0.244141 13.6693L5.42669 7.68773Z" fill="%23FFFFFF"/></svg>');
	background-position: 10px bottom;
    background-size: 9px 15px;
    background-repeat: no-repeat;
	content: '';
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
.button.w:after {
		background-image: url('data:image/svg+xml,<svg width="9" height="15" viewBox="0 0 9 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.42669 7.68773L0.250603 1.83077L1.74924 0.506348L8.08426 7.67469L1.7557 14.9789L0.244141 13.6693L5.42669 7.68773Z" fill="%23000000"/></svg>');
}
.button:hover {
	padding: 16px 48px;
}
.button:hover:after {
	width: 10px;
	margin-left: 6px;
	background-position: 1px bottom;
	opacity: 1;
}

/* LEARN MORE */
.learn-more {
	display: block;
	height: 45px;
	padding-left: 20px;
	border-left: 1px solid var(--primary);
	color: var(--primary);
}
.learn-more small {
	top: -7px;
}

/* SCROLL DOWN */
.scroll-down {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: var(--white);
	cursor: pointer;
	z-index: 2;
}
.scroll-down:hover {
	color: var(--white);
}
.scroll-down picture {
	animation: jumpInfinite 1.5s infinite;
}
@keyframes jumpInfinite {
	0% {
	  top: 0;
	}
	50% {
	  top: 10px;
	}
	100% {
	  top: 0;
	}
  }


/* LINE */
.line {
	display: block;
	height: 1px;
}
.line.vertical {
	width: 1px;
	min-width: 1px;
	height: auto;
}






/* HEADER */
header {
	display: flex;
	align-items: center;
	min-height: 300px;
}

/* SECTION */
section {
	padding: var(--size-m) 0;
}

/* ANCHOR */
.anchor {
	position: absolute;
	top: -145px;
}
.banner .anchor,
.home .statement .anchor,
.home .offer_2 .anchor {
	top: -84px;
}


/* TABS */
.tabs .tabs__indicator {
	top: 2px;
	height: 3px;
	margin-left: calc(100% / 5 * 0);
	transition: var(--transition);
	z-index: 1;
}
.tabs .tabs__item {
	padding-top: var(--size-xs);
	/* border-top: 1px solid var(--black-text); */
	cursor: pointer;
}
.tabs .tabs__item.active {
	cursor: default;
	font-weight: 700;
}
/* .tabs .tabs__item.active:before {
	position: absolute;
	top: -2px;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	background: var(--primary);
	content: '';
} */
.tabs .tabs__content .tabs__content__item {
	display: none;
}
.tabs .tabs__content .tabs__content__item.active {
	display: flex;
}

.tabs.horizontal .tabs__item {
	padding: var(--size-xs);
	border-bottom: 1px solid var(--gray);
}
.tabs.horizontal .tabs__item.active {
	border-color: var(--primary);
}
.tabs.horizontal .tabs__item.active:before {
	top: unset;
	bottom: -1px;
	height: 1px;
	z-index: 1;
}
.tabs.horizontal .tabs__content .tabs__content__item.active {
	display: block;
}

/* ACCORDION */
.accordion .accordion__item {
	border-top: 1px solid var(--black);
}
.accordion .accordion__item:last-of-type {
	border-bottom: 1px solid var(--black);
}
.accordion .accordion__item .accordion__item__header {
	padding: var(--size-xs) 0;
	cursor: pointer;
}
.accordion .accordion__item .accordion__item__header picture {
	width: 14px;
	min-width: 14px;
}
.accordion .accordion__item .accordion__item__content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}
.accordion .accordion__item.active {
	border-top-color: var(--primary);
}
.accordion .accordion__item.active .accordion__item__header picture {
	transform: rotate(180deg);
}
.accordion .accordion__item.active .accordion__item__content {
	max-height: 450px;
}

/* SIDE MENU */
.side-menu {
	padding-left: 30px;
	padding-bottom: 20px;
	border-left: 1px solid var(--primary);
	list-style-type: none;
}
/* .side-menu li {
	top: -8px;
} */
.side-menu li {
	padding-left: 0 !important;
}
.side-menu li:before {
	content: unset;
}
.side-menu li a {
	/* color: var(--white); */
	display: inline-block;
	padding: 6px 8px;
	background: var(--white);
	font-size: 12px;
	line-height: 120%;
}
.side-menu li.active a {
	color: var(--primary);
}

/* SECTIONS */
section.carousel .owl-dots {
	display: flex !important;
	width: calc(100% - var(--size-xs));
}
section.carousel .owl-dots .owl-dot {
	width: 100%;
	height: 1px;
	padding: 0;
	padding-top: 20px !important;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--gray);
	cursor: pointer;
}
section.carousel .owl-dots .owl-dot.active {
	border-color: var(--primary);
}
section.carousel .owl-nav,
section.carousel .owl-nav.disabled {
    position: absolute;
    top: 0;
	left: 0;
	display: flex !important;
    justify-content: space-between;
	width: 100%;
	z-index: 1;
}
section.carousel_2 .owl-stage-outer {
	padding: 12px 0;
	z-index: 2;
}
section.carousel_2 .owl-stage-outer:after {
	position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    display: block;
    width: calc(100% / 5 - 80px / 5 + 20px - 2px);
    height: calc(100% - 6px);
    border: 1px solid var(--primary);
	pointer-events: none;
}
section.carousel_2 .owl-stage {
	display: flex;
	align-items: center;
}
section.carousel_2 .owl-nav,
section.carousel_2 .owl-nav.disabled {
	position: absolute;
    top: calc(50% - 12px);
    left: -40px;
    display: flex !important;
    justify-content: space-between;
    width: calc(100% + 80px);
    z-index: 1;
}
section.carousel_2 .owl-item > div {
	cursor: pointer;
}
section.carousel_2 .owl-item > div {
	/* transition: var(--transition); */
	aspect-ratio: 3/2;
}
section.carousel .owl-nav button.owl-next,
section.carousel .owl-nav button.owl-prev {
	padding: 20px !important;
}
.owl-nav button span {
	display: block;
	width: 17px;
	height: 24px;
	background: url('../img/icon-carousel-arrow.svg') no-repeat center;
	background-size: contain;
	color: transparent;
	text-indent: -100000px;
}
.owl-nav button.owl-prev span {
	transform: rotate(180deg);
}

section.timeline .grid > div:nth-child(even):before {
	position: absolute;
	top: 0;
	left: calc(var(--size-s) * -1);
	display: block;
	width: 1px;
	height: 100%;
	background: var(--primary);
	content: '';
}

section.logos .owl-carousel .owl-stage {
	display: flex;
	align-items: center;
}
section.logos picture {
	height: 60px;
}

section.embed iframe {
	width: 100%;
	aspect-ratio: 16/9;
}

section.tiles-extended .tile {
	border: 1px solid var(--primary);
}
section.tiles-extended .tile .tile__cover {
    position: absolute;
    top: -1px;
    left: -1px;
    display: none;
    flex-direction: column;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: var(--black);
	border: 1px solid #000;
}
section.tiles-extended .tile:hover .tile__cover {
	display: flex;
}



section.tiles-extended.tiles-extended-3 .tile {
	border: 0;
}
section.tiles-extended.tiles-extended-3 .tile .light {
	opacity: 1;
	transition: var(--transition);
}
section.tiles-extended.tiles-extended-3 .tile .tile__cover {
	position: absolute;
	top: unset;
	bottom: calc(var(--size-s) * -1);
	left: calc(var(--size-s) * -1);
	display: block;
	width: calc(100% + var(--size-l));
	height: 0;
	padding: var(--size-s);
	background: rgba(0, 0, 0, 0.8);
	border: 0;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	overflow: hidden;
}
section.tiles-extended.tiles-extended-3 .tile .tile__cover .list {
	top: 40px;
	opacity: 0;
	transition: var(--transition);
	transition-delay: 0.20s;
}
section.tiles-extended.tiles-extended-3 .tile:hover .light {
	opacity: 0;
}
section.tiles-extended.tiles-extended-3 .tile:hover .tile__cover {
	height: calc(100% + var(--size-l));
	opacity: 1;
	pointer-events: all;
}
section.tiles-extended.tiles-extended-3 .tile:hover .tile__cover .list {
	top: 0;
	opacity: 1;
}

section.addepto {
	background: var(--black-general);
}

section.flexible_columns .columns {
	margin-top: calc(var(--size-xxl) * -1);
}

section.media video {
	position: relative;
}

/* FOOTER */
footer {
	min-height: 430px;
	margin-top: var(--size-m);
	padding: var(--size-m) 0;
}
footer a {
	color: var(--white);
}
footer nav a,
footer nav .primary {
	margin-bottom: 10px;
}
footer .services {
	display: block;
	column-count: 2;
}
footer .main a {
	white-space: nowrap;
}
footer .services a {
	display: block;
}


/* FORM */
form label,
form input,
form textarea {
	width: 100%;
	background: transparent;
	font-family: "acumin-pro-wide";
	font-size: 16px;
	outline: none;
}

form input,
form textarea {
	min-height: 30px;
	border: 0;
	border-bottom: 1px solid var(--gray);
}

form input[type="checkbox"] {
	width: unset;
	min-height: unset;
}

form textarea {
	height: 113px;
	resize: none;
}

form label {
	font-size: 12px;
}

form label + input,
form label + textarea {
	margin-top: 10px;
}

form label a {
    font-weight: 600;
}

form input::placeholder,
form textarea::placeholder {
	color: var(--gray);
}

form .button input {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
form .button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

form .usercode {
    position: absolute;
    left: -50000px;
}

/* TESTIMONIAL */
.testimonial .testimonial__content {
	border: 1px solid var(--gray);
}
.testimonial div + .testimonial__content {
	border-left-width: 0;
}
.testimonial .testimonial__content:after {
	position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    content: ',,';
    font-size: 48px;
    font-weight: 700;
    line-height: 0;
    text-align: center;
}

/* OWL CAROUSEL */
.owl-carousel .owl-stage {
	transition: all 1s ease-in-out !important;
}

/* FILTERS */
.filters > * {
	padding: 17.5px var(--size-xs);
}
.filters a {
	border: 1px solid transparent;
}
.filters a.current {
	border-color: var(--primary);
}

/* PAGINATION */
.pagination {
	display: flex;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 1px solid transparent;
}
.pagination .page-numbers.current {
	border-color: var(--primary);
}

/* EDIT BUTTON */
.button.edit {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
	padding: 16px 36px;
	border-radius: 0;
	z-index: 100;
}

/* CONTENT */
.content {}
.content h1,
.content h2 {
	margin-top: var(--size-m);
	margin-bottom: var(--size-s);
}

.content h3,
.content h4,
.content h5,
.content h6 {
	margin-top: var(--size-s);
	margin-bottom: var(--size-xs);
}

.content > h2:first-of-type {
	margin-top: 0;
}
.content > p + h2:first-of-type {
	margin-top: var(--size-m);
}

.content p a {
	color: var(--primary);
}
.content ul {
	margin-bottom: var(--size-xs);
}
.content pre {
	margin: var(--size-s) 0;
	padding: var(--size-s);
	background: #ececec;
    overflow: auto;
}
.content figure {
	margin: var(--size-s) 0;
}
.content figure figcaption {
	font-size: 12px;
}
.content iframe {
    width: 100%;
    height: unset;
    aspect-ratio: 16/9;
}
.content img {
	width: auto;
}

/* COOKIES MODAL */
.cookies-modal {
	background: rgba(0, 0, 0, 0.25);
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
}

.cookies-modal-content {
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: 500px;
	max-width: 100%;
	height: auto;
	box-shadow: 0 13px 20px 0 rgba(0, 0, 0, 0.2);
	background: #fff;
	z-index: 9999;
	padding: 50px;
}

.cookies-modal.settings .cookies-modal-content {
	width: 900px;
}

.cookies-modal .cookies-close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 2;
}

.cookies-modal h3 {
	min-width: 50px;
}

.cookies-modal a {
	cursor: pointer;
}

.cookies-modal .switch {
	margin-left: 50px;
}

/* SWITCH */
.switch {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	color: #000;
}

.switch .switch-off {
	opacity: 1;
}

.switch.checked .switch-off {
	opacity: 0.3;
}

.switch .switch-on {
	opacity: 0.3;
}

.switch.checked .switch-on {
	opacity: 1;
}

.switch-button {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 26px;
	margin: 0 20px;
}

.switch-button input {
	opacity: 0;
	width: 0;
	height: 0;
}

.switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	transition: .4s;
	border: 1px solid var(--gray);
}

.switch-slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: -1px;
	bottom: -1px;
	background-color: white;
	transition: .4s;
    background: var(--gray);
	border: 1px solid var(--gray);
}

.switch-button input:checked + .switch-slider:before {
	transform: translateX(26px);
	background: var(--black);
	border-color: var(--black);
}

/* INPUT SELECT */
.input__select {
	cursor: pointer;
}
.input__select .input__placeholder {
    min-height: 30px;
	margin-top: 10px;
    border-bottom: 1px solid var(--gray);
	color: var(--gray);
}
.input__select .input__options {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	display: none;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--gray);
	border-top: 0;
	z-index: 1;
}
.input__select .input__options > div {
    padding: 5px 15px;
    border-top: 1px solid var(--gray);
}
.input__select .input__options > div:hover {
	background: #efefef;
}
.input__select.active .input__options {
	display: block;
}
.input__select.selected .input__placeholder {
	color: var(--black);
}

/* FULLSCREEN */
[fullscreen] {
	display: flex;
    flex-direction: column;
    justify-content: center;
	min-height: calc(100vh - 85px);
}


/* PAGES */
.page-side-menu .people .grid[column-count="4"] {
    grid-template-columns: repeat(3, 1fr);
}
.page-side-menu .people .grid[column-count="5"] {
    grid-template-columns: repeat(4, 1fr);
}

.page-side-menu .articles .grid[column-count="3"] {
	grid-template-columns: repeat(2, 1fr);
}

.page-side-menu .logos .grid[column-count="7"] {
	grid-template-columns: repeat(5, 1fr);
}

.post header {
	height: unset !important;
}

.post + footer,
.page-contact + footer {
	margin-top: 0;
}

/* .home .page */
.home .page header,
.home .page section:not(.logos):not(.carousel__preview):not(.carousel_2):not(.cta) {
	display: flex;
    flex-direction: column;
    justify-content: center;
	min-height: calc(100vh - 85px);
}
.home .page .carousel__preview {
	/* min-height: calc(100vh - 85px - 311px); */
	width: 100%;
}
.home .test.owl-carousel {
	min-height: 490px;
	height: calc(100vh - 85px - 311px);
}
.home .test.owl-carousel .owl-stage-outer {
	height: 100%;
}
.home .test.owl-carousel .owl-stage {
	display: flex;
	height: 100%;
}
.home .test.owl-carousel .owl-stage .owl-item {
	display: flex;
    flex: 1 0 auto;
}

.home .page header h1 {
	font-size: 60px;
}




