/*
Theme Name:   seogoal Child
Theme URL:    http://example.com
Description:  SEOGOAL Child Theme
Author:       SEOGOAL
Author URL:   https://seogoal.de
Template:     seogoal
Version:      1.0.0       
Text Domain:  
*/

:root {
  --header-bg-color: transparent !important;
  --border-radius: 10px;
}

html {
  font-size: 100%;
}

*::after,
*::before {
  font-family: var(--font-awesome);
}

.bg-clr-1 {
  background-color: var(--main-black);
}

header {
  position: fixed !important;
}

.slider-section {
  overflow-x: hidden;
}

.box_slider {
  width: 100%;
  position: relative;
  top: 0;
  margin-left: 0;
  padding: 1rem;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-slider {
  height: 100svh;
  min-height: 630px;
}

.hero-slider .row {
  width: var(--container-width);
  margin-inline: auto;
}

.hero-slider :is(h1, h2, h3) {
  font-size: clamp(2.825rem, 4.5vw, 6rem);
  font-weight: 600;
  line-height: clamp(1.1, 4.5vw, 1);
  color: var(--white);
  margin-bottom: 3rem;
}

.hero-slider img {
  animation: imganimate 10000ms ease-in infinite;
}

@keyframes imganimate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.125);
  }

  100% {
    transform: scale(1);
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

.hero-slider .slider-content {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slider-content::after,
.head-main::after {
  content: '';
  inset: 0;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 1%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.85) 99%
  );
  /* background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%); */
  /* clip-path: polygon(50% 0%, 100% 2%, 88% 35%, 88% 70%, 99% 98%, 50% 100%, 0 99%, 14% 74%, 13% 37%, 0 0); */
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slider > div,
.hero-slider .wrapper {
  height: 100%;
}

.slider-video {
  object-fit: cover;
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slider :is(img, .slider-video) {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: all 300ms ease-in-out;
}

.hero-slider :has(.swiper-slide-active):hover :is(img, .slider-video) {
  -webkit-filter: grayscale(0.5);
  filter: grayscale(0.5);
}

.box_slider .swiper {
  overflow: visible;
}

.box_slider .slider-content {
  padding: 2rem 2rem 1.5rem 2rem;
  background-color: var(--main-black);
  border-radius: var(--border-radius);
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.hero-slider .slider-content .row {
  padding-bottom: 50px !important;
}

.box_slider .swiper-slide-active .slider-content {
  background-color: var(--main-blue);
}

.box_slider .slider-content p {
  color: var(--white);
  font-size: clamp(1.125rem, 4.5vw, 1.225rem);
  line-height: 1.5;
  font-weight: 400;
}

.box_slider .slider-content p.h5 {
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 500;
}

.box_slider .swiper-slide-active .slider-content p {
  color: var(--accent-blue);
}

.box_slider .swiper-slide-active .slider-content p.h5 {
  color: var(--white);
}

.box_slider .slider-content p:nth-child(2) {
  transform-origin: center;
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 600ms ease-in-out 250ms,
    opacity 250ms ease-in-out 250ms;
}

.box_slider .swiper-slide-active .slider-content p:nth-child(2) {
  max-height: 300px;
  opacity: 1;
  transition: max-height 600ms ease-in-out 250ms,
    opacity 250ms ease-in-out 250ms;
}

.box_slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.plus {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.plus::after {
  content: '\2b';
  color: var(--white);
  background-color: var(--main-blue);
  font-family: var(--font-awesome);
  aspect-ratio: 1;
  width: 22px;
  display: inline-flex;
  justify-content: center;
  border-radius: 100%;
  font-size: 15px;
  padding: 1px;
}

.swiper-slide-active .plus::after {
  content: '\f068';
  color: var(--main-blue);
  background-color: var(--accent-blue);
}

.btn {
  padding: 1.5rem 3rem 1.4rem 3rem;
  border-radius: var(--border-radius);
  display: block;
  margin-left: 0 !important;
  margin-top: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 250ms ease-in-out;
}

.btn:hover {
  padding-left: calc(3rem - 15px);
  padding-right: calc(3rem + 15px);
}

.btn::after {
  content: '\f061';
  font-family: var(--font-awesome);
  position: absolute;
  font-size: 14px;
  opacity: 0;
  padding-left: 0;
  transform-origin: left;
  transition: all 250ms ease-in-out;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 1.225rem !important;
  color: var(--main-black);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  opacity: 0.8;
  transition: all 250ms ease-in-out;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  background-color: var(--main-blue);
  color: var(--white);
  opacity: 1;
}

.btn:hover::after {
  opacity: 1;
  padding-left: 6px;
}

.btn.style-1 {
  background-color: var(--main-blue);
  color: var(--white);
}

.btn.style-2 {
  background-color: var(--white);
  color: var(--main-black);
}

.hero-slider .sw-btn {
  position: absolute;
  bottom: 168px;
  width: 130px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
}

header {
  border-bottom: 1px solid #797f87;
  transition: all 250ms ease-in-out;
}

header.sticky {
  background-color: var(--main-black);
  border-bottom: 1px solid transparent;
}

/*nav*/

.logo {
  z-index: 3;
}

header :is(#topnav) {
  top: 0;
  max-width: inherit;
  height: 100svh;
  transform: translateX(-100%);
}

header :is(#topnav).active-nav {
  transform: translateX(0);
}

header :is(#topnav) ul {
  padding-top: calc(var(--header-height) + 33px);
}

header :is(#topnav) li {
  line-height: 60px;
  padding: 0 1rem;
}

header :is(.row) {
  padding: 0 !important;
}

header :is(#topnav) a {
  line-height: 54px;
  padding: 0;
}

header :is(#topnav) li.menu-item-has-children::after {
  right: 1rem;
}

header :is(#topnav) .sub-menu {
  transform: translateX(200%);
  opacity: 1;
  padding: calc(var(--header-height) + 33px) 1rem 0;
}

header :is(#topnav) .sub-menu.show {
  transform: translateX(0);
}

header :is(#topnav) .back {
  top: var(--header-height);
  color: var(--main-blue);
  left: 0;
  padding-top: 4px;
}

header :is(#topnav).active-nav ul {
  transition: all 300ms ease-in 200ms;
}

/*FOOTER*/

footer img {
  width: 75%;
  height: auto;
}

footer #text-4 img {
  width: 100%;
}

footer ul li {
  font-size: var(--p-fs);
  padding: 0 0 0.5rem 0;
}

footer a {
  position: relative;
}

footer a.soc {
  --_size: 1rem;
  --_padding: 0.825rem;
  text-decoration: none !important;
  aspect-ratio: 1;
  background-color: #1f2734;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  height: calc(var(--_size) + (var(--_padding) * 2));
  padding: var(--_padding) !important;
  font-size: var(--_size);
  z-index: 1;
  transition: all 250ms ease-in-out;
}

footer a.soc::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  display: block;
  background-color: var(--main-blue);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 250ms ease-in-out;
  z-index: -1;
  opacity: 0;
}

footer a.soc i {
  color: #6a727f;
  padding: 0;
}

footer a.soc:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

footer i {
  color: var(--main-blue);
  transition: all 250ms ease-in-out;
  padding-right: 4px;
}

footer a.soc:is(:hover, :focus) i {
  color: var(--white);
}

footer a.soc::after {
  content: none;
}

footer .hl-widget {
  text-transform: uppercase;
}

footer a::after {
  content: '';
  height: 1px;
  width: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  bottom: -3px;
  background-color: var(--white);
  transition: all 500ms ease-in-out;
}

footer a:hover:after {
  width: 100%;
  opacity: 1;
}

.wp-image-118 {
  max-width: 40%;
}

iframe {
  border: none;
  width: 100%;
}
/*CONTENT*/

main :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6),
h1 {
  text-wrap: balance;
  position: relative;
}

main .dark :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  color: var(--white);
}

