*{
    --main-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
}

html{
    background-color: #222831;
}

.hero-about {
    width: 100%;
    height: 70vh;
    background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent), url("../images/dab-front.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-section{
    display: flex;
    position: relative;
    justify-content: end;
    margin-bottom: 40px;
    min-height: 40vh;
    background-size: 55%;
    background-color: #222831;
    overflow: hidden;
}

.about-container{
    margin: 80px 0;
    position: relative;
    width: 65%;
    float: right;
    background-color: #222831;
    padding: 80px;
    margin-right: 35px;
    box-shadow: 6px 6px 6px 2px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: .5s;
}

.about-subheadline{
    text-align: center;
    font-size: 5rem;
}

.about-content{
    font-size: 17px;
    font-family: var(--main-font);
    letter-spacing: .2rem;
    color: #fdfdfd;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

.about-intro .contact-desc{
    color: white;
}

.about-intro .separator-subheadline{
    margin: 30px 0;
}

.about-intro .contact-desc p{
    text-align: left;
}

.about-intro .contact-desc h3{
    font-family: var(--main-font);
    margin: 1.5rem auto;
    font-size: 2.5rem;
}

.about-info-icon-row{
    display: flex;
    justify-content: start;
    flex-direction: row;
    padding: 0 5%;
}

.about-service-desc{
    margin: 0.2rem 0;
}

.icon-row{
    font-size: 1.2rem;
    color: var(--secondary-font-color);
    margin: auto 1rem;
    opacity: 0;
    animation: spin .5s forwards;
    animation-delay: 0.2s;
}

.appointment{
    background-color: white;
}


@media screen and (max-width:1200px){
    .inner-container{
        padding: 80px;
    }
}

@media screen and (max-width:1000px){
    .about-headline{
        font-size: 6rem;
    }

    .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-container{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .about-headline{
        font-size: 4rem;
    }

    .about-subheadline{
        font-size: 3rem;
    }

    .about-section{
        padding: 0;
    }
    .inner-container{
        padding: 60px;
    }
}