/*
	Theme Name: JenaValve Custom
	Theme URI: http://html5blank.com
	Description: Starter WordPress Theme
	Version: 1.0

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    CSS CUSTOM PROPERTIES
\*------------------------------------*/

:root {
	--mainBG: #fff;
	--textColor1: #16273B;
	--textColor2: #1f1f1f;
	--lightText: #fff;
	--darkText: #000;
	--linkColor: #1578C5;
	--btnBg: #4169E1;
	--btnColor: #fff;
	--linkHover: #0F52BA;
	--btnHover: linear-gradient(116deg, #0e1c8d 0%, #00c3ff 100%);
	--btnColorHover: #fff;
	--smallintroColor: #1578C5;
	--ffBody: runda, sans-serif;
	--bodyText: 1.4rem;
	--fwBody: 400;
	--fwHeadings: 400;
	--standardPadding: 30px;
	--basicMax: 1520px;
	--basicPadding: 16px;
	--pgMargin: 20px;
}

@media only screen and (min-width: 768px) {

	:root {
		--bodyText: 1.6rem;
		--largerText: clamp(1.6rem, 1.1vw, 2rem);
	}

}

/*-----------------------------------*\
  RESET/BASIC
\*-----------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0; padding:0; border:0; outline:0; 
vertical-align:baseline; background:transparent;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

html {
	font-size:62.5%;
	scroll-behavior: smooth;
}

body {
    font-family: var(--ffBody);
    font-size: var(--bodyText); line-height: 1.6;
    color: var(--textColor2); font-weight: var(--fwBody);
    background: var(--mainBG); min-height: 100vh;
    display: flex; flex-direction: column;
    position: relative; letter-spacing: 0.02em;
}

@media screen and (max-device-width: 480px){
	body{
		-webkit-text-size-adjust: none;
	}
}

.content {
    flex: 1 0 auto;
    overflow: hidden;
}

strong {
	font-weight: 700;
}

img {
    width: 100%; height: auto;
    display: block;
}

.mainarticle img {
	display: inline-block; width: auto;
	max-width: 100%;
}

a {
	color: var(--linkColor);
	transition: all 0.25s linear;
	text-decoration: none;
}

a:hover {
	color: var(--linkHover);
}

video {
	display: block; width: 100%;
}

.video-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; overflow: hidden; 
	border-radius: 10px;
	transform: translate3d(0, 0, 0);
}

.video-container iframe, 
.video-container object, 
.video-container embed, 
.video-container video { 
	position: absolute; top: 0; 
	left: 0; width: 100%; height: 100%; 
}

#bgvideo {
	width: 100vw; height: 100vh;
	object-fit: cover; position: fixed;
	left: 0; top: 0; transform: scale(1.0);
	z-index: -2; will-change: transform;
}

.standard {
	padding: var(--standardPadding) 0;
}

.standard.xtop {
	padding-top: calc(var(--standardPadding) * 2);
}

.standard.xbtm {
	padding-bottom: calc(var(--standardPadding) * 2);
}

.standard.xpad {
	padding: calc(var(--standardPadding) * 2) 0;
}

.basic {
	padding: 0 var(--basicPadding);
	margin: 0 auto; max-width: var(--basicMax);
}

.wide {
	padding: 0 var(--basicPadding);
	margin-bottom: 40px;
}

.ts-contact .wide {
	margin-bottom: 0;
}

.wide-inner {
	max-width: 1820px;
	margin: 0 auto;
	border-radius: 10px;
}

p {
	margin-bottom: var(--pgMargin);
}

h1, h2, h3, h4, h5 {
	line-height: 1.333;
	font-weight: var(--fwHeadings);
	letter-spacing: normal;
}

h1, .h1size {
	font-size: 3.2rem; font-weight: 300;
}

h1.xlarge {
	font-size: 4.8rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

h3 {
	font-size: 2.2rem;
	margin-bottom: 18px;
}

h4 {
	font-size: 2rem;
	margin-bottom: 16px;
}

h5, .smallintro, p.smallintro {
	font-size: 1.1rem; text-transform: uppercase;
	font-weight: 700; margin: 0 0 16px; letter-spacing: 0.2em;
	color: var(--smallintroColor);
}

.sec-intro {
    display: flex; align-items: center;
    margin-bottom: 30px;
}

.sec-intro h2 {
    margin-bottom: 0;
}

.sec-intro .btn-underline {
    margin-left: auto;
}

button, input[type="submit"] {
	font-family: var(--bodyText);
	background: none; border: 0;
    color: inherit; cursor: pointer;
    line-height: normal;
    overflow: visible; padding: 0;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
}

.btn, input[type="submit"].btn, .nav ul li.btn-nav a {
	display: inline-block; line-height: 38px;
    font-size: 1.1rem; text-transform: uppercase;
    border: 1px solid #1578C5; border-radius: 9999em;
    padding: 0 40px; font-weight: 500; color: #16273B;
	transition: all 0.25s linear; position: relative;
}

.btn:before, 
.btn.btn-light:before,
.nav ul li.btn-nav a:before {
	display: block; content: "";
	left: -1px; right: -1px; top: -1px;
	bottom: -1px; border-radius: 9999em;
	background-image: var(--btnHover);
	z-index: -1; position: absolute;
	transition: all 0.3s ease-in-out;
	opacity: 0; transform: scale(0);
}

.btn.btn-light {
	color: #fff; border-color: #fff;
}

.btn:hover,
.btn.btn-light:hover,
.nav ul li.btn-nav a:hover {
	color: var(--btnColorHover);
	border-color: transparent;
}

input[type="submit"].btn:hover {
	color: #fff; background: #1578C5;
}

.btn:hover:before, 
input[type="submit"].btn:hover:before,
.btn.btn-light:hover:before,
.nav ul li.btn-nav a:hover:before {
	opacity: 1;
	transform: scale(1);
}

.btn-underline {
	display: inline-block; font-size: 1.3rem;
	line-height: 1.2; position: relative;
	text-transform: uppercase; font-weight: 500;
	padding-bottom: 4px;
}

.btn-underline:after {
	position: absolute; display: block;
	content: ""; width: 100%; height: 1px;
	background: #1578C5; left: 0; bottom: 0;
	transition: all 0.25s linear;
}

.btn-underline:hover {
	color: #002E64;
}

.btn-underline:hover:after {
	background: #002E64;
	width: 45%;
}

.extbtn-row {
	margin-top: 20px;
}

.extbtn-row a:last-of-type {
	margin: 16px 0 0 0;
}

.btn-ext {
	display: inline-flex; height: 40px;
	align-items: center; justify-content: center;
    border: 1px solid #1578C5; border-radius: 9999em;
    padding: 0 24px; position: relative;
	transition: all 0.25s linear; 
}

.btn-ext:before {
	display: block; content: "";
	left: -1px; right: -1px; top: -1px;
	bottom: -1px; border-radius: 9999em;
	background-image: var(--btnHover);
	z-index: -1; position: absolute;
	transition: all 0.3s ease-in-out;
	opacity: 0; transform: scale(0);
}

.btn-ext:hover:before {
	opacity: 1;
	transform: scale(1);
}

.btn-ext span {
	display: inline-block; font-size: 1.1rem; 
	text-transform: uppercase;
	font-weight: 500; color: #16273B;
	transition: all 0.25s linear;
}

.btn-ext:hover span {
	color: #fff;
}

.exticon {
	display: inline-block; width: 12px;
	margin-left: 8px; transition: all 0.25s linear;
}

.btn-ext:hover .exticon {
	filter: brightness(0) invert(1);
}

.textblock.sec-intro {
	margin-bottom: 40px;
}

.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel button.owl-dot {
    margin: 0 8px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 24px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 5px; height: 5px;
    background: rgba(21, 120, 197, 0.3);
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(21, 120, 197, 1);
}

.fadesec {
	opacity: 0; transform: translateY(100px);
	transition: all 0.5s ease-in-out;
}

.fadetext {
	opacity: 0; transform: translateY(45px);
	transition: all 0.5s ease-in-out;
}

.fadesec.inview, .fadetext.inview {
	opacity: 1; transform: translateY(0);
}

.scaleup {
	transform: scale(0.1);
    transition: transform 0.5s ease-in-out;
}

.scaleup.inview {
    transform: scale(1);
}

.delay {
	transition-delay: 0.4s;
}

sup {
    font-size: 55%; line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.6em;
}

.lgbreak {
	display: none;
}

.pdfpop {
	position: fixed; inset: 0;
	z-index: 9999;
    background: rgba(22, 39, 59, 0.8);
    opacity: 0; visibility: hidden;
    transition: all 0.25s linear;
}

.pdfpop.active {
	opacity: 1; visibility: visible;
}

.pdfpop-inner {
	width: 100%; height: 100%;
	overflow: auto;
}

.pdfpop-doc {
	background: #fff; width: 95%; max-width: 860px;
	margin: 60px auto; position: relative;
	border-radius: 16px;
}

.btn-pdf {
	display: flex; background: #fff;
	border-radius: 50%; width: 30px;
	height: 30px; align-items: center;
	justify-content: center; position: absolute;
	top: -40px;
}

.btn-closepdf {
	right: 0;
}

.btn-dlpdf {
	right: 40px;
}

.btn-pdf img {
	width: 18px;
}

.pdf-disclaimer {
	padding: 20px;
}

@media only screen and (min-width: 768px) {

	.basic, .wide {
		padding: 0 calc(var(--basicPadding) * 1.875);
	}

	.row {
		display: flex;
		justify-content: space-between;
	}

	.vcenter {
		align-items: center;
	}

	.textblock {
		text-align: center; max-width: 960px;
        margin-left: auto; margin-right: auto;
	}

	.textblock.sec-intro {
		margin-bottom: 60px;
	}

	.wide-inner {
		border-radius: 30px;
	}

	h1, .h1size {
		font-size: 3.6rem;
		line-height: 1.2;
	}

	.hero .extbtn-row a:last-of-type {
		margin: 0 0 0 8px;
	}
	
	.hero .btnbreak {
		display: none;
	}
	
	.lgbreak {
		display: block;
	}

	.smbreak {
		display: none;
	}

}

@media only screen and (min-width: 1024px) {

	h1, .h1size {
		font-size: 4.8rem;
	}

	h2 {
		font-size: 3rem;
		line-height: 1.28;
		margin-bottom: 24px;
	}

	h3 {
		font-size: 2.4rem;
		line-height: 1.333;
	}

	h4 {
		font-size: 2.2rem;
		line-height: 1.28;
	}

	h5, .smallintro, p.smallintro {
		font-size: 1.3rem; margin: 0 0 20px;
	}

	.sec-intro {
        margin-bottom: 50px;
    }

	.basic, .wide {
		padding: 0 calc(var(--basicPadding) * 2.5);
	}

	.standard {
		padding: calc(var(--standardPadding) * 2) 0;
	}

	.standard.xtop {
		padding-top: calc(var(--standardPadding) * 3);
	}

	.standard.xbtm {
		padding-bottom: calc(var(--standardPadding) * 3);
	}

	.standard.xpad {
		padding: calc(var(--standardPadding) * 3) 0;
	}

	.wide {
		margin-bottom: 60px;
	}

	.btn, input[type="submit"].btn, .nav ul li.btn-nav a {
		line-height: 50px; font-size: 1.3rem;
		padding: 0 52px;
	}

	.btn-underline {
		font-size: 1.6rem;
		padding-bottom: 6px;
	}

	.owl-theme .owl-nav.disabled + .owl-dots {
		margin-top: 48px;
	}
	
	.extbtn-row {
		margin-top: 30px;
	}
	
	.hero .extbtn-row a:last-of-type {
		margin: 0 0 0 12px;
	}
	
	.btn-ext {
		height: 52px;
	    padding: 0 36px;
	}

	.btn-ext span {
		font-size: 1.3rem; 
	}

	.pdfpop-doc {
		margin: 96px auto 30px;
	}

	.btn-pdf {
		width: 48px; height: 48px;
		top: 0;
	}

	.btn-closepdf {
		right: -58px;
	}

	.btn-dlpdf {
		right: -58px; top: 64px;
	}

	.btn-pdf img {
		width: 24px;
	}

	.pdf-disclaimer {
		padding: 30px;
	}

}

@media only screen and (min-width: 1280px) {

	.standard {
		padding: calc(var(--standardPadding) * 3) 0;
	}

	.standard.xtop {
		padding-top: calc(var(--standardPadding) * 4);
	}

	.standard.xbtm {
		padding-bottom: calc(var(--standardPadding) * 4);
	}

	.standard.xpad {
		padding: calc(var(--standardPadding) * 4) 0;
	}

	.textblock.sec-intro {
		margin-bottom: 96px;
	}

	.wide {
		margin-bottom: 80px;
	}
	
	.sci-inner .extbtn-row a:last-of-type {
		margin: 0 0 0 12px;
	}
	
	.sci-inner .btnbreak {
		display: none;
	}

}

@media only screen and (min-width: 1440px) {

	h1, .h1size {
		font-size: 6rem;
	}

	h2 {
		font-size: 3.5rem;
		margin-bottom: 30px;
	}

	h3 {
		font-size: 3rem;
	}

	h4 {
		font-size: 2.5rem;
	}

	.owl-theme .owl-nav.disabled + .owl-dots {
		margin-top: 96px;
	}
	
	.extbtn-row {
		margin-top: 40px;
	}

	.pdfpop-doc {
		margin: 156px auto 30px;
		max-width: 1080px;
	}

	.pdf-disclaimer {
		padding: 40px;
	}

}

/*-----------------------------------*\
  HERO
\*-----------------------------------*/

.hero {
	position: relative;
}

#homehero {
	padding: 180px 0 40px;
	text-align: center;
}

