@charset "UTF-8";
/* CSS Document */
body {
  font-family: var(--font-body);
  background: var(--bg);
  min-height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#privacy {
	background: url('../images/soflo-background.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}
#privacy:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: #a800ff;
	opacity: .85;
	z-index: 2;
	top: 0;
}
h1 {
	font-family: var(--font-heading);
	font-size: 50px;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: 36px;
}
h4 {
	font-size: 30px;
}
h5 {
	font-size: 24px;
}
h6 {
	font-size: 18px;
}
.fw300 {
	font-weight: 300;
}
.fw600 {
	font-weight: 600;
}
.pink {
	color: #ff00ff;
}
.yellow {
	color: #fcee21;
}
.logo {
	width: 100%;
	max-width: 240px;
	display: block;
	margin: 25px auto;
}

section {
  width: 100%;
  padding: 25px 0;	
}

.checkbox-item span {
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 500;
}
.featured {
	position: relative;
	background: url('../images/soflo-background.jpg') no-repeat;
	background-size: cover;
	position: relative;
	background-position: center center;
}
.featured:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: #a800ff;
	opacity: .85;
	z-index: 2;
	top: 0;
}
.featured .container {
	position: relative;
	z-index: 3;
}
.branding-mockup {
	width: 100%;
	max-width: 300px;
	transform: rotate(-12deg);
	display: block;
	margin: 10px auto 50px auto;
}
footer {
	background: #FF00FF;
	background: -webkit-linear-gradient(0deg,rgba(255, 0, 255, 1) 0%, rgba(14, 49, 68, 1) 100%);
	background: -moz-linear-gradient(0deg,rgba(255, 0, 255, 1) 0%, rgba(14, 49, 68, 1) 100%);
	background: linear-gradient(0deg,rgba(255, 0, 255, 1) 0%, rgba(14, 49, 68, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
	  startColorstr="#FF00FF",
	  endColorstr="#0E3144",
	  GradientType=0
	);
	padding: 25px 0;
}
footer img {
	width: 100%;
	max-width: 100px;
	margin-bottom: 20px;
}
footer a {
	color: #ffffff;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}
/* ── Form Layout ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
/* ── Privacy Page ── */
#privacy .featured {
	background: none;
}
#privacy .featured:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: none;
	opacity: 0;
	z-index: 2;
	top: 0;
}
#privacy .logo, #privacy footer {
	position: relative;
	z-index: 3;
	margin-top: 0;
}
@media screen and (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
	section, footer {
		padding: 3% 0;
	}
	footer img {
		max-width: 100%;
		margin-bottom: 0;
	}
	.logo {
		position: absolute;
		top: 10px;
		left: 22%;
		z-index: 3;
		width: 100%;
		max-width: 240px;
	}
	hgroup {
		margin-top: 200px;
	}
	h1 {
		font-size: 65px;
	}
	h2 {
		font-size: 40px 0 0 0;
	}
	.branding-mockup {
		margin: 40px;
		max-width: 500px;
	}
	/* ── Form Layout ── */
	.form-row {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 16px;
	}
    
}
@media screen and (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }	
	.featured {
		height: 850px;
	}
	#privacy .featured {
		height: auto;
	}
	hgroup {
		margin-top: 0;
	}
	
	.logo {
		top: 10px;
		left: 10px;
		width: 100%;
		max-width: 200px;
	}
	
	.form-wrapper .card {
		positon: relative;
		top: -50px;
	}
	
}
@media screen and (min-width: 2000px) {
	.logo {
		max-width: 240px;
	}

}