@import url("https://use.typekit.net/dta5rlo.css");
/* 300, 400, 600 */

:root {
	--site-padding: 30px;
	--blue: #007db9;
	--blue-light: #00bcf1;
	--blue-dark: #003a5d;
	--green: #b2d235;
	--red: #ec1c24;
	--gray: #b7b7b7;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #fff;
	background-color: #fff;
	position: relative;
	font-family: "jaf-bernina-sans", sans-serif;
}

img {
	width: 100%;
}

button {
	background: none;
	border: none;
	cursor: pointer;
}
.btn {
	background: var(--blue);
	display: inline-block;
	color: #fff;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 5px;
	text-decoration: none;
	transition: scale 0.1s ease;
}
.btn:active {
	scale: 0.95;
}
.btn:hover {
	background: var(--blue-dark);
}
.btn.red {
	background: var(--red);
	padding: 0px;
    width: 15%;
	color: #fff;
}
.btn.red:hover {
	background: #b11318;
}
.btn.lblue {
	background: var(--blue-light);
}
.btn.lblue:hover {
	background: #007fa2;
}
.container {
	width: 100%;
	max-width: calc(820px + var(--site-padding) + var(--site-padding));
	margin: 0 auto;
	padding: 0 var(--site-padding);
}

h1 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 300;
	font-style: italic;
	color: #fff;
	margin: 0 0 10px 0;
}
p {
	font-size: 14px;
	line-height: 20px;
}

button.play .icon {
	width: 50px;
	height: 50px;
	display: inline-block;
	stroke-width: 2px;
	margin: 0 12px 0 0;
	border-radius: 50%;
	transition: scale 0.1s ease;
	position: relative;
	z-index: 1;
}
button.play:hover .icon {
	background: var(--blue-light);
}
button.play:active .icon {
	scale: 0.9;
}
button.play .icon::after {
	content: "Watch Video";
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	position: absolute;
	inset: 50% auto auto 55px;
	translate: 0 -50%;
	width: 100px;
	transform: translate(-20px, 0);
	opacity: 0;
	position: absolute;
	z-index: -1;
	transition: opacity 0.3s linear, transform 0.3s ease;
}
button.play:hover .icon::after {
	opacity: 1;
	transform: translate(0, 0);
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	display: none;
}
.popup .outer {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
}
.popup .content {
	background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	aspect-ratio: 16/9;
}
.popup .content video {
	width: 100%;
	height: 100%;
}
.popup .content iframe {
	border: none;
}
.popup .close {
	position: absolute;
	top: var(--site-padding);
	right: var(--site-padding);
	width: 40px;
	height: 40px;
	background: #fff;
	color: #000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup .close:hover {
	background: var(--blue-light);
	color: #fff;
}
.hero {
	overflow: hidden;
	position: relative;
	background: url("./images/hero_is.jpg") center center / cover no-repeat;
	border-top: 4px solid var(--red);
	padding: 100px 0;
}
.hero .txt {
	max-width: 360px;
}
.hero p {
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
	color: var(--blue-light);
}
.intro {
	padding: 50px 0;
}
.intro p {
	text-align: center;
	color: var(--blue-dark);
	max-width: 500px;
	margin: 0 auto;
}
.videos {
	overflow: hidden;
	background: #e8f8fd;
}
.videos .group {
	display: flex;
}
.videos .group > div {
	flex: 1;
}
.videos .group > div:nth-child(1) {
	border-right: 2px solid #fff;
}
.videos .thumb {
	width: 100%;
	height: 300px;
	position: relative;
}

@media screen and (max-width: 780px) {
	.videos .thumb {
		height: 200px;
	}
}

