<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  	font-family: Quicksand-Bold;
  	src: url(Quicksand-Bold.ttf);
}
@font-face {
  	font-family: Quicksand-Regular;
  	src: url(Quicksand-Regular.ttf);
}

body {
  background: white;
  color: #fff;
  font-family: "Quicksand-Regular", Helvetica, Arial, "sans-serif";
  -webkit-text-size-adjust: none;
	margin: 0;
	padding: 0;
}
img {
  max-width: 100%;
  height: auto; }


a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease; }
  a:active {
  background: transparent; }

strong {
  font-weight: 700; }


/*=============    Support Classes    =================*/
.center {
  text-align: center; }

.oh {
  overflow: hidden; }

.noHover{
    pointer-events: none;
	opacity: 0.4;
}
/*========================================================
                    VIDEO Background
=========================================================*/
.video-container {
	position: relative;
    width: 100%;
    height: 100vh;
	overflow: hidden;
}
#myVideo {
	width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -1;
}

@media (max-width: 500px) {
	.video-container {
		overflow-y: auto;
	}
}

/*========================================================
                    HEADER Section
=========================================================*/
.header{
	position:relative;
	width:100%;
	height:200px;
	text-align:center;
	z-index:100;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.header img{
	margin: 60px auto 0 auto;
}


@media (max-width: 835px) {
	.header{
		height:150px;
	}

	.header img{
		margin: 50px auto 0 auto;
		width: 220px;
		height: auto;
	}
}


/*========================================================
                    CONTENT Section 
=========================================================*/

.page{
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
}
.content{
	position: relative;
	margin-bottom: 50px;
}

.main-text {
	font-family: "Quicksand-Regular", Helvetica, Arial, "sans-serif";
	font-size: 15px;
	color: #fff;
	z-index: 10;
}
.main-text h1{
	font-family: "Quicksand-Bold", Helvetica, Arial, "sans-serif";
	font-size: 35px;
	margin: 10px 0;	
}

@media (max-width: 500px) {
	.page{
		padding-bottom: 130px;
	}
	.main-text{
		padding: 0 10px;
	}
	.main-text h1{
		font-size: 30px;
	}
}
/*==================    Buttons    ======================*/
.buttons {
	width:939px;
	margin-left: -469px;
	position: fixed;
	bottom: 20%;
	left: 50%;
}
.button {
	font-family: "Quicksand-Regular", Helvetica, Arial, "sans-serif";
	background-color: rgba(0, 0, 0, 0.6);
	border: 1px solid #b38e44;
	border-radius: 20px;
	color: #b38e44;	
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	font-size: 17px;
	font-weight: bold;
	margin: 10px 20px;
	padding: 5px 10px;
	cursor: pointer;
	width: 246px;
}
.button:hover {
	background-color: #b38e44;
	color: #ffffff;
	transform: scale(1.1)
}
@media (max-width: 940px) {
    .buttons {
		width:834px;
		margin-left: -417px;
	}
}
@media (max-width: 600px) {
    .buttons {
		width:417px;
		margin-left: -208px;
		bottom: 10%;
	}
}
@media (max-width: 450px) {
    .buttons {
		width:224px;
		margin: 10px auto 40px auto;
		padding: 60px 0px;
		bottom: 10%;
		position: relative;;
		left: 0;
	}
	.button {
		font-size: 15px;
		margin: 10px 0px;
		width: 200px;
	}
}


/*========================================================
                     FOOTER Section
=========================================================*/
.footer {
	font-size: 13px;
  	text-align: center;
  	color:#000;
	background-color: #fff;
	position: fixed;
	width: 100%;
	bottom: 0;
}
.footer a:hover{
	text-decoration:underline;
}
</pre></body></html>