/* Fira Sans Light */
@font-face {
    font-family: "Fira Sans";
    src: url('fonts/firasans/FiraSans-Light.ttf');
    src: url('fonts/firasans/FiraSans-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Fira Sans Bold */
@font-face {
    font-family: "Fira Sans";
    src: url('fonts/firasans/FiraSans-Bold.ttf');
    src: url('fonts/firasans/FiraSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Golden Stanbury */
@font-face {
    font-family: "Golden Stanbury";
    src: url('fonts/golden_stanbury/Golden-Stanbury.ttf');
    src: url('fonts/golden_stanbury/Golden-Stanbury.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --blau: #5c96ad;
    --gruen: #a7c2b6;
    --gelb: #e2aa20;
    --rot: #d5a691;
  }

body {
    font-family: "Fira Sans", "PT Sans", Calibri, Tahoma, sans-serif;
    font-weight: 200;
    display: block;
    min-width: 100%;
    min-height: 100%;
    background-color: hsl(43, 77%, 98%);
}

a {
    text-decoration: none;
}

a.nav-link {
    color: #000 !important;
}

#navigation {
    width: 100%;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin-bottom: 3rem;
}

li.nav-item.dropdown {
    margin-left: auto;
}

.flag {
    width: 15px;
    margin-right: 1rem;
}

#footer {
    width: 100%;
    flex-shrink: 0;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    margin-top: 5rem;
    -webkit-box-shadow: 0 -2px 4px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 -2px 4px 0 rgba(0,0,0,.2);
    box-shadow: 0 -2px 4px 0 rgba(0,0,0,.2);
}

h1 {
    font-family: "Golden Stanbury";
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
}

h4 {
    font-family: "Golden Stanbury";
}

.img {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-height: 100%;
    margin-bottom: 1.5rem;
}

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: var(--gruen);
    text-decoration-thickness: 2px;
}

iframe {
    max-width: 100%;
}

#unterstuetzer img {
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--blau);
}
  
.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--blau);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.heading {
    font-family: "Golden Stanbury";
}

#carousel {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-social {
    position: fixed;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-social ul {
    padding-left: 0;
    margin-bottom: 0;
    transition: left 0.6s ease-in-out;
    left: -200px;
    position: relative;
}

.sidebar-social ul a {
    text-decoration: none;
}

.sidebar-social li {
    list-style: none;
    color: #fff;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.5rem;
}

#sidebar-toggle {
    display: inline-block;
    width: 50%;
    cursor: pointer;
}

.sidebar--open {
    left: 0px !important;
}

#sidebar-toggle i {
    font-size: 1.5rem;
    text-align: center;
    display: inherit;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    color: var(--blau);
}

.fb {
    background-color: var(--gelb);
}

.ig {
    background-color: var(--blau);
}

.linkedin {
    background-color: var(--gruen);
}

.email {
    background-color: var(--rot);
}

.fb:hover i {
    color: #0386ee;
}

.ig:hover i {
    color: #df2f6d;
}

.linkedin:hover i {
    color: #0077B5;
}

.email:hover i {
    color: #4a4d4b;
}

.margin-bottom {
    margin-bottom: 5rem;
}

@media only screen and (min-width: 1024px) {
    .nav-link.active {
        text-underline-offset: 1rem;
    }

    li.nav-item {
        margin-right: 1rem;
        padding: 1rem;
        font-size: 20px;
    }

    .horizontal {
        width: 50rem;
    }

    .vertical {
        height: 50rem;
    }

    .spaceholder {
        width: 12% !important;
    }

    #carousel {
        width: 55rem;
    }

    .sidebar-social li {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 1023px) {
    .nav-link.active {
        text-underline-offset: 0.5rem;
    }

    .sidebar-social li {
        padding: 0.5rem;
    }
}
