:root {
  --pri: #FBEB57;
  --black: #151206;
}

.material-symbols-sharp {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}



html{
	overflow-x:hidden;
	
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
/*  border: 10px solid var(--pri);*/
}

button{
	border: none;
	cursor: pointer;

}


body{
	background-color: var(--pri);
	font-family: 'Inter', sans-serif;
	width: 100%;
	height: 100vh;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.inner-section{
/*	background-image: url('../images/bg.png');*/
	background-size: cover;
	background-position: center;
	width: 96vw;
	height: 95vh;
	padding: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
	
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer !important;
	

}

.button .icon{
margin: 5px;

}

.nav a, .footer a, .nav button, .footer button{
	
	margin-bottom: 8px;
	width: fit-content;
	display: flex;
	align-items: center;

}


.button{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	padding: 4px 8px;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all ease 0.2s;
}


.yellow-button{
	background-color: var(--pri);
	color: var(--black);
	
}

.yellow-button:hover {
	background-color: var(--black);
	color: var(--pri);
	border: 1px solid var(--pri);
}

.black-button{
	background-color: var(--black);
	color: var(--pri);
	
}

.black-button:hover{
	background-color: var(--pri);
	color: var(--black);
	border: 1px solid var(--black);
	
}






.nav{
	width: inherit;
	display: flex;
	justify-content: space-between;
	height: 54px;
}

.nav .right{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.nav .left{
	display: flex;
	flex-direction: column;

}

.center-logo{
	display: flex;
	width: 100%;
	height: 80%;
	justify-content: center;
	align-items: center;
}

.center-logo img{
	width: 300px;
	height: auto;
}

.footer{
	display: flex;
	justify-content: space-between;
	height: 56px;
	align-items: flex-end;
}

.footer .left{
	display: flex;
	flex-direction: column;

}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 0px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: var(--pri);
  color: var(--black);
  margin: auto;
  padding: 50px;
  width: 50%;
  height: 100vh;
}

.modal-content .link{
	text-decoration: underline;
	font-weight: bold;
}

.modal-content img{
	width: 100%;
}

.label{
	font-size: 14px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.phone-img{
	width: 80% !important;
	margin-left: 40px;
}

.contact-label{
	margin-top: 50px;
}

.contact-label a{
	text-decoration: underline;
}

.contact-label p, .contact-label h2{
	margin: 0px;
	padding: 0px;
}



@media only screen and (max-width: 600px) {
  
.button{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	padding: 16px;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all ease 0.2s;
}



.center-logo img{
order:1;

}

}












