@import url('https://fonts.googleapis.com/css2?family=Popins:wght@300;400;500;600;700;800;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: 'Popins', sans-serif;*/
	font-family: LinotypeUniversW01-Regu,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
}

body {
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow-x: hidden;
	background: url("../source/main_img.jpg") no-repeat;
	background-size: cover;
	background-position: center;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
}

header {
	/*background: #f9f9f9;*/
	/*background: #ececec;*/
	/*background: #d8d8d8;*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 30px;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	/*border-bottom: 2px solid #0c3175;
	border-radius: 0 0 10px 10px;*/
	/*backdrop-filter: blur(20px);*/
}

.logo img{
	width:  150px;
	height: auto;
	align-items: center;
}

.active {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	justify-content: flex-end;
	align-items: center;
	background-color: rgb(255, 255, 255, 0.2);
	background-color: #0c317520;
}

.active ul{
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.active_text {
	text-align: center;
	padding-top: 200px;
	/*padding-bottom: 100px;*/
}

.active_text a {
	font-size: 80px;
	color: #0c3175;
}

.active_text p {
	color: #0c3175;
	font-size: 30px;
	font-weight: 600;
}

.menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin-bottom: 20vh;
	padding-top: 20vh;
}

.menu li {
	width: 295px;
	position: relative;
	margin: 10px 30px;
	text-decoration: none;
	/*border: 1px solid #0c3175;*/

	
	padding: 20px 30px 20px 30px;
	background: #ffffff70;
	text-align: center;
	box-shadow: 2px 2px 2px grey;
	transition-duration: 0.3s;

	font-size: 30px;
	color: #0c3175;
	font-weight: 600;
	align-items: center;
}

/*.menu li::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: -10px;
	background: #0c3175;
	border-radius: 10px;
	transform: scaleX(0);
	transition: transform .5s;
}

.menu li:hover::after{
	transform: scaleX(1);
}*/

.menu li:active {
	transform: scale(0.98);
            /* Scaling button to 0.98 to its original size */
    box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
            /* Lowering the shadow */
}

.menu li:hover {
    transform: scale(1.1);

    cursor: pointer;
}

#about {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 250px 0 0 200px;
}

#about .content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 50px;
	max-width: 1280px;
}

#about .content h4 {
	position: relative;
	width: 235px;
	font-size: 45px;
	color: #0c3175;
	font-weight: 600;
	border-bottom: 2px solid #0c3175;
}

#about .content p {
	padding: 0 0 0 100px;
	position: relative;
	font-size: 20px;
	
	font-weight: 400;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
	/*backdrop-filter: blur(5px);*/
	/*background: #0c317520;*/
	align-items: center;
	padding: 15px;
}

.copyright {
	text-align: right;
}

.copyright a {
	text-decoration: none;
	color: #b8b8b8;
	font-weight: 700;
	font-size: 12px;
	text-align: right;
}

a, a:hover{
	text-decoration: none;
}

@media screen and (max-width:  1420px){
	.active ul {
		flex-direction: column;
	}

	.logo {
		margin: auto;
	}

	.menu {
		padding-top: 100px;
		margin-bottom: 100px;
	}
}

@media screen and (max-width: 800px) {
	.active_text a {
		font-size: 60px;
	}
	
	.active_text p {
		font-size: 24px;
	}
	
	.menu {
    	margin-bottom: 10vh;
    	padding-top: 10vh;
    }
}

@media screen and (max-width: 550px) {
	.active_text a {
		font-size: 40px;
	}
	
	.active_text p {
		font-size: 18px;
	}
	
	.menu {
    	margin-bottom: 5vh;
    	padding-top: 5vh;
    }
    
    .footer {
    	position: static;
    }
}