/*!
Theme Name: napoleon
Theme URI: https://napoleonfilm.de
Author: webcoon
Author URI: https://www.webcoon.de
Description: Theme for napoleon
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: napoleon
Tags: napoleon

*/


/*--------------------------------------------------------------
# FONT
--------------------------------------------------------------*/

@font-face {
	font-family: 'Poppins';
	src: url('/wp-content/themes/napoleon/assets/fonts/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/wp-content/themes/napoleon/assets/fonts/Montserrat.ttf') format('truetype');
}


/*--------------------------------------------------------------
# VARIABLE
--------------------------------------------------------------*/

:root {
	--maxwidth: 1200px;
	--width: 90%;
	--header-height: 110px;
}


/*--------------------------------------------------------------
# GLOBAL
--------------------------------------------------------------*/

body {
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    color: #1E1009;
	font-weight: 400;
	line-height: 1.5em;
	font-size: 15px;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	-moz-osx-font-smoothing: grayscale;
  	text-rendering: optimizeLegibility;
}

* {
	box-sizing: border-box;
}

a {
	color: #000;
	text-decoration: none;
}

p {
	margin: 0 0 15px;
}

p:last-child {
	margin: 0;
}

img, video {
	width: 100%;
	height: auto;
	display: block;
}

.overflow-hidden, .overflow-hidden body {
	overflow: hidden;
}

h2 {
	font-size: 50px;
	line-height: 1.2em;
	font-weight: 500;
	font-family: 'Poppins';
	margin: 0 0 20px;
}

h1, h3 {
	font-size: 32px;
	line-height: 1.3em;
	font-weight: 500;
	font-family: 'Poppins';
	margin: 0 0 20px;
}

h4 {
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 400;
}

h5 {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	margin: 0 0 10px;
}


/*--------------------------------------------------------------
# BUILDER
--------------------------------------------------------------*/

.section {
	padding:60px 0;
	position: relative;
}

#content > .section:first-child {
	padding-top:var(--header-height);
}

.row {
	display: flex;
	gap: 30px 60px;
	margin: 0px auto;
	padding: 25px 0;
	width: var(--width);
	max-width: var(--maxwidth);
}

.row.full {
	width: 100%;
	max-width: 100%;	
}

.row .row {
	margin: 0;
	padding: 0;
	gap: 0;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.33%;
}

.col-6 {
	width: 50%;
}

.col-8 {
	width: 66.66%;
}

.col-9 {
	width: 75%;
}

.col-12 {
	width: 100%;
}

.padding-left {
	padding-left: 50px;
}

.padding-right {
	padding-right: 50px;
}

.p-b-0 {
	padding-bottom: 0 !important;
}

.p-t-0 {
	padding-top: 0 !important;
}

.p-t-05 {
	padding-top: 30px !important;
}

.col-big {
	background: #c9eafa;
	padding: 60px;
	border-radius: 30px;
	width: calc(50% + 160px);
	margin-left: -160px;
}

.m-t-50 {
	margin-top: 50px;
}

.center {
	text-align: center;
}

.middle {
	align-items: center;
}

.between {
	display:flex;
	justify-content: space-between;
}

.swiper-container {
	position: relative;
	overflow: hidden;
	-webkit-text-size-adjust: none;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/

#header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header-height);
	position: absolute;
	z-index: 999;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: var(--width);
	max-width: var(--maxwidth);
}

.custom-logo-link {
	display: block;
	width: fit-content;
}

.custom-logo-link img {
	height: 55px;
	width: auto;
}

.header-menu .menu {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-menu .menu li a {
	display: flex;
	align-items: center;
	margin:auto 25px;
}

.header-menu .menu li a img {
	height: 25px;
	width: auto;
	margin-right: 10px;
}

.header-tools {
	display: flex;
  	gap: 10px;
	align-items: center;
}

.checkout-button, .login-button {
	position: relative;
	height: 36px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	border-radius: 100%;
}

.checkout-button img, .login-button img{
	height: 18px;
  	width: auto;
}

.checkout-button .cart-count {
	position: absolute;
	bottom: -5px;
	background: #1c1c1c;
	height: 15px;
	width: 15px;
	border-radius: 100%;
	font-size: 9px;
	line-height: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	left: -5px;
	color: #fff;
}

.langswitch {
	padding: 0;
	list-style: none;
	display: flex;
	text-transform: uppercase;
}

.langswitch .lang-item {
	border-right: 1px solid;
	padding-right: 6px;
	margin-right: 6px;
}

.langswitch .lang-item:last-child {
	border-right: 0px;
	padding-right: 0px;
	margin-right: 0px;
}

.langswitch .current-lang {
	font-weight: 600;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	z-index: 999;
}

.dropdown-menu-content a {
	padding: 4px 16px;
	text-decoration: none;
	display: block;
	color: #1E1009 !important;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu-wrapper {
	margin-top: 15px;
	background-color: #f5f9ff;
	min-width: 240px;
	border-radius: 10px;
}

.dropdown-menu-wrapper:before {
	content:"";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 7.5px 8px 7.5px;
	border-color: transparent transparent #f5f9ff transparent;
	transform: rotate(0deg);
	position: absolute;
	top: 8px;
	transform: translateX(-50%);
	left: 50%;
}

.dropdown-menu-header {
	padding: 12px 16px;
  	font-weight: 600;
  	border-bottom: 1px solid #dfe6f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
  	flex-wrap: wrap;
}

.logout {
	font-size: 10px;
  	text-decoration: underline;
  	font-weight: 400;
}

.dropdown-menu-content {
	padding: 8px 0 12px;
}

.white #header img {
	filter: brightness(0) invert(1);
}

.white #header a {
	color:#fff;
}

.white .langswitch .lang-item {
	border-color: #fff;
}

.mobil-menu-button {
	display: none;
}

