/* CSS RESET>> */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*  <<CSS RESET */


/*  TEST>> */

/*  <<TEST */

/* Global Styles */

:root {
    --pink: #e5007e;
    --grey: #4D4D4D;
    --white: #fff;
    --font: Inter, sans-serif;
    --radius: 1em;
}

/* Style>> */

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--white);
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--pink);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--grey);
}

* {
    -webkit-touch-callout: auto; /* iOS Safari */
      -webkit-user-select: auto; /* Safari */
       -khtml-user-select: auto; /* Konqueror HTML */
         -moz-user-select: auto; /* Old versions of Firefox */
          -ms-user-select: auto; /* Internet Explorer/Edge */
              user-select: auto; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

  /*  */
  *::selection{
    background: var(--pink);
    color: var(--white);
  }
/* Fonts */
@font-face {
    font-family: Inter, sans-serif;
    src: url(font/Inter-VariableFont_slnt,wght.ttf);
}

.artTitle{
    font-family: var(--font);
    font-weight: 600;
    color:var(--grey);
}

.navLink, .ctaLink{
    font-family: var(--font);
    font-weight: 700;
    color:var(--grey);
}

.legal{
    font-family: var(--font);
    color:var(--grey);
}

.beschreibung, footer, nav{
    font-family: var(--font);
    color:var(--grey);
}

.footerLink, .navLink{
    color: var(--grey);
    text-decoration: none;
}

.email{
    text-decoration: underline !important;
}

.footerLink:hover, .navLink:hover{
    color:var(--pink);
}

a{
    color: var(--grey) !important;
    text-decoration: none !important;
}

a:hover{
    color:var(--pink) !important;
}

.extern-link{
    color:var(--pink) !important;
    text-decoration: none;
}

.active{
    color: var(--pink);
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-decoration-thickness: 4px;
}

.navLink:hover, .ctaLink:hover{
    cursor: pointer;
    color: var(--pink);
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-decoration-thickness: 4px;
}

.ctaLink:hover{
    text-decoration-thickness: 3px;
}

.extern-link:hover{
    color:rgb(0, 153, 255);
    cursor: pointer;
}

.beschreibung{
    font-size: 0.8em;
    line-height: 120%;
}

.imagecontainer{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.btn-custom{
    border-radius: var(--radius) !important;
    box-shadow: 0 10px 17px -7px var(--grey);
    background-color: var(--white) !important;
    color: var(--pink) !important;
    border-color: var(--pink) !important;
    border-width: 3px !important;
}

.btn-custom:hover{
    border-radius: var(--radius) !important;
    box-shadow: 0 10px 25px -7px var(--pink);
    background-color: var(--white) !important;
    color: var(--pink) !important;
    transform: rotate(2deg);
}


/* .imagecontainer:hover{
    cursor: pointer;
} */

.eckenRund{
    border-radius: var(--radius) var(--radius) 0 0;
}

.eckenRund-index{
    border-radius: var(--radius) 0 0 var(--radius);
}

.quadrat{
    aspect-ratio: 1/1;
}

.hoch-2-3{
    aspect-ratio: 2/3;
}

.hoch-3-4{
    aspect-ratio: 3/4;
}

.hoch-5-7{
    aspect-ratio: 5/7;
}

.quer-3-2{
    aspect-ratio: 3/2;
}

.quer-4-3{
    aspect-ratio: 4/3;
}

.rechteck{
    aspect-ratio: 4/5;
}

.landscape{
    aspect-ratio: 5/4;
}




/* .wrapper{
    overflow: hidden;
    filter: blur(10px);
}  */

.overlay{
    display: none;
    height: 100vh;
    /* position: sticky;
    top: 0;
    left: 0; */
}

.overlay .row{
    background-color: rgba(255,255,255,0.9);
    /* background-color: red; */
    border-radius: var(--radius);
    height: 100%;
}

.close{
    width: 3em;
    height: 3em;
    background-color: var(--grey);
    position: absolute;
    top: 5em;
    right: 3em;
}

.bg-klein-50, .bg-klein-50 .imagecontainer{
    background-size: 50%; 
    background-repeat: no-repeat;
}
.bg-klein-70, .bg-klein-70 .imagecontainer{
    background-size: 70%; 
    background-repeat: no-repeat;
}
.bg-klein-90 .imagecontainer{
    background-size: 90%; 
    background-repeat: no-repeat;
}
.bg-gross-130 .imagecontainer{
    background-size: 130%; 
    background-repeat: no-repeat; 
}
.bg-gross-150 .imagecontainer{
    background-size: 150%; 
    background-repeat: no-repeat; 
}


/* Verlauf hinter den Boxen */
.wrapper-box{
    border-radius: var(--radius);
    position: relative;
    background-color: var(--white);
}

.wrapper-box::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, var(--pink) 0%, var(--grey) 100% );
    transform: translate3d(0px, 20px, 0) scale(0.9);
    filter: blur(30px);
    /* opacity: 0.7; */
    border-radius: inherit; 
}

/* .wrapper-box:hover::before{
    transition: opacity 0.3s;
    opacity: 1;
} */

/* 
* Prevents issues when the parent creates a 
* stacking context. (For example, using the transform
* property )
*/
.wrapper-box::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
}