main .dark :is(p, ul li, ol li) {
  color: #6a727f;
}

main .hl :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6)::after {
  content: '';
  width: 5rem;
  height: 3px;
  background-color: var(--main-blue);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 6px;
}

main :is(img) {
  border-radius: var(--border-radius);
}

main .big-img {
  margin-bottom: -120px;
}

main .big {
  padding-top: 120px !important;
}

.img_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 60px 70px;
}

.img_grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.img_grid :nth-child(1) {
  grid-area: 1 / 2 / 3 / 5;
  position: relative;
  aspect-ratio: 1;
}

.img_grid :nth-child(2) {
  grid-area: 2 / 1 / 4 / 3;
  position: relative;
  align-self: flex-end;
}

.img_grid :nth-child(1)::after,
.img_grid :nth-child(2)::after {
  content: '';
  box-shadow: inset 0 0 58px #333;
  position: absolute;
  inset: 0 0 0 0;
  opacity: 1;
  visibility: visible;
  border-radius: var(--border-radius);
  transition: all 250ms ease-in-out;
}

.img_grid :nth-child(1):hover:after,
.img_grid :nth-child(2):hover:after {
  opacity: 0;
  visibility: hidden;
  box-shadow: inset 0 0 0 #333;
}

.img_grid :nth-child(3) {
  grid-area: 3 / 3 / 4 / 5;
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  background: #141b25;
  border-radius: var(--border-radius);
  color: var(--white);
  font-weight: 600;
  padding: 0 1rem;
  font-size: 1.125rem;
  line-height: 1.2;
}

