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

* {
	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: 16px;
	line-height: 12px;
	font-weight: 600;
	padding: 13px 14px;
	border-radius: 5px;
	text-decoration: none;
	transition: scale 0.1s ease;
}
.btn.red {
	background: var(--red);
}
.btn:hover {
	background: var(--blue-dark);
}
.btn.red:hover {
	background: #b11318;
}
.btn.red:active {
	scale: 0.95;
}
@media screen and (max-width: 650px) {
	.btn {
		margin: 0 auto;
		display: block;
		width: fit-content;
	}
}
.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: 16px;
	line-height: 1.5em;
	color: #000;
}
p:not(:last-child) {
	margin: 0 0 1.5em 0;
}
.headline {
	font-size: 28px;
	line-height: 1.2em;
	font-style: italic;
	color: #fff;
	font-weight: 100;
	margin: 0 0 0.2em 0;
}
.hero {
	background: linear-gradient(
			100deg,
			rgba(84, 64, 64, 1) 20%,
			rgba(84, 64, 64, 0.7) 40%,
			rgba(84, 64, 64, 0) 80%
		),
		url("./images/hero.jpg") center center / cover no-repeat;
	padding: 130px 0;
}
.hero .txt {
	max-width: 350px;
}
.hero .txt p {
	color: var(--blue-light);
	font-size: 18px;
}
.hero br {
	display: none;
}
@media screen and (max-width: 700px) {
	.hero {
		background: linear-gradient(
				100deg,
				rgba(84, 64, 64, 1) 20%,
				rgba(84, 64, 64, 0.7) 50%,
				rgba(84, 64, 64, 0) 80%
			),
			url("./images/hero.jpg") center right -110px / cover no-repeat;
		padding: var(--section-pad) 0 400px 0;
	}
	.hero .txt {
		width: 60vw;
	}
	.hero .txt h1 {
		font-size: 4vh;
	}
	.hero br {
		display: inline-block;
	}
}
@media screen and (max-width: 501px) {
	.hero {
		background: linear-gradient(
				180deg,
				rgba(84, 64, 64, 1) 30%,
				rgba(84, 64, 64, 0) 60%
			),
			url("./images/hero.jpg") top 130px right / cover no-repeat;
		padding: 30px 0 300px 0;
	}
	.hero .txt {
		width: 100%;
	}
	.hero br {
		display: none;
	}
}
@media screen and (min-width: 1200px) {
	.hero {
		padding: 13vw 0;
	}
	.hero .txt {
		max-width: 30vw;
	}
	h1 {
		font-size: 3vw;
		line-height: 1em;
	}
	.hero .txt p {
		font-size: 1.5vw;
	}
}
.intro {
	padding: var(--section-pad) 0;
	text-align: center;
}
.intro .txt {
	max-width: 700px;
	margin: 0 auto;
}
.intro .p {
	margin: 0 0 4em 0;
}
.benefits {
	background: url("./images/bg_pattern.jpg") center center / cover no-repeat;
	border-top: 4px solid var(--green);
	padding: var(--section-pad) 0;
}
.benefits .group {
	display: grid;
	grid-template-columns: 40% 1fr;
	grid-template-areas:
		"phone header"
		"phone features";
	gap: 20px;
}
.benefits .phone {
	grid-area: phone;
	margin: 0 -var(--section-pad);
}
.benefits .header {
	grid-area: header;
	align-self: self-end;
	padding: 0 20px 0 0;
	margin: 0 0 30px 0;
}
.benefits .features {
	grid-area: features;
	padding: 0 20px 0 0;
}

.benefits .item {
	display: flex;
	gap: 30px;
	margin: 0 0 30px 0;
}
.benefits .icon {
	width: 60px;
}
.benefits .item .txt {
	flex: 1;
}
.benefits .item p {
	color: #fff;
}

.benefits .header p {
	font-size: 18px;
	line-height: 1.5em;
	color: var(--blue-light);
	max-width: 400px;
}

@media screen and (max-width: 680px) {
	.benefits .group {
		grid-template-areas:
			"phone header"
			"features features";
	}
	.benefits .header {
		align-self: center;
	}
	.benefits .features {
		padding: 0 20px;
	}
}
.team {
	padding: var(--section-pad) 0;
	border-top: 4px solid var(--red);
}
.team .group {
	display: flex;
	gap: 50px;
}
.team .group > div {
	flex: 1;
}

