@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,70,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

body{
    background: #0a2a43;
    min-height: 1500px;
}

section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section:before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #0a2a43, transparent);
    z-index: 10000;
}

section:after{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: #0a2a43;
    z-index: 10000;
    mix-blend-mode: color;*/
}

section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#text{
    position: relative;
    color: #fff;
    font-size: 5em;
    z-index: 1;
}

#road{
    z-index: 2;
}

.flip_card {

    width: 200px;
    height: 50px;
    background-color: transparent;
    perspective: 1000px;
}

.flip_card.flipped .flip_card_inner{
    transform: rotateY(-180deg);
}

.flip_card .flip_card_back{
    transform: rotateY(-180deg);
}

.flip_card_inner{
    position: relative;
    transition: 1s;
    transform-style: preserve-3d;
}

.flip_card_back,
.flip_card_front{
    position: absolute;
    backface-visibility: hidden;
}

.flip_card_image{

    width: 100%;
    height: 100%;
    object-fit: cover;
}