#herocontact {
	padding: 180px 0 60px;
}

#abouthero {
	padding: 172px 0 80px;
	background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.73) 54.56%, rgba(255, 255, 255, 0) 100%);
}

.hero h1 {
	opacity: 0; transform: translateY(30px);
	transition: all 0.5s ease-in-out;
}

.hero p, .hero h5 {
	opacity: 0; transform: translateY(30px);
	transition: all 0.7s ease-in-out 0.4s;
}

.hero.inview h1, .hero.inview p, .hero.inview h5 {
	opacity: 1; transform: translateY(0);
}

.hero p {
	margin: 20px 0 0;
}

#herobg {
	position: relative;
	box-shadow: 0 3px 36px -3px rgba(22, 77, 160, 0.15);
	margin-bottom: 60px;
}

body.patients #herobg {
	margin-bottom: 0;
}

.herobg-inner {
	position: absolute; left: 0;
	right: 0; bottom: 16vw;
	z-index: 2;
}

.hero h5 {
	margin-bottom: 10px;
	letter-spacing: 0.3em;
}

.herobg-inner h1 br, 
#abouthero h1 br,
#tshero h1 br {
	display: none;
}

#tshero {
	text-align: center; padding: 172px 0 30px;
	background: linear-gradient(rgba(255, 255, 255, 0.73) 0%, rgba(255, 255, 255, 0.48) 54.56%, rgba(255, 255, 255, 0) 100%);
}

