* {
    color: #2f2f2f;
    font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 0;
}
::selection {
    background-color: #A1BDE650;
    color: #2f2f2f;
}
body {
    background-color: linear-gradient(#A1BDE6, #ffffff);
}
p, a {
    font-size: 20px;
}
h1 {
    font-size: 50px;
    color: #568fe6;
    margin-bottom: 20px;
}
h2 {
    font-size: 40px;
    color: #568fe6;
    margin-bottom: 10px;
}
h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 5px;
    margin-top: 10px;
}
.banner-img {
    background-image: url(/img/emotionheader.webp);
    min-height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-txt {
    position: absolute;
    top: 202px;
    background-color: #ffffff30;
    padding: 20px 30px;
    font-size: 24px;
}
.topnav {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 90px;
    box-shadow: 0 10px 5px #2f2f2f50;
    position: sticky;
    top: 0;
    z-index: 90;
}
.topnav-cnt {
    margin: 0 10%;
    padding: 15.5px 0;
    height: 57px;
    justify-content: center;
    align-items: center;
}
.logo img {
    max-height: 59px;
    width: auto;
    padding: 0 !important;
    border-radius: 0;
}

.topnav-right {
    float: right;
}
.topnav-right a:hover,
.topnav-right a.active {
    background-color: #568fe6;
    color: #ffffff;
}
.topnav-right a {
    float: left;
    padding: 17px 20px;
    text-decoration: none;
    text-align: center;
    margin: 1px;
    border-radius: 5px;
    transition: 0.3s;
}
#menyAvPaa {
    display: none;
}
#meny {
    display: none;
}
#menyAvPaa:checked ~ #meny {
    display: block;
}


.body-cnt {
    margin: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.split {
    width: 100%;
    margin-top: 100px;
    padding: 45px 60px;
    background-color: #A1BDE650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 16px;
}
.split > div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split video {
    margin-right: 10px;
    height: 62px;
    width: auto;
    border-radius: 16px;
    pointer-events: none;
}
.split p {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}
.circle-cnt {
    width: 100%;
    margin-top: 100px;
    padding: 50px 30px;
    background-color: #A1BDE650;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img-cnt {
    position: relative;
    margin: 20px;
    flex: 1 1 20%;
    max-width: 20%;
}

.img-cnt img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: block;
}

.img-txt {
    position: absolute;
    padding: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #2f2f2f;
    font-size: 25px;
}

.img-btn {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    box-sizing: border-box;
    border-width: 2px;
    border-radius: 4px;
    border-color: #2f2f2f;
    background-color: #A1BDE650;
    color: #000000;
    padding: 13px 29px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    text-align: center;
}
.img-btn:hover {
    background-color: #A1BDE6;
    color: #000000;
    font-weight: bold;
}
.single {
    flex: 100%;
    padding: 10px;
}
.main {
    flex: 60%;
    padding: 10px;
}
.side {
    flex: 20%;
    padding: 10px;
    margin-left: 30px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 15px;
}
.contact-left {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 16px;
}
.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    margin-bottom: 2px;
    font-size: 16px;
    color: #000000;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #A1BDE6, #568fe6);
    cursor: pointer;
}
#anhang {
    display: none;
}
.file-name {
    padding-left: 25px;
}
.contact-label {
    display: flex;
    align-items: center;
    width: 94%;
    height: 50px;
    border: 1px solid #568fe6;
    font-size: 16px;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #000000;
    border-radius: 50px;
}
.contact-label:hover {
    background-color: #A1BDE6;
}
.contact-inputs {
    width: 94%;
    height: 50px;
    border: 1px solid #568fe6;
    font-size: 16px;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #000000;
    border-radius: 50px;
}
.contact-inputs:focus {
    border: 2px solid #568fe6;
}
.contact-inputs::placeholder {
    color: #a9a9a9;
    font-size: 16px;
}

.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    padding: 10px;
}
.footer-section h4 {
    font-size: 18px; /* Größer und auffälliger */
    color: #3461a4;
    margin-bottom: 15px;
    font-weight: bold;
}
.footer-section ul li a {
    font-size: 14px; /* Kleiner und dezenter */
    color: #568fe6;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 15px; /* Abstand zwischen den Icons */
    margin-top: 10px;
}

