/* ------------ Basic Stuff -------------*/

body,
html {
	margin: 0; 
	padding: 0;
	height: 100%;
}
body {
	font: 400 19px/30px 'BebasNeuePro';
	color: #000000;
	letter-spacing: 0.15px;
	word-spacing: 0.5px;
}

/* ------------ Content -------------*/

#page {
	height: 100%;
}
.contact { 
	height: 100%;
	display: flex;
	flex-direction: column;
	font-size: 24px;
	font-weight: 400;
}
.content_bottom,
.content_top {
	height: 100%;
}
.content_top {
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.content_bottom {
	background: rgba(255, 255, 255, 0.5);
    color: #5c5c5c;
}
.logo,
.text {
	padding: clamp(35px,6vw,60px) 20px 0;
	padding-top: 0;
	max-width: 720px;
	margin: 0 auto;
	text-align: left;
}
.content_bottom .logo {
	margin-bottom: 0;
}
.text {
	height: 100%;
	width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.content_top .text {
	align-items: flex-end;
}

h2,
h1 {
	font-size: clamp(22px,3.6vw,36px);
	font-size: clamp(26px, 4.0vw, 40px);
	line-height: clamp(28px,4.2vw,42px);
	margin: 0;
	/* font-family: fantasy; */
}
h2 {
	font-weight: 700;
	margin-bottom: clamp(20px,3vw,30px);
	font-family:'BebasNeuePro', sans-serif;
}
h3 {
	font-size: clamp(16px,2.2vw,22px); 
	line-height: clamp(20px,2.6px,26px);
	margin: 0 0 clamp(10px,1.5vw,15px); 
	font-family: 'BebasNeuePro', sans-serif;
	font-weight: 700;
}

strong {
	font-size: clamp(14px,1.8vw,18px); 
	line-height: clamp(18px,2.2px,22px);
	margin: 0 0 clamp(10px,1.5vw,15px); 
	font-family: 'BebasNeuePro', sans-serif;
	font-weight: 700;
	color: #000000;
}
.content_top h1 {
	margin-bottom: 0.4em;
}

.introduction {
	font-size: clamp(18px,2.4vw,24px);
	line-height: clamp(26px,3.4vw,34px);
	color: #000000;
}

.logo {
	max-width: 100%; 
	
	/* margin-bottom: clamp(30px,5.5vw,55px); */
}
.logo img {
	display: block; 
	width: 100%; 
	height: auto;
}
.line {
	border-top: 1px solid #f7dfc6;
}
p {
	margin: 0;
	margin-top: 60px;
	color: #0a0a0a;
	font-size: clamp(18px,2.4vw,24px);
	line-height: clamp(26px,3.4vw,34px);
}


a:hover{
	color: rgba(151, 191, 22, 0.5)

}
a {
	color: #000000;
	
	text-decoration: none;
	font-size: clamp(18px,2.4vw,24px);
	line-height: clamp(26px,3.4vw,34px);
	
}
.text_top,
.text_bottom,
.text_left {
	float: none;
	width: 100%;
	text-align: center;
}
.text_top {
	padding: 0 0 clamp(35px,6vw,40px);
} 

.locations {
	display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 1em;
	display: none;
}

.cf {
	clear: both; 
	float: none; 
	height: 0;
	width: 0;
}
.powered_by {
	font-size: clamp(14px,1.5vw,15px); 
	color: rgba(51,51,51, 0.5);
	align-self: flex-end;
	margin-bottom: clamp(10px,1.5vw,15px);
	opacity: 0.5;
	display: flex;
}
.powered_by span {
	display: none;
}
.powered_by a {
	text-decoration: none; 
	font-size: clamp(12px,1.4vw,14px); 
	color: rgba(51,51,51, 0.5);
}
.powered_by a:hover {
	color: #333;
}

/* ------------ Button ---------------- */


.popup {
	display: none; 
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	justify-content: center;
	align-items: center;
	overflow-y: auto; 
	padding: 20px;
	box-sizing: border-box;
	z-index: 9999;
}

.popup-content {
  	background: #fff;
	 padding: 	clamp(30px, 6.5vw, 65px)  
				clamp(25px, 4.5vw, 55px)  
				clamp(25px, 5.5vw, 55px); 
	border-radius: 8px;
	max-width: 900px;
	width: 100%;
	max-height: 90vh; 
	overflow-y: auto;
	position: relative;
	box-sizing: border-box;
	margin: clamp(13px, 3vw, 50px);
}

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

.closeBtn {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  border: 1px solid rgba(134, 131, 129, 0.2);
  color: #8b8b8b;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.15px;
  border-radius: 19px;
  padding: 8px 15px;
  font-weight: 400;

  ::before {
    font-size: 15px;
    padding-left: 5px;
    color: rgba(134, 131, 129, 0.8);
  }
}

.closeBtn:hover {
  color: rgba(0,0,0,0.8);
  border-color: rgba(0,0,0,0.3); 
}



/* ------------ button content --------------- */


.popup {
	.popup-content {
		h2 {
			color: #000000;
			font-family: 'BebasNeuePro', sans-serif;
		}

		h3 {
			color: #000000;
		}
		p {
			margin: 0;
			margin-top: 10px;
			margin-bottom: 35px;
			color: #000000;
			font-size: clamp(16px,1.8vw,18px);
			line-height: clamp(24px,2.8vw,28px);

			a {
				color: rgba(151, 191, 22);
				font-size: clamp(16px,1.8vw,18px);
			line-height: clamp(24px,2.8vw,28px);

			&:hover {
				color: #000000;
			}
			}
		}
	}
}





/* ------------ Responsive -------------*/

@media screen and (max-width: 500px) {
	.logo img {
		width: 100%;
		height: auto;
		margin-left: 0;
	}
	.locations {
		/* flex-direction: column; */
		font-size: medium;
		line-height: 1.5em;
		justify-content: space-between;
	}
	/* .locations > div {
		margin-bottom: 2em;
	} */
}
@media screen and (max-width: 450px) {
	.text_bottom,
	.text_left {
		float: none;
		clear: both; 
		width: 100%;
	}
}

@media screen and (max-width: 450px) {
	.content_top {
		height: 70%;
	}
}

/* ------------ Fonts -------------*/

@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProLight/font.woff2') format('woff2'), url('fonts/BebasNeueProLight/font.woff') format('woff');
  font-weight: 300;
  font-style: normal;	
}  
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProLightItalic/font.woff2') format('woff2'), url('fonts/BebasNeueProLightItalic/font.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProRegular/font.woff2') format('woff2'), url('fonts/BebasNeueProRegular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProItalic/font.woff2') format('woff2'), url('fonts/BebasNeueProItalic/font.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProMiddleItalic/font.woff2') format('woff2'), url('fonts/BebasNeueProMiddleItalic/font.woff') format('woff');
  font-weight: 350;
  font-style: italic;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProMiddle/font.woff2') format('woff2'), url('fonts/BebasNeueProMiddle/font.woff') format('woff');
  font-weight: 350;
  font-style: normal;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProBold/font.woff2') format('woff2'), url('fonts/BebasNeueProBold/font.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "BebasNeuePro";
  src: url('fonts/BebasNeueProBoldItalic/font.woff2') format('woff2'), url('fonts/BebasNeueProBoldItalic/font.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}