.img_grid .youtube_img {
  height: 100%;
}

.img_grid .youtube_img img {
  height: 100%;
  width: 10;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.img_grid .play_button {
  position: absolute !important;
}

main :is(img) {
  -webkit-filter: grayscale(0.2);
  filter: grayscale(0.2);
  width: 100%;
  height: auto;
  transition: all 300ms ease-in-out;
}

main :is(.testi) :is(img):hover {
  -webkit-filter: grayscale(0.2);
  filter: grayscale(0.2);
}

main :is(.testi) :is(img) {
  -webkit-filter: grayscale(0.8);
  filter: grayscale(0.8);
}

.left,
.align-end {
  align-self: flex-end;
}

.left .img_grid :nth-child(1) {
  grid-area: 1 / 1 / 3 / 4;
}

.left .img_grid :nth-child(2) {
  grid-area: 2 / 3 / 4 / 5;
}

.left .img_grid :nth-child(3) {
  grid-area: 3 / 1 / 4 / 3;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  margin-left: 0;
}

nav a[href='#'] {
  pointer-events: none;
}

/*Contact*/

.forms {
  --_margin: 200px;
  margin-top: var(--_margin);
  background-color: #f1f4f9;
}

.forms img {
  border-radius: 0;
}

.forms .wrapper {
  margin-top: calc(-1 * var(--_margin) + (var(--_margin) / 4));
  background-color: #141b25;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.wpcf7-form {
  position: relative;
}

input[type='text'],
input[type='date'],
input[type='datetime'],
input[type='email'],
input[type='number'],
input[type='search'],
input[type='time'],
input[type='url'],
input[type='tel'],
input[type='password'],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: var(--p-fs);
  background-color: var(--main-black);
  border: none;
  border-bottom: 1px solid #a1acbf60;
  font-family: var(--font-family-main);
  color: #fff;
  outline: none;
  transition: all 250ms ease-in-out;
}

:is(input, textarea, select):focus {
  border-bottom: 1px solid var(--white);
}

textarea {
  max-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: #a1acbf60;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-not-valid {
  border-bottom: 2px dashed #f00 !important;
}

.img-fit-content :is(img) {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}

