:root {
    --blau: #1E4B6C;
    --hellblau: #C3EDFA;
    --türkis: #11BAEE;
    --helltürkis: #EEFAFE;
    --grey: #e6e6e6;
	--custom-font-family: "Titillium";
}

/* fonts - start */
/* texta thin */
@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-Light.ttf);
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-Lightitalic.ttf);
    font-weight: 100;
    font-style: italic;
}

/* texta light */
@font-face {
    font-family: "Texta";
    src: url(../fonts/Titillium-Light.ttf);
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Light-Italic-webfont.woff);
    font-weight: 200;
    font-style: italic;
}

/* texta book */
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Book-webfont.woff);
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-book.woff);
    font-weight: 300;
    font-style: italic;
}

/* texta regular */
@font-face {
    font-family: "Titillium-R";
    src: url(../fonts/TitilliumWeb-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

/* texta medium */
@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-SemiBold.ttf);
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Medium-Italic-webfont.woff);
    font-weight: 500;
    font-style: italic;
}

/* texta bold */
@font-face {
    font-family: "Titillium-B";
    src: url(../fonts/TitilliumWeb-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

/* texta heavy */
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Heavy-webfont.woff);
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Heavy-Italic-webfont.woff);
    font-weight: 800;
    font-style: italic;
}

/* texta black */
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Black-webfont.woff);
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Texta";
    src: url(../fonts/Texta-Black-Italic-webfont.woff);
    font-weight: 900;
    font-style: italic;
}

/* titillium bold */
@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

/* fonts - end */

/* basic html styling - start */
html, body {
    height: 100%;
    width: 100%;
    font-family: "Titillium-R";
    scroll-behavior: smooth;
    position: relative;
}

main {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--blau);
    margin: 0;
    font-family: "Texta";
}

h1 {
    font-weight: 900;
    font-size: 5rem;
}

h2 {
    font-weight: 900;
    font-size: 4rem;
    text-transform: uppercase;
}

h3 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 12px;
}

h5 {
    font-weight: 700;
    font-size: 1.5rem;
}

p {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--blau);
    line-height: 1.4;
    margin: 0;
}

p + p {
    margin-top: 1.2rem;
}

p.important {
    font-size: 1.6rem;
    font-weight: 700;
}

p svg {
    margin-right: 12px;
}

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, p.white {
    color: white;
}

a {
    color: var(--blau);
}

/* basic html styling - end */

/* specific styling - start */

/* navigation - start */
header {
    position: fixed;
    z-index: 99999;
    height: 100px;
    width: 100%;
    background-color: #F2F2F2;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .3);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

header ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menue.toggled {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: white;
}

header .menue.toggled ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

header .menue.toggled li {
    margin: 0 0 20px 0;
}

header li {
    display: block;
    margin-left: 50px;
}

header li a {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blau);
}

