@font-face {
  font-display: swap;
  font-family: 'Sacramento';
  font-style: normal;
  font-weight: 400;
  src: url('Sacramento/Sacramento-Regular.ttf') format('truetype');
}

body, html {
	background: rgba(133, 190, 207, 1);
	font-family: Georgia, serif;
	font-size: 1.1rem;
	line-height: 1.2em;
	color: #000;
	margin: 0;
	padding: 0;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
	font-family: Sacramento, sans-serif;
	margin-bottom: 1.4em;
	color: #fff;
}

h2 {
	font-size: 3rem;
	margin-top: 0.4em;
	margin-bottom: 0.9em;
}

h2.inside {
	margin-top: 1.6em;
}

p {
	margin-bottom: 1.4em;
}

.black {
	color: #111;
}

.white {
	color: #ffe1e1;
}

a,
a:visited,
a:focus,
a:active {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: #333;
}

#wrapper {
	position: relative;
	width: 100%;
	text-align: center;
	min-height: 100%;
}

* html #wrapper {
	height: 100%;
}

header {
	position: relative;
	background: #f1d4d6;
	width: 100%;
	height: 300px;
}

header:after {
	clear: both;
}

#bild1 {
	background: #f1d4d6;
}

section {
	padding: 2em 0;
	width: 100%;
	position: relative;
}

#logo {
  position: absolute;
  top: 1.05%;
  left: 0;
  width: 100%;
  z-index: 2;
}

#logo-small {
  position: absolute;
  top: -80px;
  left: 0;
  display: none;
}

section.img {
	padding: 0;
}

section div {
	padding: 0 16em;
	margin-top: 2em;
}

.floatbox {
	overflow: hidden;
}

.insta {
	position: absolute;
	right: 20px;
	top: -20px;
	width: auto;
	padding: 0;
}

.insta-ico {
  font-size: 2.6em;
	color: #fff;
}

.andrea {
  font-size: 0.8rem;
}

.insta-ico:hover {
	color: #333;
}

/* back to top button */

.back-to-top {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px;
  z-index: 100;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.back-to-top:hover {
  background: rgba(128, 0, 0, 1);
  color: #fff;
}

.back-to-top i,
.back-to-top span {
  font-size: 2em;
  font-weight: thin;
}

.arrow {
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  text-indent: -9999px;
  border-top: 2px solid #bfbfbf;
  border-left: 2px solid #bfbfbf;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  color: transparent;
}

.arrow:hover {
  border-color: gray;
  border-width: 5px;
}

.arrow:before {
  display: block;
  height: 200%;
  width: 200%;
  margin-left: -50%;
  margin-top: -50%;
  content: "";
  transform: rotate(45deg);
}

.arrow.up {
  transform: rotate(45deg);
  left: 175px;
}

/* navigation */

nav {
	position: relative;
	padding: 2em 0 1em 0;
}

nav a,
nav a:active,
nav a:visited,
nav a:focus {
	font-family: Sacramento, sans-serif;
	color: #111;
	font-size: 3rem;
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
}

nav a:hover {
	color: #fff;
}

/* navigation mobil */

#navigation-mobile {
  text-align: center;
  display: none;
  padding: 1.5em 0 1em 0;
}

#navigation-mobile ul li {
	padding: 0 30px;
	margin-bottom: 1em;
	display: none;
}

#navigation-mobile ul a {
	font-family: Sacramento, sans-serif;
	color: #111;
	font-size: 2.5rem;
	display: block;
	padding: 6px 6px;
	text-decoration: none;
}

#navigation-mobile ul a:hover,
#navigation-mobile ul a.here {
  color: #fff;
	text-decoration: none;
}

/* hamburger */
.row {
  position: absolute;
  right: 6px;
  top: 6px;
  display: none;
}

label.hamburg {
  display: block;
  background: transparent;
  width: 75px;
  height: 50px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
	cursor: pointer;
  z-index: 3;
}

.line {
  position: absolute;
  left: 10px;
  height: 4px;
  width: 36px;
  background: #777;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
  transform-origin: center;
}

.line:nth-child(1) {
  top: 9px;
}

.line:nth-child(2) {
    top: 18px;
}

.line:nth-child(3) {
  top: 27px;
}

#hamburg:checked+.hamburg .line:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

#hamburg:checked+.hamburg .line:nth-child(2) {
  opacity: 0;
}

#hamburg:checked+.hamburg .line:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}

input#hamburg {
  display: none;
}

/* Media Queries */

@media only screen and (max-width: 840px) {

  #logo {
    top: 5px;
    left: 0;
    max-width: 70%;
    display: none;
  }
	
  #logo-small {
    display: block;
  }
  
  section div {
		width: 100%;
		padding: 0 26px;
	}

   .row,
   #navigation-mobile ul li {
      display: block;
    }

    nav {
      display: none;
    }

	header {
    height: auto;
    min-height: 74px;
	}
	
#navigation-mobile ul a {
	font-size: 1.6rem;
	padding: 3px 3px;

}	
	
}