.videos button.play {
	background-color: var(--blue);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	width: 50vw;
}
.videos button::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0) 50%
	);
	opacity: 0;
	transition: opacity 0.2s linear;
}
.videos button:hover::after {
	opacity: 1;
}
.videos .group > div:nth-child(1) button.play {
	inset: 0 0 0 auto;
}
.videos .group > div:nth-child(2) button.play {
	inset: 0 auto 0 0;
}
.videos button.play .icon {
	inset: auto auto 30px 30px;
	position: absolute;
}

.videos .txt {
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	height: 100%;
}
.videos .group > div:nth-child(1) .txt {
	padding: 30px 30px 30px 0;
}
.videos .group > div:nth-child(2) .txt {
	padding: 30px 0 30px 30px;
}
.videos .txt h2 {
	font-size: 28px;
	line-height: 30px;
	font-weight: 300;
	color: var(--blue-dark);
	font-style: italic;
	margin: 0 0 10px 0;
}
.videos .txt p {
	margin: 0 0 20px 0;
}
@media screen and (max-width: 600px) {
	.videos .group {
		flex-direction: column;
	}
	.videos button.play {
		width: 100vw;
	}
	.videos .group > div:nth-child(1) button.play {
		inset: 0 calc(var(--site-padding) * -1);
	}
	.videos .group > div:nth-child(2) button.play {
		inset: 0 calc(var(--site-padding) * -1);
	}
	.videos .group > div:nth-child(1) {
		border-right: none;
	}
	.videos .thumb {
		height: 250px;
	}
}
.meets {
	padding: 40px 0;
	background: url("./images/prism.png") center center / cover no-repeat;
	text-align: center;
}
.meets h2 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 300;
	color: var(--green);
	font-style: italic;
	margin: 0 0 10px 0;
}
.meets p {
	color: #fff;
	max-width: 500px;
	margin: 0 auto;
}
.solutions {
	padding: 60px 0;
}
.solutions h2 {
	font-size: 33px;
	line-height: 40px;
	font-weight: 300;
	font-style: italic;
	color: var(--blue-dark);
	margin: 0 0 40px 0;
	text-align: center;
}

