@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root {
	--primary-color: #3a4052;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

h1 {
	font-weight: 300;
	font-size: 60px;
	line-height: 1.2;
	margin-bottom: 15px;
}

.showcase {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	/* background: var(--primary-color) url('img/overlay.png') no-repeat center center/cover; */
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-container:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: url('img/overlay.png') no-repeat center center/cover;
	position: absolute;
	opacity: 0.7;
}

.content {
	z-index: 2;
}

.logo-container{
	padding: 3rem;
}
.logo-box{
	height: 100%;
	/* max-height: 150px; */
	background: #ffffff;
	border-radius: 15px;
	display: flex;
    flex-direction: column;
	justify-content: center;
}
.header-logo{
	max-width: 350px;
}
.logo{
	padding: 1.5rem 3rem;
	/* max-height: inherit; */
}
.sticky-logo{
	max-width: 200px;
	position: absolute;
	bottom: 4rem;
	right: 4rem;
}
.subscription-box{
	padding-top: 1rem;
}
.subscription-box h2{
	color: #5c5959;
	font-size: 20px;
}
.input-group-text{
	background-color: #ffffff;
	border: none;
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.input-group-text svg{
	width: 20px;
}
.form-control{
	border: none;
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.form-control:focus{
	box-shadow: none;
}
.subscription-box button{
	background-color: #e9e9e9;
	border-color: #e9e9e9;
	color: #858586;
	font-weight: bold;
	border-radius: 10px;
}
.subscription-box button:hover{
	background-color: #e0e0e0;
	border-color: #e0e0e0;
	color: #858586;
}
@media screen and (max-width: 850px) {
	.header-logo{
		padding-top: 2.5rem;
		max-width: 230px;
	}
	.logo-container{
		padding: 1.6rem 0;
	}
	.logo{
		padding: 1rem 1rem;
		width: 100%;
	}
	.sticky-logo {
		max-width: 150px;
		bottom: 1rem;
		right: 1rem;
	}
	.content {
		overflow-y: auto;
		height: 100%;
	}
	.subscription-box{
		padding-top: 0;
		padding-bottom: 6rem;
	}
	.showcase {
		overflow: overlay;
	}
}
@media screen and (max-width: 768px) {
}