@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Asap", sans-serif;
	scroll-behavior: smooth;
	max-width: 100%;
}

html{
	max-width: 100vw;
	height: auto;
	overflow-x: hidden !important;
}

body{
	background: linear-gradient(90deg, rgba(246,246,246,1) 0%, rgba(255,255,255,1) 50%, rgba(229,229,229,1) 100%);
}

p{
	font-size: 20px;
}

section{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}


section:nth-child(1){
	color: #e0ffff;
	width: 100%;
	height: 100vh;
}

section:nth-child(2){
	color: black;
	/*background: linear-gradient(90deg, rgba(24,0,0,1) 0%, rgba(172,0,0,1) 35%, rgba(255,113,113,1) 100%);*/
	background: linear-gradient(rgba(255, 255, 255,.4),rgba(255, 255, 255,.4)), url(img/bg4.jpg) no-repeat;
	
	background-attachment: fixed; 	
	height: auto;
	/*opacity:;*/
}

section:nth-child(3){
	color: black;
	padding: 0;

}

section:nth-child(4){
	color: black;
	/*background: linear-gradient(90deg, rgba(24,0,0,1) 0%, rgba(172,0,0,1) 35%, rgba(255,113,113,1) 100%);*/
	background-image: url("img/bg3.jpg");
	background-attachment: fixed;
	background-size: cover;
	height: auto;
}

section:nth-child(5){
	color: black;
	background: linear-gradient(90deg, rgba(246,246,246,1) 0%, rgba(255,255,255,1) 50%, rgba(229,229,229,1) 100%);        min-height: 80vh;

}

section:nth-child(6){
	color: black;
	background-color: black;
	background-image: url("img/bg6.jpg");
}

section .container{
	margin: 50px;
}

section h1{
	font-size: 3rem;
	margin: 20px;
}

section h2{
	font-size: 40px;
	/*text-align: center;*/
	margin: 20px;
	margin-left: 0px;
	text-transform: uppercase;
}

section .text-container{
	 display: flex;	 
}

section .text-container .text-box{
	margin: 20px;
	padding: 30px;
	background: transparent;
}

section .text-container .text-box h3{
	font-size: 30px;
	/*text-align: center;*/
	text-transform: uppercase;
	margin-bottom: 10px;
}

.reveal{
	position: relative;
	transform: translateY(150px);
	opacity: 0;
	transition: 1s all ease;
}

.reveal.active{
	transform: translateY(0);
	opacity: 1;
}

li{
	display: inline;
}

pre{
	font-size: 25px;
}

#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #b80000;
	color: white;
	cursor: pointer;
	padding: 8px 15px;
	border-radius: 50%;
	transition: 400ms ease;
	animation: opac 1s;
}

#myBtn:hover {
	background-color: #555;
}



/*Logo animation*/

.w3-container{
	padding: 0.01em 16px;
}

.w3-cell-row:before ,
.w3-cell-row:after{
	content: "";
	display: table;
	clear: both;
}

.w3-container{
	padding: 0.01em 16px;
	margin-top: 16px;
	margin-bottom: 16px;
}

.w3-center{
	display: inline-block;
	width: auto;
}

.w3-center{
	text-align: center;
}

.w3-center{
	text-align: center !important;
}

.w3-animate-opacity{
	animation: opac 2s;
}

@keyframes opac{
	from{
		opacity: 0;
	} 

	to{
		opacity: 1;
	}
}



.arrow {
	border: solid black;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
}

.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

footer{
	display: flex;
	width: 100%;
	height: auto ;
	padding: 1.6rem;
	margin-top: 1rem;
	justify-content: center;
	align-items: center;
	
	
}

footer .footer-container{
	display: flex;
	flex-direction: row !important;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

footer .column {
	width: 370px;
	height: 70vh;
	margin: 20px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 0;
	text-align: center;
}

footer .column:nth-child(1) img{
	margin-top: 5rem;
	width: 250px;
	height: 200px
}

footer .column:nth-child(3){
	align-items: flex-start;
	text-align: left;
}

footer .column:nth-child(3) h2{
	text-align: center;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

footer .column:nth-child(2) h2 ,
footer .column:nth-child(3) h2{
	margin-bottom: 1rem;
}

footer .column:nth-child(2) .icon-grp{
	width: 100%;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .column:nth-child(2) .icon-grp i{
	margin: 15px 7px;
	font-size: 2rem;
	cursor: pointer;
}

footer .column:nth-child(3) p span{
	font-weight: bold;
}

footer .column:nth-child(3) p{
	margin-bottom: 10px;
}





footer .column h2{
	font-size: 2.2rem;
}

footer .column img{
	width: 400px;
	height: 400px;
}

@media (max-width: 900px){
	section h1{
		font-size: 2rem;
		/*text-align: center;*/
	}
	section .text-container{
		flex-direction: column;
	}
}

@media (max-width: 628px){
	section .container h2{
		text-align: center;
	}

	section .container .text-container p{
		text-align: center;
	}

	section{
		height: auto;
		width: 100%;
	}

	section:nth-child(4) .container{
		margin: 0 !important;
	}

	section:nth-child(5) .container .text-box h2{
		text-align: left;
		font-size: 2rem;
	}

	section:nth-child(5) .container .text-box pre li{
		text-align: left;
		font-size: 1.4rem;
	}
}


@media (max-width: 428px){
	.home img{
		transform: scale(0.7);
	}

	.section2{
		height: auto !important;
	}

	section:nth-child(5) .container .text-box{
		padding: 10px;
	}

	section:nth-child(5) .container .text-box h2{
		text-align: center;
		font-size: 1.6rem;
	}

	section:nth-child(5) .container .text-box pre {
		text-align: center;
		font-size: 1rem;
		list-style-type: none;
	}
	footer .column{
		width: 300px;
		height: auto;
		text-align: center;
	}
}