html,body{
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

section div h1.title{
	color: #e83089;
}

body{
	cursor: url("../imgs/mycursor-min.png"), auto;
}

.sectionhead{
	position: relative;
	width: 100%;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.sectionhead:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../imgs/spheregraphia.png") no-repeat center bottom;
	background-size: 100%;
}

.sectionhead .curvedheader{
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.sectionhead .curvedheader img{
	width: 50%;
}

a.underlineleft{
	position: relative;
}

a.underlineleft:before{
	content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f49d25;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

a.underlineleft:hover:before {
  visibility: visible;
  width: 100%;
}

nav.level p a{
	color: #e83089;
	font-size: large; 
	font-weight: bold;
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

nav.level p img{
	width: 80%;
}


.columns .card{
	transition: 0.5s;
}

.columns:hover .card{
	filter: blur(5px);
	transform: scale(0.9);
	opacity: 0.5;
}

.columns .card:hover{
	filter: blur(0px);
	transform: scale(1.1);
	opacity: 1;
}

.card-content .card-footer .card-footer-item{
	cursor: none;
}

.card-content .card-footer .card-footer-item .fa-plus{
	color: #e83089;
	transition: all 500ms cubic-bezier(0.540, -0.415, 0.570, 1.475);
}

.card-content .card-footer .card-footer-item:hover .fa-plus{
	color: #f49d25;
	transform: rotate(360deg) scale(1.5);
}

.card-content .card-footer .card-footer-item .fa-globe{
	color: #f49d25;
	transition: all 500ms cubic-bezier(0.540, -0.415, 0.570, 1.475);
}

.card-content .card-footer .card-footer-item:hover .fa-globe{
	color: #e83089;
	transform: rotate(360deg) scale(1.5);
}


.section .container .columns .column .icon a{
	color: #e83089;
	transition: all 500ms cubic-bezier(0.540, -0.415, 0.570, 1.475);
	background-color: #f49d25;
	border-radius: 50px;
	padding: 20px;
}


.section .container .columns .column .icon a:hover{
	color: #f49d25;
	background-color: #e83089;
	transform: scale(2);
	cursor: none;
}

.hero-background{
	background-color: #ffffff
}

.hero.has-background {
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.hero-background.is-transparent {
  opacity: 0.5;
}

img.logohero{
	width: 30%;
}

.hero-background.is-transparent.bgheroalt{
	opacity: 0.2;
}