/*--------------------------------------------------------------
# GLOBAL
--------------------------------------------------------------*/

#hero {
	min-height:100vh;
}

#hero .bg-img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	background: #000;	
}

#hero .bg-img img {
	height: 100%;
	object-fit: cover;
	opacity: .8;
}

a.button {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	border: 1px solid;
	font-weight: 500;
	white-space: nowrap;
}

button.woocommerce-button, button.button {
	display: block;
	padding: 10px 30px;
	border-radius: 50px;
	border: 1px solid #000;
	font-weight: 500;
	white-space: nowrap;
	background: unset;
	font-size: 15px;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
}

button.woocommerce-button {
	margin-top: 15px !important;
}

.bewertungen-book-section {
	min-height: 30vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;	
}


.grey-bg {
	background: #1C1C1C;
	color:#fff;
}

.img-border {
	border-radius:15px;
}

.slider-title {
	margin-top: 5px;
	display: flex;
  	gap: 10px;
	font-weight: 500;
}

.slider-navigation {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.slider-buttons {
	display: flex;
	margin: 0 0 0 auto;
}

.slider-nav {
	height: 36px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	padding: 8px;
	border-radius: 100%;
	cursor: pointer;
	transition: opacity .3s ease;
}

.slider-prev {
	margin-right: 10px;
}

.slider-prev .arrow {
	transform: rotate(180deg);
}

.white.single-product .arrow {
	filter: brightness(100);
}

.slider-pagination {
	text-align: center;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	width: fit-content;
}

.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #acacac;
	display: inline-block;
	border-radius: 100%;
	outline: 1px solid #fff0;
	outline-offset: 2px;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	outline: 1px solid #1E1009;
	background: #1E1009;
}

.white.single-product .swiper-pagination-bullet-active {
	outline: 1px solid #FFF;
	background: #FFF;
}

/*--------------------------------------------------------------
# STARTSEITE
--------------------------------------------------------------*/

.page-template-page-home {
	background: #d4ebf7;
}

.page-template-page-home .light-blue-bg {
	background: #c0dcea;
}

.page-template-page-home .light-blue-bg .col-big {
	background: #d4ebf7;
}

.hero-home {
	min-height: 600px;
	border-radius: 30px;
	background: #94d0ee;
	align-items: center;
	padding: 60px;
	max-width: calc(var(--maxwidth) + 120px);
	position: relative;
	overflow: hidden;
}

.hero-home img {
	mix-blend-mode: multiply;
  	max-width: 300px;
  	margin: auto;
}


.light-blue-bg {
	background: #edf8fe;
	overflow: hidden;
}

.linkbox {
	display: flex;
	flex-direction: column;
	padding: 20px 30px 30px;
	border: 1px solid;
	border-radius: 20px;
}

.linkbox img {
	height: 25px;
	width: auto;
}

.linkbox .titel {
	font-weight: 500;
	margin: 15px 0 5px;
	font-size: 20px;
}

.short-col {
	text-align: center;
	margin: 0 auto;
	max-width: 900px;
}


/*--------------------------------------------------------------
# KURZFILME
--------------------------------------------------------------*/

.page-template-page-kurzfilme #hero {
	display: flex;
	align-items: center;
	color: #fff;
}

.page-template-page-kurzfilme  a.button.video-button {
	margin-top: 20px;
}

a.button.video-button {
	background:#fff;
	border-color:#fff;
}

#section-filmverlag .custom-img .col-6 {
	width: calc(50% - 25px);
}

#section-filmverlag .custom-img .col-6:last-child {
	margin: 100px 0 0 50px;
}

#section-highlight {
	padding-top: 0;
}

#section-highlight .row-fullwidth {
	position: relative;
	padding: 150px 0 200px;
	overflow: hidden;
}

#section-highlight .row-fullwidth > .row{
	position: relative;
	z-index: 2;
}

#section-highlight .row-fullwidth > .row .col-12 {
	max-width: 600px;
}

#section-highlight .kurzfilm-beschreibung {
	margin: 25px 0 40px;
}

.kurzfilm-highlight-bg {
	position: absolute;
	top: 0;
	width: 100vw;
	height: 100%;
	left: 0;
	bottom: 0;
	right: 0;
}

#section-highlight .kurzfilm-highlight-bg .gradient {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	height: 15vw;
	background: rgb(28,28,28);
	background: linear-gradient(0deg, rgba(28,28,28,1) 0%, rgba(28,28,28,0) 100%);
	z-index: 1;
}

#section-highlight .kurzfilm-highlight-bg img {
	opacity: 0.6;
	position: relative;
	z-index: 0;
	height: 100%;
	object-fit: cover;
}

#section-highlight  .slider-row {
	margin-top: -100px;
	position: relative;
	z-index: 2;
}

#section-unterwasserwelten {
	background: linear-gradient(0deg, rgb(201, 234, 250) 20%, rgb(28, 28, 28) 20%);
	padding: 20px 0 0;
}

#section-unterwasserwelten .row .col-6:last-child {
	padding-top: 80px;
}

#section-unterwasserwelten-2 .custom-img {
	margin-left: auto;
}

#section-unterwasserwelten-2 .custom-img .col-6 {
	width: calc(50% - 25px);
}

#section-unterwasserwelten-2 .custom-img .col-6:first-child {
	margin: -120px 0 60px 0;
}

#section-unterwasserwelten-2 .custom-img .col-6:last-child {
	margin: -300px 0 0 50px;
}

#section-weitere-kurzfilme {
	background-color: #F5F5F5;
}

.kurzfilm-dauer {
	background: #1C1C1C;
	padding: 3px 10px;
	display: inline-block;
	margin-top: 5px;
	border-radius: 5px;
	font-size: 12px;
	color: #fff;
}

.white .kurzfilm-dauer {
	background: #262626;
}

.swiper-unterwasser .slider-thumbnail img {
	border-radius:15px;
	height: 200px;
  	object-fit: cover;
}

