* {
	margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif;
}
body {
	overflow-x: hidden;
	/*position: relative;*/
}
a,
a:checked,
a:visited {
	text-decoration: none;
	color: inherit;
}



.background_divider {
	background-color: #8364e8;
	height: 200px;
	width: 125vw;
	transform: rotate(10deg);
	margin: 0 0 -100px -50px;
	z-index: -1000;
}
.divider {
	background: url(/images/bart-ros-yjKfgqBUAuI-unsplash.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 500px;
	max-width: 1500px;
}


/*---------- back to top button ------------*/
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 10px;
  width: 45px;
  height: 45px;
	border: solid 1px #fff;
  border-radius: 10px;
  background-color: #8364e8;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
	overflow: hidden;
  display: none;
  z-index: 1500;
	box-sizing: border-box;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
#backToTop:hover {
  transform: scale(1.05);
}