.team .headline {
	color: var(--blue);
	margin: 0 0 30px 0;
	max-width: 350px;
}
.team .img img {
	object-fit: cover;
}
.team p {
	color: var(--gray);
}
@media screen and (max-width: 680px) {
	.team .group .txt {
		flex: 8;
	}
	.team .group .img {
		flex: 5;
	}
}
@media screen and (max-width: 600px) {
	.team .group {
		flex-direction: column-reverse;
	}
	.team .group .txt {
		flex: none;
	}
	.team .group .img {
		margin: calc(var(--section-pad) * -1) calc(var(--site-padding) * -1) 0
			calc(var(--site-padding) * -1);
		flex: none;
		overflow: hidden;
		height: 100vw;
	}
	.team .group .img img {
		margin-top: -50px;
	}
}
.customize {
	padding: var(--section-pad) 0 0 0;
	background: rgba(232, 248, 253, 0.75);
	border-top: 4px solid var(--green);
}
.customize .header {
	text-align: center;
	margin: 0 0 30px 0;
}
.customize .headline {
	color: var(--blue-dark);
	font-size: 30px;
}
.customize .header p {
	color: var(--blue-dark);
	font-size: 18px;
}
.customize .group {
	display: flex;
	align-items: center;
	gap: 30px;
}
.customize .group > div {
	flex: 1;
}
.customize .item {
	display: flex;
	gap: 30px;
	margin: 0 0 30px 0;
}
.customize .item .icon {
	width: 60px;
}
.customize .item .txt {
	flex: 1;
}
.customize .item h3 {
	font-weight: 600;
	font-size: 16px;
	margin: 0 0 0.5em 0;
}
@media screen and (max-width: 800px) {
	.customize {
		padding: var(--section-pad) 0;
	}
	.customize .group {
		flex-direction: column;
	}
	.customize .phone {
		max-width: 300px;
		margin: 0 0 -60px 0;
	}
}
.app {
	padding: var(--section-pad) 0;
}
.app .headline {
	color: var(--blue-dark);
	text-align: center;
	max-width: 700px;
	font-size: 30px;
	margin: 0 auto 20px auto;
}
.app p {
	color: var(--blue-dark);
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}
.app .appstore {
	display: flex;
	gap: var(--site-padding);
	justify-content: center;
	margin: 30px 0;
}
.app .appstore img {
	max-width: 170px;
}
.app .disclaimer {
	font-size: 10px;
	line-height: 1.1em;
}
.hands-free {
	overflow: hidden;
}
.hands-free .group {
	display: flex;
}
.hands-free .txt {
	flex: 7;
	padding: var(--section-pad) var(--section-pad) var(--section-pad) 0;
	position: relative;
}
.hands-free .headline {
	font-size: 30px;
}
.hands-free .txt::after {
	content: "";
	position: absolute;
	inset: 0 0 0 auto;
	background: url("./images/green-bg.jpg") center center / cover no-repeat;
	width: 60vw;
	z-index: -1;
}
.hands-free .txt p {
	color: #fff;
}
.hands-free .img {
	flex: 5;
	position: relative;
}
.hands-free .img::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	background: url("./images/mcptt.jpg") center top / cover no-repeat;
	width: 45vw;
}
@media screen and (max-width: 650px) {
	.hands-free .group {
		flex-direction: column-reverse;
	}
	.hands-free .img {
		height: 60vw;
		flex: unset;
		margin: 0 calc(var(--site-padding) * -1) 0 calc(var(--site-padding) * -1);
	}
	.hands-free .img::after {
		width: 100%;
	}
	.hands-free .txt {
		flex: unset;
		padding: var(--section-pad) 0;
	}
	.hands-free .txt::after {
		width: 100vw;
		inset: 0 calc(var(--site-padding) * -1) 0 calc(var(--site-padding) * -1);
	}
}
.video-cta {
	/* padding: var(--section-pad) 0; */
	/* text-align: center; */
}
.video-cta .headline {
	color: var(--blue-dark);
}

