.header{
    height: 550px;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
    color: var(--white);
}
.header .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    padding-bottom: 80px;
}
.header .btn {
    position: absolute;
    right: 120px;
    bottom: 100px;
}
.header h1 {
    margin-bottom: 20px;
}
.header p {
}
.txt{
    margin-top: 50px;
    margin-bottom: 50px;
}
.txt h2{
    margin: 0;
    font-size: 50px;
    line-height: 1;
    font-family: 'Akkurat', sans-serif;
    color: var(--grey2);
}
.txt h3{
    margin-top: -20px;
    margin-bottom: 50px;
    font-size: 42px;
    line-height: 1;
}
.txt h4{
    font-size: 22px;
    line-height: 1;
    letter-spacing: .05em;
    font-family: 'Flama Condensed';
    text-transform: uppercase;
    color: var(--grey);
}
.split{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.column-btn {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.carousel{
    line-height: 0;
}
.carousel .is-2by1{
    padding-top: 40%;
}
.slick-slider .item .image{
	transition: all 1000ms linear;
	opacity: .3;
}
.slick-slider .slick-current .image{	
	opacity: 1;
}
.carousel:before, .carousel::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 100%;
    top: 0;
    z-index: 10;
    opacity: .5;
    pointer-events: none;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.carousel::after{
    right: 0;
    transform: rotate(180deg);
}




/* Tablets */
@media screen and (max-width: 1200px){

    .header {
        height: calc(100vw *.75);
    }
    .header .container {
        padding-bottom: 30px;
    }
    .header .btn {
        right: 40px;
        bottom: 50px;
    }
    .txt h4 {
        font-size: 20px;
    }
    .column-btn {
        justify-content: flex-start;
        margin-top: 40px;
    }
    .carousel .is-2by1 {
        padding-top: 56.25%;
    }

}

/* Mobile */
@media screen and (max-width: 576px){

    .header {
        height: 400px;
    }
    .header .container {
        padding-bottom: 20px;
    }
    .header .btn {
        right: 20px;
        bottom: 40px;
    }
    .txt {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .txt h2 {
        font-size: 24px;
    }
    .txt h3 {
        margin-top: -8px;
        margin-bottom: 30px;
        font-size: 24px;
    }
    .txt .column{
        flex: none;
        width: 100%;
    }
    .txt h4 {
        margin-bottom: 14px;
        font-size: 14px;
    }
    .column-btn {
        justify-content: flex-start;
        margin-top: 30px;
    }
    .carousel .is-2by1 {
        padding-top: 75%;
    }

}