* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    color: black;
    text-decoration: none;
}

body {
    font-family: "Roboto", sans-serif;
    background-image: linear-gradient(#666, #bbb);
    min-height: 50vh;
}

div.callUs {
    position: fixed;
    height: 5vh;
    width: 100%;
    /*left: 15%;*/
    top:95vh;
    background-color: #ccc;
    line-height: 5vh;
    text-transform: uppercase;
    text-align: center;
    border-top: 2px solid black;
}

div.mobileCall {
    position: fixed;
    top: 93%;
    left: 87%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid black;
    background-color: green;
}

div.mobileCall i {
    display: block;
    text-align: center;
    line-height: 60px;
    font-size: 2rem;
    color: black;
}


header.mobile {
    position: fixed;
    height: 7vh;
    width: 100%;
    background-color: black;
    z-index: 666;
}
div.mobileLogoHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    border-bottom: 5px solid #29587a;
}

div.logoMobile {
    display: flex;
    align-items: center;
    width: 80%;
    height: 100%;
}

div.logoMobile {
    justify-content: flex-start;
    padding-left: 5%;
}

div.iconMobile {
    width: 10%;
    justify-content: flex-end;
    padding-right: 5%;
    font-size: 1.6em;
    color: #29587a;
}

div.logoMobile img{
    max-width: 65%;
    max-height: 65%;
}

.fa-solid, .asideMobileHide {
    display: none;
}

.show {
    display: block;
}

/*ASIDE*/

aside.asideMobile {
    z-index: 1;
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: dimgray;
}

aside.asideMobile nav {
    height: 100%;
    width: 100%;
}

aside.asideMobile nav ul {
    height: 100%;
    background-image: linear-gradient(#444, #ccc);
}

aside.asideMobile nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20%;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 8px solid #29587a;
}

aside.asideMobile nav ul li a {
    display: block;
    padding: 1em;
    color: black;
}

aside.asideMobile nav ul p {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 1.7rem;
    font-weight: bold;
    background-color: lightslategray;
}

/*HEADER DESKTOP*/

header.desktop {
    position: fixed;
    z-index: 666;
    top: 0;
    left: 0;
    height: 7vh;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: black;
    border-bottom: 5px solid #29587a;
}

header.desktop div.logo  {
    width: 30%;
}

header.desktop nav {
    width: 40%;
}
header.desktop div.logo {
    display: flex;
    align-items: center;
    padding-left: 40px;
}
header.desktop div.logo img {
    max-width: 50%;
    max-height: 50%;
}

header.desktop nav ul {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

header.desktop nav ul li {
    box-sizing: content-box;
    text-align: center;
    line-height: 7vh;
    height: 100%;
    width: 25%;
    border-right: 2px solid #29587a;
}

header.desktop nav ul li:first-child {
    border-left: 2px solid #29587a;
}

header.desktop nav ul li a {
    display: block;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    /*font-weight: bold;*/
    color: white;
}

header.desktop nav ul li a:hover {
    background-color: #29587a;
    font-weight: bold;
}

i.white {
    display: inline-block;
    font-size: 23px;
}

header.desktop nav ul li a:hover i.white {
    color: white;
}

    /*MAIN*/
main {
    padding: 7vh 0;
    min-height: 100vh;
}

h1.motto {
    font-size: 1.5rem;
    margin: 20px 0;
    text-align: center;
}

section.banner {
    position: relative;
    height: 60vh;
    width: 100%;
    background-image: url("content/graphics/banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 3px solid #29587a;
    border-top: 3px solid #29587a;
}

.banner button {
    position: absolute;
    top: 90%;
    left: 60%;
    border: 1px solid whitesmoke;
    background-color: black;
    color: whitesmoke;
    text-transform: uppercase;
    transition: .4s;
    font-size: 1rem;
}

.banner button a {
    display: block;
    padding: 15px 0;
    cursor: pointer;
    background-color: black;
    color: white;
}

.banner button:hover {
    font-size: 1.3rem;
}

section.describe {
    text-align: center;
    padding-top: 3vh;
    font-size: 1.2rem;
    /*background-color: #bbb;*/
}

section.services {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid black;
}

section.services div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 300px;
    width: 300px;
    padding: 4px;
}

section.services img {
    height: 85%;
    width: 100%;
    object-fit: fill;
    border: 2px solid black;
}

section.services h3 {
    text-align: center;
    height: 10%;
    width: 100%;
}

.services button {
    height: 40px;
    width: 100px;
    border: 1px solid black;
    font-weight: bold;
    background-color: #999;
}

.services button a {
    display: block;
    line-height: 40px;
}

.services button:hover>a {
    text-transform: uppercase;
}

.services button:hover {
    background-color: #ddd;
}

section.aboutUs {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
    /*background-color: #bbb;*/
}

section.aboutUs p {
    padding: 5px;
    margin-top: 25px;
    font-size: 1.2rem;
}


/*FOOTER*/

footer {
    display: flex;
    justify-content: space-between;
    min-height: 7vh;
    padding-left: 5vw;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 1.1rem;
    border-top: 5px solid #29587a;
    align-items: center;
}

footer div {
    padding: 5px;
    width: 50%;
    height: 100%;
}





/*GALLERY*/

main.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    padding-top: 15vh;
    min-height: 50vh;
    width: 80%;
    background-color: #ddd;
}