.blue-bg {
	background: #a6c9d2;
}


/*--------------------------------------------------------------
# PRODUKT - SINGLE
--------------------------------------------------------------*/

.woocommerce-breadcrumb {
	font-size: 13px;
}

.woocommerce-breadcrumb a {
	text-decoration: underline;
}

.produkt-infos {
	padding: 30px;
	border-radius: 30px;
	display: flex;
  	flex-direction: column;
}

.price {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2em;	
}

.price del {
	font-size: 14px;
}

.price ins {
	text-decoration: none !important;
}

.single_add_to_cart_button {
	display: inline-block;
	padding: 10px 50px;
	border-radius: 50px;
	border: 1px solid;
	font-weight: 500;
	background: unset !important;
	font-size: 18px;
	cursor: pointer;
	transition: all .3s ease;
}

.single_add_to_cart_button:hover {
	border: 1px solid #1C1C1C;
	background: #1C1C1C !important;
  	color: #fff;
}

.checkout-wrapper {
	display: flex;
  	gap: 30px;
	border-top: 1px solid #0002;
	padding-top: 20px;
}

.woocommerce-product-details__short-description {
	margin-bottom: 30px;
}

.checkout-wrapper .screen-reader-text {
	display: none !important;
}

.tax {
	font-weight: 300;
	font-size: 12px;
	display: block;
	line-height: 1.2em;
}

.woocommerce-product-gallery__image img {
	border-radius: 30px;
	width: auto;
	max-height: 450px;
	max-width: 100%;
	margin: auto;
}

.shipping-infos {
	font-size: 12px;
	line-height: 1.2em;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
  	gap: 10px;
}

.shipping-infos > div {
	background: #0001;
	padding: 10px 15px;
	border-radius: 100px;
}

.white.single, .white.single a {
	color: #fff;
}

.white.single .checkout-wrapper {
	border-top: 1px solid #fff2;
}

.white.single .single_add_to_cart_button {
	color: #fff;
	border: 1px solid #fff;
}

.white.single .single_add_to_cart_button:hover {
	border: 1px solid #fff;
	background: #fff !important;
  	color: #1C1C1C;
}

.produkt-desc {
	padding: 30px;
  	border: 1px solid;
  	border-radius: 30px;
	margin: 25px auto;
}

.gliederung-col {
	border-right: 1px solid;
	padding-right: 30px;
}

.gliederung-content ol {
	padding-left: 20px;
}

.gliederung-content ol li {
	margin-bottom: 6px;
}

.custom-product-gallery {
    display: flex;
    flex-direction: column;
}

.main-image-container {
    width: 100%;
    margin-bottom: 10px;
  	border-radius: 20px;
  	overflow: hidden;
}



.main-image-container img, .main-image-container vm-player {
    width: 100%;
    height: auto;
	border-radius: 30px;
}

.thumbnail-navigation {
    display: flex;
    gap: 10px;
}

.thumbnail {
    cursor: pointer;
    width: 80px;
    height: 80px;
    overflow: hidden;
	border-radius: 10px;
	display: flex;
	align-items: center;
  	justify-content: center;
  	background: #000;
}

.thumbnail img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	opacity: .7;
	transition: opacity .3s ease;
}

.thumbnail:hover img, .thumbnail.active img {
	opacity: 1;
}


.swiper-lektionen .slider-thumbnail img {
	border-radius: 15px;
	height: 200px;
	object-fit: cover;
}


.swiper-button-disabled {
	opacity: 0 !important;
}

.slider-pagination > span:only-child {
	opacity: 0 !important;
}


.hl-small {
	font-size: 24px;
}

.a-t {
	align-items: flex-start;
}


.toggle-text {
	cursor: pointer;
}

/*--------------------------------------------------------------
# LEHRFILM
--------------------------------------------------------------*/

.page-template-page-lehrfilme {
	background: #eef8fd;
}

.hero-lehrfilm {
	min-height: 600px;
	border-radius: 30px;
	background: #C9EAFA;
	align-items: center;
	padding: 60px;
	max-width: calc(var(--maxwidth) + 120px);
	position: relative;
	overflow: hidden;
}

.hero-lehrfilm .col-6:first-child {
	position: relative;
	z-index: 3;
}

