@font-face {
	font-family: "Amsi";
	src: url("../fonts/amsipronarw-ultraitalic.otf") format('opentype')
}

@font-face {
	font-family: "Apple Symbols";
	src: url("../fonts/apple-symbols.ttf") format('truetype')
}

* {
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}

:focus-visible, :focus, :-webkit-direct-focus {
	outline: none !important;
	box-shadow: none !important;
}

html, body {
	min-width: 100vw;
	min-height: 100vh;
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	max-height: 100vh;
	overflow: hidden;
}

.container-fluid {
	padding: 0;
	position: relative;
}

.slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide_content {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide_3 .slide_content div {
	font-family: "Amsi", sans-serif;
	font-size: 300px;
	line-height: 240px;
	text-transform: uppercase;
}

.more {
	color: #02ffff;
}

.soon {
    margin-left: 230px;
	color: white;
}

.slide_1 {
	width: 100vw;
	height: 100vh;
	background-image: url(../img/trinity.jpg);
}

.slide_2 {
	width: 100vw;
	height: 100vh;
	background-image: url(../img/trinity.jpg);
	background-position: bottom;
}

.slide_3 {
	width: 100vw;
	height: 100vh;
	background-image: url(../img/trinity_yellow.jpg);
	background-position: bottom;
}

.slide_1, .slide_2 {
	box-shadow: inset 0px 20000px rgba(0,0,0,0.4);
}

.slide img {
	width: 40%;
	min-width: 450px;
}

.page_content {
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
   // background: rebeccapurple;
    display: flex;
    align-items: stretch;
    flex-direction: row;
	padding: 30px;
	pointer-events: none;
	font-family: "Apple Symbols", sans-serif;
	text-transform: uppercase;
	font-style: italic;
	font-size: 12px;
	letter-spacing: 4px;
	color: white;
}

.header {
	width: 100%;
	align-self: flex-start;
	pointer-events: all;
	white-space: nowrap;
    overflow: visible;
}

.footer {
	width: 100%;
	align-self: flex-end;
	text-align: right;
	pointer-events: all;
	white-space: nowrap;
    overflow: visible;
}

.footer a, .footer a:hover, .footer a:focus, .footer a:visited, .footer a:active {
	color: white;
	text-decoration: none;
}

.modal-dialog {
	//max-width: 90vw;
	font-family: "Apple Symbols", sans-serif;
	text-transform: uppercase;
	font-style: italic;
	font-size: 16px;
	letter-spacing: 4px;
	color: white;
}

.modal-content {
	background: transparent;
    border: none;
	color: white;
}

.modal-backdrop.show {
	background-color: rgba(0,0,0,0.7);
	opacity: 1;
	backdrop-filter:  blur(10px);
	-webkit-backdrop-filter:  blur(10px);
}

.btn-close {
	color: white;
}

.btn-close:focus {
	box-shadow: none;
}

@media (max-width: 1000px) {
	.slide_3 .slide_content div {
		font-size: 250px;
		line-height: 200px;
	}
	
	.soon {
		margin-left: 200px;
	}
}

@media (max-width: 840px) {
	.slide_3 .slide_content div {
		font-size: 220px;
		line-height: 180px;
	}
	
	.soon {
		margin-left: 180px;
	}
}

@media (max-width: 740px) {
	.slide_3 .slide_content div {
		font-size: 190px;
		line-height: 160px;
	}
	
	.soon {
		margin-left: 150px;
	}
}

@media (max-width: 640px) {
	.slide_3 .slide_content div {
		font-size: 150px;
		line-height: 130px;
	}
	
	.soon {
		margin-left: 130px;
	}
}

@media (max-width: 520px) {
	.slide_3 .slide_content div {
		font-size: 120px;
		line-height: 100px;
	}
	
	.soon {
		margin-left: 100px;
	}
}

@media (max-width: 400px) {
	.slide_3 .slide_content div {
		font-size: 100px;
		line-height: 80px;
	}
	
	.soon {
		margin-left: 80px;
	}
}

@media (max-width: 330px) {
	.slide_3 .slide_content div {
		font-size: 80px;
		line-height: 70px;
	}
	
	.soon {
		margin-left: 60px;
	}
}

@media (orientation: portrait) {
	.mobile {
		min-height: -webkit-fill-available;
		height: -webkit-fill-available;
		max-height: -webkit-fill-available;
		body {
			min-height: -webkit-fill-available;
			height: -webkit-fill-available;
			max-height: -webkit-fill-available;
		}
		.slide_content, .slide_1, .slide_2, .slide_3, .page_content {
			height: -webkit-fill-available;
		}
		.slide_2 {
			background-size: auto 170%;
		}
	}
}