.social-icons a {
    color: #568fe6;
    font-size: 24px; /* Größe der Icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #3461a4;
    transform: scale(1.2); /* leichtes Vergrößern beim Hover */
}


@media (min-width: 2000px) {
    .body-cnt {
        margin: 60px 15%;
    }
}

@media (min-width: 761px) and (max-width: 1060px) {
    .side {
        margin-left: 0;
    }
    .circle-cnt {
        padding: 13px 0px;
    }
    .circle-cnt img {
        width: 100%;
        max-height: 150px;
    }
    .img-cnt {
        flex: 1 1 28%;
        max-width: 28%;
    }
    .img-txt {
        font-size: 20px;
    }
    .body-cnt {
        margin: 10px 3%;
    }
    .contact-inputs {
        width: 98%;
    }
    .contact-right {
        display: none;
    }
}

@media (max-width: 760px){
    p, a {
        font-size: 18px;
        text-align: left;
        hyphens: auto;
    }
    h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    h2 {
        font-size: 22px;
        margin-top: 20px;
    }
    h3 {
        font-size: 20px;
    }

    .banner-img {
        min-height: 200px;
    }
    .banner-txt {
        font-size: 20px;
        top: 102px;
        padding: 10px 15px;
    }
    
    .side {
        margin-left: 0;
    }

    .topnav {
        height: 70px;
    }
    .topnav a {
        display: none;
    }
    .topnav-right a {
        float: none;
    }
    .topnav-cnt {
        margin: 0 8%;
        padding: 10px 0;
        height: 50px;
        justify-content: center;
        align-items: center;
    }

    .body-cnt {
        flex-direction: column;
        margin: 8px 1%;
    }

    .split {
        width: 98%;
        margin-top: 30px;
        padding: 15px 2px;
        gap: 2px;
        border-radius: 16px;
    }
    .split > div {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .split video {
        margin-right: 4px;
        height: 28px;
        width: auto;
        pointer-events: none;
    }
    .split p {
        font-size: 14px;
    }

    .circle-cnt {
        justify-content: space-around;
        margin: 30px 0;
        padding: 9px 0;
    }
    .circle-cnt img {
        width: 100%;
        max-height: 130px;
    }
    .img-cnt {
        flex: 1 1 43%;
        max-width: 43%;
        margin: 10px 3px;
    }
    .img-txt {
        font-size: 16px;
    }
    .img-btn {
        font-size: 12px;
        padding: 6px 13px;
    }

    /* Burger */
    .burger-wrapper {
        cursor: pointer;
    }
    #meny {
        background: #2f2f2f;
        width: 100%;
        height: 100%;
        position: fixed;
        right: 0;
        transition-timing-function: cubic-bezier(10,2,3,1);
        transform: translateX(50rem);
        top: 0;
        z-index: 0;
        transition: 0.5s;
    }
    #meny ul {
        list-style-type: none;
        display: block !important;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 70px;
        width: 100%;
        height: auto;
        text-align: center;
    }
    #meny li {
        display: block !important;
        margin: 10px 0;
        color: #ffffff;
        height: auto;
    }
    #meny a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        display: block !important;
    }
    
    #meny a:hover {
        text-decoration: underline;
    }
    #menyAvPaa {
        display: none;
    }
    
    #menyAvPaa:checked ~ #meny {
        transform: translateX(0rem);
    }
    
    #burger {
        position: absolute;
        cursor: pointer;
        width: 25px;
        height: 25px;
        right: 10px;
        top: 22.5px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    
    #burger > div {
        height: 2px;
        background-color: #000;
        transition: 0.5s;
        z-index: 999;
    }
    
    #menyAvPaa:checked ~ #burger > div {
        background-color: #fff;
    }
    
    #menyAvPaa:checked ~ #burger > div:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }
    #menyAvPaa:checked ~ #burger > div:nth-child(2) {
        opacity: 0;
    }
    #menyAvPaa:checked ~ #burger > div:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
      
    
}
    
  