.hero-lehrfilm .bg-img .img{
	position: absolute;
	top: 0;
	right: 0;
	left: 30%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-lehrfilm .bg-img .img:after {
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(201,234,250);
	background: linear-gradient(270deg, rgba(201,234,250,0) 0%, rgba(201,234,250,1) 100%);
}

.hero-lehrfilm .bg-img .img img {
	mix-blend-mode: multiply;
  	opacity: 0.6;
}

.icons {
	display: flex;
	flex-direction: column;
	gap: 10px;
  	margin: 20px 0;
}

.icons .icon {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	font-weight: 500;
}

.icons .icon .img {
	margin-top: 3px;
}

.blue-bg {
	background: #c9eafa;
}

.mw-800 {
	max-width: 800px;
  	margin: auto;
  	text-align: center;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 30px;
}

.accordion-element {
    overflow: hidden; 
	transition: all .3s ease;
	border-radius: 10px;
	border: 1px solid;
	text-align: left;
}

.accordion-title {
    position: relative;
    padding: 20px 30px;
    cursor: pointer;  
	font-weight: 500;
	display: flex;
	align-items: center;
}

.accordion-title::after {
    content: '';
	position: absolute;
	right: 30px;
	transform: translateY(-25%) rotate(45deg);
	border: 1.5px solid #1e1009;
	border-width: 0 1.5px 1.5px 0;
	display: block;
	transform-origin: center center;
	transition: transform 0.3s;
	height: 10px;
	width: 10px;
}

.accordion-content {
	padding: 0px 30px;
	margin-bottom: 0px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.accordion-element.open .accordion-content {
	margin-bottom: 30px;
}

.accordion-element.open .accordion-title::after {
    transform: translateY(25%) rotate(-135deg);
}



.lehrfilm-produkte {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.lehrfilm-produkt {
	background: #e9f8ff;
	border-radius: 30px;
	padding: 30px;
	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 30px;
}

.lehrfilm-produkt-thumb img {
	border-radius: 20px;
	height: 100%;
  	object-fit: cover;
	filter: saturate(0.6);
}

._letter {
	background: #c9eafa;
	color: #f9f8ff;
	padding: 7px 10px;
	border-radius: 6px;
	font-size: 20px;
	font-weight: 600;
	display: inline-flex;
	margin-bottom: 10px;
	min-width: 35px;
	width: fit-content;
  	text-align: center;
	align-items: center;
	justify-content: center;
}

.unterkapitel-content ._title ._letter {
	margin-bottom: 0 !important;
	margin-right: 7px !important;
}

.unterkapitel-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.unterkapitel {
	display: grid;
	grid-template-columns: 80px auto;
	gap: 20px;
	align-items: center;
	padding: 5px;
  	margin: 0 -5px;
	border-radius: 10px;
	transform: background-color .3s ease;
}

.unterkapitel:hover, .active .unterkapitel {
	background: #0001;
}

.unterkapitel-player {
	background: #c9eafa;
	display: flex;
	height: 56px;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
}

.unterkapitel-content {
	display: flex;
  	flex-direction: column;
}

.unterkapitel-content ._title {
	font-weight: 500;
	line-height: 1.3em;
}

.unterkapitel-content ._info {
	display: flex;
	gap: 12px;
	font-size: 12px;
}

.preis-info {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #0002;
}

.preis-info .price {
	margin: 0;
} 

.mediathek-list {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0; 
}

.mediathek-list .kapitel-link {
    padding: 6px 12px 6px 6px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mediathek-list .kapitel-link ._letter {
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
	min-width: 35px;
  	text-align: center;
	margin: 0;
}

.mediathek-list .kapitel-link ._text {
    font-size: 12px;
}


._play {
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1.5px solid #fff;
	position: absolute;
	margin: auto;
	padding-left: 3px;
	z-index: 1;
}

._play:after {
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #ffffff;
}


.lehrfilm-liste {
	border-radius: 15px;
  	overflow: hidden;
}

.lehrfilm-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 15px 30px;
}

.lehrfilm-list-left {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.lehrfilm-list-left ._letter {
	margin: 0 !important;
}

.lehrfilm-list-left .lehrfilm-list-title {
	margin-top: 5px;
  	font-size: 18px;
}

.unterkapitel-liste {
	display: flex;
  	flex-direction: column;
}

.t-c {
	text-align: center;
}

.mb-0 {
	margin-bottom: 0 !important;
}


.letter-wrapper ._letter {
	margin-right: 10px;
}

.letter-wrapper ._title {
	font-size: 18px;
}


.autor-img-col {
	position: relative;
	padding-top: 100px;
}

.iti-zertifikat {
	position: absolute;
	width: 240px;
	top: 0;
  	right: -60px;
	box-shadow: 0 0 10px -6px;
}


.untertitel {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 500;
	font-family: 'Poppins';
	margin: -20px 0 20px;
}


/*--------------------------------------------------------------
# BÜCHER
--------------------------------------------------------------*/

.page-template-page-buecher .hero-bg {
	background: #F3E5D0;
}

.hero-buecher {
	min-height: 600px;
	border-radius: 30px;
	background: #F8F3ED;
	align-items: center;
	padding: 60px;
	max-width: calc(var(--maxwidth) + 120px);
}

.hero-buecher img {
	max-height: 480px;
  	width: auto;
  	margin: auto;
	max-width: 100%;
}

.book-light-bg {
	background: #f8f3ed;
}

.book-bg {
	background: #F3E5D0;
}

.bewertungen-book-section {
	z-index: 2;
}

.intro-book-section {
	padding-top: 120px;
	overflow: hidden;
}

.col-book-width {
	width: 50%;
  	margin-left: -20%;
	margin-right: -5%;
	margin-top: 5%;
}

.col-book-width img {
	mix-blend-mode: multiply;
}

.kapitel-col-4 {
	max-width: calc((var(--maxwidth) / 12 * 4) - 20px);
	margin-left: auto;
}

.kapitel-col-8 {
	max-width: calc((var(--maxwidth) / 12 * 8) + ((100vw - var(--maxwidth)) / 2) - 40px);
}

.bewertungen-box {
	background: #fff;
	border-radius: 30px;
	padding: 30px;
	margin-bottom: -150px;
	margin-top: 120px;
}

.swiper-bewertungen ._content {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.swiper-bewertungen ._content ._name {
	font-weight: 600;
  	margin-top: 30px;
}

.swiper-kapitel .swiper-slide {
	position: relative;
}

.swiper-kapitel .swiper-slide:last-child {
	margin-right: 30px !important;
}

.swiper-kapitel .swiper-slide ._content {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	overflow: scroll;
  	max-height: calc(100% - 20px);
}

.swiper-kapitel .swiper-slide ._content ._title {
	font-weight: 600;
}

.swiper-kapitel ._thumbnail {
	height: 100%;
}

.swiper-kapitel .swiper-slide img {
	min-width: 350px;
	border-radius: 25px;
	height: 100%;
	object-fit: cover;
}

.swiper-kapitel .slider-buttons {
	margin: 0 30px 0 auto;
}

.swiper-kapitel .swiper-button-disabled {
	opacity: 0;
}


.autorin-img {
	position: relative;
}

.autorin-img:before {
	content:"";
	position: absolute;
	right: 5px;
	bottom: -15px;
	background: #000000;
	opacity: .1;
	border-radius: 40px;
	width: calc(100% - 40px);
	height: calc(100% - 20px);
}

.autorin-img img {
	border-radius: 40px;
	max-width: calc(100% - 20px);
	position: relative;
	z-index: 2;
}

.outro-box {
	background: #f8f3ed;
	border-radius: 30px;
	padding: 50px;
	text-align: center;
	margin: auto;
	max-width: 800px;
}

.bg-row {
	position: absolute;
	top: 0;
	z-index: -1;
	bottom: 0;
	height: 100%;
	width: 100%;
}

.bg-row .img {
	height: 100%;
}

.bg-row .img img {
	height: 100%;
  	object-fit: cover;
}

.text-col-3 {
	column-count: 3;
	column-gap: 40px;
}

.trennlinie {
	background: #0003;
	width: 100%;
	height: 1px;
	margin: 0px 0 15px;
}

/*--------------------------------------------------------------
# ÜBER UNS
--------------------------------------------------------------*/

.page-template-page-about {
	background: #d4ddf7;
}

.page-template-page-about .hero-home {
	background: #afbadb;
}

.page-template-page-about .light-blue-bg {
	background: #afbadb;
}

.page-template-page-about .col-big {
	background: #afbadb;
}

.about-wissen-img-1 img {
	max-height: 400px;
	object-fit: cover;
	object-position: top;;
}

.about-wissen-img {
	position: relative;
  	height: 100%;
}

.about-wissen-img .img {
	position: absolute;
	height: calc(100% + 600px);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.about-wissen-img .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.about-wissen-img-2 .img img {
	max-width: calc(100% - 280px);
  	margin-left: auto;
}

.about-wissen-text {
	padding: 30px 0;
}

.filmverlag-row {
	margin-top: 50px !important;
}

.filmverlag-img img {
	max-width: calc(100% - 80px);
}

.filmverlag-img-2 img {
	margin-left: -80px;
}


.col-big.-left {
	width: calc(50% + 100px);
	margin-right: -100px;
	z-index: 2;
	margin-left: unset;
}


.awards {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.awards .img {
	overflow: hidden;
	background: #000;
}

.awards img {
	max-width: 200px;
	cursor: pointer;
	transition: all .3s ease;
}

.awards img:hover {
	transform: scale(1.08);
	opacity: .7;
}


/* Overlay */
.custom-lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

/* Lightbox-Container */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    text-align: center;
}

/* Das Bild innerhalb der Lightbox */
.custom-lightbox-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	max-height: 80vh;
  	object-fit: contain;
}

/* Schließen-Button */
.custom-lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}


/*--------------------------------------------------------------
# STOCKVIDEOS
--------------------------------------------------------------*/

.stockvideos-hero {
	padding-top: var(--header-height);
	background: #1c1c1c;
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 0;
	text-align: center;
}

.stockvideos-hero .col-12 {
	max-width: 900px;
  	margin: auto;
}

.light-grey-bg {
	background: #eee;
}

.stockcats {
	display: grid;
	grid-template-columns: repeat(11, 1fr);
	grid-template-rows: repeat(3, 180px);
	gap: 15px;	
}

.stockcats .stockcat:nth-child(1) {
	grid-row: span 3;
	grid-column: span 4;
}

.stockcats .stockcat:nth-child(2) {
	grid-column: span 3;
  	grid-row: span 2;
}

.stockcats .stockcat:nth-child(3) {
	grid-column: span 4;
  	grid-row: span 2;
}

.stockcats .stockcat:nth-child(4) {
	grid-column: span 4;
}

.stockcats .stockcat:nth-child(5) {
	grid-column: span 3;
}

.stockcats .stockcat {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}

.stockcats .stockcat img {
	height: 100%;
	object-fit: cover;
	opacity: .6;
}

.stockcats ._title {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	margin: auto;
	left: 20px;
	right: 20px;
	color: #fff;
}

.maxwidth-720 {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.suchfeld {
	margin: 50px 0;
}

.search-form {
	width: fit-content;
	margin: auto;
	border: 1px solid #fff;
	border-radius: 50px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.search-form .search-field {
	appearance: none;   
    -webkit-appearance: none;
    -moz-appearance: none;
	all: unset;      
	width: calc(80vw - 100px);
	padding: 10px;
	border: 0;
	font-size: 16px;
	text-align: left;
	padding-left: 20px;
	max-width: 450px;
	font-weight: 300;
}

.search-submit {
	appearance: none;   
    -webkit-appearance: none;
    -moz-appearance: none;
	background: #fff;
	border-radius: 100%;
	border: 0;
	height: 41px;
	width: 41px;
	margin-right: 1px;
	cursor: pointer;
}

/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/

#customer_login {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

#customer_login .woocommerce-form-register {
	background: #eee;
	padding: 40px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.woocommerce-account h2 {
	font-size: 32px;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

#footer {
	margin: auto 0 0;
	background: #1C1C1C;
	color: #fff;
}

#footer h3 {
	font-size: 15px;
}

#footer a {
	color: #fff;
}

#footer a:hover {
	text-decoration:underline;
}

#footer .social-row {
	margin-top: 30px;
}

#footer .social-row .col-12 {
	display:flex;
	justify-content:center;
}

#footer .social-row .social {
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	height:40px;
	width:40px;
	border-radius:100%;
	margin:0 10px;
}

