/* CSS Document */

.banner-home{
	background-color: black;
	background-image: url("../images/SPSHomeHeaderImageCrop.png");
	background-size: cover;
	background-position: center;
	text-align: left;
	border-radius: 20px;
}
.banner-home h1{
	font-family: 'Kaushan Script', cursive;
	height: 50%;
	font-size: 300%;
	color: #FF3131;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top: 2%;
	padding-left: 5%;
}
.banner-home h2{
	font-family: 'Kaushan Script', cursive;
	height: 50%;
	font-size: 150%;
	color: #FF3131;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top: 0%;
	padding-left: 5%;
	white-space: nowrap;
}
.banner-home img{
	width: 400px;
}
.banner-home img2{
	justify-content: flex-end;
	width: 100px;
}
body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	background-image: url("../images/bgimg.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	font-family: 'Convergence', sans-serif;
}
.page-wrapper{
	width: 90%;
}
nav ul{
	list-style: none;
	padding-left: 0;
}
nav ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 15px 30px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-decoration: none;
	font-size: 24px;
	overflow: hidden;
	transition: 0.2s;
	background-color: black;
	white-space: nowrap;
}
nav ul li a:hover{
	color: #131313;
	background:#A0A7D1;
	box-shadow: 0 0 10px white, 0 0 40px white, 0 0 80px white;
}
.icon{
	margin: 0;
	justify-content: center;
	align-items: center;
	font-family: consolas;
}
.icon-anim{
	position: relative;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 0 0 20px 0;
}
.icon-text{
	position: absolute;
	text-align: center;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #93BEFF;
	text-shadow: 0 0 3px black, 0 0 3px black;
	letter-spacing: 2px;
	font-family: 'Russo One', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	pointer-events: none;
	background-color:rgba(0, 0, 0, 0.65);
	border-radius: 50px;
	padding: 2% 4%;
}
.icon-anim ul li a{
	text-decoration: none;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #93BEFF;
	text-shadow: 0 0 20px #000000;
	border-radius: 50px;
	min-height: 12vh;
}
img.icon-set{
	border-radius: 100%;
	background: black;
}
img.icon-set:hover{
	background: #A0A7D1;
	box-shadow: 0 0 10px white, 0 0 40px white, 0 0 80px white;
	transition: .5s;
}
img.icon-set:hover + .icon-text{
	color: black;
	transition: 0.5s;
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.text-body{
	background-color: #AFAFAF;
	border-radius: 20px;
}
.text-title{
	position: center;
	justify-content: center;
	display: flex;
	color: black;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: 'Convergence', sans-serif;
	font-size: 30px;
	font-weight: bold;
}
.text-subtitle{
	color: black;
	padding: 10px 20px;
	font-family: 'Convergence', sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-decoration: underline;
}
.text-content{
	color: black;
	padding: 10px 20px;
	font-family: 'Convergence', sans-serif;
	font-size: 18px;
}
.footer-home{
	background-color: black;
	color: #93BEFF;
	text-align: center;
}
.galleryrow{
	align-items: center;
	text-align: center;
}
.servicesgalleryrow{
	position: center;
	justify-content: center;
	display: flex;
	text-align: center;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	padding: 20px 5px;
	border-radius: .2rem;
}
.pagination a {
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	color: white;
	border-radius: .2rem;
	border: 0.0625rem solid #d7d7d7;
	background-color: #171717;
}
.pagination a.active {
	background-color: #156BB1;
	color: white;
	border-radius: 5px;
}
.pagination a:hover:not(.active) {
	background-color: #156BB1;
	border-radius: 5px;
}
.lightbox {
	display: none;

	position: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0%;
	left: 0%;
	background: rgba(0,0,0,0.8);
}
.lightbox img {
	position: relative;
	max-width: 90%;
	max-height: 80%;
	margin-top: 5%;
}

.lightbox:target {
	outline: none;
	display: block;
}

@media screen and (min-width: 300px){
	.icon-text{
		font-size: 25px;
	}
	.banner-home img{
		width: 100%
	}
}
@media screen and (min-width: 500px){
	.banner-home h1{
		font-size: 400%;
	}
	.banner-home h2{
		font-size: 200%;
	}
	.icon-text{
		font-size: 35px;
	}
}
@media screen and (min-width: 600px){
	.banner-home img{
		width: 500px
	}
}
@media screen and (min-width: 900px){
	nav ul{
		display: flex;
	}
	nav ul li{
		flex: 1;
		margin: 5px;
	}
	.banner-home h1{
		font-size: 500%;
	}
	.banner-home h2{
		font-size: 300%;
	}
	.banner-home img{
		width: 800px;
	}
	.icon{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.icon-anim{
		flex: 1;
		padding: 0 0 20px 0;
	}
	.icon-text{
		font-size: 20px;
	}
	/*.galleryrow{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}*/
}

@media screen and (min-width: 1200px){
	.banner-home h1{
		font-size: 500%;
	}
	.banner-home h2{
		font-size: 300%;
	}
	.icon-text{
		font-size: 30px;
	}
	.galleryrow{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

@media screen and (min-width: 1800px){
	.banner-home h1{
		font-size: 500%;
	}
	.banner-home h2{
		font-size: 300%;
	}
	.banner-home img{
		width: 70%;
	}
	.icon-text{
		font-size: 45px;
	}
}