/*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/banner4.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;
}

/*Section1*/

.section1{
    padding-top: 200px;
    padding-bottom: 100px;
    width: 70%;
    margin: auto;
}

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

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

.facebook, .instagram, .youtube{
    width: 80px;
    transition: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.facebook:hover, .instagram:hover, .youtube:hover{
    transform: scale(1.2);
}

/*Section11*/

.section11{
    width: 100%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 200px;
    text-align: center;
}

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

iframe{
    width: 85%;
    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){
 
    .facebook, .instagram, .youtube{
        width: 60px;
        padding-left: 7px;
        padding-right: 7px;
    }

 }

/*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;
    }
    
    /*Section1*/

    .section1{
        width: 80%;
        margin: auto;
    }

    .textColumns2 {
        flex-direction: column;
    }

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

    .facebook, .instagram{
        padding-left: 10px;
        padding-right: 10px;
    }

    /*Section11*/

    .section11{
        width: 100%;
        margin: auto;
        padding-top: 100px;
        padding-bottom: 200px;
        text-align: center;
    }

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

    iframe{
        width: 100%;
        margin: auto;
    }

}