.tsheroimg {
	width: 260px; margin: 30px auto 0;
}

.careers .herobg-inner .btn:last-of-type {
	margin: 10px 0 0;
}

@media only screen and (min-width: 768px) {

	#herocontact {
		padding: 220px 0 72px;
	}

	#homehero, #abouthero {
		padding: 220px 0 100px;
	}

	.herobg-inner {
		bottom: 5vw;
	}

	.herobg-inner h1 br, 
	#abouthero h1 br,
	#tshero h1 br {
		display: block;
	}
	
	.careers .herobg-inner .btn:last-of-type {
		margin: 0 0 0 12px;
	}

}

@media only screen and (min-width: 1024px) {

	#homehero {
		padding: 290px 0 220px;
	}

	#herocontact {
		padding: 290px 0 100px;
	}

	#abouthero {
		padding: 390px 0 120px;
	}

	.hero p {
		font-size: 1.8rem;
	}

	#herobg {
		margin-bottom: 80px;
	}

	#tshero {
		padding: 220px 0 60px;
	}

	.tsheroimg {
		width: 420px; margin: 60px auto 0;
	}

}

@media only screen and (min-width: 1280px) {

	#herocontact p {
		font-size: 2rem;
	}

	.herobg-inner {
		bottom: 7.5vw;
	}

	#abouthero {
		padding: 420px 0 200px;
	}

	#tshero {
		padding: 280px 0 96px;
	}

	.tsheroimg {
		width: 585px; margin: 80px auto 0;
	}
	
	.careers .herobg-inner .btn:last-of-type {
		margin: 0 0 0 16px;
	}

}

@media only screen and (min-width: 1440px) {

	#homehero {
		padding: 330px 0 270px;
	}

	.hero p {
		font-size: 2rem;
		margin: 30px 0 0;
	}

	#herobg {
		margin-bottom: 130px;
	}

	.herobg-inner {
		bottom: 10vw;
	}

	.hero h5 {
		margin-bottom: 16px;
	}

	.herobg-inner h1 {
		font-size: clamp(4.8rem, 3.125vw, 6rem);
	}

}

/*-----------------------------------*\
  INVESTOR LOGOS
\*-----------------------------------*/

#global {
	margin-bottom: 60px;
}

.gi-logos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
}

a.logobox {
	display: block; position: relative;
	padding-bottom: 100%; border-radius: 10px;
	background: rgba(162, 162, 162, 0.2);
	margin-bottom: 10px;
}

a.logobox:hover {
	background: rgba(162, 162, 162, 0.08);
}

.lb-inner {
	position: absolute; left: 0; right: 0;
	top: 0; bottom: 0; display: flex;
	align-items: center; justify-content: center;
}

.gi-logo {
	width: 55%; filter: grayscale(100%);
	transition: all 0.25s ease-in-out;
}

a.logobox:hover .gi-logo {
	filter: grayscale(0%);
	transform: scale(1.267);
}

@media only screen and (min-width: 768px) {

	.gi-logos {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media only screen and (min-width: 1024px) {

	#global {
		margin-bottom: 96px;
	}

	.gi-logos {
		grid-template-columns: repeat(5, 1fr);
	}

}

@media only screen and (min-width: 1280px) {

	#global {
		margin-bottom: 130px;
	}

	.gi-logos {
	    grid-column-gap: 20px;
	}

	a.logobox {
		border-radius: 30px;
		margin-bottom: 20px;
	}

}

/*------------------------------------*\
    CARDS
\*------------------------------------*/

#latest {
    margin-bottom: 48px;
}

.latest-wrap, .cardswrap {
    margin: 0 -16px; overflow-x: scroll;
    padding: 0 0 36px 16px; 
    -webkit-overflow-scrolling: touch;
}

.latest-row, .cardsrow {
    display: grid; width: 948px; padding-right: 16px;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
}

.card {
    background: #fff; border-radius: 10px;
    box-shadow: 0 3px 30px rgba(22, 77, 160, 0.15);
}

.card-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden; position: relative;
    will-change: transform;
}

.card-cat {
    font-size: 1.1rem; letter-spacing: 0.3em;
    line-height: 2.18; background: #16273B;
    border-radius: 4px; padding: 0 10px;
    position: absolute; top: 18px; right: 20px;
    text-transform: uppercase; color: #fff;
    z-index: 2;
}

