/*General*/
*{
    margin: 0;
    padding: 0;
}

#center{
    text-align: center;
}

h1{
    text-transform: uppercase;
}

#lower{
    text-transform: none;
}

/*Navigation*/

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

.navbar{
    width: 100%;
    margin: auto;
    text-align: center;
}

.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;
}

.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/banner.png);
    background-color: black;
    background-position: center;
    background-size: cover;
    position: relative;
}

.bannerBox{
    width: 50%;
    margin: auto;
    flex-basis: 48%;
    padding-top: 225px;
}

.bannerBox img{
    width: 70%;
}

.bannerText{
    width: 100%;
    position: absolute;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-shadow: 1px 1px 2px black;
}

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

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

.bannerText h1, .bannerText p, .bannerText a{
    margin-left: 75px;
}

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

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

/*Section4*/

.section4{
    padding-top: 250px;
    padding-bottom: 250px;
    width: 80%;
    margin: auto;
}

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

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

.boxS4 img{
    margin-left: 10px;
    width: 80%;
    border-radius: 10px;
}

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

/*Section1*/

.section1{
    padding-top: 225px;
    padding-bottom: 225px;
    background-color: rgb(17, 17, 17);
    text-align: center;
}

.textColumns2 {
    display: flex;
    justify-content: space-between;
}

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

/*Section2*/

.section2{
    padding-top: 250px;
    padding-bottom: 250px;
    text-align: center;
    background-color: black;
    color: white;
}

.textColumns3 {
    display: flex;
    justify-content: space-between;
}

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

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

/*Section11*/

.section11{
    padding-top: 200px;
    padding-bottom: 100px;
    background-color: rgb(17, 17, 17);
    text-align: center;
    margin: auto;
}

.section11 p {
    text-align: left;
}

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

iframe{
    padding-top: 50px;
    width: 720px;
    height: 405px;
}

/*Section9*/

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

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

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

.imgColumn2S9 img {
    width: 80%;
    margin: auto;
    border-radius: 15px;
}

/*Section3*/

.section3{
    padding-top: 250px;
    padding-bottom: 250px;
    width: 80%;
    margin: auto;
}

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

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

.boxS3 img{
    margin-right: 10px;
    width: 90%;
    border-radius: 10px;
}

.boxS3 div{
    width: 90%;
    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;
}

/*Tablet*/

@media(max-width: 1280px){

    /*Section3 & 4*/

    .boxesS4, .boxesS3 {
        flex-direction: column;
    }

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

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

}

/*Mobile*/

@media(max-width: 720px){

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

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

    #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;
    }

    .bannerBox img{
        width: 80%;
        padding-top: 50px;
    }

    .bannerText{
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .bannerText h1{
        font-size: x-large;
    }

    .bannerText p{
        font-size: medium;
    }

    .bannerText h1, .bannerText p, .bannerText a{
        margin-left: 10px;
    }
    
    /*Section3 & 4*/

    .boxesS4, .boxesS3 {
        flex-direction: column;
    }

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

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

    /*Section2*/

    .textColumns3 {
        flex-direction: column;
    }

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

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

    #home-video-1 {
        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 */
    #home-video-1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    .textColumns2 {
        flex-direction: column;
    }    

    .textColumn2 {
        padding-bottom: 100px;
    }

}