main{
    padding: 75px 0 150px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
    max-width: 1000px;
}
@media screen and (max-width:720px) {
    main{
        width: calc(100% - 40px);
    }
}
section{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.particle-wrapper{
    position: relative;
    height: 0px;
    width: 100%;
}
.particle-wrapper .particle{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 10;
}
.particle-wrapper .particle:nth-child(1){
    top: 40px;
    left: 11%;
    width: 7px;
    height: 7px;
    background-color: var(--main-yellow-light);
    opacity: 0.6;
    animation: particleFloat 7s 1s ease infinite alternate;
}
.particle-wrapper .particle:nth-child(2){
    top: 150px;
    right: 12%;
    background-color: var(--main-yellow-light);
    opacity: 0.4;
    animation: particleFloat 10s ease infinite alternate;
}
.particle-wrapper .particle:nth-child(3){
    top: 400px;
    left: 20%;
    background-color: var(--main-yellow-light);
    opacity: 0.15;
    width: 11px;
    height: 11px;
    animation: particleFloat 15s 3s ease infinite alternate;
}
@keyframes particleFloat {
    from{transform: translateY(0);}
    to{transform: translateY(50px);}
}
.hero-bg-wrapper{
    position: absolute;
    width: 100%;
    aspect-ratio: 1.78;
    z-index: 0;
    max-height: 840px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-bg-wrapper-inner{
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    z-index: 0;
}
#hero-bg{
    position: absolute;
    width: 100%;
    z-index: 0;
    margin-top: -20px;
}
.hero-bg-fade{
    height: 100px;
    width: 100%;
    background: linear-gradient(180deg,transparent 0%, var(--dark1) 100%);
    z-index: 1;
}
section#hero{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-top: 50px;
}
h1{
    text-align: center;
    font-weight: 700;
    font-size: 65px;
    cursor: default;
    z-index: 1;
    line-height: 70px;
    margin-bottom: 0;
}
h1 span{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
    font-size: 75px;
    animation: float 30s ease infinite alternate;
    display: inline-block;
    z-index: 2;
    padding-bottom: 20px;
    margin-bottom: -20px;
}
@media screen and (max-width:720px) {
    h1{
        font-size: 8.5vw;
        line-height: max(13.5vw, 64px);
    }
    h1 br{
        display: block;
        margin-top: -25px;
    }
    h1 span{
        font-size: 10vw;
        padding-bottom: 0;
    }
}
@keyframes float {
    0%{transform: scale(1) rotateZ(0deg);}
    25%{transform: scale(1.05) rotateZ(-0.5deg);}
    50%{transform: scale(1) rotateZ(-0.1deg);}
    75%{transform: scale(0.92) rotateZ(0.2deg);}
    100%{transform: scale(1) rotateZ(0deg);}
}
h2{
    z-index: 1;
    font-weight: 500;
    color: rgb(165, 165, 165);
    text-align: center;
    width: 90%;
    font-size: 25px;
    margin-top: 20px;
}
h2 span{
    color: var(--main-yellow);
}
#hero-summary-mobile{
    display: none;
}
@media screen and (max-width:720px) {
    h2{
        font-size: 3.5vw;
    }
    #hero-summary-default{
        display: none;
    }
    #hero-summary-mobile{
        display: block;
    }
}
.client-typer{
    position: relative;
    width: fit-content;
    display: inline-block;
    font-weight: 500;
    color: var(--main-yellow);
    min-height: 25px;
}
.client-typer::after{
    content: "";
    position: absolute;
    top: 3px;
    right: -3px;
    height: 22px;
    width: 2px;
    background-color: var(--main-yellow);
    opacity: 0;
    animation: caretBlink 1s infinite;
}
@media screen and (max-width:720px) {
    .client-typer{
        min-height: 3.5vw;
    }
    .client-typer::after{
        height: 3.5vw;
    }
}
@keyframes caretBlink {
    0%{opacity: 1;}
    49%{opacity: 1;}
    50%{opacity: 0;}
    100%{opacity: 0;}
}
#client-slider{
    position: relative;
    width: 100px;
    height: 30px;
    margin-bottom: -5px;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    transition: .3s ease;
    display: none;
}
#client-slider-inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: .3s ease;
    padding-top: 0.5px;
}
#hero .client{
    display: inline-block;
    width: fit-content;
    font-weight: 500;
    color: var(--main-yellow);
    text-align: left;
    font-size: 25px;
    padding-bottom: 50px;
}
#hero-contact{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    gap: 30px;
    margin-top: 20px;
}
@media screen and (max-width:720px) {
    #hero-contact{
        flex-direction: column;
        gap: 20px;
    }
}
#hero-services{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1;
    margin-top: 50px;
}
@media screen and (max-width:720px) {
    #hero-services{
        flex-direction: column;
        gap: 30px;
    }
}
#hero-services .card{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: var(--border);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: rgba(255,255,255, 0.1) 0 0 20px;
    background-color: var(--dark1);
    gap: 15px;
}
#hero-services .img-wrapper{
    background: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#hero-services .img-wrapper img{
    width: 27px;
}
#hero-services .title{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}
#hero-services .subtitle{
    font-weight: 400;
    color: rgb(165, 165, 165);
    text-align: center;
    font-size: 17px;
}
#hero-bottom-spacer{
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, 100%, var(--dark1));
}
#hero-arrow-spacer{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#hero-arrow-spacer img{
    width: 30px;
    height: 30px;
    animation: arrowBounce 1s ease-in infinite alternate;
}
@keyframes arrowBounce {
    from{transform: translateY(0);}
    to{transform: translateY(10px);}
}

