/*!
Theme Name: VORTURA
Theme URI: https://www.vortura-solutions.at/
Author: VORTURA Solutions GmbH
Author URI: https://www.vortura-solutions.at/
Description: Individuell entwickeltes WordPress-Theme durch VORTURA Solutions – We think digital.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vortura
Tags: employer-branding, recruiting, prozessoptimierung, kungengewinnung, digitale-mitarbeitergewinnung, hr-digital, mitarbeiterbindung
*/

@import url(fonts.css);

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
	background-color: #202222;
}

/* -------- Nav Mobile -------- */
.mobile_nav {
  width: 100%;
  padding: 0 1rem;
  position: fixed;
  top: 1rem;
}
.mobile_nav_container {
  padding: 1rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile_nav_container_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_nav_logo img {
  width: 100%;
  object-fit: cover;
}
.mobile_nav_icon {
  width: 35px;
  height: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile_nav_icon div {
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.mobile_nav_icon.active div:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile_nav_icon.active div:nth-child(2) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.mobile_nav_list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  will-change: max-height;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mobile_nav_list.active {
  margin-top: 4rem; 
}
.mobile_nav_list ul {
  width: 100%;
}
.mobile_nav_list ul li {
  width: 100%;
  list-style-type: none;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
}
.mobile_nav_list ul.border_bottom li {
  border-bottom: 1px solid #069D84;
  padding: 0.5rem;
}
.cta_button {
  width: 100%;
  height: 100%;
}
.cta_button a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 150%;
}
.mobile_nav_list ul li a {
  text-decoration: none;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: clamp(18px, 5vw, 20px);
  line-height: 150%;
}
@media screen and (min-width: 1100px) {
  .mobile_nav {
   display: none;
  }
}
/* Sub Navigation Mobile */
.border_bottom {
  position: relative;
  z-index: 1;
}
.border_bottom ul.sub-menu {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.border_bottom li.menu-item.active > ul.sub-menu {
  max-height: 500px;
  padding: 1rem;
}
.border_bottom li.menu-item-has-children > a::after {
  content: "▾";
  float: right;
  transition: transform 0.3s;
}
.border_bottom li.menu-item.active > a::after {
  transform: rotate(180deg);
}
/* -------- Nav Desktop --------- */
nav {
	position: fixed;
	top: 3rem;
	width: 100%;
	z-index: 999;
}
nav ul li {
  list-style-type: none;
}
.site-branding {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1042px;
	margin: 0 auto;
	border-radius: 5px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	padding: 1rem;
}
.site-branding .menu {
	display: flex;
	gap: 2rem;
}
.menu-main-container ul li {
	list-style: none;
}
.underline-link {
  color: #FFF;
  font-size: 16px;
  font-family: 'Poppins-Regula', Arial, sans-serif;
  line-height: 150%;
  text-decoration: none;
  position: relative;
}
.underline-link::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: #FFF;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}
.underline-link:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}
.menu .menu-item-139 {
	list-style-type: none;
}
.cta-nav {
	text-decoration: none;
	color: #FFF;
  font-size: 16px;
  font-family: 'Poppins-Regula', Arial, sans-serif;
	border: 1px solid #FFF;
	border-radius: 6px;
	padding: 0.5rem 2rem;
	transition: ease-in-out 0.3s;
}
.cta-nav:hover {
	background-color: #FFF;
	color: #202222;
}
#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a {
  text-decoration: underline; 
  color: #069D84;
}
/* ------- Sub Navigation Desktop -------- */
.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%; 
    left: 0;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; 
}
nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
nav li {
    position: relative;
	padding: 0.5rem;
}
nav li {
    white-space: nowrap;
}
/* ------- Headline Animation ------- */
.headline_wrapper {
	overflow: hidden;
}
.headline_wrapper_center{
	overflow: hidden;
	text-align: center;
}
.headline {
	transform: translateY(100%);
	display: inline-block;
}
/* ------- Header Animation Loader ------- */
.header_wrapper {
	overflow: hidden;
  }
  
.header {
	transform: translateY(100%);
	display: inline-block;
}