.wpcf7-submit {
  --_size: 1.925rem;
  --_padding: 1.5rem;
  border: none;
  text-decoration: none !important;
  aspect-ratio: 1;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  box-shadow: inset 0px 0px 0px 3px var(--main-blue);
  height: calc(var(--_size) + (var(--_padding) * 2));
  padding: var(--_padding) !important;
  font-size: var(--_size);
  z-index: 1;
  margin: auto;
  display: block;
  position: relative;
  transition: all 250ms ease-in-out;
}

.wpcf7-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  display: block;
  background-color: var(--main-blue);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 250ms ease-in-out;
  z-index: -1;
  opacity: 0;
}

.wpcf7-submit:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.wpcf7-submit::after {
  content: '\f1d8';
  color: var(--main-blue);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 250ms ease-in-out;
}

.wpcf7-submit:hover::after {
  color: var(--white);
}

.wpcf7-response-output {
  color: var(--white);
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  margin: 1rem 0 0 !important;
}

.forms a {
  color: var(--main-blue);
}

.forms a:hover {
  color: var(--white);
}

.wpcf7 input[type='checkbox'] {
  transform: scale(1.3);
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  outline: none;
  content: none;
}

.wpcf7 input[type='checkbox']:before {
  content: '\f00c';
  font-size: 0.825rem;
  width: 16px;
  height: 16px;
  color: transparent !important;
  background: var(--main-blue);
  margin-right: 0.5rem;
  padding: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  margin: -14px 0 0 -26px;
}

.wpcf7-acceptance .wpcf7-list-item {
  padding-left: 30px;
  margin: 0 !important;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  line-height: 1;
}

.wpcf7 input[type='checkbox']:checked::before {
  color: var(--white) !important;
}

.wpcf7 input[type='checkbox']:is(:focus) {
  border: none;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: '';
}

.ctsm-pt {
  margin-top: -100px !important;
}

/*Testi*/

.partner,
.bg-1 {
  background-image: url(img/light-bg.jpg);
}

.bg-2 {
  background-image: url(img/light-bg.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-color: var(--white);
  padding-bottom: 100px !important;
}

.partner .slider-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 10rem;
}

.partner img {
  width: auto !important;
  display: block;
  max-width: 200px;
  max-height: 80px;
  height: auto;
}

.partner .swiper-wrapper {
  overflow-y: visible;
}

.partner .sw-btn,
.feedback .sw-btn {
  position: relative;
  width: 120px;
  height: 66px;
  z-index: 2;
  margin-inline: auto;
}

.partner .swiper-button-next::after,
.swiper-button-prev::after {
  background-color: var(--white);
}

.center {
  text-align: center;
}

.center > ::after {
  left: 50% !important;
  transform: translateX(-50%);
}

/*BLOG*/

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: all 250ms ease-in-out;
}

