/*General*/

*{
    margin: 0;
    padding: 0;
}

#center{
    text-align: center;
}

h1{
    text-transform: uppercase;
}

/*Navigation*/

header{
    width: 100%;
    background: black;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 1010;
    font-size: large;
    position: absolute;
}

.navbar{
    width: 100%;
    margin: auto;
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 30px;
}

.navbar ul li a{
    text-decoration: none;
    color: white;
}

.navbar ul li a:hover{
    color: red;
    transition: 0.5s;
}

.logo{
    width: 10%;
    margin-left: 30px;
}

.hamburger{
    cursor: pointer;
    display: none;
}

.hamburger div{
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: white;
    border: 1px solid black;
}

/*Banner*/

.banner{
    height: 90vh;
    width: 100%;
    margin: auto;
    background-image: linear-gradient(rgba(30, 4, 4, 0.7), rgba(30, 4, 4, 0.07)), url(../images/banner2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.bannerText{
    width: 100%;
    position: absolute;
    color: white;
    text-align: center;
    top: 45%;
    left: 0%;
    transform: translate (-50%, -50%);
    text-shadow: 1px 1px 2px black;
}

.bannerText h1{
    font-size: 70px;
    color: white;
}

.bannerText p{
    font-size: xx-large;
}

.bannerButton{
    text-decoration: none;
    color: white;
    display: inline-block;
    border: 1px solid lightblue;
    padding: 12px 34px;
    font-size: medium;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    background: lightblue;
    text-shadow: none;
}

.bannerButton:hover{
    border: 1px solid lightblue;
    background: white;
    color: lightblue;
    transition: 0.5s;
}


/*Section5*/

.section5{
    padding-top: 250px;
    padding-bottom: 250px;
    background-color: rgb(17, 17, 17);
}

.boxesS5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.boxS5 {
    flex: 1;
    margin: 0px;
}

.boxS5 div{
    width: 90%;
    margin: auto;
}

.boxS5pic {
    flex: 1;
    margin: 0px;
    text-align: center;
}

.boxS5pic img{
    width: 50%;
    margin: auto;
    margin-right: 10px;
    border-radius: 15px;
}

/*Section6*/

.section6{
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgb(17, 17, 17);
}

.boxesS6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxS6 {
    flex: 1;
    margin: 0px;
}

.boxS6 div{
    width: 90%;
    margin: auto;
}

.boxS6pic {
    flex: 1;
    margin: 0px;
    text-align: center;
}

.boxS6pic img{
    width: 50%;
    margin: auto;
    margin-left: 10px;
    border-radius: 15px;
}

/*Section2*/

.section2{
    padding-top: 250px;
    padding-bottom: 250px;
}

.textColumns3 {
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 80%;
    margin: auto;
}

.textColumn3 {
    flex: 1;
    margin: 0 10px;
}

/*Section4*/

.section4{
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: rgb(17, 17, 17);
    color: white;
}

.boxesS4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxS4 {
    flex: 1;
    margin: 0px;
}

.boxS4 img{
    margin-left: 10px;
    width: 50vw;
    display: block;
}

.boxS4 div{
    width: 90%;
    margin: auto;
}

/*Section3*/

.section3{
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: rgb(17, 17, 17);
    color: white;
}

.boxesS3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxS3 {
    flex: 1;
    margin: 0px;
}

.boxS3 img{
    margin-right: 10px;
    width: 50vw;
    display: block;
}

.boxS3 div{
    width: 90%;
    margin: auto;
}

/*Section11*/

.section11{
    padding-top: 250px;
    padding-bottom: 250px;
}

.textColumn1{
    width: 65%;
    margin: auto;
}

/* Footer */

footer {
    width: 100%;
    margin: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: left;
    background-color: rgb(17, 17, 17);
    color: white;
}

.footerContainer {
    display: flex;
    justify-content: space-between;
    padding: 0 75px;
}

.footerContainer > div {
    flex: 1;
    padding: 0 15px;
}

footer a{
    text-decoration: none;
    color: white;
}

footer a:hover{
    text-decoration: underline;
}

/*Video*/

#services-video-1, #services-video-2, #services-video-3{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width = 9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
      
    /* Make the iframe fill the container */
#services-video-1 iframe, #services-video-2 iframe, #services-video-3 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
}

#services-video-1 iframe, #services-video-3 iframe {
    margin-left: 50px;
}

