@import './header.css';
@import './footer.css';
@import './home-page.css';
@import './services-page.css';
@import './reference-page.css';
@import './about-page.css';
@import './contact-page.css';
@import './single-projekt.css';

@import '../components/css/contact-form.css';

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
    position: relative;
    padding-bottom: 550px;
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1.primary-heading {
    font-weight: 600;
    font-size: 55px;
    line-height: 10vh;
}
h5.quinary-heading {
    font-weight: normal;
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
}
p.thin-style-text {
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 50px;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}
.spacer {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}
.page {
    min-height: 100vh;
    box-sizing: border-box;
}
.page .page-content { padding-top: 160px; }
.page .page-content .content-container {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.primary-background {
    background-color: #01165F; 
    color: #fff;
}
.secondary-background {
    background-color: #fff; 
    color: #000;
}

button.action-button {
    background: #ccc;
    border: none;
    padding: 20px 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: inherit;
    word-spacing: 3px;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.5s;
}
button.action-button:hover { transition: all 0.5s; }
/* Primary */
button.action-button.primary-style {
    background: #01165F;
    color: #fff;
}
button.action-button.primary-style:hover { background: #01155fd5; }
/* Secondary */
button.action-button.secondary-style { 
    padding: 18px 50px; 
    background: inherit;
    color: #fff;
    border: solid 2px #fff;
}
button.action-button.secondary-style:hover {
    background: #fff;
    color: #000;
}
/* Tertiary */
button.action-button.tertiary-style {
    background: #fff;
    color: #000;
}
button.action-button.tertiary-style:hover {
    background: #000;
    color: #fff;
}
/* Quinary */
button.action-button.quinary-style {
    padding: 18px 50px; 
    background: inherit; 
    border: solid 2px#01155f; 
    color: #01155f;
}
button.action-button.quinary-style:hover {
    background: #01155f; 
    color: #fff;
}

@media only screen and (max-width: 500px) {
    body {
        padding-bottom: 1100px !important;
    }
    h1.primary-heading {
        margin-top: 10px;
        line-height: 50px;
    }
}
/* Small devices */
@media only screen and (max-width: 800px) {
    body {
        padding-bottom: 550px;
    }

    h1.primary-heading {
        font-weight: 600;
        font-size: 45px;
        padding: 0 18px;
    }
    h5.quinary-heading {
        font-weight: normal;
        font-size: 25px;
        line-height: 30px;
        text-transform: uppercase;
        padding: 0 18px;
    }
    p.thin-style-text {
        font-size: 18px;
        line-height: 40px;
        padding: 0 18px;
    }
}
/* Medium devices */
@media only screen and (max-width: 600px) {}
/* Large devices */
@media only screen and (max-width: 990px) {}
/* Extra large devices */
@media only screen and (max-width: 1100px) {
    .wrapper { padding-left: 6vw !important; padding-right: 6vw !important; }
}