article .blog-img {
  width: 100%;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

article:is(:hover, :focus) img {
  transform: scale(1.1);
}

article .details,
.article-img .details,
article .details-karriere,
.article-img .details-karriere {
  display: flex;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

article:is(:hover, :focus) .details,
article:is(:hover, :focus) .details-karriere {
  padding-left: 2rem;
}

article .date a,
.article-img .date,
article .date-karriere a,
.article-img .date-karriere {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  color: var(--white);
  background-color: var(--main-blue);
  border-radius: var(--border-radius);
  font-weight: 600;
  height: 80px;
  width: 80px;
  font-size: 1.625rem;
}

article .date-karriere a,
.article-img .date-karriere {
  height: 80px;
  width: 100%;
  font-size: 1.225rem;
}

.article .date-karriere a,
.article-img .date-karriere {
  height: 100px;
  width: 100%;
}

article .date,
.article-img .date,
article .date-karriere,
.article-img .date-karriere {
  overflow: hidden;
  height: 80px;
  width: 80px;
  z-index: 2;
}

article .date-karriere,
.article-img .date-karriere {
  height: 80px;
  width: 100%;
  position: relative;
}

article .date::after,
article .date-karriere::after {
  content: '\f054';
  background-color: var(--main-blue);
  color: var(--white);
  height: 60px;
  width: 60px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transform: translate(10px, 0);
  transition: all 250ms ease-in-out;
}

article .date-karriere::after {
  content: '';
  background-color: var(--main-black);
}

article .date-karriere::after {
  width: calc(100% - 2rem);
}

article:is(:hover, :focus) .date::after,
article:is(:hover, :focus) .date-karriere::after {
  content: '\f054';
  background-color: var(--main-blue);
  color: var(--white);
  height: 80px;
  width: 80px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  border-radius: var(--border-radius);
}

article:is(:hover, :focus) .date-karriere::after {
  width: 100%;
  background-color: var(--main-black);
}

article:is(:hover, :focus) .date-karriere::after {
  content: 'Zum Angebot';
  font-family: var(--font-family-main), var(--font-awesome);
  font-size: 1.225rem;
  font-weight: 600;
  width: 100%;
}

article a.hover {
  height: 80px;
  width: 80px;
  position: absolute;
  transform: translateY(0);
  background-color: transparent;
  transition: all 250ms ease-in-out;
  z-index: 3;
}

article .date-karriere a.hover {
  width: 100%;
}

article:is(:hover, :focus) a.hover {
  transform: translateY(-100%);
}

article .details {
  transform: translateY(-40%);
}

article .date span,
.details .date span {
  line-height: 1;
  text-transform: uppercase;
}

article span.month,
.details .date span.month {
  font-weight: 500;
  font-size: 1.225rem;
}

article .user,
.details .user {
  align-self: end;
  font-weight: 300;
  font-size: 1.125rem;
}

.article-img .details,
.details-karriere {
  margin-top: -3rem;
}

main article :is(h3) {
  margin: 0 !important;
  text-align: center;
  font-size: 1.825rem;
  font-weight: 500;
}

main article :is(h3) a {
  display: block;
  line-height: 1.225;
  color: var(--global-text-color);
}

main article :is(h3) a:hover {
  color: #333;
}

.button {
  width: 100%;
  text-align: center;
  margin-inline: auto;
  aspect-ratio: 16 / 5;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem 1rem 0;
}

.button a {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
  font-size: var(--p-fs);
  color: var(--white);
  border-radius: var(--border-radius);
  background-color: var(--main-black);
}

/*Karriere*/

/* .button a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    inset: .5rem 0 0 .5rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    transition: all 250ms ease-in-out;
} */

.button a:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--main-blue);
}

/* .button a:is(:hover, :focus):after {

    background-color: var(--main-blue);
} */

/*TABS*/

.tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tab-grid .tabcontent {
  grid-area: 2 / 1 / 2 / 3;
}

.tabcontent[style*='hidden'],
.tabcontent2[style*='hidden'] {
  opacity: 0;
  transform: translateY(-40px);
  transform-origin: top;
  transition: all 550ms ease-in-out;
}

.tabcontent[style*='visible'],
.tabcontent2[style*='visible'] {
  transform-origin: top;
  animation: fade-in-out 450ms ease-in-out;
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
  }
}

.sticky .youtube_link {
  align-self: start;
  position: sticky;
  top: 150px;
}

.tab-grid .tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-area: 1 / 1 / 1 / 3;
  gap: 1rem;
}

.tab button,
.normal button {
  display: inline-flex;
  background-color: #1b2330;
  border-radius: var(--border-radius);
  color: #6a727f;
  flex-direction: column;
  border: none;
  padding: 2rem 1rem;
  gap: 1.5rem;
  font-family: var(--font-family-main);
  cursor: pointer;
  transition: all 250ms ease-in-out;
  align-items: center;
  justify-content: center;
}

.tab button:is(.active),
.normal .tabs button:is(.active) {
  background-color: var(--white);
  color: var(--main-blue);
}

.tab button:is(.active) .title,
.tabs button:is(.active) .title {
  color: var(--main-black);
}

.tab button i {
  font-size: 50px;
}

.tab button .title,
.normal button .title {
  font-size: 1.325rem;
  font-weight: 600;
}

.tabcontent :is(h3) {
  font-size: clamp(1.5rem, 2.5vw, 1.825rem);
}

