@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;900&display=swap');

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


body {
	margin: 0px auto;
	font-family: 'Nunito', sans-serif;
	line-height: 1.2;
}

a{
	color: inherit;
}

.navbar {
	width: 100%;
	padding: 20px;
	/*box-shadow: 0px 2px 8px #eee;*/
	box-sizing: border-box;
}

.navbar img {
	width: 140px;
}

h1 {
	width: 90%;
	max-width: 700px;
	margin: 0px auto;
	text-align: center;
	font-size: 60px;
	margin-top: 10px;
}

h1 span {
	background: rgb(255,1,110);
	background: linear-gradient(45deg, rgba(255,1,110,1) 0%, rgba(255,130,44,1) 100%);
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#signupbox {
	width: 80%;
	max-width: 600px;
	margin: 0px auto;
	border-radius: 34px;
	box-shadow: 0px 4px 12px #eaeaea;
	padding: 6px;
	font-size: 18px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	margin-top: 50px;
}

#signupbox input {
	font-family: inherit;
	padding: 16px 24px;
	border: none;
	outline: none;
	font-size: 18px;
	width: calc(100% - 200px);
	box-sizing: border-box;
}

label {
	line-height: 1.6;
}

#signupbox button {
	font-family: inherit;
	background: rgb(255,1,110);
	background: linear-gradient(45deg, rgba(255,1,110,1) 0%, rgba(255,130,44,1) 100%);
	padding: 16px 30px;
	border-radius: 40px;
	float: right;
	border: none;
	outline: none;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.2s;
}

#signupbox button:hover {
	opacity: 0.8;
}

.videocont {
	margin-top: 120px;
	width: 100%;
	background: rgb(255,1,110);
	background: linear-gradient(45deg, rgba(255,1,110,1) 0%, rgba(255,130,44,1) 100%);
	position: relative;
}

.videocont::before {
	content: "";
    background-image: url(img/bow.svg);
	width: 100%;
	margin-top: -2px;
	position: absolute;
	z-index: 1;
	height: 160px;
	top: 0;
}

.bow {
	width: 100%;
	margin-top: -2px;
	position: absolute;
	z-index: 1;
	height: 160px;
	top: 0;
}

.video {
	display: block;
	margin: 0px auto;
	width: 90%;
	max-width: 700px;
	border-radius: 16px;
	box-shadow: 0px 8px 16px #0003;
	z-index: 2;
	position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: -40px;
}

.video2 {
	background-color: #fff5;
	backdrop-filter: blur(10px);
	display: block;
    margin: 0px auto;
    width: 90%;
    height: 394px;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0px 8px 16px #0003;
    z-index: 2;
    position: relative;
    top: -40px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
	transition: background-color 5000s;
    background-color: #fff0;
}

.success {
    margin: 0px auto;
    width: 80%;
    text-align: center;
    max-width: 500px;
    line-height: 1.6;
    padding: 20px;
    background-color: #e8ffe8;
    border: 2px solid #95e295;
    border-radius: 10px;
    margin-top: 40px;
    box-sizing: border-box;
    font-size: 18px;
}

.columncont {
	width: 90%;
	max-width: 900px;
	margin: 0px auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	text-align: center;
	color: #fff;
	column-gap: 20px;
	line-height: 1.4;

}


.column h2 {
	font-weight: bold;
	font-size: 20px;
}

.column img {
	width: 80px;
}


.footercont {
	margin: 0px auto;
	width: 90%;
	max-width: 400px;
	color: #fff;
	text-align: center;
	margin-top: 80px;
}

button#btn-sec {
    padding: 12px 20px;
    background: #fff;
    outline: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    font-family: inherit;
    margin-top: 12px;
    cursor: pointer;
    box-shadow: 0px 8px 12px #0003;
}


.footer {
	text-align: center;
	color: #fff;
	margin-top: 80px;
	overflow: hidden;
}

.footer a {
	display: inline-block;
	color: inherit;
	text-decoration: underline;
	padding: 20px 12px;
}




@media only screen and (max-width: 800px) {
  h1 {
	font-size: 45px;
	max-width: 550px;
	}

	.video2 {
    width: 90%;
    height: 51vw;
	}
	.videocont::before {
		height: 120px;
	}
	.navbar img {
	width: 120px;
}
h1 {
	margin-top: 20px;
}

.columncont {
	display: block;
	max-width: 350px;
}

.column {
	margin-bottom: 60px;
}

}

@media only screen and (max-width: 500px) {
	h1 {
	font-size: 30px;
	max-width: 400px;
	}

	.videocont::before {
		height: 60px;
	}
	.navbar img {
	width: 80px;
}


#signupbox input {
	width: 100%;
	padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0px 4px 12px #eaeaea;
	border: 1px solid #e5e5e5;
	border-radius: 40px;

}

#signupbox button {
	float: none;
	width: 100%;
	padding: 20px;
}

h1 {
	margin-top: 30px;
}

#signupbox {
 	box-shadow: none; 
    border: none;
    border-radius: 0px;
}


}

/* ALT */

.phone {
    margin: 0px auto;
    width: 240px;
    display: block;
    background-color: #080808;
    padding: 10px;
    border-radius: 32px;
    position: relative;
    z-index: 3;
    box-shadow: 0px 24px 32px #0006;
    top: -60px;
}

.video3 {
	display: block;
    margin: 0px auto;
    width: 100%;
    height: 56vw;
}