#footer .social-row .social img {
	height: 22px;
	max-width: 22px;
}


#footer .main-row {
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 50px 0;
	margin: 30px auto 10px !important;
}

.about-col {
	margin: 0 auto 0 0;
	width: 33.33%;
}

.zahlungsanbieter-col {
	margin: 0 auto;
	width: fit-content;
}

.kontakt-col {
	width: fit-content;
	margin: 0 0 0 auto;
}

#footer .custom-logo-link {
	filter: brightness(0) invert(1);
	margin-bottom: 30px;
}

#footer .zahlungsanbieter-wrapper {
	display:flex;
	align-items: center;
}

#footer .zahlungsanbieter-wrapper .zahlungsanbieter {
	max-height: 25px;
	height:auto;
	width: auto;
	margin-right: 20px;
}

#footer .zahlungsanbieter-wrapper .zahlungsanbieter.mastercard {
	max-height: 32px;
}

#footer .links-row {
	max-width: 720px;
	margin: auto;
}

#footer .copyright-row {
	color: #969696;
	font-size: 14px;
}



/*--------------------------------------------------------------
# KASSE
--------------------------------------------------------------*/

.woocommerce-message {
	outline: unset !important;
	box-shadow: unset !important;
}

.kasse {
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 1fr;
	align-items: flex-start;
}