h3{
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
h3 span{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
}
h4{
    padding: 0 40px;
    text-align: center;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: rgb(165, 165, 165);
}

#grafik-services{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1;
    margin-top: 50px;
}
#grafik-services .card{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: var(--border);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: rgba(255,255,255, 0.1) 0 0 20px;
    background-color: var(--dark1);
    gap: 15px;
}
@media screen and (max-width:720px) {
    #grafik-services .card{
        width: 100%;
    }
}
#grafik-services .img-wrapper{
    background: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#grafik-services .img-wrapper img{
    width: 27px;
}
#grafik-services .title{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
#grafik-services .subtitle{
    font-weight: 400;
    color: rgb(165, 165, 165);
    text-align: center;
    font-size: 14px;
}
h5{
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    cursor: default;
    z-index: 1;
    line-height: 70px;
    margin-bottom: 0;
}
h5 span{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
}
#grafik-projekte{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
@media screen and (max-width:720px) {
    h5{
        font-size: 40px;
        line-height: 45px;
        width: calc(100% - 20px);
    }
    #grafik-projekte{
        margin-top: 30px;
    }
}
#grafik-projekte .card{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    border: var(--border);
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: rgba(255,255,255, 0.1) 0 0 20px;
    background-color: var(--dark1);
    gap: 15px;
}
#grafik-projekte .title{
    font-size: 21px;
    font-weight: 600;
}
@media screen and (max-width:720px) {
    #grafik-projekte .card:nth-child(1) .title{
        width: calc(100% - 115px);
    }
    #grafik-projekte .card:nth-child(2) .title{
        width: calc(100% - 123px);
    }
    #grafik-projekte .card:nth-child(3) .title{
        width: calc(100% - 110px);
    }
    #grafik-projekte .card:nth-child(4) .title{
        width: calc(100% - 140px);
    }
}
#grafik-projekte .subtitle{
    font-weight: 400;
    color: rgb(165, 165, 165);
    font-size: 16px;
}
#grafik-projekte .type{
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--main-pink);
    color: var(--dark1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
#grafik-projekte .tech-header{
    color: var(--main-yellow);
    font-weight: 700;
    margin-top: 15px;
}
#grafik-projekte ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0 0 0 -5px;
    padding: 0;
}
@media screen and (max-width:720px) {
    #grafik-projekte ul{
        flex-wrap: wrap;
    }
}
#grafik-projekte li{
    list-style-type: none;
    border: var(--border);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
