@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@400;700&display=swap');

body {
	margin: 0px auto;
	font-family: 'Balsamiq Sans', sans-serif;
	transition: all 0.2s;
	overflow-x: hidden;
}

p {
	line-height: 1.4;
}

.hero {
	background-color: #B0E7FF;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.herocont {
	width: 90%;
	max-width: 900px;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
	margin-top: 40px;
}

.logo {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 100px;
}

.introtext {
	font-weight: lighter;
    font-size: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0px auto;
    line-height: 1.5;
    margin-bottom: 80px;
}

.introtext span {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 12px;
    padding-top: 4px;
    white-space: nowrap;
    }

.herotext {
	max-width: 560px;
	margin-top: -80px;
	text-align: center;
}

.herotext h1 {
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 48px;
}

.heromarvin {
	width: 240px;
	object-fit: contain;
	margin-top: 80px;
	animation-name: marvin;
	animation-duration: 5s;
	animation-iteration-count: infinite;
}

.inputbg {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 8px;
	border-radius: 100px;
	padding-left: 24px;
}

.inputemail {
	width: 70%;
	font-size: 20px;
	border: none;
	outline: none;
}

input {
	font-family: inherit;
}

.inputsubmit {
	outline: none;
	border: none;
	color: #fff;
	background-color: #F8A23E;
	border-radius: 100px;
	padding: 16px 24px;
	font-size: 20px;
	cursor: pointer;
	font-weight: bold;
}

.inputsubmit:hover {
	background-color: #EB932C;
}

.clouds {
	position: absolute;
	bottom: -1px;
	width: 100%;
	max-width: 1200px;
	height: 80px;
	object-fit: cover;
	margin: 0px auto;
	z-index: 2;
}

.clouds2 {
	position: absolute;
	top: -1px;
	width: 100%;
	max-width: 1200px;
	height: 80px;
	object-fit: cover;
	margin: 0px auto;
	z-index: 3;
	transform: rotate(180deg);
}

.bgcloud {
	position: absolute;
	width: 200px;
	z-index: 0;
}

.markerunderline {
	padding-bottom: 8px;
    position: relative;
    display: inline-block;
}

.markerunderline::before {
 content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    right: 0px;
    height: 12px;
    background-image: url('img/line.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

#cloudleft {
	top: 20%; 
	left: -20px;
	animation-name: cloudleft;
	animation-duration: 15s;
	animation-iteration-count: infinite;
}

#cloudright {
	top: 60%; 
	right: -20px;
	animation-name: cloudright;
	animation-duration: 15s;
	animation-iteration-count: infinite;
}

footer {
	position: absolute;
    bottom: 0;
    padding: 20px;
    text-align: center;
}

footer a {
	margin: 0px 10px;
	font-size: 14px;
}

@keyframes cloudleft {
  0% {left: -20px;}
  50% {left: -120px;}
  100% {left: -20px;}
}

@keyframes cloudright {
  0% {right: -20px;}
  50% {right: -120px;}
  100% {right: -20px;}
}

@keyframes marvin {
  0% {transform: translateY(-20px);}
  50% {transform: translateY(0px);}
  100% {transform: translateY(-20px);}
}

.scrollsection {
	width: 85%;
	max-width: 1000px;
	margin: auto;
	margin-top: 80px; 
}

.gallerysection {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: space-around;
	margin: 40px 0px;
}

.galleryimg {
	width: 60%;
}

.gallerytext {
	max-width: 400px;
}

.gallerytextimg {
	width: 64px;
}

.gallerytext p {
	color: #888888;
}

.gallerytext h3 {
	font-size: 1.5em;
}

.sectionreverse {
	flex-direction: row-reverse;
}

.columncont {
	width: 85%;
	max-width: 1000px;
	margin: auto;
	margin-top: 80px; 
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 16px;
	margin-bottom: 120px;
	background-color: #f1f8ff;
    padding: 32px;
    box-sizing: border-box;
    border-radius: 12px;
}

.column {
	text-align: center;
}

.column h4 {
	font-size: 18px;
	margin-bottom: 12px;
}

.column img {
	width: 64px;
}

.column p {
	color: #888888;
	font-size: 14px;
	max-width: 300px;
    margin: 0px auto;
}

.ctacont {
	background-color: #B0E7FF;
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.ctatext {
	width: 85%;
	max-width: 1000px;
	margin: auto;
	text-align: center;
	margin-top: 160px;
	margin-bottom: 140px;
	z-index: 2;
}

.ctatext h5 {
	font-size: 32px;
	margin-bottom: 40px;
}

.ctatext button {
	background-color: #F8A23E;
	color: #fff;
	padding: 16px 24px;
	border-radius: 40px;
	text-decoration: none;
	outline: none;
	font-size: 18px;
	font-family: inherit;
	border: none;
	cursor: pointer;
}

.dsgvolabel {
	margin-top: 12px;
	display: block;
	font-size: 14px;
}

a {
	color: inherit;
}

.instabtn {
	padding: 16px 24px;
	background-color: #fff;
	border-radius: 100px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s;
	box-shadow: 0px 2px 8px #0001;
	display: inline-flex;
    align-items: center;
    font-size: 20px;
}

.instabtn img {
	width: 24px;
	margin-right: 8px;
}

.instabtn:hover {
	transform: scale(1.1) rotate(-2deg);
	box-shadow: 0px 8px 16px #0002;
	color: #c8357c;
}

@media screen and (max-width: 900px) {
	.herotext h1 {
		font-size: 42px;
	}
	.heromarvin {
		width: 200px;
	}
	.herotext {
		max-width: 500px;
	}
}

@media screen and (max-width: 800px) {
	.gallerysection {
		flex-direction: column;
	}
	.sectionreverse {
		flex-direction: column;
	}
	.gallerytext {
		margin-top: 40px;
	}
	.galleryimg {
	    width: 100%;
	    max-width: 400px;
	}
	.columncont {
		display: block;
	}
	.column {
		margin: 32px 0px;
	}
}

@media screen and (max-width: 700px) {
	.herocont {
		flex-direction: column;
	}

	.herotext {
		margin-top: 40px;
		text-align: center;
	}
	.inputbg {
		flex-direction: column;
		background-color: transparent;
		padding-left: 8px;
	}
	.inputemail {
		width: 100%;
		padding: 20px 24px;
		border-radius: 100px;
		margin-bottom: 12px;
		box-sizing: border-box;
	}
	.logo {
		left: inherit;
	}

	.introtext {
	font-size: 28px;
	}
}