.woocommerce-form-login-toggle {
	background: #1c1c1c;
	color: #fff;
	padding: 20px 40px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.woocommerce-form-login-toggle a {
	font-weight: 600;
	color: #fff;
}

.woocommerce-form.woocommerce-form-login.login {
	background: #eee;
	padding: 40px;
	border-radius: 15px;
	margin-bottom: 30px;
}

#customer_details, #order_review {
	background: #eee;
	padding: 40px;
	border-radius: 15px;
}


#discount_details {
	display: flex;
	padding: 40px;
	border-radius: 15px;
	margin: 30px 0;
	flex-direction: column;
	background: #eee;
}

form.woocommerce-checkout h3 {
	font-size: 22px;
	line-height: 1.5em;
	margin-bottom: 15px;
}

.coupon-wrapper {
	display: flex;
  	align-items: center;
	width: 100%;
}

.coupon-input {
	width: 100%;
}

.coupon-button {
	margin-left: 15px;
}

.coupon-button button {
	box-shadow: unset !important;
	margin: 0;
	padding: 14px 10px;
	background: #333;
	color: #fff;
	border-radius: 6px;
}

.variation {
	margin: 0;
}

.variation .variation-Name {
	margin-left: 10px;
	border-left: 1px solid #f1e8e5;
  	padding-left: 10px;
}

.variation .variation-Name p {
	margin: 0;
}

.variation dt.variation-Name, .variation .variation-Date, .variation .variation-Location, .variation .variation-Timezone {
	display: none !important;
}

.payment_method_ppcp-gateway {
	display: none !important;
}

.product-name .product-quantity {
	display: none !important;
}

.remove, .woocommerce-remove-coupon {
	position: absolute;
	margin-left: 7px;
	font-size: 12px;
}

.product-total del {
	font-size: 12px;
  	color: red;
	line-height: 1em;
	margin-right: 8px;
}

.product-total ins {
	text-decoration: unset;
}

.woocommerce-privacy-policy-text {
	font-size: 14px;
  	line-height: 1.5em;
}

.woocommerce-privacy-policy-text a {
	text-decoration: underline;
}


.shop_table {
	width: 100%;
}

.shop_table thead .product-name {
	text-align: left;
	border-bottom: 1px solid #a8a4ae;
  	padding-bottom: 10px;
}

.shop_table thead .product-total {
	text-align: right;
	border-bottom: 1px solid #a8a4ae;
  	padding-bottom: 10px;
}

.shop_table .cart_item .product-name {
	font-weight: 600;
	padding: 10px 0;
  	border-bottom: 1px solid #e8dedb;
}

.shop_table .cart_item .product-name .variation {
	margin: 0;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5em;
}

.shop_table .cart_item .product-name .variation dd {
	margin: 0;
}

.shop_table .cart_item .product-total {
	text-align: right;
	padding: 10px 0 10px 0;
  	border-bottom: 1px solid #e8dedb;
}

.shop_table .cart_item:last-child .product-name, .shop_table .cart_item:last-child .product-total {
  	border-bottom: 0;
}

.shop_table .cart_item .product-total .unit-price {
	display: block;
	font-size: 11px;
	line-height: 1.2em;
}

.cart-discount th, .cart-discount td {
	padding-bottom: 10px;
}


.shop_table tfoot th{
	text-align: left;
	font-weight: 400;
}

.shop_table .order-total th {
	font-weight:bold;
}

.shop_table tfoot td{
	text-align: right;
}

.cart-subtotal th, .cart-subtotal td, .order-total th, .order-total td {
	border-top: 1px solid #a8a4ae;
	padding-top: 10px;
	padding-bottom: 7px;
}

.order-total th, .order-total td {
	font-size: 18px;
}

.shop_table .order-tax th, .shop_table .order-tax td {
	font-size: 11px;
	line-height: 1.2em;
	font-weight: 400;
}


.includes_tax {
	display: block;
	font-size: 10px;
	line-height: 1.2em;
	white-space: nowrap;
	margin-top: 3px;
}

.woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 25px;
}


#billing_title_field {
	display:none !important;
}

.select2-container--default .select2-selection--single {
    border: 0px !important;
    border-radius: 0px !important;
}

.select2-selection .select2-selection__rendered {
	padding-left: 0px !important;
	font-weight: 400;
}

.select2-results__options {
	color: var(--grau);
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: var(--highlight) !important;
}

.select2-dropdown {
	margin-top: 7px !important;
	border-radius: 6px !important;
	border: 1px solid #d9d9d9 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: -6px;
}

.woocommerce form .form-row .required {
	text-decoration: unset !important;
}

.paypal-button-container .paypal-button-row .paypal-button-text, .paypal-button-container .paypal-button-row .paypal-button-space {
    font-size: 16px !important;
}

#billing_country_field .woocommerce-input-wrapper, #shipping_country_field .woocommerce-input-wrapper {
	border: 1px solid #999;
	display: block;
	padding: 12px 15px;
	font-weight: 400 !important;
	border-radius: 3px;
}


#billing_postcode_field, #shipping_postcode_field {
	width: 30%;
	display: inline-block;
}