header .menue-button {
    display: none;
    height: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

header .menue-button .line-one, header .menue-button .line-two, header .menue-button .line-three {
    height: 4px;
    width: 30px;
    background-color: black;
}

header .left {
    width: 240px;
}

header .logo {
    height: 120px;
    width: 240px;
    position: absolute;
    top: 0;
    background-color: var(--blau);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    height: 76px;
}

main {
    padding-top: 100px;
}

.anchor {
    scroll-margin-top: 100px;
}

@media screen and (max-width: 1199px) {
    main {
        padding-top: 80px !important;
    }

    header {
        height: 80px;
    }

    header .logo {
        height: 100px;
        width: 200px;
    }

    header .logo img {
        height: 64px;
    }

    header ul {
        display: none;
    }

    header li a {
        font-size: 2rem;
    }

    header .menue-button {
        display: flex;
    }

    .anchor {
        scroll-margin-top: 80px;
    }
}
/* navigation - end */

/* footer - start */
footer {
    background-color: var(--blau);
    width: 100%;
    position: relative;
    color: white;
    line-height: 1.3;
}

footer .container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media screen and (max-width: 575px) {
    footer .container {
        width: 94%;
    }
}

footer ul {
    padding: 48px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

footer li {
    display: block;
}

footer li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

footer .logo img {
    height: 76px;
}

@media screen and (max-width: 600px) {
    footer ul {
        flex-direction: column;
    }

    footer li a {
        line-height: 2;
    }
}

footer #impressum > div {
    margin-bottom: 24px;
}

footer .copyright {
    padding-top: 48px;
    text-align: center;
}

footer .socials {
    display: flex;
    justify-content: space-between;
    width: 20%;
    color: white;
}

footer .socials svg {
    
}

/* components - start */
button {
    border-radius: 10px;
    border: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: .7em 2.2em;
    cursor: pointer;
    background-color: var(--türkis);
    color: white;
}

.cards .card {
    background-color: var(--blau);
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 10px 50px 5px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards.small .card {
    height: 250px;
}

.cards.big .card {
    height: 300px;
}


.cards .card p {
    color: white;
    position: absolute;
    z-index: 9999;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.1;
    padding: 24px;
}

.cards.top .card p {
    left: 0;
    top: 0;
}

.cards.bottom .card p {
    left: 0;
    bottom: 0;
}

.card img {
    width: 100%;
    transform: scale(1);
    transition: all .4s;
}

.card:hover img {
    transform: scale(1.1)
}

@media screen and (max-width: 575px) {
    .cards.big .card {
        height: 250px;
    }
}

.img-swiper {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    padding: 0 60px;
    position: relative;
}

.img-swiper img {
    width: 100%;
    max-height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide {
    background-color: var(--türkis);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-custom {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.swiper-button-custom.prev {
    left: 0;
    justify-content: start;
}

.swiper-button-custom.next {
    right: 0;
    justify-content: end;
}

.swiper-button-custom svg {
    font-size: 3rem;
    color: var(--blau);
}

@media screen and (max-width: 1199px) {
    .img-swiper {
        padding: 0;
        height: 70vw;
    }

    .swiper-button-custom {
        z-index: 2;
        padding: 0 24px;
    }

    .swiper-button-custom svg {
        color: white;
    }
}

/* components - end */

/* footer - end */

/* startpage - start */
section.background {
    background-color: var(--hellblau);
    box-shadow: 0px 0px 0 0 rgba(0,0,0,0.25);
}

#home {
    background-image: url(../img/home.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0f3049;
    height: 500px;
    box-sizing: border-box;
}

#home h1 {
    color: white;
    text-transform: uppercase;
    line-height: .8;
    font-weight: 800;
    font-size: 4.5rem;
    box-shadow: 0px 0px 0 0 rgba(0,0,0,0.25);
    font-family: "Texta";
}

#home h1 span {
    font-size: 135%;
    font-weight: 900;
}

#home-info {
    background-color: var(--türkis);
}

#home-info p {
    color: white;
}

@media screen and (max-width: 575px) {
    #home {
        background-image: url(../img/home-mobile.jpg);
        background-size: cover;
    }
}

@media screen and (max-width: 1399px) {
    #home h1 {
        line-height: 1;
    }
}

#leistungen .card img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

#karriere .card img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

#ueberuns .resp {
    display: flex;
    align-items: center;
    justify-content: center;
}

#ueberuns .info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#ueberuns .ceo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#ueberuns .ceo p:nth-child(1) {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase; 
    margin: 0;
    line-height: 0.8;
    margin-bottom: 4px;
}

#ueberuns .ceo p:nth-child(2) {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
}

#ueberuns .arrow svg {
    font-size: 3rem;
    color: var(--blau);
    margin: 16px;
}

#ueberuns .seal img {
    height: 160px;
}

#ueberuns {
    overflow: hidden;
    position: relative;
}

#ueberuns .image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

#ueberuns .image img {
    height: 560px;
}

@media screen and (max-width: 991px) {
    #ueberuns .image {
        position: unset;
    }

    #ueberuns .image img {
        width: 100%;
        height: auto;
    }
}

#kontakt .formular label {
    display: block;
}

#kontakt .formular input, #kontakt .formular textarea {
    width: 100%;
    font-family: "Titillium-B";
}

#referenz .single-photo {
    height: 300px;
    background-color: grey;
}

#referenz .single-photo a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#referenz .single-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pswp--custom {
    --pswp-icon-stroke-color: none;
}

/* startpage - end */

/* landingpage - start */

.landingpage {
    padding-bottom: 40px 0;
}

.landingpage p {
    margin-bottom: 12px;
}

.landingpage ul {
    margin-top: 0;
    margin-bottom: 12px;
}

.landingpage ul li {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--blau);
    line-height: 1.4;
    margin: 0;
}

.landingpage .header {
    background-color: var(--blau);
    
}

.landingpage .header h2, .landingpage .header h3 {
    color: white;
}

/* landingpage - end */

/* specific styling - end */

@media screen and (max-width: 575px) {
    html, body {
        /* overflow-x: hidden; */
    }
    
    .container {
        width: 90%;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 2rem;
    }
    
    #home h1 {
        font-size: 11vw;
        line-height: 1;
    }
}