:root {
    --color-standard: rgb(0, 35, 49);
  	--color-contrast: rgb(253, 144, 131);
    --color-contrast-2: rgb(173, 207, 219);
    --color-contrast-3: rgb(44, 97, 122);
    --color-green: rgb(46, 55, 16) ;
    --color-green-contrast: rgb(92, 97, 76);
    --color-contrast-salmon-light: rgb(255, 207, 202);
}

html {
    scrollbar-width: none;
    scroll-snap-type: y proximity;
    -webkit-scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

section {
    scroll-snap-align: start;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    width: 100vw;
    position: relative;
    overflow-x: hidden;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    mix-blend-mode: screen;
}

.border_radius {
    border-radius: 1.5em;
}


.textdecoration-none {
    text-decoration: none;
}

.flex {
    display: flex;
    gap: var(--gap, 2rem);
}

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

.title {
    position: absolute;
    top: 10%;
    text-align: center;
    padding-bottom: 3em;
    z-index: 10;
}

.centered {
    right: 50%;
    transform: translateX(50%);
}

.white {
    color: white;
    stroke: white;
    fill: white;
}

.center {
    text-align: center;
}

.color {
    color: var(--color-standard) !important;
    stroke: var(--color-standard) !important;
    fill: var(--color-standard) !important;
}

.color_contrast {
    color: var(--color-contrast) !important;
    stroke: var(--color-contrast)  !important;
    fill: var(--color-contrast)  !important;
}

.color_contrast_2 {
    color: var(--color-contrast-2) !important;
    stroke: var(--color-contrast-2)  !important;
    fill: var(--color-contrast-2)  !important;
}

.color_contrast_3 {
    color: var(--color-contrast-3) !important;
    stroke: var(--color-contrast-3)  !important;
    fill: var(--color-contrast-3)  !important;
}

.color_contrast_salmon_light {
    color: var(--color-contrast-salmon-light) !important;
    stroke: var(--color-contrast-salmon-light)  !important;
    fill: var(--color-contrast-salmon-light)  !important;
}

.green {
    color: var(--color-green) !important;
    stroke: var(--color-green) !important;
    fill: var(--color-green)  !important;
}

.color_background_green {
    background-color: var(--color-green);
}

.color_gray {
    color: rgb(157, 157, 157);
}

.color_background {
    background-color: var(--color-standard) !important;
}

.color_background_contrast {
    background-color: var(--color-contrast) !important;
}

.color_background_contrast_2 {
    background-color: var(--color-contrast-2) !important;
}

.color_background_contrast_3 {
    background-color: var(--color-contrast-3) !important;
}

.color_background_contrast_salmon_light {
    background-color: var(--color-contrast-salmon-light) !important;
}

.white_background {
    background-color: white;
}

.cream_background {
    background-color:rgb(251, 209, 197);
    background-color: rgb(251, 232, 230);
}

.shadow {
    box-shadow: 0 8px 40px 0 rgb(0, 0, 0);
}

.shadow_inset {
    box-shadow: inset 0 0 0.5em 0.5em rgba(0, 0, 0, 0.454);
}


.button {
    border: none;
    border-radius: .5em;
    padding: 1em;
    /* margin: 1em; */
    cursor: pointer;
    /* font-family: sans-serif; */
}

.button p {
    margin: 0;
    padding: 0;
}

.rim_button {
    border: 0.1em solid rgb(14, 109, 129);
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.block {
    text-align: justify;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.padding_left {
    padding-left: 2em;
}

.margin_top {
    margin-top: 3em;
}

.margin_bottom {
    margin-bottom: 2em;
}

.sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
	-webkit-clip-path: inset(50%) !important;
		clip-path: inset(50%) !important;  /* 2 */
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;            /* 3 */
}

.width_70 {
    width: 70vw;
    position: relative;
}

.width_100,
.section,
.section_top_aligned {
    width: 100vw;
    width: 100svw;
}

.minHeight_100 {
    min-height: 100vh;
}

.minHeight_100s {
    min-height: 100svh;
}

.Height_100 {
    height: 100vh;
}

.Height_100s {
    height: 100svh;
}

.section {
    position: relative;
    align-items: center;
    place-content: center;
}

.section_top_aligned {
    position: relative;
    justify-content: center;
}

.section-short {
    position: relative;
    align-items: center;
    place-content: center;
    height: 60vh;
}

.video-container {
    min-width: 100%;
    max-width: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero_video {
    object-fit: cover;
    object-position: center;
    z-index: 3;
}

.hero_crop {
    max-width: 80%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
}

.video-container_small {
    z-index: 1;
    margin-bottom: 3em;
    margin-top: 3em;
}

.video-container_small video {
    border-radius: 0.5em;
}


.just_text {
    margin-bottom: 10em;
    margin-top: 4em;
}

.arrow {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    
}

.arrow svg {
    height: 1em;
    display: none;
}

.wrapper {
    position: relative;
    
}

.grid {
    display: grid;
    gap: 1rem;
    place-items: center;
    text-align: center;
    z-index: 8;
    margin-bottom: 5em;
}

.grid_artikel_style {
    display: grid;
    gap: 2rem;
    z-index: 6;
    max-width: 24em;
    place-self: center;
    margin: auto;
    position: relative;
    text-align: center;
    padding: 1em;
}

.grid_artikel_style h4 {
    padding: 0;
}

.background_image_logo {
    background-image: url(images/denk_und_punkt_logo.jpg);
    background-size: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(0.9em);
    -webkit-filter: blur(0.9em);
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
}

.email {
    width: 100%;
    padding: 1em 0 1em 1em;
    box-shadow: inset 0 0 5pt 5pt rgba(0, 0, 0, 0.2); 
    color: rgb(6, 5, 5);
    border-radius: 0.5rem;
    border: none;
    box-sizing: border-box;
}

.submit {
    width: 100%;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1em 0 1em 0;
    margin-top: 1em;

}

.text-columns {
    column-count: 1;
	column-gap: 40px;
}


/* popups */


.popup_fill,
.popup_use,
.popup_shake,
.popup_tool,
.popup_feedback {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.422);
    -webkit-backdrop-filter: blur(2rem);
        backdrop-filter: blur(1.5rem);
    opacity: 0;
    pointer-events: none;
}


.popup_fill.active,
.popup_shake.active,
.popup_use.active,
.popup_tool.active,
.popup_feedback.active {
    opacity: 100%;
    pointer-events: all;
    transition: .4s ease;
}

.close_fill,
.close_shake,
.close_use,
.close_tool {
    background: transparent;
    border: 0;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 3em;
}