/**/

.normal {
  display: grid;
  grid-template-columns: 1fr;
}

.normal .tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.normal .tabs {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.normal .tabs::-webkit-scrollbar {
  display: none;
}

.tab-container .normal {
  overflow: hidden;
}

.normal button {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius);
  color: #6a727f;
  flex-direction: row;
  border: none;
  padding: 1.4rem 2.5rem 1.2rem;
  align-items: center;
  gap: 1rem;
}

.normal .tabs button:is(.active) {
  background-color: var(--white);
  color: var(--main-blue);
}

.normal .tabs button i {
  font-size: 24px;
}

.normal .tabcontent2 {
  grid-area: 2 / 1 / 2 / 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-auto-rows: minmax(auto, max-content) 230px;
}

.tabcontent2 .wrapper-inner {
  background-color: var(--white);
  display: grid;
  padding: 3rem 3rem 2rem;
  grid-template-columns: 1fr 40%;
  gap: 3rem;
  border-radius: var(--border-radius);
  grid-area: 1 / 1 / 1 / 3;
}

.tabcontent2 .wrapper-inner .content {
  grid-area: 1 / 1 / 1 / 3;
}

.tabcontent2 .img {
  grid-area: 2 / 1 / 2 / 3;
  padding: 1rem 0 0 0;
  position: relative;
  width: calc(100%);
  height: 230px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.tabcontent2 img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*FAQ*/

.faq-container {
  max-width: 900px;
  margin: 0 auto 1rem auto;
}

.faq-content {
  display: none;
}

.faq-title {
  font-size: 1.225rem;
  font-size: clamp(1.225rem, 2.5vw, 1.375rem);
  font-weight: 600;
  position: relative;
  cursor: var(--cursor);
  transition: all 250ms ease-in-out;
  display: flex;
  color: var(--main-black);
  align-items: center;
  padding: 4px 0;
}

.faq-title::after {
  content: '\2b';
  display: inline-flex;
  color: var(--main-black);
  font-weight: 300;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transform: rotate(0);
  transition: all 250ms ease-in-out;
  margin-left: auto;
  background-color: var(--main-blue);
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  align-items: center;
  transform-origin: center;
}

.faq-title.deg::after {
  transform: rotate(45deg);
}

/* .faq-container:focus-within :nth-child(2) {
    animation: fadein 250ms ease-in;
} */

.faq-content {
  padding: 0.5rem 0;
  font-size: 1rem;
}

div.show {
  animation: fadein 250ms ease-in;
}

/*Feedback*/

.feedback .slider-content {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.feedback .image {
  width: 80%;
  height: 320px;
  margin: auto;
  border-radius: var(--border-radius);
}

.feedback .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.feedback .feedback-content {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  margin-top: -3rem;
  z-index: 2;
}

.feedback .feedback-content :is(p) {
  font-size: clamp(1rem, 2.5vw, 1.125rem) !important;
}

.feedback .content-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius);
}

/* .feedback .swiper-wrapper {
    overflow: visible;
    width: var(--container-width);
    margin-inline: auto;
} */

.feedback .feed-wrap {
  overflow: hidden;
}

.feedback .swiper {
  overflow: visible !important;
}

.feedback .details {
  margin-top: 1rem;
  margin-left: 0;
  text-align: center;
}

.feedback .details :is(p) {
  font-size: 1.5rem !important;
  font-weight: 500;
  color: var(--main-black);
}

.head-main {
  padding: 0 !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  -webkit-filter: grayscale(0.5);
  filter: grayscale(0.5);
}

.align-center {
  display: flex;
  align-content: center;
  justify-content: center;
}

.head-main div {
  z-index: 1;
}

.head-main :is(h1) {
  color: var(--white);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 600;
}

.head-main .header-content {
  padding: 16rem 1rem 9rem;
  position: relative;
}

.head-main .inner {
  text-align: center;
  max-width: var(--container-width);
}

