* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
}
html, body {
		height: inherit;
		width: 100%;
}
body {
		padding: 0 8vw 10vw 8vw;
		font-family: 'Plus Jakarta Sans', sans-serif;
		text-align: left;
		background: #0B101F;
}
a {
	text-decoration: none;
}
.logo {
	color: #FFF;
    font-family: 'Cal Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 5rem);
	line-height: clamp(1rem, 2vw, 5rem);
    box-sizing: border-box;
    padding-top: 25px;
    display: inline-block;
	position: absolute;
	top: 0;
	float: right;
}
.box {
	padding-top: 150%;
	border-radius: 40px;
	background-color: #182332;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: left;
	transition: transform .4s,box-shadow .4s;
	position: relative;
}
.box2 {
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 50px;
	margin-bottom: 50px;
}
.box:hover {
	transform: scale(0.95);
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 8vw;
	margin-top: 30px;
}
.copy {
	position: absolute;
	bottom: 0;
	padding-left: clamp(3rem, 5vw, 4rem);
	padding-right: clamp(3rem, 5vw, 4rem);
	padding-bottom: clamp(3rem, 5vw, 4rem);
}
.image1 {
	background-image: url('img/mockup1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.image2 {
	background-image: url('img/mockup2.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.image3 {
	background-image: url('img/mockup3.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.image4 {
	background-image: url('img/mockup4.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.image5 {
	background-image: url('img/mockup5.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.details {
	border-radius: 20px;
	padding: 30px;
	background-color: #182332;
	margin-top: 50px;
	margin-bottom: 75px;
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.section {
	margin-top: 20%;
	height: inherit;
	width: 100%;
	box-sizing: border-box;
	clear: left;
	display:inline-block;
}
h1 {
	font-family: 'Cal Sans', sans-serif;
	color: #FFF;
	margin: 0 0 1em 0;
	/* clamp (Min 2rem, fluid 5vw, Max 4rem) */
  	font-size: clamp(2.3rem, 5.5vw, 6.5rem);
	font-weight: 400;
	line-height: clamp(2.5rem, 5.7vw, 6.7rem);
}
h2 {
	color: #FFF;
	font-family: 'Cal Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
	font-weight: 400;
	line-height: clamp(1.7rem, 3.1vw, 3.7rem);
	margin-bottom: 15px;
}
h3 {
	color: #FFF;
	font-family: 'Cal Sans', sans-serif;
	font-size: clamp(1.8rem, 4vw, 4.6rem);
	font-weight: 400;
	margin-bottom: 0.5em;
}
h4 {
	color: #FFF;
	font-family: 'Cal Sans', sans-serif;
	font-size: clamp(2rem, 3.2vw, 3.8rem);
	font-weight: 400;
	line-height: clamp(2.2rem, 3.4vw, 4rem);
}
h5 {
	color: #FFF;
	font-family: 'Cal Sans', sans-serif;
	font-size: clamp(1.4rem, 3.2vw, 3.8rem);
	line-height: clamp(1.6rem, 3.4vw, 4rem);
	font-weight: 400;
}
p, ul, ol {
	color: #FFF;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 300;
    font-size: 18px;
	line-height: 30px;
	opacity: 0.85;
}
ul, ol {
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 2.5em;
}
ul {
	margin-top: 0;
}
p {
	margin-bottom: 1em;
}
span {
	font-weight: 800;
}
.details p {
	opacity: 1;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 0;
}
.details span {
	font-size: 16px;
	font-weight: 500;
	opacity: 0.5;
}
.tag {
    font-family: 'Cal Sans', sans-serif;
	font-weight: 400;
    font-size: 14px;
	color: #FFF;
	background: rgba(0,0,0,.25);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
	margin-bottom: 5px;
}
.tag2 {
	background: rgba(255,255,255,.15);
	margin-bottom: 10px;
}
.col1 {
	width: 43%;
}
.col2 {
	width: auto;
}
.light {
	opacity: 0.5;
}
td {
	vertical-align: top;
}
.image {
    width: 100%;
    background-size: contain;
	border-radius: 20px;	
}
table {
	margin-top: 30px;
}
@media (min-width: 800px) {
	body {
		padding: 0 10vw 10vw 10vw;
	}
	.grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (min-width: 1000px) {
	.grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 6vw;
	}
}

@media (min-width: 1200px) {
	body {
		padding: 0 15vw 10vw 15vw;
	}
	p, ul, ol {
		font-size: 18px;
		line-height: 34px;
		/*padding: 0 10%;*/
	}
	.box {
		border-radius: 50px;		
		background-size: cover;
	}
	.box2 {
		border-radius: 50px;
		width: 100%;
		margin-top: 100px;
		margin-bottom: 100px;
	}
	.image {
		border-radius: 50px;	
	}
	.spacer {
		margin-left: 7%;
	}
	.tag {
	    font-size: 14px;
	}
	.tag2 {
    	font-size: 16px;
    	padding: 6px 15px;
	}
	.details {
		padding: 40px;
		margin-top: 75px;
	}
	.grid {
		gap: 5vw;
		margin-top: 50px;
		grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	}
	table {
		margin-top: 50px;
	}
}

@media (min-width: 1400px) {
	.grid {
		grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	}
}