h1.h1Gallery {
    width: 100%;
    text-align: center;
    margin-bottom: 5vh;
    text-transform: uppercase;
}

div.galleryImage {
    height: 400px;
    width: 600px;
    margin: 30px 0;
    overflow: hidden;
    border: 3px solid black;
}

div.galleryImage img {
    min-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 1s;
}

div.galleryImage img:hover {
    transform: scale(1.1);

}

footer.gallery {
    padding-bottom: 0;
}

/*SERIVCES*/


main.services {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-top: 15vh;
    min-height: 90vh;
    width: 80%;
    overflow: hidden;
}

.services h1 {
    width: 100%;
    padding-bottom: 5vh;
    text-align: center;
    text-transform: uppercase;
}


main.services>div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
    width: 100%;
    padding: 20px 30px;
    background-color: #aaa;
    margin-bottom: 10px;
}

main.services>div:nth-child(Even) {
    justify-content: flex-end;
    background-color: #ddd;
    color: black;
    left: 120%;
}

@keyframes servicesEven {
    0% {left: 120%}
    100% {left: 0}
}
@keyframes servicesOdd {
    from {right: 120%}
    to {right: 0}
}

div.animationFirst {
    animation: servicesEven 1.3s forwards;
}

div.animationSecond {
    right: 120%;
    animation: servicesOdd 1.3s .3s forwards;
}

div.animationThird {
    animation: servicesEven 1.3s .6s forwards;
}



h1.describeService {
    text-align: left;
    text-transform: uppercase;
    font-style: italic;
}

h1.odd {
    text-align: right;
}

h1.describeService {
    padding-bottom: 1vh;
}

div.imgText {
    padding-top: 2vh;
    display: flex;
    flex-wrap: wrap;
    height: 80%;
    width: 95%;
    padding-left: 30%;
}

div.imgText p, div.imgTextEven p {
    font-size: 1.2rem;
}

div.imgTextEven {
    padding-top: 2vh;
    display: flex;
    flex-wrap: wrap;
    height: 80%;
    width: 95%;
    padding-right: 30%;
}

img.serv {
    position: absolute;
    border: 8px solid black;
    height: 90%;
    width: 30%;
    top: 5%;
    left: 2%;
}

img.even {
    position: absolute;
    border: 8px solid black;
    height: 90%;
    width: 30%;
    top: 5%;
    right: 2%;
}

footer.services {
    padding-bottom: 0;
}
/*KONTAKT */

main.contact {
    min-height: 97vh;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    padding-top: 15vh;
    text-align: center;
}