.card-content {
    padding: 30px 20px; 
}

.card-date {
    font-size: 1.1rem; text-transform: uppercase;
    line-height: 1.1; font-weight: 500; color: #1578C5;
    letter-spacing: 0.02em; margin-bottom: 18px;
}

.card-title {
    margin-bottom: 24px;
    font-size: 1.6rem;
}

.card h3 {
    color: #002E64;
}

@media only screen and (min-width: 768px) {

    #latest {
        margin-bottom: 72px;
    }

    .latest-wrap, .cardswrap {
        margin: 0; padding: 0;
        overflow: visible;
    }

    .latest-row, .cardsrow {
        width: 100%;
        grid-column-gap: 10px;
        padding: 0;
    }

    .card-cat {
        top: 8px; right: 8px;
    }

}

@media only screen and (min-width: 1024px) {

    #latest {
        margin-bottom: 96px;
    }

    .latest-row, .cardsrow {
        grid-column-gap: 20px;
    }

    .card-cat {
        font-size: 1.3rem;
        line-height: 2.07; padding: 0 12px;
        position: absolute; top: 15px; right: 15px;
    }

    .card-date {
        font-size: 1.3rem; 
        margin-bottom: 20px;
    }

    .card-title {
        margin-bottom: 20px;
        font-size: 2rem;
        line-height: 1.33;
    }

}

@media only screen and (min-width: 1280px) {

    #latest {
        margin-bottom: 130px;
    }

    .card-content {
        padding: 40px 52px 48px 40px;
    }

    .card-title {
        font-size: 2.4rem; 
    }

    .card-img img {
    	transition: all 0.25s ease-in-out;
    }

    .card:hover .card-img img {
    	transform: scale(1.1);
    }

}

/*-----------------------------------*\
  TEAM
\*-----------------------------------*/

.teamsec {
	margin-bottom: 60px;
}

.teamrow {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 8px;
}

.person {
	margin-bottom: 20px;
}

.person-info {
	cursor: pointer;
}

.person-imgwrap {
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(22, 77, 160, 0.15);
	margin-bottom: 10px;
}

.pimask {
	border-radius: 10px; overflow: hidden;
	will-change: transform;
}

.person-img {
	transition: transform 0.25s ease-in-out;
}

.person:hover .person-img {
	transform: scale(1.1);
}

.person-about {
	opacity: 0; line-height: 1.2;
}

.person-name {
	font-size: 1.6rem; margin-bottom: 5px;
}

.person-title {
	font-size: 1.3rem;
}

.person-bio {
	position: fixed; top: 0; left: 0;
	right: 0; bottom: 0;
	background: rgba(22, 39, 59, 0.8);
	opacity: 0; visibility: hidden;
	transition: all 0.25s linear;
}

.person-bio.active {
	opacity: 1; visibility: visible;
	z-index: 9999;
}

.pb-inner {
	width: 100%; height: 100%;
	overflow: auto;
}

.pb-content {
	background: #fff; border-radius: 10px;
	box-shadow: 0 10px 20px rgba(22, 77, 160, 0.15);
	width: 90%; max-width: 1440px; padding: 20px 16px;
	margin: 20px auto 0; position: relative;
	transform: translateY(200px);
	transition: all 0.3s linear;
}

.person-bio.active .pb-content {
	transform: translateY(0);
}

.closebio {
	position: absolute; top: 8px; right: 8px;
	width: 32px;
}

.biopic {
	margin-bottom: 20px;
}

.biopic img {
	border-radius: 10px; width: 110px;
	box-shadow: 0 3px 6px rgba(22, 77, 160, 0.15);
}

.bc-about {
	position: absolute; top: 48px;
	left: 140px;
}

.bc-name {
	font-size: 2rem;
	margin-bottom: 5px;
}

.bc-title {
	font-size: 1.1rem; text-transform: uppercase;
	font-weight: 700; letter-spacing: 0.3em;
	color: var(--smallintroColor);
}

@media only screen and (min-width: 768px) {

	.teamrow {
		grid-template-columns: repeat(3, 1fr);
	    grid-column-gap: 16px;
	}

	.person {
		margin-bottom: 30px;
	}

	.person-imgwrap {
		margin-bottom: 16px;
	}

	.person-name {
		font-size: 1.8rem; margin-bottom: 8px;
	}

	.person-title {
		font-size: 1.4rem;
	}

	.pb-content {
		border-radius: 20px;
		padding: 40px 32px 36px;
		margin: 48px auto 0;
	}

	.closebio {
		top: 20px; right: 20px;
		width: 48px;
	}

	.biopic {
		margin-bottom: 30px;
	}

	.biopic img {
		border-radius: 20px; width: 148px;
	}

	.bc-about {
		position: absolute; top: 72px;
		left: 200px;
	}

	.bc-name {
		font-size: 3rem;
		margin-bottom: 10px;
	}

	.bc-title {
		font-size: 1.1rem; text-transform: uppercase;
		font-weight: 700; letter-spacing: 0.3em;
		color: var(--smallintroColor);
	}

}

@media only screen and (min-width: 1024px) {

	.teamsec {
		margin-bottom: 96px;
	}

	.teamsec.boardsec {
		margin-bottom: 128px;
	}

	.teamrow {
		grid-template-columns: repeat(4, 1fr);
	    grid-column-gap: 22px;
	}

	.person {
		margin-bottom: 40px;
	}

	.person-imgwrap {
		margin-bottom: 12px;
	}

	.pb-content {
		display: flex;
		justify-content: space-between;
	}

	.biopic {
		width: 35%; margin: 0;
		padding-top: 4px;
	}

	.biocontent {
		width: 60%;
	}

	.bc-about {
		position: static; 
		margin-bottom: 20px;
	}

	.biopic img {
		width: 100%;
	}

	.bc-name {
		line-height: 1.2;
	}

}