/* -------- Cookie Style -------- */
#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
  width: 100%;
  margin: 0 auto;
  padding: 10rem 3rem 8rem 3rem;
}
#cmplz-document h2, #cmplz-document h3, .editor-styles-wrapper .cmplz-unlinked-mode h2, .editor-styles-wrapper .cmplz-unlinked-mode h3 {
  color: #FFF;
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 25px);
}
#cmplz-document p, #cmplz-document li, #cmplz-document td, .editor-styles-wrapper .cmplz-unlinked-mode p, .editor-styles-wrapper .cmplz-unlinked-mode li, .editor-styles-wrapper .cmplz-unlinked-mode td {
    font-size: clamp(16px, 2.5vw, 18px);
    font-family: 'Poppins-Regular', Arial, sans-serif;
    color: #FFF;
}
#cmplz-document a, .editor-styles-wrapper .cmplz-unlinked-mode a {
    text-decoration: none;
    color: #00ceae;
}
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories summary {
   font-size: clamp(16px, 2.5vw, 18px);
   font-family: 'Poppins-Regular', Arial, sans-serif;
   color: #FFF;
}
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header, .cmplz-cookies-overview .cmplz-dropdown summary, #cmplz-document .cmplz-dropdown summary, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary  {
  background-color: #00ceae;
}
#cmplz-cookies-overview .cmplz-dropdown h4, #cmplz-document .cmplz-dropdown h4, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown h4, #cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
  font-family: 'Poppins-Regular', Arial, sans-serif;
}
@media screen and (max-width: 800px) {
  #cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    padding: 8rem 1rem 4rem 1rem;
}
}
/* -------- Button Dark -------- */
.button-dark a {
  text-decoration: none;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid #069D84;
  background: linear-gradient(269deg, #069D84 -39.32%, #02372E 104.95%);
  font-family: 'Poppins-Regula', Arial, sans-serif;
  transition: ease-in-out 0.3s;
}
.button-dark a:hover {
  background: linear-gradient(269deg, #058570 -39.32%, #012F28 104.95%);
  box-shadow: 0px 0px 34px 0px var(--Color-Trkis-Mittel-Dark, #009078);
}
/* -------- Contact Form 7 ------- */
.form_field {
	margin-bottom: 2rem;
}
.form_field input[type="text"]:focus,
.form_field input[type="email"]:focus,
.form_field textarea:focus {
  border-color: #069D84 !important;
  box-shadow: none !important;
  outline: none;
}
label {
  width: 100%;
  font-family: 'Poppins-Regula', Arial, sans-serif;
  color: #FFFFFF;
  line-height: 150%;
  font-size: 16px;
}

input {
	width: 100%;
	background-color: transparent;
	border-radius: 6px;
    border: 1px solid #FFF;
	padding: 1rem;
	font-family: 'Poppins-Regula', Arial, sans-serif;
    color: #FFFFFF;
    line-height: 150%;
    font-size: 16px;
}
textarea {
	width: 100%;
	background-color: transparent;
	border: 1px solid #FFF;
	padding: 1rem;
	border-radius: 6px;
	font-family: 'Poppins-Regula', Arial, sans-serif;
    color: #FFFFFF;
    line-height: 150%;
    font-size: 16px;
}
.wpcf7-response-output {
  font-family: 'Poppins-Regula', Arial, sans-serif;
  color: #FFFFFF;
  line-height: 150%;
  font-size: 16px;
}
.wpcf7-not-valid-tip {
	margin-top: 0.5rem;
}
.wpcf7-submit {
  width: 100%;
  max-width: 200px;
  text-decoration: none;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid #069D84;
  background: linear-gradient(269deg, #069D84 -39.32%, #02372E 104.95%);
  font-family: 'Poppins-Regula', Arial, sans-serif;
  transition: ease-in-out 0.3s;
  cursor: pointer;
}
.wpcf7-submit:hover {
  background: linear-gradient(269deg, #058570 -39.32%, #012F28 104.95%);
  box-shadow: 0px 0px 34px 0px var(--Color-Trkis-Mittel-Dark, #009078);
}
.checkbox {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.checkbox p, .file p {
  font-family: 'Poppins-Regula', Arial, sans-serif;
  color: #FFFFFF;
  line-height: 150%;
  font-size: 16px;
}
.checkbox a {
	color: #FFF;
}
.file {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
}
/* --------- 404 -------- */
.not-found {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #FFF;
	padding: 0 3rem;
}
.not-found svg {
	position: absolute;
	top: 0;
}
.not-found .page-title {
    font-size: clamp(30px, 5vw, 56px);
    font-family: 'Poppins-Bold', Arial, sans-serif;
	line-height: 150%
}
.not-found .page-content {
	margin: 3rem 0;
}
.not-found .page-content p {
    font-size: clamp(16px, 2.5vw, 18px);
    font-family: 'Poppins-Regular', Arial, sans-serif;
	line-height: 120%;
}

/* --------- Footer -------- */
.site-footer {
	max-width: 1700px;
	margin: 0 auto;
	width: 100%;
	padding: 5rem 3rem 2rem 3rem;
}
.site-info {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.footer-content {
	width: 100%;
}
.footer-menu {
	width: 50%;
}
.footer-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.footer-headline h4 {
	color: #FFF;
    font-size: clamp(40px, 5vw, 56px);
    font-family: 'Poppins-Bold', Arial, sans-serif;
	line-height: 120%
}
.footer-description {
	margin: 2rem 0;
	width: 100%;
	max-width: 550px;
}
.footer-description p {
	color: #FFF;
    font-size: 16px;
    font-family: 'Poppins-Regular', Arial, sans-serif;
}
.menu-footer-two-container .menu li, .menu-footer-one-container .menu li  {
	list-style-type: none;
  margin-bottom: 0.5rem;
}
.footer-button a {
  text-decoration: none;
  color: #FFF;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid #069D84;
  background: linear-gradient(269deg, #069D84 -39.32%, #02372E 104.95%);
  font-family: 'Poppins-Regula', Arial, sans-serif;
  transition: ease-in-out 0.3s;
}
.footer-button a:hover {
  background: linear-gradient(269deg, #058570 -39.32%, #012F28 104.95%);
  box-shadow: 0px 0px 34px 0px var(--Color-Trkis-Mittel-Dark, #009078);
}
.footer_bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.50);
	padding: 2rem 0;
}
.footer_copyright {
	width: 100%;
}
.footer_copyright p {
	font-family: 'Poppins-Regula', Arial, sans-serif;
	font-size: 14px;
	color: #FFF;
}
.footer_icons {
	display: flex;
	flex-direction: row;
	justify-content: end;
	gap: 1rem;
	width: 100%;
}
@media screen and (max-width: 1100px) {
	.file {
	flex-direction: column;
	align-items: flex-start;
  }
  .site-branding {
		display: none;
	}
}
@media screen and (max-width: 800px) {
	.not-found {
		padding: 0 1rem;
	}
	.site-info {
	  flex-direction: column;
	}
	.footer-menu {
	  width: 100%;
	  margin-top: 2rem;
	}
	.site-footer {
	  width: 100%;
	  padding: 5rem 1rem 2rem 1rem;
    }
	.button-dark {
      padding: 10px 10px;
    }
	.file {
		gap: 1rem;
	}
  .button-dark a {
  padding: 10px 10px;
 }
}

.header-02-wrapper + .sticky-03-wrapper{
  margin-top: 4rem;
}