/*Section10*/
.section10{
    padding-top: 100px;
    padding-bottom: 100px;
}

.imgColumns2S10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imgColumn2S10 {
    flex: 1;
    margin: 0px;
    text-align: center;
}

.imgColumn2S10 img {
    width: 80%;
    max-height: 400px;
    margin: auto;
    border-radius: 0px;
    padding-bottom: 200px;
}

/*Tablet*/

@media(max-width: 1280px){

    /*Section3 & 4*/

    .boxesS4, .boxesS3 {
        flex-direction: column;
        padding-top: 100px;
    }

    .boxS4 img, .boxS3 img{
        margin-left: 0px;
        width: 100%;
        border-radius: 0px;
        padding-top: 100px;
    }

    .boxesS3 {
        flex-direction: column-reverse;
    }

    .imgColumn2S10 img {
        max-height: 250px;
    }

}

/*Mobile*/

@media(max-width: 720px){

    .hamburger{
        display: block;
        position: absolute;
        left: 10px;
        top: 5px;
        z-index: 1003;
    }

    .navbar{
        position: absolute;
        left: 0px;
        top: -2650%;
        width: 100%;
        background: black;
        padding-top: 80px;
        padding-bottom: 80px;
        transition: 0.5s;
        z-index: 1002;
        text-align: center;
        border-bottom: 3px solid red;
        flex-direction: column;
    }

    .logo{
        width: 50%;
        margin-left: 0px;
        margin-bottom: 0px;
    }

    #navCheck:checked ~ .navbar{
        top: 0px;
    }

    .navbar ul li{
        display: block;
        margin: 25px 0;
    }

    .language{
        position: absolute;
        margin-top: 0vh;
        margin-right: 0px;
        background: none;
        border: none;
        font-size: medium;
        font-weight: bold;
        cursor: pointer;
        font-size: large;
        color: white;
        transition: 0.5s;
        text-shadow: 1px 1px 2px black;
        padding: 12px 18px;
        background-color: black;
    }

    .footerContainer {
        display: flex;
        justify-content: space-between;
        padding: 0 75px;
        flex-direction: column;
    }

    .footerContainer > div {
        flex: 1;
        padding: 25px 15px;
    }

    /*Banner*/

    .bannerBox{
        width: 80%;
        margin: auto;
        flex-basis: none;
        padding-top: 100px;
    }

    .bannerText h1{
        font-size: xx-large;
    }
    
    /*Section3 & 4*/

    .boxesS4, .boxesS3 {
        flex-direction: column;
        padding-top: 100px;
    }

    .boxS4 img, .boxS3 img{
        margin-left: 0px;
        width: 100%;
        border-radius: 0px;
        padding-top: 100px;
    }

    .boxesS3 {
        flex-direction: column-reverse;
    }

    /*Section2*/

    .textColumns3 {
        flex-direction: column;
    }

    .textColumn3 {
        margin: 0px;
        padding-bottom: 100px;
    }

    .section2 img{
        width: 80%;
        border-radius: 10px;
    }

    #services-video-1 iframe, #services-video-2 iframe, #services-video-3 iframe {
        width: 100%;
        height: 100%;
    }

    #services-video-1 iframe, #services-video-3 iframe {
        margin-left: 0px;
    }

    .boxesS5, .boxesS6 {
        display: contents;
    }

    .imgColumn2S10 img {
        max-height: 100px;
    }

}