@media only screen and (min-width: 1280px) {

	.teamsec {
		margin-bottom: 130px;
	}

	.teamsec.boardsec {
		margin-bottom: 160px;
	}

	.person-name {
		font-size: 2.4rem;
	}

	.person-title {
		font-size: 1.6rem;
	}

	.pb-content {
		padding: 64px 72px 56px;
		margin: 72px auto 0;
	}

	.closebio {
		top: 30px; right: 30px;
	}

	.bc-about {
		margin-bottom: 24px;
	}

	.bc-name {
		font-size: 3.5rem;
		margin-bottom: 16px;
	}

	.bc-title {
		font-size: 1.3rem;
	}
	
	#leadership .teamrow {
		display: flex; flex-wrap: wrap;
		justify-content: space-between;
		grid-column-gap: 0;
	}

	#leadership .person {
		width: 23.75%;
	}

	#leadership .person.person-5,
	#leadership .person.person-6,
	#leadership .person.person-7,
	#leadership .person.person-8,
	#leadership .person.person-9 {
		width: 18.75%;
	}
	
	#leadership .person.person-5 .person-name,
	#leadership .person.person-6 .person-name,
	#leadership .person.person-7 .person-name,
	#leadership .person.person-8 .person-name,
	#leadership .person.person-9 .person-name {
		font-size: 2rem;
	}

	#leadership .person.person-5 .person-title,
	#leadership .person.person-6 .person-title,
	#leadership .person.person-7 .person-title,
	#leadership .person.person-8 .person-title,
	#leadership .person.person-9 .person-title {
		font-size: 1.4rem;
	}

}

@media only screen and (min-width: 1440px) {

	.pb-content {
		padding: 72px 96px 68px;
		margin: 124px auto 0;
	}

}

/*-----------------------------------*\
  CARBON
\*-----------------------------------*/

#carbon {
	margin-bottom: 60px;
}

#carbon h2 {
	margin-bottom: 12px;
}

#carbon br {
	display: none;
}

#carbon p {
	margin-bottom: 30px;
}

#carbon p:last-of-type {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {

	#carbon {
		text-align: center;
		margin-bottom: 96px;
	}

	#carbon br {
		display: block;
	}

	#carbon h2 {
		font-size: 3.6rem;
		margin-bottom: 16px;
	}

}

@media only screen and (min-width: 1024px) {

	#carbon {
		margin-bottom: 130px;
	}

}

@media only screen and (min-width: 1280px) {

	#carbon {
		margin-bottom: 200px;
	}

	#carbon h2 {
		font-size: 4.4rem;
		margin-bottom: 20px;
	}

	#carbon p {
		margin-bottom: 44px;
	}

}

/*-----------------------------------*\
    TIMELINE
\*-----------------------------------*/

.darkbg {
	color: #fff;
	background: #002E64;
}

.outertime {
    position: relative;
}

#timeline {
    position: relative;
    padding-bottom: 100px;
    overflow-y: scroll;
}

#timeline p {
	margin-bottom: 0;
}

#timeline .smallintro {
	color: #2CC7F5;
}

#timeline h3 {
	margin-bottom: 0;
}

#timeline h3 br {
	display: none;
}

.timeline-mobintro {
    position: absolute; top: 72px;
    left: 24px; z-index: 2;
}

.years {
    display: inline-flex; flex-wrap: nowrap;
    height: 600px; position: relative;
    min-width: 100%; align-items: stretch; 
    border-bottom: 1px solid rgba(21, 120, 197, 0.5);
    padding: 0 30px; justify-content: center;
}

.timeline-intro {
    display: none;
}

.year {
    width: 90px;
    padding: 20px 20px 68px; height: 100%;
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
    border-left: 1px solid rgba(248, 110, 48, 0.25);
    cursor: pointer; transition: all 0.25s linear;
}

.year:after {
    content: ""; display: block;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: #2CC7F5;
    position: absolute; left: -8px;
    bottom: -8px;
    transition: all 0.25s linear;
}

.year.active {
    width: 315px; 
    border-left: 1px solid rgba(21, 120, 197, 0.5);
}

.year.active:after {
	/*background: #F86E30;*/
}

.yrdisplay {
    color: rgba(179, 212, 237, 0.5);
    position: absolute; left: -20px;
    bottom: -45px;
    transition: all 0.25s linear;
}

.year.active .yrdisplay {
    color: rgba(179, 212, 237, 1);
}

.eventlist {
    list-style: none;
}

.eventlist li {
    visibility: hidden; opacity: 0;
    font-size: 0; margin-bottom: 40px;
    position: relative;
    transition: all 0.25s linear;
}

.eventlist li:before {
    content: ""; display: block;
    width: 10px; height: 10px;
    position: absolute;
    border-radius: 50%; top: 4px;
    left: -25px; background: #2CC7F5;
}

.eventlist li:last-child {
    margin-bottom: 0;
}

.year.active .eventlist li {
    visibility: visible; opacity: 1;
    font-size: 1.6rem;
}

#map {
	text-align: center;
	padding: 30px 0;
}

#map h1 {
	margin-bottom: 20px;
}

#about-careers {
	padding: 60px 0;
	text-align: center;
}

.ac-inner {
	padding: 48px 20px;
	border-radius: 10px;
}

.ac-inner h2 br {
	display: none;
}

@media only screen and (min-width: 768px) {

	#timeline h3 br {
		display: block;
	}

    .years {
        padding: 0 40px;
        height: 720px;
    }

    .timeline-mobintro {
        left: 60px;
    }

    .year {
        padding: 20px 20px 96px;
    }

    .eventlist li {
        margin-bottom: 60px;
    }

    #map h1 br {
    	display: none;
    }

    .ac-inner {
		padding: 64px 20px;
		border-radius: 30px;
	}

    .ac-inner h2 br {
		display: block;
	}

}

@media only screen and (min-width: 1024px) {

	#about-careers {
		padding: 96px 0;
		text-align: center;
	}

	.ac-inner {
		padding: 96px 20px;
	}

}

@media only screen and (min-width: 1280px) {

    #timeline {
        padding-bottom: 140px;
    }

    .timeline-mobintro {
        display: none;
    }

    .timeline-intro {
        display: block; z-index: 5;
        position: absolute; top: 140px;
        left: 0; right: 0; padding: 0 60px;
    }

    .ti-inner {
        max-width: 1440px;
        margin: 0 auto;
    }

    .years {
        padding: 0 60px; height: 876px;
    }

    .year {
        padding: 30px 30px 130px;
    }

    .year.active {
        width: 446px;
    }

    .year.active:after {
    	transform: scale(2);
    }

    .eventlist li:before {
        top: 8px; left: -35px;
    }

    .year.active .eventlist li {
    	font-size: 1.8rem;
    }

    .yrdisplay {
        bottom: -55px;
    }

    .year.active .yrdisplay {
        transform: scale(1.5);
    }

    #map {
		padding: 96px 0 30px;
	}

	#map h1 {
		margin-bottom: 60px;
	}

	#about-careers {
		padding: 130px 0;
		text-align: center;
	}

	.ac-inner {
		padding: 187px 20px;
	}

}

