@font-face {
	font-family: bebas-neue;
	src: url('../assets/fonts/BebasNeue-Regular.ttf') format("truetype"),
		 url('../assets/fonts/BebasNeue-Regular.otf') format("opentype"),
		 url('../assets/fonts/BebasNeue-Regular.eot') format("embedded-opentype"),
		 url('../assets/fonts/BebasNeue-Regular.woff') format("woff"),
		 url('../assets/fonts/BebasNeue-Regular.woff2') format("woff2");
}

@font-face {
	font-family: azonix;
	src: url('../assets/fonts/Azonix.otf') format("opentype");
}

@keyframes typing {
  from {
  	width: 0;
  }
  to {
  	width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
  	border-color: transparent;
  }
  50% {
  	border-color: var(--contrast);
  }
}


:root{
	--red: #C96567;
	--black: #314455;
	--background: #B64856;
	--contrast: #5A87BE;
	--accentred: #755b6b;
}

* {

}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;

}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background-color: var(--background);
}

.bg {
	background-color: var(--accentred);
}

.logo{
	left: 50px;
}

.navbar{
	padding: 3;
	font-family: 'Montserrat', sans-serif;
}

.navbar-toggler:focus{
	box-shadow: none;
}

.nav-item a{
	color: var(--black);
	font-weight: 600;
	text-decoration: none;
	transition: 0.4s;
	padding: 8px 16px;
	border-radius: 99px;
}

.nav-item a.is-active, .nav-item a:hover{
	background-color: white;
}

.intro-text {
	font-family: bebas-neue;	
	background-color: var(--red);
	text-align: center;
	font-size: 10vw;
	line-height: 80%;
	padding-top: 5%;
}

.typewriter {
	font-size: 6vw;
	color: var(--black);
	overflow: hidden; /* Ensures the content is not revealed until the animation */
	border-right: .07em solid var(--contrast); /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin-left: 0 auto; /* Gives that scrolling effect as the typing happens */
	margin-right: 0 auto;
	animation: 
		typing 3.5s steps(40, end),
		blink-caret .75s step-end infinite;
}

footer {
	background: var(--accentred);
	height: auto;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	padding: 10px;
}

.footer-content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	color: var(--red);
}

.footer-content p{
	max-width: 80%;
	margin: 10px auto;
	font-size: 14px;
}

.socials{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	/*margin: 1rem 0 3rem 0;*/

}

.socials li{
	margin: 0 10px;
}

.socials a{
	text-decoration: none;
	color: var(--red);
}

.socials a i{
	font-size: 1.1rem;
}

.socials a:hover i{
	font-size: 1.3rem;
	transition: .4s ease;
}

@media(max-width:768px){
	.ul-bg{
		background-color: var(--red);
	}
}

.main-container {
	margin: auto;
	padding: 15%;
	padding-top: 5%;
}

.page-header {
	margin: auto;
	padding: 5%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;

	color: var(--red);
	background-color: var(--black);
}

.page-header h1{
	font-family: bebas-neue;	
	font-size: 8vw;
}

.initiatives {
	font-family: bebas-neue;
}

.initiatives h2{
	font-size: 5vw;
	color: var(--black);
}

.initiatives p{
	color: var(--black);
}

.initiative {
	margin: 0 auto;
	padding: 5%;
	padding-top: 5%;

	display: block;
	align-items: center;
	justify-content: center;
}

.initiative-image {
	display: block;
	margin: 3%;
	margin-left: auto;
	margin-right: auto;
}

.initiative-text-left {
	width: 100%;
}

.initiative-text-right {
	width: 100%;
}

.red-initiative {
	background-color: var(--red);
}

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

@media only screen and (min-width: 1000px) {
	.initiative {
		margin: 0 auto;
		padding: 5%;
		padding-top: 5%;

		display: flex;
		align-items: center;
		justify-content: space-around;
	}

	.initiative img {
		display: block;
	}

	.initiative-text-left {
		width: 60%;
		margin-right: 5%;
	}

	.initiative-text-right {
		width: 60%;
		margin-left: 5%;
	}
}

.suggestion-header {
	margin: auto;
	padding: 2%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;

	color: var(--red);
	background-color: var(--black);
}

.suggestion-header h1{
	font-family: bebas-neue;	
	font-size: 8vw;
}

.suggestion-subtext {
	margin: auto;
	padding: 2%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;

	color: var(--black);
}

.suggestion-subtext h2{
	font-family: bebas-neue;	
	font-size: 4vw;
}

.suggestion-container{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2%;
	background: var(--background);
}

.slogan{

	width: 100%;
	border-radius: 20px;
	margin: auto;
	margin-bottom: 5%;
	margin-top: -10%;
	padding: 2%;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;

	font-family: azonix;
	color: white;
	background-color: var(--black);
}

.initiatives p{
	font-size: 20px;
}

.item {
	display: flex;
	text-align: left;
	height: fit-content;
	margin: 5%;
	margin-bottom: 0;
	height: fit-content;


	background-color: #c5d0d9;
	color: var(--black);
	border-radius: 10px;
	box-shadow: 0 30px 50px -30px #aaa;

	transition: .3s;
}

.item:hover {
	transform: scale(1.02);
}

.item-info {
	padding: 3%;
	margin-right: auto;
}

.item-title {
	font-family: azonix;
	font-size: 400%;
}

.item-grade {
	font-family: azonix;
	font-size: 200%;
}

.item-text {
	font-size: 150%;
	height: fit-content;
}

.about-text {
	font-family: bebas-neue;
	font-size: 150%;
	margin: 10%;
	margin-top: 5%;
	padding: 5%;

	width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	border-radius: 50px;

	color: white;
	background-color: var(--black);
}