/*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/sports.png);
    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: 100px;
    width: 80%;
    margin: auto;
}

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

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

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

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

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

/*Section6*/

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

.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: 80%;
    margin: auto;
    margin-left: 10px;
    border-radius: 10px;
}

/*YouTube*/

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

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

/*Section12*/

.section12{
    padding-top: 100px;
    padding-bottom: 200px;
}

.slider {
    position: relative;
    width: 50%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider img {
    width: 100%;
    display: block;
}

/* 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*/

   .boxesS5, .boxesS6 {
    flex-direction: column;
}

.boxS5pic img, .boxS6pic img{
    margin-left: 0px;
    width: 90%;
    border-radius: 0px;
    padding-top: 100px;
}

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

/*Section12*/

.section12{
    padding-top: 100px;
    padding-bottom: 200px;
}

.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider img {
    width: 100%;
    display: block;
}

}

/*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*/

    .boxesS5, .boxesS6 {
        flex-direction: column;
    }

    .boxS5pic img, .boxS6pic img{
        margin-left: 0px;
        width: 90%;
        border-radius: 0px;
        padding-top: 100px;
    }

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

    /*Section12*/

    .section12{
        padding-top: 100px;
        padding-bottom: 200px;
    }

    .slider {
        position: relative;
        width: 100%;
        margin: auto;
        overflow: hidden;
    }

    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        align-items: center;
    }

    .slide {
        min-width: 100%;
        box-sizing: border-box;
    }

    .slider img {
        width: 100%;
        display: block;
    }

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

}