.solutions .group {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: 700px;
	margin: 0 auto;
}
.solutions .group > div {
	flex: 1;
	max-width: 300px;
}
.solutions .solution {
	display: flex;
}
.solutions .solution:nth-child(1) {
	margin: 0 0 20px 0;
}
.solutions .icon {
	min-width: 35px;
	margin: 0 30px 0 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media screen and (max-width: 520px) {
	.solutions .group {
		flex-direction: column;
	}
	.solutions .group > div {
		max-width: unset;
	}
}
.use {
	display: flex;
	background: #e8f8fd;
}
.use > div {
	flex: 1;
}
.use > div:nth-child(2) {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}
.use .img {
	height: 200px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.use p {
	padding: 35px;
}
@media screen and (max-width: 650px) {
	.use {
		flex-direction: column;
	}
	.use > div {
		display: flex;
	}
	.use > div > div {
		flex: 1;
	}
	.use > div:nth-child(2) {
		border-left: none;
		border-right: none;
		/* border-top: 2px solid #fff;
		border-bottom: 2px solid #fff; */
		flex-direction: row-reverse;
	}
	.use .img {
		height: unset;
	}
}
.radio {
	padding: 70px 0 30px 0;
}
.radio h2 {
	font-size: 33px;
	line-height: 40px;
	font-weight: 300;
	font-style: italic;
	color: var(--blue-dark);
	text-align: center;
}
.radio .group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.radio .img {
	flex: 1;
}
.radio .txt {
	flex: 2;
	padding: 40px 0;
	max-width: 500px;
}
.radio .wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.radio .wrapper > div {
	flex: 1;
}
.radio .icon {
	min-width: 36px;
	margin: 0 30px 0 0;
	position: relative;
}

.feature {
	display: flex;
	margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
	.radio .group {
		flex-direction: column-reverse;
	}
	.radio .wrapper {
		flex-direction: column;
	}
	.radio .txt {
		padding: 40px 0 0 0;
	}
}
.contact {
	background: url("./images/blue_pattern.png") center center / cover no-repeat;
	padding: 60px 0;
	text-align: center;
	border-top: 4px solid var(--green);
}
.contact h2 {
	font-size: 33px;
	line-height: 40px;
	font-weight: 300;
	font-style: italic;
	color: var(--blue-light);
	margin: 0 0 10px 0;
}
.contact p {
	font-size: 21px;
	line-height: 30px;
	color: #fff;
	font-weight: 300;
	font-style: italic;
}
.contact span {
	font-size: 30px;
	color: #fff;
	margin: 50px 0;
	display: block;
}
.contact h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 300;
	font-style: italic;
	color: #fff;
	max-width: 600px;
	margin: 0 auto 30px auto;
}
@media screen and (min-width: 1200px) {
	.container {
		max-width: calc(1200px + var(--site-padding) + var(--site-padding));
	}
	.hero .txt {
		max-width: clamp(300px, 40vw, 600px);
	}
	p {
		font-size: 16px;
		line-height: 22px;
	}
	.hero p {
		font-size: clamp(16px, 2vw, 32px);
		line-height: 1.2em;
	}
	h1 {
		font-size: clamp(24px, 4vw, 60px);
		line-height: 1em;
	}
	.btn {
		font-size: 16px;
		line-height: 14px;
	}
	.intro,
	.meets {
		padding: 60px 0;
	}
	.meets p {
		max-width: 600px;
	}
	.videos .group > div:nth-child(1) .txt {
		padding: 50px 50px 50px 0;
	}
	.videos .group > div:nth-child(2) .txt {
		padding: 50px 0 50px 50px;
	}
	.videos .txt h2,
	.meets h2 {
		font-size: 30px;
		line-height: 36px;
	}
	.solutions h2,
	.radio h2,
	.contact h2 {
		font-size: 38px;
	}
	.use .img {
		height: 250px;
	}
	.use p {
		padding: 50px;
	}
	.radio .group {
		max-width: 900px;
		margin: 0 auto;
	}
	.videos .thumb {
		height: 400px;
	}
}
.contact-form {
    /* background-color: #003a5d; */
    position: relative;
    padding: 4em 0
}

.contact-form .caret {
    position: absolute;
    width: 100%;
    top: -24px;
    text-align: center
}

.contact-form .wrap {
    max-width: 1200px
}

.contact-form h2 {
    color: #fff;
    font-size: 3.5rem;
    text-align: center
}

.contact-form input {
    width: 100%;
    color: #1e1e1e;
    font-size: 16px;
    line-height: 6rem;
    padding: 0 20px;
    margin-bottom: 1.5rem
}

.data .contact-form input {
    width: 100%;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 46px;
    padding: 0 20px;
    min-height: 46px;
    margin-bottom: 26px;
}

.contact-form .contact-submit {
    text-align: center
}

.contact-form .contact-submit .g-recaptcha div {
    margin: 20px auto
}

.contact-form .contact-submit .submit.btn.btn--outline {
    width: auto;
    margin-top: 2rem;
    color: #00bcf1;
    border-color: #00bcf1
}

.contact-form .contact-submit .submit.btn.btn--outline:hover {
    color: #fff;
    border-color: #fff
}
/* CONTACT */
.contact-us-btn{
	width: 30% !important;
	float: right;
	color: #003a5d !important;
 }
 input{
	outline-color: #b2d235;
	border-radius: 5px;
 } 
 .data .contact-form input {
	font-size: 16px;
 }
 
 .contact-form{
	/* background:#003a5d url(../images/SC_linear_pattern_rgb_dark-blue.jpg) center center / cover no-repeat; */
	padding:60px 40px;
 }
 .g-recaptcha {
    display: block;
    margin: 0px auto;
    width: 40%;
}
.columns.col-2 .column {
    margin-right: 30px;
	width: 50%;
}