.ptt_form {
    margin: 12px 0 0;
    text-align: center;
  }
  .ptt_form h1{
    font-size: 50px;
    color: #11384e;
    font-weight: 300;

  }
  .ptt_form h2{color: #11384e;}
  .ptt_form p{
    font-size: 16px;
    margin-bottom: 20px;
 } 
  .ptt_form input[type=text] {
    display: block;
    /* font: bold 14px 'jaf-bernina-sans'; */
    padding: 5px;
    margin-bottom: 15px;
    color: #787878;
    color: rgba(120, 120, 120, 0.56);
    width: 95%;
  }
  .ptt_form .submit {
    display: block;
    text-align: center;
    /* font: bold 18px  'jaf-bernina-sans'; */
    margin: 0 auto;
    color: #fff;
    padding: 22px 0;
    margin: 35px 0 20px;
    border: none;
    background: #000;
    width: 100%;
  }
  .ptt_form .submit:hover {
    cursor: pointer;
    background: #fff;
    color: #11384e;
  }
  .ptt_form form {
    padding: 40px 0px 0;
  }
  /* .ptt_form form strong {
    display: block;
    text-align: center;
    font: bold 25px  'jaf-bernina-sans';
    color: #fff;
    margin-bottom: 15px;
  } */
  .ptt_form form .copy {
    text-align: center;
    display: block;
    width: 90%;
    margin: 0 auto 31px;
    font: 14px/22px sans-serif;
    color: #fff;
  }
  .ptt_form form .splash_left {
    float: none;
    padding: 0 1%;
    margin: 0;
  }
  .ptt_form form .splash_right {
    float: none;
    width: 80%;
    padding: 0 1%;
    margin: 0;
  }
  .ptt_form form .submit {
    display: block;
    text-align: center;
    /* font: bold 18px / 24px  'jaf-bernina-sans'; */
    color: #fff;
    text-transform: uppercase;
    padding: 22px 0;
    margin: 16px 0 0;
    border: none;
    background: #000;
    width: 100%;
  }
  .ptt_form form input[type=text] {
    display: block;
    height: 35px;
    /* font: 400 18px 'jaf-bernina-sans'; */
    padding: 8px 5px;
    margin-bottom: 15px;
    color: #11384e;
    color: rgba(120, 120, 120, 0.56);
    width: 47%;
  }
  .field-right{
    float: right;
  }
  .field-left{
    float: left; 
  }
  .ptt_form .ptt_form_wrapper {
    background: url("/Assets/images/lte/form-bg.jpg") #b7b7b7;
    padding: 20px 47px;
    /* position: relative; */
    display: inline-block;
    width:90%;
    margin-bottom: 20px;
	max-width: 960px;
  }
  .ptt_form .ptt_form_wrapper .recaptchatable {
    background: #fff;
    border: none;
  }
  .ptt_form .ptt_form_wrapper .recaptchatable #recaptcha_response_field {
    border-color: #D0D0D0;
  } 
  #form-thank-you{
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding-top: 70px;
  }
  #form-thank-you strong{
    color: #11384e;
  }
  .glyphicon-ok{
    color: #11384e;
    margin: 0px 10px;
  } 
  .g-recaptcha{
    width: 35%;
    display: block;
    margin: 20px auto;
  }
  #legal{
    font-size: 12px;
    text-align: left;
  }

  @media only screen and (max-width: 700px) {
    .g-recaptcha {
        width: 70%;
        margin: 0px auto;
    }
    .ptt_form_wrapper {
        width: 100% !important;
        padding: 10px 10px !important;
    }
    .recaptcha-fixs{
        width: 100%;
    }
    .ptt_form form input[type=text] {width: 100%;}

  }
  .hero2{
	overflow: hidden;
    position: relative;
    background: url(../interoperability/images/hero_is.jpg) center center / cover no-repeat;
    /* border-top: 4px solid var(--red); */
    padding: 100px 0;
  }
  .hero2 h1 {
	width:50%;
	font-size: 2vw;
  }
  .hero2 p {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: var(--blue-light);
	width: 50%;
}
  @media screen and (min-width: 1200px){
.hero2 p {
    font-size: clamp(16px, 1vw, 32px);
    line-height: 1.2em;
}
}