/*-----------------------------------*\
  PATIENTS
\*-----------------------------------*/

body.patients h2.h1size {
	text-align: center;
	margin-bottom: 30px;
}

#ar-intro .sci-inner p:first-of-type {
	font-size: 1.8rem;
}

#tavr {
	padding-top: 60px;
}

#treatment h2 br {
	display: none;
}

.solidbg {
	background: #fff;
	padding: 60px 0;
}

p.footnote {
	font-size: 1.2rem; padding-top: 16px;
}

@media only screen and (min-width: 768px) {

	body.patients h2.h1size {
		margin-bottom: 60px;
	}

	#ar-intro .sci-inner p:first-of-type {
		font-size: 2rem;
	}

	#treatment h2 br {
		display: block;
	}

	p.footnote {
		font-size: 1.4rem; padding-top: 30px;
	}

}

@media only screen and (min-width: 1024px) {

	.solidbg {
		padding: 96px 0;
	}

	#tavr {
		padding-top: 96px;
	}

}

@media only screen and (min-width: 1440px) {

	body.patients h2.h1size {
		margin-bottom: 80px;
	}

	body.patients #tavr h2.h1size {
		max-width: 800px; margin: 0 auto 130px;
	}

	#ar-intro .sci-inner p:first-of-type {
		font-size: 2.4rem;
	}

	#tavr {
		padding-top: 200px;
	}

	.solidbg {
		padding: 130px 0;
	}

}

/*-----------------------------------*\
  EVENTS CAROUSEL
\*-----------------------------------*/

#events {
	margin-bottom: 72px;
}

.events-wrap {
	border-radius: 10px;
	box-shadow: 0 3px 30px rgba(22, 77, 160, 0.15);
}

#eventslides {
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.event-info {
	padding: 36px 20px;
}

.slidecounter {
	color: #1578C5; font-weight: 500;
	font-size: 1.3rem; margin-bottom: 30px;
	opacity:0;
}

.es-ctrl {
	width: 26px;
}

.es-ctrl:disabled {
	opacity: 0.34; cursor: not-allowed;
}

.slidenumber {
	display: inline-block;
	margin: 0 12px; line-height: 17px;
	vertical-align: top;
}

@media only screen and (min-width: 768px) {

	#events {
		margin-bottom: 96px;
	}

	.event-item {
		display: flex;
	}

	.event-img {
		width: 54%;
	}

	.event-info {
		width: 46%; font-size: 1.4rem;
		padding: 30px 12px 0 20px;
	}

	.slidecounter {
		margin-bottom: 20px;
	}

	.ei-inner h3, .event-desc p {
		margin-bottom: 12px;
	}	

}

@media only screen and (min-width: 1024px) {

	#events {
		margin-bottom: 120px;
	}

	.event-info {
		padding: 48px 20px 0 30px;
	}

	.slidecounter {
		margin-bottom: 30px;
	}

	.ei-inner h3, .event-desc p {
		margin-bottom: 20px;
	}

}

@media only screen and (min-width: 1280px) {

	#events {
		margin-bottom: 200px;
	}

	.event-info {
		font-size: 1.6rem;
		padding: 60px 60px 0 80px;
	}

	.slidecounter {
		margin-bottom: 96px;
	}

	.ei-inner h3, .event-desc p {
		margin-bottom: 30px;
	}

}

/*-----------------------------------*\
  BACKGROUNDS
\*-----------------------------------*/

.overlay {
	position: absolute; top: 0; left: 0;
	right: 0; bottom: 0; content: ""; z-index: -1;
	background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.73) 54.56%, rgba(255, 255, 255, 0) 100%);
}

.glass {
	background-color: rgba(22, 39, 59, 0.04);
}

/*------------------------------------*\
    SPLIT ROWS
\*------------------------------------*/

.splitrow {
    margin-bottom: 60px;
}

.splitimg {
    margin-bottom: 30px;
}

.splitimg img {
    border-radius: 10px;
}

#tavr .splitimg {
    background-color: rgba(22, 39, 59, 0.04);
    border-radius: 10px;
}

.sci-inner {
    margin-bottom: 30px;
}

.sci-inner p:last-of-type {
    margin-bottom: 0;
}

.iconwrap {
    text-align: center;
    margin-bottom: 20px;
}

.sci-icon {
    width: 72px; display: inline-block;
    margin-bottom: 4px;
}

.sci-label {
    font-weight: 700; text-transform: uppercase;
    font-size: 1.1rem; line-height: 1.2;
    letter-spacing: 0.3em; color: #1578C5;
}

#portal .sci-inner h2,
#portal .sci-inner p:first-of-type {
    max-width: 570px;
}

@media only screen and (min-width: 768px) {

	.splitimg {
        margin-bottom: 0; width: 48%;
    }

    .splitcontent {
        width: 48%;
    }

    .reverse .splitimg {
        order: 2;
    }

    .reverse .splitcontent {
        order: 1;
    }

    .sci-icons {
        display: flex; max-width: 616px;
        justify-content: space-between;
    }   

    .iconwrap {
        display: inline-block;
        margin-bottom: 0;
    }

    .sci-label {
        font-size: clamp(1rem, 0.677083vw, 1.3rem);
    }

    .sci-icon {
        width: 5.9375vw;
    }

    .sci-inner p {
        max-width: 574px;
    }

}

@media only screen and (min-width: 1024px) {

    .splitrow .row {
        align-items: center;
    }

    .splitrow {
        margin-bottom: 96px;
    }

}

@media only screen and (min-width: 1280px) {

    .splitrow {
        margin-bottom: 130px;
    }

	.splitimg {
        width: 50%;
    }

    .splitcontent {
        width: 44%;
    }

    .sci-inner p {
        margin-bottom: 30px;
    }

    #tavr .splitimg {
        border-radius: 30px;
    }

    #tavr .sci-inner {
        max-width: 530px;
    }

}

@media only screen and (min-width: 1520px) {

    .sci-icon {
        width: 114px;
    }

}

/*------------------------------------*\
    TESTIMONIALS
\*------------------------------------*/

#testimonials {
    text-align: center; 
}

#testimonials .wide-inner {
    padding: 60px 0 20px;
}

#testimonials .item {

}

.item-quote {
    font-size: 1.8rem; 
    margin-bottom: 16px;
}

.item-title {
    margin-bottom: 0px;
    font-size: 1.2rem;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}

.quote-nav {
    display: none;
}

