:root {
  --primary-color: #ef4444;
  --grey: #2a2422;
  --grey-light: #333333;
}

/* raleway-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/raleway-v37-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/raleway-v37-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/raleway-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/raleway-v37-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/raleway-v37-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/raleway-v37-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 900;
  src: url('../webfonts/raleway-v37-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 900;
  src: url('../webfonts/raleway-v37-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/exo-2-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/exo-2-v26-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*:focus {
	outline: none;
}

* {
	scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #020202;
  color: #ffffff;
}

main {
  min-height: calc(100vh - 549px);
}

.wp-block-columns {
	max-width: 1440px;
	margin: auto;
	padding: 0 15px;
}

.wp-block-group.has-background {
	padding: 100px 0;
	border-top: 1px solid var(--grey-light);
	border-bottom: 1px solid var(--grey-light);
}

/* Header */

header {
	padding: 15px 0;
	position: sticky;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid var(--grey-light);
	background-color: #000000;
}

header .row {
	align-items: center;
}

header .logo img {
	max-width: 100%;
	width: 300px;
}

header .navigation {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	transition: all 0.5s;
}

header nav ul {
	margin: 0;
	padding: 0;
}

header nav ul li {
	display: inline-block;
	position: relative;
	list-style: none;
	padding: 0 15px;
}

header nav ul li a {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	display: block;
	padding: 10px 5px;
	transition: all 0.3s;
}

header nav ul li.button a {
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	background-color: rgba(0,0,0,0.5);
	display: inline-block;
	padding: 10px;
	border-radius: 5px;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s;
	font-family: 'Raleway';	
}

header nav ul li.button a:hover {
	color: var(--primary-color);
	text-decoration: none;
	transform: scale(1.1);
	opacity: 1;
}

header nav ul li.button.current_page_item a {
	color: var(--primary-color);
	text-decoration: none;
	opacity: 1;	
}

header nav ul li.menu-item-has-children {
	padding-right: 5px;
}

header nav ul li.menu-item-has-children > a {
	padding-right: 15px;
	position: relative;
}

header nav ul li.menu-item-has-children > a::after {
	content: "\f078";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	top: 10px;
	right: 0;
}

header nav ul li a:hover {
	opacity: 0.6;
}

header nav ul li a:hover, header nav ul li.current_page_item > a, header nav ul .current_page_ancestor > a {
	color: #ffffff;
	text-decoration: underline;
}

header nav ul ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 100%;
	background-color: #ffffff;
}

header nav ul ul li {
	border: 1px solid #efefef;
	width: 100%;
	border-bottom: 0;
	padding: 0;
}

header nav ul ul li:last-child {
	border-bottom: 1px solid #efefef;
}

header nav ul ul a {
	white-space: nowrap;
	padding: 10px;
}

header nav ul li:hover ul {
	display: block;
}

header .mobile-nav-headline {
	display: none;
}

header .mobile-nav-opener {
	position: absolute;
    right: 15px;
    font-size: 25px;
	display: none;
    cursor: pointer;
}

header .social ul {
	margin: 0;
	padding: 0 0 0 10px;
}

header .social ul li {
	list-style: none;
	display: inline-block;
	padding: 0 0 0 10px;
}

header .social a {
	font-size: 30px;
}

header .social li.facebook a {
	color: #3b5998;
}

header .social li.instagram a {
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;	
}

header .social li.youtube a {
	color: #c4302b;
}

/* Button */

a.button {
	display: inline-block;
	padding: 10px;
	border-radius: 5px;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.3s;
	font-family: 'Exo 2';
}

a.button:hover {
	transform: scale(1.1);
}

a.button.primary {
	background-color: var(--primary-color);
	color: #ffffff;
	border: 2px solid var(--primary-color);
}

a.button.secondary {
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	background-color: rgba(0,0,0,0.5);
}

/* Hero */

section.hero {
	height: calc(100vh - 86.5px);
	font-family: 'Exo 2';
}

section.hero .hero_item {
	height: calc(100vh - 86.5px);
	position: relative;
	text-align: center;
	color: #efefef;
}

section.hero .hero_item img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
}

section.hero .hero_item .row {
	align-items: center;
}

section.hero .hero_item .hero_overlay {
	background-color: rgba(0,0,0,0.5);
	position: relative;
	z-index: 888;
}

section.hero .hero_item span,
section.hero .hero_item h1 {
	display: block;
	text-transform: uppercase;
}

section.hero .hero_item span {
	font-size: 24px;
	font-weight: 700;
	opacity: 0;
	transform: translateX(100px);
	animation: heroSpanIn 1.5s ease forwards;
	max-width: 100%;
	width: 960px;	
	margin: auto;
}

section.hero .hero_item span:has(a) {
	width: 100%;
}

section.hero .hero_item h1 {
	font-size: 90px;
	font-weight: 700;
	display: inline-block;
	border-top: 4px solid #efefef;
	border-bottom: 4px solid #efefef;
	line-height: 120px;
	opacity: 0;
	transform: scale(0);
	animation: heroTitleIn 1.5s ease forwards;
	animation-delay: 0.3s;
	margin: 15px 0;
}

section.hero a.button {
	margin: 0 15px;
}

@keyframes heroSpanIn {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes heroTitleIn {
	from {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Text */

h1,
h2,
h3 {
	font-family: 'Exo 2';
}

h2 {
	font-size: 36px;
}

section.text {
	font-size: 18px;
}

section.text p {
	color: rgba(255,255,255,0.7);
}

/* Image */

section.image {
	padding: 30px 0;
}

section.image img {
	width: 100%;
	border-radius: 5px;
}

/* Logos */

.logo_slider {
  background-color: #ffffff;
  padding: 15px 0;
  position: relative;
}

.logo_slider::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
	z-index: 888;
}

.logo_slider::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(270deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
	z-index: 888;
}

.logo_slider .logos_wrap img {
  height: 85px;
  padding: 15px 50px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s;
  max-width: 100%;
  display: block;
  margin: auto;
}

.logo_slider .logos_wrap img:hover {
  filter: grayscale(0);
}

/* Footer */

footer {
	background-color: var(--grey);
	padding: 50px 0;
	border-top: 1px solid var(--grey-light);
}

footer strong.headline {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: 'Exo 2';
}

footer strong.company {
	display: block;
	font-size: 25px;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: 'Exo 2';
}

footer a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer a:hover {
	opacity: 0.6;
	color: #ffffff;
	text-decoration: none;
}

footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer ul li {
	margin-bottom: 10px;
}

footer ul.social {
	margin: 15px 0 0 0;
	padding: 0;
}

footer ul.social li {
	display: inline-block;
	margin-right: 15px;
	list-style: none;
	margin-bottom: 0;
}

footer ul.social li a {
	font-size: 25px;
}

footer ul.social li a:hover {
	opacity: 0.7;
}

footer table {
	border-collapse: separate;
	border-spacing: 0 10px;
	margin-top: -10px;
}

footer table tr td:first-child {
	margin-right: 5px;
	text-align: center;
	display: block;
}

footer table tr td i {
	color: var(--primary-color)
}

footer table a {
	display: block;
}

footer .footer_bottom {
	padding-top: 100px;
	position: relative;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

footer .footer_bottom::before {
	width: calc(100% - 30px);
	height: 2px;
	content: '';
	position: absolute;
	top: 50px;
	left: 15px;
	background-color: var(--grey-light);
}

footer .footer_bottom ul {
	text-align: right;
}

footer .footer_bottom ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 15px;
}