.head-main a {
  color: var(--main-blue);
}

.head-main span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.single main :is(h2, h3, h4, h5, h6) {
  font-size: calc(var(--headline-h2-size) - 0.725rem);
}

main ul li::marker {
  content: '\f560   ';
  font-family: var(--font-awesome);
}

main ul li::before {
  display: inline-block;
  vertical-align: middle;
}

.karriere-intro {
  background-color: var(--main-black);
  color: var(--white) !important;
  border-radius: var(--border-radius);
  text-align: center;
}

.m-top {
  z-index: 2;
  margin-top: -5rem;
}

.karriere-intro strong {
  color: #aaa !important;
  font-size: calc(var(--p-fs) - 2px);
  display: block;
  font-weight: 400;
}

.clr-box-1 {
  border-radius: var(--border-radius);
  background-color: var(--main-blue);
}

.clr-box-2 {
  border-radius: var(--border-radius);
  background-color: #fafafa;
}

main .clr-box-1.dark :is(p, ul li, ul li::marker) {
  color: var(--white) !important;
}

main .clr-box-1.dark ul li::marker {
  color: var(--white) !important;
}

main video {
  width: 100%;
  border-radius: var(--border-radius);
  /* border: 10px solid #484847; */
}

.yt-popup-overlay {
  inset: 0;
  z-index: 20;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: inline-flex;
  position: fixed;
  top: 0;
}

.video .youtube_link {
  cursor: pointer;
}

.yt-video-container video {
  aspect-ratio: 9/16;
  width: auto;
  height: 80svh;
}

.yt-popup-content {
  position: relative;
}

.yt-popup-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: var(--main-black);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: inline-flex;
}

.video_container {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 10px solid var(--main-black);
  box-shadow: 0 0 10px #666;
  border-radius: var(--border-radius);
}

.video_container :is(img) {
  border-radius: revert !important;
}