div.kontaktBoth {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

div.kontaktBoth div:first-child {
    height: 100%;
    width: 50%;
}

main.contact h1 {
    width: 100%;
    margin-bottom: 2vh;
    text-transform: uppercase;
}

.contactForm {
    margin: 0 auto;
    width: 45%;
    height: 40%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contactForm input, .contactForm textarea {
    padding: 20px;
    height: 5vh;
    width: 45%;
    margin: 1% 2.5%;
    border: 2px solid black;
    font-size: 1rem;
}


.contactForm textarea {
    flex-grow: 1;
    height: 20vh;
    width: 100%;
}


button.contact {
    width: 25%;
    height: 5vh;
    background-color: white;
    border: 2px solid black;
}

div.kontaktInfo h1 {
    text-align: left;
}

footer.contact {
    padding: 0;
}




/*MEDIA QUERIES*/

@media (min-width: 1px) and (max-width: 600px) {
    header.desktop {
        display: none;
    }
    div.iconMobile {
        font-size: 1.7rem;
    }

    aside.asideMobile nav ul li {
        font-size: 1.6rem;
    }

    aside.asideMobile nav ul li p {
        font-size: 1.2rem;
        background-color: transparent;
    }

    main.gallery {
        width: 100%;
    }

    div.galleryImage {
        height: 200px;
        width: 350px;
        margin: 20px 30px;
        background-color: red;
        overflow: hidden;
        border: 7px solid lightslategray;
        border-radius: 2%;
    }

    p.desc, div.desc {
        line-height: 3vh;
    }

    .banner button {
        top: 88%;
        left: 55%;
        width: 40%;
    }

    section.services div {
        height: 200px;
        width: 250px;
    }

    footer {
        padding-bottom:6vh;
        font-size: 1.1rem;
    }

    div.callUs {
        font-size: 13px;
    }

    div.mobileCall {
        top: 92%;
        left: 84%;
    }

    .services button {
        margin-top: 20px;
    }


    main.contact h1 {
        font-size: 1.3rem;
    }
}








@media (min-width: 601px) and (max-width: 850px) and (orientation: portrait){
    header.desktop {
        display: none;
    }
    div.iconMobile {
        font-size: 2rem;
    }

    aside.asideMobile nav ul li {
        font-size: 1.8rem;
    }
    aside.asideMobile nav ul p {
        font-size: 1.3rem;
    }

    main.gallery {
        width: 100%;
    }

    div.galleryImage {
        height: 300px;
        width: 450px;
        margin: 20px 30px;
        background-color: red;
        overflow: hidden;
        border: 7px solid lightslategray;
        border-radius: 2%;
    }

    p.desc, div.desc {
        line-height: 3vh;
    }

    .banner button {
        left: 67%;
        top: 87%;
        width: 30%;
        height: 10%;
    }

    .banner button a {
        padding: 10px 0;
    }

    section.describe p {
        font-size: 1.2rem;
    }

    section.services div {
        height: 300px;
        width: 400px;
        margin: 2%;
    }

    h1.motto.services {
        margin: 60px 0;
    }

    section.services {
        font-size: 1.2rem;
    }

    section.aboutUs {
        font-size: 1.6rem;
    }

    section.aboutUs p {
        font-size: 1.2rem;
    }

    footer {
        padding-bottom: 5vh;
        }

    main.contact h1 {
        font-size: 1.7rem;
    }
}





@media (min-width: 851px) and (max-width: 1200px) and (orientation: portrait){
    header.desktop {
        display: none;
    }

    div.iconMobile {
        font-size: 2.3rem;
    }

    aside.asideMobile nav ul li {
        font-size: 1.8rem;
    }
    aside.asideMobile nav ul p {
        font-size: 1.6rem;
    }

    h1.motto {
        font-size: 1.8rem;
    }


    .banner button {
        width: 25%;
        height: 10%;
        top: 85%;
        left: 70%;
    }

    .banner button a {
        padding: 11px 0;
    }

    section.services div {
        height: 400px;
        width: 500px;
        margin: 2%;
    }

}

@media (min-width: 1201px) and (max-width: 1400px) {
    header.desktop {
        display: none;
    }

    div.iconMobile {
        font-size: 2.3rem;
    }


    div.callUs {
        display: none;
    }

    div.mobileCall {
        display: none;
    }

    aside.asideMobile nav ul li {
        font-size: 1.8rem;
    }
    aside.asideMobile nav ul p {
        font-size: 1.6rem;
    }

    h1.motto {
        font-size: 1.9rem;
    }

    section.banner {
        background-image: url("content/graphics/bannerBig.png");
        background-size: cover;
        height: 73vh;
    }

    .banner button {
        left: 72%;
        top: 90%;
        width: 17%;
        height: 5%;
    }

    .banner button a {
        padding: 12px 0;
    }


    section.services {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    section.services div {
        height: 500px;
        width: 700px;
        margin: 0 25%;
    }

    section.services div button{
        width: 100%;
    }

}

@media (min-width: 1401px) {
    header.mobile {
        display: none;
    }

    header.desktop nav ul li {
        font-size: 0.9rem;
    }

    div.call {
        display: none;
    }

    h1.motto {
        font-size: 2.2rem;
    }

    section.banner {
        height: 77vh;
        background-image: url("content/graphics/bannerBig.png");
        background-size: cover;
    }

    .banner button {
        left: 72%;
        width: 20%;
        height: 8%;
    }

    section.describe p {
        margin-bottom: 60px;
    }

    section.services {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    section.services div {
        height: 400px;
        width: 27%;
        margin: 4% 3%;
    }

    section.services h3 {
        font-size: 1.8rem;
    }

    section.services button {
        height: 60px;
        width: 140px;
        transition: .4s;
        font-size: 1.1rem;
    }

    .services button a {
        padding: 10px 0;
    }



}


@media  (max-width: 1200px) {
    /*KONTAKT */

    div.kontaktBoth {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
        width: 100%;
    }

    div.kontaktBoth div:first-child {
        height: 100%;
        width: 100%;
        justify-content: center;
    }

    .contactForm {
        margin: 5vh auto;
        width: 95%;
    }

    .contactForm input, .contactForm textarea {
        width: 100%;
        font-size: 1.2rem;
    }

    button.contact {
        width: 45%;
        height: 5vh;
        background-color: white;
        border: 2px solid black;
    }

    div.kontaktInfo h1 {
        text-align: center;
    }


    /*SERVICES*/

    main.services>div {
        padding: 10px 15px;
        animation: none;
        min-height: 200px;
    }

    main.services>div:nth-child(Even) {
        justify-content: flex-start;
        left: 0;
    }

    div.animationSecond {
        right: 0;
    }

    div.animationFirst, div.animationSecond, div.animationThird {
        animation: none;
    }

    h1.describeService {
        font-size: 1.4rem;
        text-align: center;
    }

    div.imgText, div.imgTextEven {
        display: flex;
        flex-wrap: wrap;
        height: 80%;
        width: 95%;
        padding: 1vh 5% 4vh;
    }

    div.imgText p, div.imgTextEven p {
        font-size: 1rem;
    }

    img.serv, img.even {
        display: none;
    }






}











/*LANDSCAPE*/

@media (min-width: 1px) and (max-width: 1200px) and (orientation: landscape){
    header.desktop {
        display: none;
    }

    header.mobile {
        height: 9vh;
    }

    div.logoMobile {
        max-width: 55%;
    }

    div.iconMobile {
        font-size: 2rem;
    }

    aside.asideMobile nav ul li {
        font-size: 2rem;
    }
    aside.asideMobile nav ul p {
        font-size: 2rem;
    }

    main.gallery {
        width: 100%;
    }

    h1.motto {
        padding-top: 2vh;
    }

    div.callUs {
        display: none;
    }

    div.mobileCall {
        display: none;
    }

    section.services div {
        height: 400px;
        width: 600px;
    }

    section.banner {
        height: 70vh;
    }

    div.galleryImage {
        height: 250px;
        width: 450px;
        margin: 30px 0;
        background-color: red;
        overflow: hidden;
        border: 7px solid lightslategray;
        border-radius: 2%;
    }

    .banner button {
        top: 75%;
        height: 15%;
        width: 30%;
        }

    section.banner {
        background-size: cover;
        background-position-y: -400px;
    }

    }

    @media (min-width: 1px) and (max-width: 1200px) {
        .banner button:hover {
            font-size: 1rem;
        }

        .services button a {
            line-height: 0;
        }
    }

    @media (min-width: 2000px) {
        h1.motto {
            font-size: 2.7rem;
        }

        header.desktop nav ul li a {
            font-size: 1.3rem;
        }

        header.desktop nav ul li a i.white {
            font-size: 1.8rem;
        }

        section.describe {
            font-size: 2rem;
        }

        div.galleryImage {
            height: 500px;
            width: 800px;
            margin: 30px 0;
            overflow: hidden;
            border: 3px solid black;
        }
    }