@media only screen and (min-width: 768px) {  

    #testimonials .wide-inner {
        padding: 96px 0 36px;
    }

    .testimonials-inner {
        position: relative; padding: 0 68px;
        max-width: 680px; margin: 0 auto;
    }

    .quote-nav {   
        display: flex; width: 36px;
        height: 36px; border-radius: 50%;
        position: absolute; top: 0;
        border: 1px solid #1578C5;
        align-items: center; justify-content: center;
    }

    .quote-arrow {
        width: 12px;
    }

    .quote-prev {
        left: 0;
    }

    .quote-next {
        right: 0;
    }

    #testimonials.darkbg .quote-arrow {
        filter: invert(1);
    }

    .item-quote {
    	padding: 0 20px;
    }

    .item-title {
        font-size: 1.3rem;
    }

    .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 64px;
    }

}

@media only screen and (min-width: 1024px) {

    #testimonials .wide-inner {
        padding: 148px 0 48px;
    }

    .testimonials-inner {
        padding: 0 60px;
        max-width: 1440px; 
    }

    .item-quote {
        font-size: 2.2rem;
        margin: 0 auto 20px;
        max-width: 920px; line-height: 1.5;
    }

    .item-title {
        font-size: 1.4rem;
    }

    .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 96px;
    }

}

@media only screen and (min-width: 1440px) {

    #testimonials.wide {
        margin-bottom: 130px;
    }

    #testimonials .wide-inner {
        padding: 196px 0 60px;
    }

    .quote-nav {   
        width: 59px; height: 59px;
    }

    .quote-arrow {
        width: 24px;
    }

    .item-quote {
    	padding: 0;
        font-size: 3.6rem;
        margin: 0 auto 30px;
    }

    .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 120px;
    }

    .quote-nav {   
        top: 48px;
    }

}

/*------------------------------------*\
    INTEGRITY
\*------------------------------------*/

#iehero {
	padding: 132px 0 56px;
	background: linear-gradient(135deg, #f6fbfe 0%, #e7f9fb 100%);
	box-shadow: 0 3px 36px -3px rgba(22, 77, 160, 0.15);
	position: relative; z-index: 2;
}

#iehero h1 br {
	display: none;
}

#ieintro {
	background: #fff;
	padding: 60px 0;
}

.iei-copy p:first-of-type {
	font-size: 1.6rem;
}

.iei-copy p:last-of-type {
	margin-bottom: 0;
}

.iei-copy strong {
	font-weight: 500;
}

.iei-imgwrap {
	display: none;
}

#reporting {
	background: #fff;
	padding: 0 0 40px;
}

.methodrow {
	display: flex;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(21, 120, 197, 0.25);
	margin-bottom: 24px;
}

.methodrow:last-of-type {
	padding-bottom: 0;
	border: 0;
}

.methodlabel {
	flex-basis: 104px; flex-grow: 0;
	flex-shrink: 0; font-weight: 500;
}

.ienumber {
	margin-bottom: 5px;
}

.ienumber br {
	display: none;
}

.ienumber strong {
	font-weight: 500;
}

.ienumber:first-of-type {
	margin-top: 12px;
}

.ienumber:last-of-type {
	margin-bottom: 0;
}

.qrcode {
	width: 135px;
	margin-left: -13px;
}

.dt-outro {
	display: none;
}

@media only screen and (min-width: 768px) {

	#iehero {
		padding: 148px 0 64px;
	}

	#iehero h1 br {
		display: block;
	}

	.iei-copy p:first-of-type {
		font-size: 1.8rem;
	}

	.methodrow {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.methodlabel {
		flex-basis: 140px;
	}

}

@media only screen and (min-width: 1024px) {

	#iehero {
		padding: 164px 0 72px;
	}

	#ieintro {
		padding: 72px 0;
		margin-bottom: 80px;
	}

	.ierow {
		display: flex;
		justify-content: space-between;
	}

	.iei-copy {
		width: 45%;
	}

	.iei-copy p {
		max-width: 620px;
	}

	.iei-imgwrap {
		display: block;
		width: 49%;
	}

	.iei-img {
		border-radius: 10px;
	}

	#reporting {
		background: none;
	}

	/*#reporting h2 {
		text-align: center;
		margin-bottom: 48px;
	}*/

	.reporting-row {
		display: flex;
		justify-content: space-between;
	}

	.reporting-copy {
		width: 45%;
	}

	.reach {
		background-color: rgba(22, 39, 59, 0.04);
		width: 48%; padding: 36px 30px;
		border-radius: 10px;
	}

	.methodrow {
		max-width: 520px;
	}

	.methodrow:last-of-type {
		margin-bottom: 0;
	}

	.dt-outro {
		display: block;
	}

	.mob-outro {
		display: none;
	}

	#reporting {
		margin-bottom: 70px;
	}

	.reporting-copy p {
		max-width: 620px;
	}

	.reporting-copy p:last-of-type {
		margin-bottom: 0;
	}

	.methodlabel {
		flex-basis: 130px;
	}

	.ienumber br {
		display: block;
	}

	.qrcode {
		margin-left: 0;
		margin-top: 20px;
	}

}

@media only screen and (min-width: 1280px) {

	#iehero {
		padding: 196px 0 96px;
	}

	#ieintro {
		margin-bottom: 96px;
		padding: 96px 0;
	}

	.ierow {
		align-items: center;
	}

	.iei-imgwrap {
		width: 46%;
	}

	/*#reporting h2 {
		margin-bottom: 64px;
	}*/

	.reporting-row {
		align-items: center;
	}

	.reach {
		padding: 48px 40px;
		border-radius: 30px;
	}

}

@media only screen and (min-width: 1440px) {

	#iehero {
		padding: 220px 0 110px;
	}

	#ieintro {
		margin-bottom: 130px;
		padding: 120px 0;
	}

	.reach {
		padding: 56px 48px;
	}

}

/*------------------------------------*\
    FOOTNOTES
\*------------------------------------*/

#footnotes {
	font-size: 1.2rem;
	margin-top: -20px;
}

body.trilogy-system #footnotes {
	background: #fff;
	margin-bottom: 0;
}

#footnotes p {
	position: relative;
	margin-bottom: 5px;
}

#error404 {
	margin: 120px 0 60px;
}

#error404 .basic {
	display: flex; height: 220px;
	align-items: center;
	justify-content: center;
}

.inner404 {
	text-align: center;
}

#error404 h1 {
	margin-bottom: 20px;
}

#footnotes p:last-of-type {
	margin-bottom: 0;
}

body.error404 .fm-row {
	padding-top: 30px;
	border-top: 1px solid rgba(21, 120, 197, 0.25);
}