#grafik-projekte hr{
    border: none;
    background-color:  rgba(255, 255, 255, 0.1);
    height: 1px;
    width: 100%;
    margin: 0;
}
#grafik-projekte .reach{
    font-size: 15px;
    font-weight: 400;
    color: rgb(165, 165, 165);
}
#grafik-projekte .reach span{
    color: var(--main-pink);
    font-weight: 600;
}
#grafik-projekte h4{
    font-size: 18px;
    margin-top: 35px;
}
h6{
    margin-top: -35px;
    font-size: 17px;
    font-weight: 700;
    color: var(--main-pink);
    text-align: center;
}
#grafik-podcast-spacer{
    height: 150px;
}

#podcast-facts{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
#podcast-facts .fact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
@media screen and (max-width:720px) {
    #podcast-facts{
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        row-gap: 20px;
        align-items: flex-start;
    }
    #podcast-facts .fact{
        width: 46%;
    }
    #podcast-facts .fact .subline{
        text-align: center;
    }
}
#podcast-facts .fact .headline{
    color: var(--main-yellow);
    font-weight: 700;
    font-size: 38px;
}
#podcast-facts .fact .subline{
    color: rgb(165, 165, 165);
    font-weight: 400;
    font-size: 15px;
}
#podcast-services{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}
#podcast-services .card{
    box-sizing: border-box;
    width: calc(50% - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
    border: var(--border);
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(255,255,255, 0.1) 0 0 20px;
    background-color: var(--dark1);
    gap: 25px;
}
@media screen and (max-width:720px) {
    #podcast-services{
        flex-direction: column;
        flex-wrap: nowrap;
    }
    #podcast-services .card{
        width: 100%;
    }
}
#podcast-services .headline{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#podcast-services .img-wrapper{
    background: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#podcast-services .img-wrapper img{
    width: 22px;
}
#podcast-services .headline span{
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-size: 19px;
}
#podcast-services .subline{
    font-weight: 400;
    color: rgb(165, 165, 165);
    text-align: left;
    font-size: 16px;
}
#podcast-services .subservices-title{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    background: lightpink;
    color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
}
#podcast-services ul{
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 8px;
    margin: -12px 0 0 0;
    padding: 0;
}
#podcast-services li{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}
#podcast-services li img{
    width: 20px;
}
#podcast-retainer{
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    border: var(--border);
    padding: 40px 20px 50px 20px;
    border-radius: 10px;
    box-shadow: rgba(255,255,255, 0.1) 0 0 20px;
    background-color: var(--dark1);
    gap: 25px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    text-align: center;
}
#podcast-retainer .title{
    font-size: 25px;
    font-weight: 700;
}
#podcast-retainer .title span{
    background-image: linear-gradient(to right, var(--main-yellow-light), 65%, var(--main-pink));
    color: transparent;
    background-clip: text;
}
#podcast-retainer ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
    margin: 10px 0 0 0;
}
@media screen and (max-width:720px) {
    #pocast-retainer .title{
        font-size: 30px;
    }
    #podcast-retainer ul{
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}
#podcast-retainer li{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
#podcast-retainer li .img-wrapper{
    border: 1px solid hsl(0, 0%, 20%);
    background-color: #272043;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: hsla(0, 0%, 100%, 0.1) 0 0 15px;
}
#podcast-retainer li img{
    width: 24px;
    filter: invert(1);
}
#podcast-retainer .headline{
    font-weight: 600;
    font-size: 17px;
}
#podcast-retainer .subline{
    font-size: 13px;
    color: rgb(165, 165, 185);
    text-align: center;
    width: 200px;
}
#btn-podcast-contact{
    margin-top: -30px;
}

#contact{
    margin-top: 200px;
    margin-bottom: 300px;
}
#contact h3{
    font-size: 40px;
}
#contact .btn-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: fit-content;
    margin: 0 auto;
}
@media screen and (max-width:720px) {
    #contact{
        margin-top: 100px;
        margin-bottom: 150px;
    }
    #contact .btn-wrapper{
        flex-direction: column;
    }
}