@font-face {
  font-family: "quicksnd";
  src: url("fonts/Quicksand-Light.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
}
@font-face {
  font-family: "roboto";
  src: url("fonts/Roboto-Thin.ttf") format("truetype");
  font-weight:100;
  font-style:normal;
}

* {
	outline:none;
	box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    font-family: "roboto";
    margin: 0;
    font-weight: 100;
    text-align: center;
}
div[flex] {
    flex: auto;
}
.site_wrapper {
    padding: 0 12px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}


.landing_page_content_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 3px;
}

.landing_page_bkg_video_wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.landing_page_bkg_video_wrapper video {
    min-width: 110%;
    min-height: 100%;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 53%;
}
.landing_page_bkg_video_wrapper video+.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/overlay_texture-1.png);
    background-size: 3px;
    opacity: .2;
}




.landing_page_content_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 12px 0px;
}
.landing_page_content_wrapper img {
    max-width: 500px;
    width: 100%;
    padding: 0 12px;
}
.landing_page_content_wrapper h2 {
    margin: 24px 0 125px;
    color: #fff;
    text-transform: lowercase;
    /* text-decoration: underline; */
    font-weight: 400;
    font-size: 46px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 3px rgb(0 0 0 / 90%);
}



.sociallinks {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 12px 0; */
}
.sociallinks a {
    padding: 6px;
}
.sociallinks a img {
    width: 36px;
    padding: 0;
    margin: 0 8px;
    display: block;
}


.addresslinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
}
.addresslinks p {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.addresslinks a {
    text-align: center;
    color: #ffffff;
    text-transform: lowercase;
    text-decoration: unset;
    font-size: 12px;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    display: block;
    border-radius: 24px;
    transition: .15s all linear;
}





@media screen and (max-width:599px){
	.landing_page_bkg_video_wrapper video {
    left: 70%;
}
.landing_page_content_wrapper img {
    max-width: 325px;
}
.landing_page_content_wrapper h2 {
    font-size: 36px;
	margin: 24px 0 24px;
}
}