.play_button {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play_button svg {
  background: var(--main-blue);
  padding: 10px;
  border-radius: 50%;
}

.img-box-mitarbeiter :where(img) {
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.inline-flex.mit-meta {
  --_margin: 4.5rem;
  display: block;
  width: calc(100% - 2rem);
  margin-inline: auto;
  margin-top: calc(-1 * var(--_margin));
  text-align: center;
  margin-bottom: var(--_margin);
}

.mit-meta h3 {
  line-height: 1;
  color: var(--white);
  font-size: calc(var(--headline-h3-size) - 115%);
  border-radius: var(--border-radius);
  background-color: var(--main-blue);
  padding: 1.2rem 1rem 1rem;
}
.mit-meta br {
  line-height: 0;
}

.mit-meta :where(p) {
  margin: 0;
}

.mit-meta h3 span {
  color: var(--main-black);
  font-size: calc(var(--headline-h3-size) - 90%);
}

.mit-grid {
  --_cols: 1;
  display: grid;
  grid-template-columns: repeat(var(--_cols), 1fr);
  gap: 1rem;
}

@media (min-width: 0) {
}

@media (min-width: 576px) {
  .btn {
    display: initial;
  }

  .mit-grid {
    --_cols: 2;
  }

  p a.btn:nth-child(2) {
    margin-left: 1rem !important;
  }

  .partner .sw-btn,
  .feedback .sw-btn {
    top: 0;
  }

  .tab-grid .tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-area: 1 / 1 / 1 / 2;
    gap: 1rem;
  }

  .tab-grid .tabcontent {
    grid-area: 1 / 2 / 1 / 3;
  }

  .partner .sw-btn,
  .feedback .sw-btn {
    position: absolute;
    top: 66px;
    right: 0;
    z-index: 2;
  }

  .partner .sw-btn {
    top: 0;
  }

  .feedback .sw-btn {
    top: -66px;
  }

  .feedback .slider-content {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
  }

  .feedback .image {
    width: 200px;
    height: 360px;
    margin: inherit;
  }

  .feedback .feedback-content {
    width: calc(100% - 200px);
    margin-left: -2rem;
    margin-right: inherit;
    margin-bottom: -0.8rem;
    z-index: 2;
    margin-top: inherit;
  }

  .feedback .details {
    margin-top: 2rem;
    margin-left: 5rem;
    text-align: left;
  }
}

.dark .faq-title {
  color: var(--white);
}

@media (min-width: 768px) {
  .tabcontent2 .img {
    grid-area: 1 / 2 / 3 / 3;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    padding: 3rem 0 0 0;
  }

  .mit-grid {
    --_cols: 3;
  }

  .tabcontent2 .wrapper-inner .content {
    grid-area: 1 / 1 / 1 / 2;
  }

  .normal .tabcontent2 {
    grid-auto-rows: minmax(auto, max-content) 100px;
  }

  main .video-container {
    padding: 0 16%;
  }

  .post-870 {
    grid-column: span 3;
  }

  .post-870 img {
    max-height: 460px;
  }

  .post-870 h3 {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .hero-slider {
    height: 630px;
  }

  .bg-2 {
    background-position: 100% top, left top;
  }

  .box_slider {
    width: 375px;
  }

  .hero-slider .sw-btn {
    width: 105px;
    bottom: 30%;
    right: 25%;
    transform: translateX(0);
    left: inherit;
  }

  .box_slider .slider-content {
    padding: 3rem 3rem 2.5rem 3rem;
  }

  header :is(#topnav) ul {
    padding-top: 0;
  }

  header :is(#topnav) {
    height: initial;
    transform: inherit;
  }

  header :is(#topnav) {
    height: initial;
    height: 100%;
    justify-content: center;
  }

  header :is(#topnav) ul {
    margin-left: initial !important;
  }

  header :is(#topnav) .sub-menu {
    border-radius: var(--border-radius) !important;
    min-width: 300px;
  }

  header :is(#topnav) .sub-menu:has(li.menu-item-has-children:hover) {
    border-radius: var(--border-radius) 0 0 var(--border-radius) !important;
  }

  header :is(#topnav) .sub-menu .sub-menu {
    border-radius: 0 var(--border-radius) var(--border-radius) 0 !important;
  }

  header :is(#topnav) li.menu-item-has-children::after {
    content: '\f0d7';
  }

  header :is(#topnav) .sub-menu li.menu-item-has-children::after {
    content: '\f054';
    transform: rotate(0deg);
    font-size: 0.725rem;
    color: #999;
    right: 1rem;
  }

  header :is(#topnav) a {
    line-height: 50px;
  }

  header :is(#topnav) ul .sub-menu {
    transform: translateY(30px) !important;
    display: block;
    padding: 1.5rem 0;
    visibility: hidden;
    z-index: 1;
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.2);
  }

  header :is(#topnav) .sub-menu .sub-menu {
    top: -1.5rem !important;
  }

  header :is(#topnav) ul .sub-menu::before {
    content: '\f0d8';
    position: absolute;
    color: var(--white);
    top: -25px;
    left: 2rem;
    font-size: 30px;
    z-index: -1;
  }

  header :is(#topnav) ul .sub-menu .sub-menu::before {
    display: none;
  }

  header :is(#topnav) ul .sub-menu li {
    opacity: 0;
    padding: 0 0.825rem !important;
    transition: all 250ms ease-in-out 150ms !important;
  }

  header :is(#topnav) ul .sub-menu li a {
    padding: 0 2rem;
    font-weight: 400;
    border-radius: var(--border-radius);
    transition: all 250ms ease-in-out 150ms !important;
  }

  header :is(#topnav) ul .sub-menu li:hover > a {
    background-color: #f1f4f8;
  }

  header :is(#topnav) ul li:is(:hover, :focus-within) > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
  }

  header :is(#topnav) ul li:is(:hover, :focus-within) > .sub-menu li {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .m-width {
    max-width: 600px !important;
  }
  .m-width-l {
    max-width: 600px !important;
    margin-left: auto;
  }
}

@media (min-width: 1400px) {
}
