@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);

* {
    padding: 0;
    margin: 0;
    color: white;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    margin-block-start: 15px;
    position: relative;
    font-size: clamp(.75rem, 10vw, 3rem);
    color: #fff;
}

p {
    position: relative;
    font-size: clamp(.75rem, 5vw, 1.5rem);
    color: #ff7f00;
    font-weight: 600;
}

section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;

}

section .animate {
    opacity: 0;
    filter: blur(5px);
    transition: 1s;
}

section.show-animate .animate {
    filter: blur(0);
    opacity: 1;
}

.sec-1 {
    flex-direction: column;
    justify-content: flex-start;
    background-image: url('images/Titelbild.jpg');
    background-color: #2c2c36;
    background-size: clamp(70rem, 100vw, 300rem);
    background-repeat: no-repeat;
    background-attachment:fixed;
}

.sec-1 h1 {
    margin-block-start: 15px;
}

.sec-1 .animate {
    transform: scale(.5);
}

.sec-1.show-animate .animate {
    transform: scale(1);
}

.sec-2 {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    background-color: #2c2c36;
}
.sec-2 .video{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 10px;
}
.sec-2 .video video{
    max-width: 100%;
    width: 650px;
    padding-bottom: 3%;
}
.sec-2 .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 10px;
}
.sec-2 .images img {
    max-width: 100%;
    padding: 50px 8%;
    transform: translateX(-100%);
    transition-delay: calc(.2s * var(--i));
}
@media (max-width: 800px) {
    .sec-2 .images img{
        padding: 0 8%;
    }
}
.sec-2.show-animate .images img {
    transform: translateX(0);
}

.sec-3 {
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color:  #2c2c36;
}

.sec-3 .animate {
    transform: scale(.5);
}

.sec-3.show-animate .animate {
    transform: scale(1);
}
.contact-left{
    display:flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color:#fff;
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #4e4e5f;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #4e4e5f;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus {
    border: 2px #2c2c36;
} 
.contact-inputs::placeholder {
    color: #4e4e5f;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #ff7f00, #2c2c36 );
    cursor: pointer;
}
.contact-left button img{
    height: 15px;
}
.contact-right img{
    border-radius: 50%;
	width: 350px;
	height: 320px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
	transition: all ease-in-out .2%;
}
@media (max-width: 800px) {
    .contact-inputs{
        width: 80vw;
    }
    .contact-right {
        display: none;
    }
}

.cookies-eu-banner {
    background: #2c2c36;
    color: #fff;
    font-size: 14px;
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 30%;
    z-index: 10;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    text-align: center;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
  }
  .cookies-eu-banner button {
    text-decoration: none;
    background: #ff7f00;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    display: block;
    position: relative;
    margin: auto;
    padding: 1em 1.4em;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
  }
  
  .cookies-eu-banner button:hover {
    background: #494545;
    color: #c1b7b7;
  }