@media only screen and (min-width: 768px) {

	#error404 {
		margin: 240px 0 96px;
	}

	#error404 .basic {
		height: auto;
	}

	#error404 h1 {
		font-size: 4rem;
		margin-bottom: 30px;
	}

	body.error404 .fm-row {
		padding-top: 48px;
	}

}

@media only screen and (min-width: 1024px) {

	#footnotes {
		margin-top: -36px;
	}

	#error404 h1 {
		font-size: 6rem;
		margin-bottom: 30px;
	}

	body.error404 .fm-row {
		padding-top: 64px;
	}

}

@media only screen and (min-width: 1280px) {

	#footnotes {
		font-size: 1.3rem;
		margin-top: -40px;
		margin-bottom: 60px;
	}

	body.trilogy-system #footnotes {
		padding-bottom: 60px;
		margin-top: -56px;
	}

	#footnotes p {
		margin-bottom: 8px;
	}

	#error404 {
		margin: 240px 0 96px;
	}

	#error404 h1 {
		font-size: 7.2rem;
		margin-bottom: 40px;
	}

	body.error404 .fm-row {
		padding-top: 96px;
	}

}

.form_sent_msg {
    display:none;
}

/*-----------------------------------*\
  TABS
\*-----------------------------------*/

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.tabwrap {
	background: #fff; padding: 4px;
	border-radius: 9999em;
	border: 1px solid #1578C5;
}

.tabrow {
    display: flex; height: 40px;
    align-items: center; position: relative;
}

.tabrow:before {
    content: ""; display: block;
    position: absolute; top: 0; left: 0;
    width: 50%; height: 40px;
    border-radius: 9999em;
    background: #1578C5;
    transition: all 0.1s linear;
}

.tabrow.t2active:before {
    transform: translateX(100%);
}

.btn-tab {
    font-size: 1.2rem; display: inline-flex;
    width: 50%; height: 40px; line-height: 1.2;
    color: #1578C5; align-items: center;
    justify-content: center; transition: all 0.1s linear;
    position: relative; z-index: 2;
}

.btn-tab.active {
    color: #fff;
}

@media only screen and (min-width: 1280px) {

	.tabwrap {
		padding: 12px;
	}

	.tabrow {
	    height: 54px;
	}

	.tabrow:before {
	    height: 54px;
	}

	.btn-tab {
	    font-size: 1.8rem; height: 54px;
	}

}

/*-----------------------------------*\
  DATA STUDY
\*-----------------------------------*/

#datastudy {
	margin-bottom: 48px;
}

#datastudy .tabwrap {
	margin: 0 auto 24px;
}

.ds-item {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 500;
}

.ds-label {
	font-size: 1.3rem;
}

.dsl-top {
	font-size: 1.6rem;
	margin-bottom: 6px;
}

.ds-number {
	color: #1578C5; font-size: 7.2rem;
	line-height: 1.1;
	letter-spacing: -0.05em;
}

.ds-number sup {
	position: relative;
	font-size: 0.5em;
	top: -0.725em;
	letter-spacing: normal;
}

@media only screen and (min-width: 768px) {

	#datastudy {
		margin-bottom: 64px;
	}

	#datastudy .tabwrap {
		margin: 0 auto 36px;
		max-width: 524px;
	}

	.ds-row {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
    	grid-column-gap: 10px;
	}

	.ds-label {
		font-size: 1.2rem;
	}

	.dsl-top {
		font-size: 1.4rem;
		margin-bottom: 4px;
	}

}

@media only screen and (min-width: 1024px) {

	#datastudy {
		margin-bottom: 96px;
	}

	#datastudy .tabwrap {
		margin: 0 auto 48px;
	}

	.ds-row {
    	grid-column-gap: 20px;
	}

	.ds-number {
		font-size: 9.6rem;
	}

	.ds-label {
		font-size: 1.2rem;
	}

	.dsl-top {
		font-size: 1.4rem;
		margin-bottom: 4px;
	}

}

@media only screen and (min-width: 1280px) {

	#datastudy {
		margin-bottom: 120px;
	}

	#datastudy .tabwrap {
		margin: 0 auto 56px;
	}

	.ds-number {
		font-size: 12rem;
	}

	.ds-label {
		font-size: 1.3rem;
	}

	.dsl-top {
		font-size: 1.6rem;
		margin-bottom: 6px;
	}

}

@media only screen and (min-width: 1440px) {

	#datastudy {
		margin-bottom: 148px;
	}

	.ds-number {
		font-size: 15rem;
	}

	.ds-label {
		font-size: 1.6rem;
	}

	.dsl-top {
		font-size: 2rem;
		margin-bottom: 8px;
	}

}

/*-----------------------------------*\
  PATENTS PAGE
\*-----------------------------------*/

body.patents .footer-main {
	display: none;
}

#patentshero {
	margin-top: 96px;
	padding-bottom: 40px;
}

.patents-notice {
	padding: 12px; color: #fff;
	background: #0987EA; border-radius: 12px;
	margin-bottom: 64px; font-size: 1.2rem;
}

.patents-notice br {
	display: none;
}

#patentlist {
	padding-bottom: 40px;
}

.pl-copy:before {
	content: ""; display: block;
	height: 12px; border-radius: 10px 10px 0 0;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {

	#patentshero {
		padding-bottom: 60px;
	}

	.patents-notice {
		padding: 12px; color: #fff;
		background: #0987EA; border-radius: 16px;
		margin-bottom: 96px; font-size: 1.2rem;
		text-align: center;
	}

}

@media only screen and (min-width: 1024px) {

	#patentshero {
		padding-bottom: 60px;
	}

	.patents-notice {
		border-radius: 16px;
		margin-bottom: 96px;
	}

}

@media only screen and (min-width: 1280px) {

	#patentshero {
		margin-top: 124px;
		padding-bottom: 80px;
	}

	.patents-notice {
		border-radius: 9999em;
		margin-bottom: 124px;
		font-size: 1.4rem;
	}

	.patents-notice br {
		display: block;
	}

	.pl-copy:before {
		margin-bottom: 30px;
	}

}

@media only screen and (min-width: 1440px) {

	.patents-notice {
		font-size: 1.5rem;
		padding: 16px;
	}

	.patents-notice br {
		display: block;
	}

	.pl-copy:before {
		margin-bottom: 30px;
	}

	#patentlist {
		padding-bottom: 60px;
		font-size: 1.8rem;
	}

}

@media only screen and (min-width: 1520px) {

	.patents-notice {
		font-size: 1.6rem;
	}

}