#banner {
    background-image: url('images/banner.png?version=1.15');
    height: 100vh;
    background-size: cover;
    background-position: center;
}

#banner h1 {
    color: rgb(250, 221, 0);
    font-size: 4.5em;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
}


#banner li:hover {
    transform: scale(1.2);
}

* {
    margin: 0%;
    font-family: sans-serif;
}

body {
    background-color: rgb(200, 200, 200);
    color: rgb(222, 222, 222);
    overflow-x: hidden;
}

p {
    max-width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 1.5em;
    color: #000000;
}

h1,
h2,
h3 {
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    color: rgb(0, 0, 255);
}

#photos {
    border: 20px #3f48cc solid;
    border-radius: 15px;
    background-color: rgb(0, 0, 0);
    color: rgb(250, 221, 0);
}

#banner ul {
    list-style: none;
    display: inline-flex;
    position: flex;
    justify-content: center;

}


#banner li a {
    margin: 5%;
    border-radius: 15%;
    background-color: rgb(0, 0, 0);
    border: 5px #3f48cc solid;
    padding: 15px;
    color: rgb(250, 221, 0);
    text-decoration: none;
    font-size: larger;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#banner h2 {
    color: rgb(250, 221, 0);
}

#banner li {
    margin: 5%;
    transition: all 0.2s ease-in-out 0s;
}

#banner ul {
    list-style: none;
    display: inline-flex;
    position: flex;
    justify-content: center;

}

.blue {
    width: 100%;
    background-color: #3f48cc;
}

.blue h1 {
    color: rgb(250, 221, 0);
    padding: 2%;
    font-size: 50px;
}

@media only screen and (min-width: 800px) {
    #assets {
        display: grid;
        grid-template-columns: auto auto auto;

    }

    #news-section {
        display: grid;
        grid-template-columns: auto auto auto;

    }
}

@media only screen and (max-width: 800px) {
    @media only screen and (min-width: 500px) {
        #assets {
            display: grid;
            grid-template-columns: auto auto;

        }

        #news-section {
            display: grid;
            grid-template-columns: auto;

        }
    }
}

@media only screen and (max-width: 350px) {
    #assets {
        display: grid;
        grid-template-columns: auto;

    }

    #news-section {
        display: grid;
        grid-template-columns: auto;

    }
}

.car img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
}

.car {
    background-color: #000000;
    border: #3f48cc solid 15px;
    color: rgb(250, 221, 0);
}

.car a {
    background-color: #000000;
    border: #3f48cc solid 10px;
    padding: 5px;
    color: rgb(250, 221, 0);
    text-decoration: none;
    font-size: larger;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 5%;
    transition: all 0.2s ease-in-out 0s;
}

.car a:hover {
    border: #3f48cc solid 12px;
}

.news {
    padding: 15px;
}

.news h2 {
    color: rgb(250, 221, 0);
    background-color: #3f48cc;
}

.news img {
    height: 300px;
    object-fit: cover;
}

.button {
    border-radius: 15%;
    background-color: rgb(0, 0, 0);
    border: 5px #3f48cc solid;
    padding: 20px;
    color: rgb(250, 221, 0);
    text-decoration: none;
    font-size: 30px;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: all 0.2s ease-in-out 0s;
}

.button:hover {
    border: #3f48cc solid 12px;
}

.blue video {
    width: 100%;
}

video {
    width: 50%;
}

@media only screen and (min-width: 800px) {
    .feature {
        background-color: #000000;
        border: 10px solid #3f48cc;
        border-radius: 15px;
        display: inline-flex;
    }
}

@media only screen and (max-width: 800px) {
    .feature {
        background-color: #000000;
        border: 10px solid #3f48cc;
        border-radius: 15px;
    }
}

.feature * {
    color: rgb(250, 221, 0);
}

.feature p {
    background-color: rgba(0, 0, 128, 0);
}

.zoom {
    position: -webkit-sticky;
    position: sticky;
    top: 0%;
    left: 0%;
    z-index: -10;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: none;
    transition: all 1s ease-in-out;
    background-size: cover;
    margin: 0px;
    padding: 0%;
    overflow: hidden;
}

.sticky-container {
    height: 200vh;
    position: relative;
}

.sticky-container h1 {
    color: rgb(250, 221, 0);
}

.sticky-container p {
    color: rgb(250, 221, 0);
    width: 50%;
}

.reveal {
    transform: translateX(100%);
    transition: 1s all ease;
}

.reveal.active {
    transform: translateX(0px);
}

.reveal2 {
    transform: translateY(50px);
    transition: 1s all ease;
    opacity: 0;
}

.reveal2.active {
    transform: translateY(0px);
    opacity: 1;
}