#billing_city_field, #shipping_city_field {
	width: 68%;
	display: inline-block;
	float:right;
}

#billing_email_field {
	margin-bottom:0px !important;
}

#customer_details .form-row-first, #customer_details .form-row-last {
    width: 49%;
}

#customer_details #billing_city_field, #customer_details #shipping_city_field {
    width: 68%  !important;
}

#customer_details #shipping_postcode_field, #customer_details #billing_postcode_field {
	display:inline-block;
	width: 30% !important;
}

#customer_details #shipping_city_field, #customer_details #billing_city_field {
    float:right !important;
}

#billing_country, #shipping_country {
	font-size: 16px;
	font-weight: 200;
	margin-left: -4px;
}

.woocommerce-account-fields {
	margin-top: 15px;
}

.kasse .form-row, .shipping_address .form-row {
	position: relative;
}

.woocommerce-checkout .form-row.-focus label,
.woocommerce-checkout .form-row.-filled label {
	opacity: .65;
	transform: scale(.80) translateY(-10px) translateX(0px);
}

.kasse .form-row label, .shipping_address .form-row label {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	margin: 12.5px 0 0 10px;
	height: 25px;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}



.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, #billing_country_field .woocommerce-input-wrapper, #shipping_country_field .woocommerce-input-wrapper  {
	color: #191b23 !important;
	width: 100%;
	height: 50px;
	line-height: 30px;
	padding-left: 10px;
	font-weight: 400;
  	font-family: "Montserrat";
	font-size: 16px;
	padding-top: 17px;
	border: 0;
  	border-radius: 8px;
	background: #fff;
}

#billing_first_name_field, #shipping_first_name_field, #billing_last_name_field, #shipping_last_name_field {
	width: 49%;
	display: inline-block;
}

#billing_first_name_field, #shipping_first_name_field {
	margin-right: 2%;
}

#billing_country_field .woocommerce-input-wrapper, #shipping_country_field .woocommerce-input-wrapper {
	line-height: 1.7em;

}

#billing_country_field .woocommerce-input-wrapper select, #shipping_country_field .woocommerce-input-wrapper select {
	line-height: 1.7em;
	color: #191b23 !important;
	width: 100%;
	border: 0;
	background: unset;
}

.order-ready {
	margin: auto;
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.order-ready > * {
	margin-bottom: 20px;
}

.order-ready h2 {
	margin-bottom: 0px;
}

.woocommerce-message {
	margin-bottom: 30px;
}

/*--------------------------------------------------------------
# ERROR
--------------------------------------------------------------*/


#error {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.error-text {
	text-align: center;
	margin: 0px 0 30px;
}

#error h4, #error h2 {
	margin: 0;
}

.error-button {
	background: #fff !important;
	height: auto !important;
	width: fit-content !important;
	border: var(--border);
	border-radius: 0 !important;
	color: #000;
	padding: 25px 35px 20px !important;
	display: block;
	margin: 50px auto 0;
	font-family: 'Futura',Helvetica,Arial,Lucida,sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1em !important;
	cursor: pointer;
	box-shadow: none !important;
	outline: none !important;
}





/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/



@media all and (min-width: 981px) {
	.show-mobil {
		display: none !important;
	}
}


@media all and (max-width: 1080px) {

	
}

