nav {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 999;
    width: 100%;
}

nav .nav-inner {
    padding-top: 14px;
    padding-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

nav .content {
    display: flex;
    column-gap: 1.5rem
}

@media screen and (max-width:991px) {

    nav .content,
    nav .nav-cta-wrapper {
        display: none
    }
}

nav .burger {
    position: relative;
    z-index: 1;
    display: none;
    height: 16px;
    width: 50px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer
}

nav .burger .line-1,
nav .burger .line-2 {
    height: .5px;
    width: 50px;
    background-color: #c1c0b4;
    transition: .25s ease-out
}

@media screen and (max-width:991px) {
    nav .burger {
        display: flex
    }
}

nav .burger.active .line-1 {
    transform-origin: 50% 50%;
    transform: translateY(7.5px) rotate(45deg);
    transition: all .25s ease-out
}

nav .burger.active .line-2 {
    transform-origin: 50 50%;
    transform: translateY(-7.5px) rotate(-45deg);
    transition: all .25s ease-out
}

nav .nav-mobile {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #051218;
    transform: translateX(100%);
    transition: all .25s ease-out;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 50px
}

nav .nav-mobile.active {
    transform: translateX(0);
    transition: all .25s ease-out
}

nav .nav-mobile .nav-mobile-links {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

nav .nav-mobile .nav-mobile-links .nav-karriere-icon {
    height: 2.6rem;
    width: 2.6rem
}

nav .nav-mobile .nav-mobile-links .nav-karriere-icon .icon-content {
    font-size: 1.6rem
}

nav .nav-mobile .nav-mobile-links a {
    font-size: 2rem
}

footer {
    z-index: 1
}

.prefooter,
footer {
    position: relative;
    width: 100%
}

.prefooter {
    display: flex;
    flex-direction: column;
    align-items: center
}

.socials-wrapper {
    width: 100%
}

.socials,
.socials-wrapper {
    display: flex;
    justify-content: center
}

.socials {
    margin-top: 50px;
    margin-bottom: 80px;
    width: 375px;
    height: 375px;
    align-items: center
}

.ring {
    border-radius: 50%;
    position: absolute
}

.ring1 {
    width: 375px;
    height: 375px;
    border: .25px solid rgba(10, 186, 181, .1)
}

.ring2 {
    width: 300px;
    height: 300px;
    border: .25px solid rgba(10, 186, 181, .2);
    background: rgba(10, 186, 181, .05);
    filter: drop-shadow(0 4px 100px rgba(255, 255, 255, .95));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

.ring3 {
    width: 225px;
    height: 225px;
    border: .25px solid rgba(10, 186, 181, .4);
    background: rgba(10, 186, 181, .1)
}

.ring3,
.ring4 {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .25);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

.ring4 {
    width: 150px;
    height: 150px;
    border: .25px solid rgba(10, 186, 181, .5);
    background: rgba(10, 186, 181, .2)
}

.ring5 {
    width: 75px;
    height: 75px;
    border: .25px solid rgba(10, 186, 181, .5);
    background: #FF0000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2
}

.ring5,
.social-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center
}

.social-icon-wrapper {
    height: 60px;
    width: 60px;
    position: relative;
    transition: all .5s cubic-bezier(.46, .02, .08, 1)
}

.social-icon-wrapper.active .social-icon1 {
    transform: translateX(-120px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

.social-icon-wrapper.active .social-icon2 {
    transform: translateX(-220px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

@media screen and (max-width:767px) {
    .social-icon-wrapper.active .social-icon2 {
        transform: translate(-65px, 103px);
        transition-delay: 25ms
    }
}

.social-icon-wrapper.active .social-icon3 {
    transform: translateX(-310px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

@media screen and (max-width:767px) {
    .social-icon-wrapper.active .social-icon3 {
        transform: translate(-65px, -103px);
        transition-delay: .05s
    }
}

.social-icon-wrapper.active .social-icon4 {
    transform: translateX(120px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

@media screen and (max-width:767px) {
    .social-icon-wrapper.active .social-icon4 {
        transition-delay: 75ms
    }
}

.social-icon-wrapper.active .social-icon5 {
    transform: translateX(220px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

@media screen and (max-width:767px) {
    .social-icon-wrapper.active .social-icon5 {
        transform: translate(65px, 103px);
        transition-delay: .1s
    }
}

.social-icon-wrapper.active .social-icon6 {
    transform: translateX(310px);
    transition: all 1s cubic-bezier(.46, .02, .08, 1)
}

@media screen and (max-width:767px) {
    .social-icon-wrapper.active .social-icon6 {
        transform: translate(65px, -103px);
        transition-delay: .125s
    }
}

.social-icon-wrapper.active .ring5 {
    animation: pump .35s linear
}

@keyframes pump {
    0% {
        transform: scale(1)
    }

    80% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.social-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px 0 rgba(10, 186, 181, .2);
    border-radius: 50%
}

.social-icon.social-icon1 {
    right: 0;
    height: 60px;
    width: 60px
}

.social-icon.social-icon2 {
    right: 0;
    height: 50px;
    width: 50px
}

@media screen and (max-width:767px) {
    .social-icon.social-icon2 {
        right: 0;
        top: 0;
        height: 60px;
        width: 60px
    }
}

.social-icon.social-icon3 {
    right: 0;
    height: 40px;
    width: 40px
}

@media screen and (max-width:767px) {
    .social-icon.social-icon3 {
        right: 0;
        top: 0;
        height: 60px;
        width: 60px
    }
}

.social-icon.social-icon4 {
    left: 0;
    height: 60px;
    width: 60px
}

.social-icon.social-icon5 {
    left: 0;
    height: 50px;
    width: 50px
}

@media screen and (max-width:767px) {
    .social-icon.social-icon5 {
        left: 0;
        top: 0;
        height: 60px;
        width: 60px
    }
}

.social-icon.social-icon6 {
    left: 0;
    height: 40px;
    width: 40px
}

@media screen and (max-width:767px) {
    .social-icon.social-icon6 {
        left: 0;
        top: 0;
        height: 60px;
        width: 60px
    }
}

.social-icon .color-bgr {
    position: absolute;
    width: 70%;
    height: 70%;
    background-color: #FF0000;
    border-radius: 50%;
    transition: all .25s ease-out
}

.social-icon .icon-content {
    position: relative;
    background: hsla(0, 0%, 100%, .15);
    box-shadow: 0 4px 27px rgba(5, 18, 24, .6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: .5px solid rgba(255, 254, 241, .2);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.social-icon .icon-content img {
    height: 40%;
    width: 40%
}

.social-icon:hover .color-bgr {
    width: 90%;
    height: 90%;
    transition: all .25s ease-out
}

.divider {
    width: 100%;
    height: 1px;
    max-width: 1200px;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
    background-image: linear-gradient(90deg, rgba(10, 186, 181, 0), rgba(10, 186, 181, .5) 50%, rgba(10, 186, 181, 0))
}

.footer {
    height: 300px
}

.footer p {
    color: #96958d
}

.footer .footer-wrapper {
    display: flex;
    column-gap: 30px;
    padding-bottom: 80px
}

.footer .footer-wrapper .footer-boxes {
    display: flex;
    width: 100%
}

@media screen and (max-width:991px) {
    .footer .footer-wrapper .footer-boxes.left {
        flex-direction: column
    }
}

@media screen and (max-width:767px) {
    .footer .footer-wrapper .footer-boxes {
        flex-direction: column;
        row-gap: 50px
    }
}

.footer .footer-wrapper .footer-boxes .footer-box {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem
}

@media screen and (max-width:767px) {
    .footer .footer-wrapper .footer-boxes .footer-box {
        row-gap: 1.35rem
    }
}

.footer .footer-wrapper .footer-boxes .footer-box.box1 {
    flex: 2.5 1
}

.footer .footer-wrapper .footer-boxes .footer-box.box2 {
    flex: 1.5 1
}

.footer .footer-wrapper .footer-boxes .footer-box.box3 {
    flex: 1 1
}

.footer .footer-wrapper .footer-boxes .footer-box img.plakat {
    width: 300px
}

@media screen and (max-width:767px) {
    .footer .footer-wrapper {
        flex-direction: column;
        row-gap: 50px
    }
}

.footer .social-links-wrapper {
    padding-bottom: 80px;
    display: flex;
    column-gap: 1rem
}

.footer .social-links-wrapper img {
    height: 1rem;
    width: 1rem;
    cursor: pointer
}