.examples{
    margin: 0 0 0rem 0;
}
.example-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.example{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}
.bg-example{
    background-color: rgba(0, 0, 0, 0.1);
}
.bg-example2{
    background-color: rgba(0, 0, 0, 0.1);
}
.example-left{
    display: flex;
    flex-direction: column;
}
.example-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.example-picture {
    width: 90%;
    height: 500px;
    align-self: center;
    margin: 0 0 2rem 0;
}
.example-picture video{
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.example-picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.example-text{
text-align: left;
padding: 0 0 0 1.5rem;
}
.example-text p{
    font-family: 'Futura-Light',sans-serif;
    font-size: 2rem;
    margin: 0 0 1rem 0;
}
.example-text h1{
    font-family: 'Futura-Book',sans-serif;
    font-size: 3rem;
    margin: 0 0 2rem 0;
}
.big-example-picture{
    height: 300px;
    width: 90%;
    align-self: center;
    margin: 0 0 2rem 0;
}
.big-example-picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.more-text{
    width: 90%;
    align-self: center;
}
.more-text p{
    font-family: 'Futura-Light',sans-serif;
    font-size: clamp(1.2rem,10vw,2rem);
    
}
.left-image{
    object-position: left;
}
.top-image{
    object-position: top;
}
.center-image{
    object-position: center;
}
.right-image{
    object-position: right;
}
.bottom-image{
    object-position: bottom;
}
@media(min-width: 767px){
    .example{
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 0;
        width: 80%;
        align-self: center;
        padding: 4rem 0 0 0 ;
        
    }
    .example-picture{
        height: 400px;
    }
    .example-text p{
        font-size: 2.5rem;
    }
    .example-text h1{
        font-size: 4rem;
    }
    .big-example-picture{
    background-size: cover;
    height: 500px;
    width: 100%;
    }
    .more-text{
        align-self: flex-start;
    }
}