@media all and (max-width: 980px) {

	:root {
		--header-height: 90px;
	}

	.no-scroll #header{
		position: fixed;
		top: 0px;
	}

	.header-menu {
		display: none;
	}

	.header-tools {
		right: 60px;
  		position: absolute;
	}

	.header-tools .login-button, .header-tools .langswitch {
		display: none;
	}

	.header-logo {
		position: relative;
		z-index: 99;
	}

	.custom-logo-link img {
		height: 45px;
	}

	.white #header .header-logo.active img {
		filter: unset;
	}

	.white #header .header-menu.active a {
		color: #333 !important;
	}

	.white #header .header-menu.active img {
		filter: unset;
	}

	.mobil-menu-button {
		position: absolute;
		right: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		bottom: 0;
		margin: auto;
		height: 40px;
		justify-content: space-around;
		padding: 12px 0;
		cursor: pointer;
		z-index: 9;
	}

	.line--burger {
		width: 42px;
		height: 2px;
		display: block;
		background: #000;
		transition: all 0.2s ease !important;
	}

	body.h-wh #header:not(.scroll-up) .line--burger {
		background: #333;
	}

	.line--burger:last-child {
		width: 30px;
	}

	.white .mobil-menu-button .line--burger {
		background: #fff;
	}

	.mobil-menu-button.active .line--burger:first-child {
		transform: rotate(-45deg);
		width: 32px !important;
		background: #333 !important;
	}

	.mobil-menu-button.active .line--burger:last-child {
		transform: rotate(45deg);
		margin-top: -15px;
		width: 32px !important;
		background: #333 !important;
	}

	.header-inner {
		position: relative;
	}

	.header-menu {
		background: #fff;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		padding: calc(var(--header-height) + 10px) calc((100% - var(--width)) / 2) 30px;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
		transform: translateX(110%);
		transition: all 0.45s ease;
	}

	.header-menu.active {
		transform: translateX(0);
	}

	.header-menu.mobil .header-menu-inner {
		display: flex;
		flex-direction: column;
		width: 100%;
		position: relative;
	}

	.header-menu ul {
		flex-direction: column;
	}

	.header-menu > div {
		width: 100%;
	}

	#header .menu > li > a {
		font-size: 16px;
	}

	.menu li > .sub-menu {
		position: absolute;
		width: 100%;
		margin: 0 !important;
		padding: 0 !important;
		top: 0;
		height: 100%;
		background: var(--bg-color);
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		box-shadow: unset;
		transform: translateX(100vw);
		transition: transform .45s ease;
	}

	.menu li.active > .sub-menu {
		transform: translateX(0);
	}

	.menu {
		display: block;
	}

	#menu-main {
		align-items: flex-start;
		justify-content: flex-start;
		display: flex;
		flex-direction: column;
	}

	#header .header-menu ul li {
		margin: 0 !important;
		padding: 14px 0 10px !important;
    	border-bottom: 1px solid #0003;
		width: 100%;
	}

	.header-menu ul li a {
		line-height: 1.1em;
		width: 100%;
		margin: 0 !important;
	}

	.header-menu .menu li a img {
		width: 50px;
	}


	#header .header-menu ul.langswitch {
		width: 100%;
		background: #eee;
		padding: 10px;
		border-radius: 10px;
		justify-content: center;
		margin: auto 0 0;
		flex-direction: unset !important;
	}

	#header .header-menu ul.langswitch li {
		padding-right: 6px !important;
		margin-right: 6px !important;
		width: auto;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		border-bottom: 0;
	}

	#footer .main-row {
		border-top: 1px solid;
		border-bottom: 0;
		padding: 50px 0 0;
	}

	#footer .custom-logo-link {
		margin: 0 auto 30px;
	}

	.about-col {
		margin: 0 auto 10px;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid;
		padding-bottom: 40px;
	}

	.zahlungsanbieter-col {
		margin: 0 auto;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid;
		padding-bottom: 40px;
	}

	#footer .zahlungsanbieter-wrapper {
		display: flex;
		justify-content: center;
	}

	.kontakt-col {
		width: 100%;
		margin: 0;
		text-align: center;
	}

	.links-row > .col-12 {
		gap: 10px 25px;
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
	}


	.row {
		flex-wrap: wrap;
	}

	.col-3, .col-4, .col-6, .col-8, .col-9, .col-12 {
		width: 100%;
	}

	h1, h3 {
		font-size: 24px;
		line-height: 1.3em;
	}

	h2 {
		font-size: 36px;
		line-height: 1.2em;
	}


	#customer_login {
		grid-template-columns: 1fr;
	}
	

	.col-big {
		padding: 30px;
		margin: 0 auto;
	}

	.hero-lehrfilm {
		min-height: unset;
		padding: 30px;
	}

	.hero-lehrfilm .bg-img .img {
		position: absolute;
		top: auto;
		right: 0;
		left: 30%;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 0;
		bottom: 0;
		display: flex;
	}

	.hero-lehrfilm .bg-img .img img {
		object-fit: cover;
	}

	.lehrfilm-produkt {
		grid-template-columns: 1fr;
	}

	.unterkapitel-wrapper {
		gap: 15px;
	}

	.unterkapitel-content ._info {
		display: flex;
		gap: 0;
		font-size: 12px;
		flex-direction: column;
		line-height: 1.3em;
	}

	.unterkapitel {
		align-items: flex-start;
		grid-template-columns: 60px auto;
  		gap: 15px;
	}

	.unterkapitel-content ._title {
		font-weight: 500;
		line-height: 1.2em;
		margin-bottom: 3px;
	}

	.gliederung-col {
		border-right: unset;
		padding-right: 0;
		border-bottom: 1px solid;
		padding-bottom: 20px;
	}


	.hero-buecher {
		min-height: unset;
		padding: 30px 30px 45px;
	}

	.col-book-width {
		width: 100%;
		margin-left: 0;
	}

	.text-col-3 {
		column-count: 1;
		column-gap: unset;
	}

	.kapitel-col-4 {
		max-width: unset;
		margin: auto;
		width: var(--width) !important;
		text-align: center;
	}

	.kapitel-col-8 {
		max-width: unset;
	}

	.kapitel-col-8 .swiper-wrapper .swiper-slide:first-child {
		margin-left: 5vw !important;
	}

	.kapitel-col-8 .swiper-wrapper .swiper-slide:last-child {
		margin-right: 5vw !important;
	}


	#section-unterwasserwelten {
		padding: 0px 0 50px;
		background: #1C1C1C;
	}

	#section-unterwasserwelten .row .col-6:last-child {
		padding-top: 30px;
	}

	#section-unterwasserwelten-2 > .row:first-child > .col-6:last-child {
		order: 1;
	}

	#section-unterwasserwelten-2 > .row:first-child > .col-6:first-child {
		order: 2;
	}

	#section-unterwasserwelten-2 .custom-img {
		margin-left: 0;
		width: 100%;
	}

	#section-unterwasserwelten-2 .custom-img .col-6:first-child {
		margin: -120px 0 0px 0;
		width: calc(50% - 0px);
	}

	#section-unterwasserwelten-2 .custom-img .col-6:last-child {
		margin: -130px 0 0 auto;
	}

	.hero-home {
		min-height: unset;
		padding: 30px;
	}

	.hero-home img {
		display: none !important;
	}

	.single_add_to_cart_button {
		display: inline-block;
		padding: 10px 25px;
		color: #000;
		white-space: nowrap;
	}

	.kasse {
		gap: 0px;
		grid-template-columns: 1fr;
	}

	#customer_details, #order_review {
		padding: 30px 20px;
	}

	#discount_details {
		padding: 30px 20px;
	}

	.lehrfilm-list {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.lehrfilm-list-left .lehrfilm-list-title {
		margin-top: 0;
	}

	.about-wissen-img .img {
		position: unset;
		height: unset;
	}

	.about-wissen-img-2 .img img {
		max-width: unset;
		margin-left: auto;
	}

	.about-wissen-text {
		padding: 0;
	}

	.filmverlag-img img {
		max-width: 100%;
	}

	.row .row {
		width: 100%;
	}


	.filmverlag-img-2 img {
		margin-left: 0;
		margin-bottom: 30px;
	}
	
	
}


@media all and (max-width: 768px) {
	.stockcats {
		display: flex;
		flex-direction: column;
	}

	.stockcats .stockcat {
		display: block;
		min-height: 200px;
	}
	
}

