@charset "UTF-8";

.home_hero {
    height: 100dvh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.home_hero .background-video {
    height: 100%;
    width: 100%;
    background: #1b1b1b;
}

.home_hero .background-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
}

.home_hero .background-video:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
/*
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
*/

/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+39,000000+65,000000+100&0.9+0,0+39,0+65,0.9+100 */
background: -moz-linear-gradient(45deg,  rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 39%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.9) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(45deg,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0) 65%,rgba(0,0,0,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 39%,rgba(0,0,0,0) 65%,rgba(0,0,0,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#e6000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

.home_hero .hero_title {
    position: absolute;
    bottom: 6vw;
    left: 5vw;
    font-family: futura-pt, sans-serif;
    color: #fff;
}
.home_hero .hero_title .description {
    font-weight: 500;
    font-size: min(45px, 6vw);
    line-height: min(45px, 6vw);
    font-weight: 600;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.home_hero .btn-text {
    color: #84754e;
    position: relative;
    display: flex;
    width: max-content;
    gap: 1rem;
    align-items: center;
    height: 1em;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: min(22px, 6vw);
    letter-spacing: 0.1vw;
    cursor: pointer;
    transition: all 1s cubic-bezier(.77, 0, .175, 1);
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}
.home_hero .btn-text img {
    width: 1.5em;
    filter: invert(100%);
    /* display: none; */
}

.home .long-video{
	position: fixed;
    top: 0;
    opacity: 0;
    transition: all 1s cubic-bezier(.77, 0, .175, 1);
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 5rem 1fr 10rem;
    justify-items: center;
    background: #EAE4DF;
    align-items: center;
    z-index: 1000;
}
.home .long-video.open {
    opacity: 1;
    pointer-events: all;
}
.home .long-video video {
    height: calc(min(100vh - 15rem, 50vw));
    object-fit: contain;
    box-shadow: 0px 10px 10px #888888;
    border-radius: 2px;
    background-color: #000;
}
.home .long-video .logo {
    padding: 3rem;
    width: 100%;
    height: 10rem;
    box-sizing: border-box;
}
.home .long-video .logo img {
    width: 100%;
    height: 100%;
}
.home .close-video {
    margin: 1rem;
    padding: 0 0.7rem;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 1s cubic-bezier(.77, 0, .175, 1);
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
    width: 2.5vw;
}
.home .close-video img {
    width: 100%;
    height: auto;
}

@media (max-width: 1300px) {

    .home .close-video {
        width: 4vw;
    }

    .home .hero_title .description {
        font-size: min(40px, 6vw);
        line-height: min(40px, 6vw);
    }
}

@media (max-width: 1000px) {
    .home .btn-text {
        /* padding: 4rem 1.5rem; */
        /* left: 65vw;
        top: calc(50vh + 15vw); */
    }

    .home .close-video {
        width: 5vw;
    }

    .home .hero_title .description {
        font-size: min(30px, 6vw);
        line-height: min(30px, 6vw);
    }
}

@media (max-width: 600px) {
    .home {
        height: 100dvh;
    }

    .home .btn-text {
        /* padding: 4rem 1.5rem; */
        /* left: 60vw;
        top: 50vh; */
    }

    .home .hero_title {
        bottom: 8vh;
    }

    .home .hero_title .description {
        font-size: 27px;
        line-height: 27px;
        letter-spacing: 2px;
        width: 83%;
    }

    .home .hero_title .description br {
        display: none;
    }

    .home .btn-text {
        font-size: min(20px, 6vw);
    }
}

@media (max-width: 450px) {

    .home .close-video {
        width: 7vw;
    }

    .home .long-video .logo {
        margin-bottom: 150px;
    }

    .home .scroll {
        bottom: 2rem;
    }
}



.driver{
	position: relative;
	width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}
.driver .container{
	position: relative;
	width: 100vw;
    display: grid;
    gap: 10vw;
    grid-template-columns: min(40vw, 35rem) 1fr;
    min-height: 100vh;
    justify-items: center;
}
.driver .text {
    width: 25rem;
    color: #85754e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(26rem, 80vw);
    margin-left: 10vw;
    z-index: 1;
/*     gap: 2rem; */
}
.driver .text .title {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: min(55px, 10vw);
    line-height: min(55px, 10vw);
    letter-spacing: 0.1vw;
}
.driver .text .paragraph {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
/*
    font-size: min(21px, 6vw);
    line-height: min(24px,6.2vw);
    letter-spacing: 1px;
*/
    text-align: left;
    position: relative;
}
.driver .image {
    z-index: -1 !important;
    max-width: 80vw;
    display: flex;
    align-content: center;
    align-items: center;
}
.driver .image>div {
    transform: scale(1.4);
    height: 100%;
}
.driver .image img {
    opacity: 1;
    width: 100%;
    height: 100%;
    transform-origin: top left;
    object-fit: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    object-fit: contain;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("../img/home/driver_mask.png");
}

@media (max-width: 1100px) {
  .driver .container {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .driver .image>div {
    transform: scale(1);
    height: 100%;
  }

  .driver .image {
    max-width: min(52rem, 80vw);
  }

  .driver .text {
    margin: 0;
    margin-top: min(10vw, 10rem);
    text-align: center;
    width: 80vw;
  }

  .driver .text p {
    text-align: center;
  }

  .driver .container {
    padding-bottom: 4rem;
  }

  .driver .image {
    margin-bottom: 50px;
  }

  .driver .text .title {
    line-height: min(55px, 10vw);
  }
}






/*
.location_container{
	min-height: 100vh;
    background: #1b1b1b;
    color: #ece7e2;
    padding: min(10rem, 10vw);
    padding-top: min(5rem, 40vw);
    padding-bottom: min(10rem, 40vw);
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 0 min(5rem, 5vw);
    position: relative;
    box-sizing: border-box;
}
*/

.location_container{
	position: relative;
	padding: 5vw 10vw;
	background: #1b1b1b;
	color: #ece7e2;
	display: flex;
	align-items: center;
	min-height: 100vh;
}

.location_container .map {
	position: relative;
	z-index: 0;
    width: 65%;
    height: 100%;
    transform: scale(1.25);
}

.location_container .map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location_container .text {
	position: relative;
	width: 35%;
	max-width: 550px;
	z-index: 1;
}

.location_container .text .paragraph {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

.location_container .title {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: min(55px, 10vw);
    line-height: min(55px, 10vw);
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    
}

#location_map{
	display: block
}

@media(max-width: 1200px) {
	.location_container{
		flex-direction: column;
		padding: 10vw;
		justify-content: center;
	}
	.location_container .text,
	.location_container .map {
		width: 100%;
		max-width: 100%;
	}
	.location_container .map {
		transform: scale(1);
	}
/*
    .location_container {
        grid-template-columns: 1fr;
    }

    .location_container .map {
        grid-row: 2;
        width: 100vw;
        transform: translateX(max(-10rem, -16vw));
        transform-origin: center;
    }

    .location_container .map img {
        transform: none;
    }
*/
}

@media(max-width:767px) {
    .location_container .title {
        transform: translateY(0em);
        width: 100vw;
        transform: translateX(max(-10rem, -10vw));
        text-align: center;
    }

    .location_container .text .paragraph {
        text-align: center;
    }

    .location_container .map {
        transform: translateX(max(-10rem, -16vw)) scale(1.1);
    }
}



.masterplan_container {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.masterplan_container .map{
	width: 60%;
}

.masterplan_container .map .masterplan_mask{
	position: relative;
	-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("../img/home/masterplan_mask.png");
    transform: translateX(-5vw) scale(1.2);
}

.masterplan_container .map .image img{
	width: 100%;
	height: auto;
}
.masterplan_container .text{
	width: 30%;
	text-align: right;
	font-size: min(21px, 6vw);
	z-index: 1;
	position: relative;
}

.masterplan_container .title {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: min(55px, 10vw);
    line-height: min(55px, 10vw);
    text-transform: uppercase;
}

.masterplan_container .subtitle {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: min(48px, 10vw);
    line-height: min(54px, 11vw);
    text-transform: uppercase;
}

.masterplan_container .text .paragraph {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: min(21px, 6vw);
    /*padding-bottom: min(10rem, 20vw);*/
    letter-spacing: 1px;
}

.masterplan_container .bg_img {
    position: absolute;
    left: -28%;
    top: -24%;
    opacity: 1;
    width: 100vw;
    height: auto;
    filter: brightness(0.9);
    opacity: 0.3;
    z-index: 0;
}


#bars_icon_container{
	position: relative;
	width: 100vw;
	padding: 0 20vw;
	box-sizing: border-box;
}

#lifestyle_4{
	padding: 0;
/* 	margin-bottom: -15vh; */
	margin-top: 10vh;
}

#lifestyle_4 .image{
	position: relative;
	width: 100%;
	margin: 0 auto;
	object-fit: cover;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0 30%;
    mask-position: 0 30%;
    -webkit-mask-size: 100%;
    -webkit-mask-image: url("../img/motorclub/bars_mask.png");
    -webkit-mask-repeat: no-repeat;
}

#lifestyle_4 .image img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}


@media(max-width:1500px){
	.masterplan_container .map {
    	width: 50%;
	}
	.masterplan_container .text {
    	width: 45%;
	}
}

@media(max-width:992px){
	.masterplan_container{
		flex-direction: column-reverse;
		justify-content: center;
	}
	.masterplan_container .map {
    	width: 100%;
    	text-align: center;
	}
	.masterplan_container .map .masterplan_mask{
		width: 90%;
		margin: 0 auto;
		transform: translateX(0);
    }
	.masterplan_container .text {
    	width: 80%;
    	text-align: center;
    	margin-bottom: 30px;
	}
	.masterplan_container .title{
		margin-bottom: 30px;
	}
	.masterplan_container .subtitle{
		font-size: min(21px, 6vw);
		line-height: min(24px,6.2vw);
		text-transform: none;
	}
	.masterplan_container .bg_img{
		top: -10%;
		left: -60%;
		width: 180vw;
    }
	
	
	
}

@media(max-width:768px){
	#lifestyle_4{
		margin-top: 4vh;
	}
}
