@charset "utf-8";
*{
	color:#ffffff;
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	font-family: 'Dosis', sans-serif;
	scroll-behavior: smooth;
	border: none;
	outline: none;
}

/*COLOR*/
:root{
	--purple: #656194;
	--pink: #c095c3;
	--blue: #abc2e1;
	--darkblue: #39638d;
	--deepblue: #093550;

	--h1-font: 7rem;
	--h2-font: 3.5rem;
	--p-font: 1.1rem;
}

body{
	background: var(--blue)
}
/*HEADER*/
header{
	background: var(--darkblue);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 11%;
	border-bottom: 1px solid transparent;
	transition: all ease .50s;
}

.logo img{
	width: 100%;
	height: auto;
}

/*NAVIGATION*/
.navlist{
	display: flex;
}

.navlist a{
	font-size: var(--p-font);
	font-weight: 600;
	margin: 0 40px;
	transition: all ease .40s;
}

.navlist a:hover{
	color: var(--pink);
	text-decoration: underline;
}

#menu-icon{
	font-size: 42px;
	color:#ffffff;
	z-index: 10001;
	cursor: pointer;
	display: none;
}


/*CURSUSSEN*/
.container{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px;
	background: var(--deepblue);
}

.container .card{
	position: relative;
	max-width: 230px;
	height: 250px;
	background: var(--darkblue);
	margin: 30px 15px;
	padding: 20px 15px;
	border-radius: 5px;
	box-shadow: 0 5px 200px rgba(0,0,0,0.5);
	transition: 0.3s ease-in-out;
}

.container .card:hover{
	height: 450px;
}

.container .card .img-box{
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 5px;
	overflow: hidden;
	top: -60px;
	left: 20px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.container .card .img-box img{
	width: 180%;
}

.container .card .text-box{
	position: relative;
	margin-top: -140px;
	padding: 10px 15px;
	text-align: center;
	color: #ffffff;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s ease-in-out;
}

.container .card .text-box{
	text-align: left;
	line-height: 20px;
	margin-top: 10px;
	font-size: 15px;
	color: #ffffff;
}

.container .card:hover .text-box{
	visibility: visible;
	opacity: 1;
	margin-top: -40px;
	transition-delay: 0.2s;
}

/*CONTACT*/
.contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	align-items:center;
	gap: 5rem;
	padding: 100px;
}

.left-contact{
	display: flex;
	align-items: center;
	text-align: center;
	gap: 4rem;
}

.icon i{
	color: var(--deepblue);
	opacity: 0.5;
	font-size: 120px;
	transition: all ease .40s;
}

.icon i:hover{
	opacity: 1;
	cursor: pointer;
}

.icon h4{
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.right-contact h2{
	font-family:'Dosis', sans-serif;
	font-size: var(--h2-font);
	color: var(--deepblue);
	font-weight: 800;
	margin-bottom: 20px;
}

.right-contact a{
	display: inline-block;
	color: #ffffff;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 2px;
	border-bottom: 2px solid var(--pink);
	padding: 3px 0;
	transition: all ease 0.40s;
}

.right-contact a:hover{
	transform: translateY(-5px);
	color: var(--purple);
	border-bottom: 2px solid var(--purple);
}

/*FOOTER*/
.footer{
	padding: 40px 19% 40px;
	background: var(--purple);
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.footer p{
	color: #ffffff;
	font-size: 3rem;
	line-height: 30px;
	margin-bottom: 30px;
}

.footer i{
	height: 40px;
	width: 40px;
	background: var(--darkblue);
	color: #ffffff;
	border: 2px solid var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
	margin: 0 9px;
	margin-bottom: 20px;
	transition: all ease 0.50s;
}

.footer i:hover{
	transform: translateY(-5px);
	background: transparent;
	border: 2px solid var(--pink)
}

/*UP BUTTON*/
.sbutton{
	position: fixed;
	right: 2.2rem;
	bottom: 2.2rem;
	background: var(--pink);
	font-size: 23px;
	padding: 9px;
	border-radius: 0.8rem;
}