/*General*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.25;
}

img{
    filter: grayscale(50%);
}

#center{
    text-align: center;
}

p{
    font-size: large;
}

.language{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    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 34px;
    background-color: black;
}

/*Banner*/

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

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

}

.bannerText h1{
    font-size: 90px;
}

.bannerText p{
    font-size: 50px;
}

.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: 200px;
    padding-bottom: 100px;
    width: 85%;
    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: 85%;
    margin: auto;
    margin-right: 10px;
    border-radius: 15px;
}

/*Section6*/

.section6{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 85%;
    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: 85%;
    margin: auto;
    margin-left: 10px;
    border-radius: 15px;
}

/*Section13*/

.section13{
    padding-top: 100px;
    padding-bottom: 100px;
}

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

hr{
    background-color: gray;
    color: gray;
    border: gray;
    height: 5px;
}

/*Section2*/

.section2{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 85%;
    margin: auto;
}

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

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

.section2 img{
    width: 250px;
}

/*Section18*/

.section18{
    padding-top: 100px;
    padding-bottom: 150px;
}

/*Quote Carousel*/

.quote-slider {
    padding: 100px 0px;
    position: relative;
    width: 50%;
    margin: auto;
    overflow: hidden;
}

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

.quote-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

/*Section3*/

.section3{
    padding-top: 0px;
    padding-bottom: 0px;
}

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

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

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

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


/*Section4*/

.section4{
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: whitesmoke;
}

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

/*Section11*/

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

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

/*Tablet*/

@media(max-width: 1000px){

    .boxesS5{
        flex-direction: column;
    }

    .section5 h1, .section6 h1{
        padding-top: 30px;
    }

    .boxS5pic img, .boxS6pic img{
        width: 90%;
    }

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

    .textColumns3{
        flex-direction: column;
    }

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

    .section2 img{
        padding-top: 50px;
    }

}

/*Mobile*/

@media(max-width: 720px){

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

    .textColumn3 {
        width: 90%;
        margin: auto
    }

    .quote-slider {
        width: 80%;
    }

    .boxesS3{
        flex-direction: column;
    }

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

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

    #texts{
        padding-top: 100px;
        padding-bottom: 100px;
    }

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

}