/*
 Proxima Nova Bold
font-family: proxima-nova, sans-serif;
font-weight: 700;
font-style: normal;

Proxima Nova Semibold
font-family: proxima-nova, sans-serif;
font-weight: 600;
font-style: normal;

Proxima Nova Medium
font-family: proxima-nova, sans-serif;
font-weight: 500;
font-style: normal;

Proxima Nova Condensed Bold
font-family: proxima-nova-condensed, sans-serif;
font-weight: 700;
font-style: normal;

Proxima Nova Condensed Bold Italic
font-family: proxima-nova-condensed, sans-serif;
font-weight: 700;
font-style: italic;

Proxima Nova Condensed Regular
font-family: proxima-nova-condensed, sans-serif;
font-weight: 400;
font-style: normal;

Proxima Nova Condensed Italic
font-family: proxima-nova-condensed, sans-serif;
font-weight: 400;
font-style: italic;

Sheila Regular
font-family: sheila, sans-serif;
font-weight: 400;
font-style: normal;

Sheila Bold
font-family: sheila, sans-serif;
font-weight: 700;
font-style: normal;


*/

/*** COLOR DEFINITIONS ***/

:root {
	--blue: rgba(6,110,166,1);
	--xlightgrey: rgba(245,245,245,1);
	--yellow: rgba(253,209,102,1);
	--lightyellow: rgba(253,218,133,1);

	--red: rgba(255,64,32,1);
	--green: rgba(0,168,142,1);
	--white: rgba(255,255,255,1);
	--anthracite: rgba(80,80,80,1);
	
	--normal: 400;
	--medium: 600;
}


*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
} 

html {
	background-color: var(--white);
}

body {
	text-decoration: none;
	-moz-text-size-adjust: auto;
	-webkit-text-size-adjust: auto;
	-ms-text-size-adjust: auto;
	font-size: 24px;
	font-weight: 300;
	color: var(--anthracite);
}

input {
-webkit-appearance: none;
border-radius: 0;
}

input[type="radio"] { width: auto; height: auto; -webkit-appearance: radio;}
input[type="checkbox"] { width: auto; height: auto; -webkit-appearance: checkbox;}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

.transition3 {
-webkit-transition: all .3s;
-moz-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.transition5 {
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
}

h1, h2, h3 {
margin-top: 0px;
margin-bottom: 0px;
}

@keyframes toggle { {}
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.toglayer {
	animation-name: toggle;
	animation-duration: 0.5s;
}

.tlnone { display: none; }

.nospam { display: none !important; }


/*** SECTIONS & CONTAINERS ***/

#content {
padding: 0;
min-height: 1vh;
}

#content.inset {
padding-top: 170px;
}

.container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0;
}


.section {
	width: 100%;
	padding: 50px 30px;
	height: auto;
	display: block;
	position: relative;
}

.section .container {
	width: 100%;
	max-width: 1240px;
	padding: 0px 20px;
}

.section .container.wide { max-width: 1600px; }

.contslim { max-width: 600px !important; }
.contmedium { max-width: 900px !important; }
.contc { text-align: center; }
.contr { text-align: right; }
.contl { text-align: left; }

.flexcontainer, .flexcontsmaller {
display: flex;
}

.flexwrap {
flex-wrap: wrap;
}

.greybg {
background-color: var(--xlightgrey);
}


/*** COLUMNS ***/

.one-half {
width: calc(50% - 40px);
display: inline-block;
position: relative;
z-index: 10;
}

.one-half.slim {
width: calc(50% - 5px);
}


.one-half:first-child {
margin-right: 80px;
}

.one-half.slim:first-child {
margin-right: 10px;
}

.one-half-text, .one-third-text, .one-fourth-text {
display: block;
padding: 20px;
}

.one-half-text.fullwidth, .one-third-text.fullwidth, .one-fourth-text.fullwidth {
padding-left: 0px;
padding-right: 0px;
}

.one-fourth-text { line-height: 120%; }

.one-half-left, .one-half-left2, .one-half-left0, .one-half-center, .one-half-left2x {
display: block;
position: relative;
top: 50%;
transform: translateY(-50%);
}

.one-half-left, .one-half-center, .one-half-left2x {
padding: 20px 50px;
}

.one-half-center2 {
display: block;
position: relative;
padding: 20px 50px;
}

.one-half-left2, .one-half-left0 {
padding: 20px 0px;
}

.one-half-left, .one-half-left2, .one-half-left0, .one-half-left2x { text-align: left; }
.one-half-center, .one-half-center2 { text-align: center; }

.one-third {
width: calc((100% - 160px) / 3 );
display: inline-block;
position: relative;
z-index: 10;
margin-right: 80px;
}

.two-thirds {
width: calc((((100% - 160px) / 3 ) * 2) + 80px);
display: inline-block;
position: relative;
z-index: 10;
margin-right: 80px;
}


.one-third.slim {
width: calc((100% - 20px) / 3 );
margin-right: 10px;
}

.one-third:last-child, .two-thirds:last-child {
margin-right: 0;
}

.one-third.slim:last-child {
margin-right: 0;
}

.one-fourth {
width: calc((100% - 120px) / 4 );
display: inline-block;
position: relative;
z-index: 10;
margin-right: 40px;
}

.one-fourth:last-child {
margin-right: 0;
}

.flexcol {
width: 100%;
display: flex;
}


/*** PADDINGS & MARGINS ***/

.szeropd { padding: 0px 30px; }
.shalfpd { padding: 25px 30px; }
.stoppd { padding: 50px 30px 0px; }
.sbtmpd { padding: 0px 30px 50px; }

.shalfmtop { margin-top: 25px; }
.shalfmbtm { margin-bottom: 25px; }

.ssinglemtop { margin-top: 50px; }
.ssinglembtm { margin-bottom: 50px; }
.ssinglepdtop { padding-top: 50px; }
.ssinglepdbtm { padding-bottom: 50px; }

.sdoublepd { padding: 100px 30px; }
.sdoublepdtop { padding-top: 100px; }
.sdoublepdbtm { padding-bottom: 100px; }
.sdoublemtop { margin-top: 100px; }
.sdoublembtm { margin-bottom: 100px; }

.striplepd { padding: 150px 30px; }
.striplepdbtm { padding-bottom: 150px; }
.striplemtop { margin-top: 150px; }
.striplembtm { margin-bottom: 150px; }

.sfullwidth { padding-left: 0 !important; padding-right: 0 !important; }

.vmargintop {
display: block;
width: 100%;
margin-top: 28px;
}


/*** HEADER ***/

.header {
font-style: normal;
display: block;
letter-spacing: 1px;
font-family: 'sheila', Arial, Helvetica, sans-serif;
font-weight: 700;
font-size: 60px;
}

.header2, .header2b {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.header2 {
    margin-bottom: 16px;
}
.header2b {
	margin-bottom: 32px;
}

.header3 {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
}

.subheader {
font-family: 'proxima-nova';
font-weight: 500;
font-size: 24px;
}


/*** TEXT ELEMENTS ***/

.uppercase {
text-transform: uppercase;
}

.white {
color: var(--white) !important;
}

.blue {
color: var(--blue) !important;
}

.green {
color: var(--green) !important;
}

.red {
color: var(--red) !important;
}

.yellow {
color: var(--yellow) !important;
}

.normal {
font-weight: var(--normal);
}

.medium {
font-weight: var(--medium);
}

.large {
font-size: 28px;
}

a.link {
color: var(--blue);
text-decoration: none;
}

a.link:hover {
color: var(--yellow);
}

a.linkw {
display: inline-block;
color: var(--white);
text-decoration: none;
}

a.linkw:hover {
color: var(--yellow);
}

.small { font-size: 20px; }
.xsmall { font-size: 18px; }

/*** VARIOUS ***/

.img-block {
display: block;
width: 100%;
}

.wrap-right {
display: block;
width: 100%;
text-align: right;
}


/*** RESPONSIVE ***/

@media only screen and (max-width: 1740px) {
	/* SECTIONS & CONTAINERS */
		.section .container.wide { max-width: calc(100% - 40px); }
}


@media only screen and (max-width: 1600px) {
	/* SECTIONS & CONTAINERS */
		#content.inset { padding-top: 160px; }
		.section .container.wide { max-width: calc(100% - 20px); }
	/* COLUMNS */
		.one-half { width: calc(50% - 30px); }
		.one-half:first-child { margin-right: 60px; }
		.one-third { width: calc((100% - 120px) / 3 ); margin-right: 60px; }
		.two-thirds { width: calc((((100% - 120px) / 3) * 2) + 60px ); margin-right: 60px; }
		.one-fourth { width: calc((100% - 105px) / 4 ); margin-right: 35px; }
}


@media only screen and (max-width: 1440px) {
	/* SECTIONS & CONTAINERS */
		#content.inset { padding-top: 150px; }
}


@media only screen and (max-width: 1240px) {
	/* GENERAL DEFINITIONS */
		body { font-size: 22px; }
	/* SECTIONS & CONTAINERS */
		#content.inset { padding-top: 140px; }
		.section .container.wide { max-width: 100%; }
	/* COLUMNS */
		.one-half { width: calc(50% - 20px); }
		.one-half:first-child { margin-right: 40px; }
		.one-third { width: calc((100% - 80px) / 3 ); margin-right: 40px; }
		.two-thirds { width: calc((((100% - 80px) / 3 ) * 2) + 40px); margin-right: 40px; }
		.one-fourth { width: calc((100% - 90px) / 4 ); margin-right: 30px; }
	/* HEADER */
		.header { font-size: 54px; }
		.header2, .header2b { font-size: 32px; }
		.header2 { margin-bottom: 14px; }
		.header2b { margin-bottom: 28px; }
		.header3 { font-size: 26px; }
		.subheader { font-size: 24px; }
}


@media only screen and (max-width: 1080px) {
	/* SECTIONS & CONTAINERS */
		#content.inset { padding-top: 120px; }
		.section { padding: 40px 20px; }	
		.container { padding: 0; }
	/* COLUMNS */
		.one-half { width: calc(50% - 15px); }
		.one-half:first-child { margin-right: 30px; }
		.one-third { width: calc((100% - 60px) / 3 ); margin-right: 30px; }
		.two-thirds { width: calc((((100% - 60px) / 3 ) * 2) + 30px); margin-right: 30px; }
		.one-third.ot2col-lg, .one-third.ot2col-lg:last-child { width: calc(50% - 15px); }
		.one-third.slim.ot2col-lg, .one-third.slim.ot2col-lg:last-child { width: calc(50% - 5px); }
		.one-third.ot2col-lg { margin-right: 30px; }
		.one-third.slim.ot2col-lg { margin-right: 10px; }
		.one-third.ot2col-lg:last-child, .one-third.slim.ot2col-lg:last-child { margin-right: 0; }
		.one-fourth { width: calc((100% - 75px) / 4 ); margin-right: 25px; }
		.flexwrap .one-fourth { width: calc((100% - 25px) / 2 ); margin-right: 25px; margin-bottom: 25px; }
		.flexwrap .one-fourth:nth-child(2n+2) { margin-right: 0px; }
	/* PADDINGS & MARGINS */
		.szeropd { padding: 0px 20px; }
		.shalfpd { padding: 20px 20px; }
		.shalfmtop { margin-top: 20px; }
		.shalfmbtm { margin-bottom: 20px; }
		.ssinglemtop { margin-top: 40px; }
		.ssinglembtm { margin-bottom: 40px; }
		.ssinglepdtop { padding-top: 40px; }
		.ssinglepdbtm { padding-bottom: 40px; }
		.sdoublepd { padding: 80px 20px; }
		.sdoublepdtop { padding-top: 80px; }
		.sdoublepdbtm { padding-bottom: 80px; }
		.sdoublemtop { margin-top: 80px; }
		.sdoublembtm { margin-bottom: 80px; }
		.striplepd { padding: 120px 20px; }
		.striplepdbtm { padding-bottom: 120px; }
		.striplemtop { margin-top: 120px; }
		.striplembtm { margin-bottom: 120px; }
}


@media only screen and (max-width: 768px) {
	/* GENERAL DEFINITIONS */
		body { font-size: 20px; }
	/* SECTIONS & CONTAINERS */
		#content.inset { padding-top: 100px; }
		.section { padding: 30px 10px; }
		.section .container { max-width: 100%; }
		.flexcontainer { display: block; }
		.flexreverse { display: flex; flex-direction: column-reverse; }
	/* COLUMNS */
		.one-half, .one-half:first-child { width: 100%; margin: 0; }
		.one-half:first-child { margin-bottom: 30px; }
		.one-half-text, .one-third-text, .one-fourth-text { padding: 16px; }
		.one-half-left, .one-half-center { transform: none; padding: 60px 30px; }
		.one-half-left2, .one-half-left0, .one-half-left2x { transform: none; }
		.one-half-center2, .one-half-left2x { padding: 30px; }
		.one-half-left0 { padding: 0; }
		.one-half.leftn:first-child { padding-bottom: 30px; }
		.one-third, .one-third:last-child, .one-third.slim, .one-third.slim:last-child, .two-thirds, .two-thirds:last-child { width: 100%; margin: 0; margin-bottom: 30px; }
		.flexreverse .one-third:last-child { margin-bottom: 30px; }
		.flexreverse .one-third:first-child { margin-bottom: 0; }
		.one-fourth { width: 100%; margin-bottom: 30px; }
		.one-third:last-child, .one-third.slim:last-child, .one-fourth:last-child { margin-bottom: 0;}
		.flexcontsmaller.flexwrap .one-fourth { width: calc((100% - 20px) / 2 ); margin-right: 20px; margin-bottom: 20px; }
		.flexcontsmaller.flexwrap .one-fourth:nth-child(2n+2) { margin-right: 0px; }
	/* PADDINGS & MARGINS */
		.szeropd { padding: 0px 10px; }
		.shalfpd { padding: 20px 10px; }
		.ssinglepdbtm { padding-bottom: 40px; }
		.sdoublepd { padding: 80px 10px; }
		.sdoublepdtop { padding-top: 80px; }
		.sdoublepdbtm { padding-bottom: 80px; }
		.striplepd { padding: 120px 10px; }
		.ssinglepdtop { padding-top: 40px; }
		.vmargintop { margin-top: 6px; }
		.vmarginbtm { margin-bottom: 6px; }
		.srhalfpdbtm { padding-bottom: 15px; }
	/* HEADER */
		.header { font-size: 48px; }
		.header2, .header2b { font-size: 28px; }
		.header2 { margin-bottom: 12px; }
		.header2b { margin-bottom: 24px; }
		.header3 { font-size: 24px; }
		.subheader { font-size: 22px; }
	/* COLORS & FONT WEIGHTS */
		.large { font-size: 24px; }
		.small { font-size: 18px; }
		.xsmall { font-size: 16px; }
}


@media only screen and (max-width: 640px) {
	/*** SECTIONS & CONTAINERS ***/
		#content { padding-top: 70px; }	
}


@media only screen and (max-width: 480px) {
	/* GENERAL DEFINITIONS */
		body { font-size: 18px; }
	/* SECTIONS & CONTAINERS */
		.section { padding: 30px 0px; }
		.flexcontsmaller { display: block; }
	/* COLUMNS */
		.one-half:first-child { margin-bottom: 20px; }
		.one-half.leftn:first-child { padding-bottom: 30px; }
		.one-half-text, .one-third-text, .one-fourth-text { padding: 12px; }
		.one-half-center2 { padding: 0px 30px; }
		.one-third, .two-thirds { margin-bottom: 20px; }
		.flexreverse .one-third:last-child { margin-bottom: 20px; }
		.flexcontsmaller .one-fourth, .flexcontsmaller.flexwrap .one-fourth { width: 100%; margin-right: 0px; margin-bottom: 20px; }
		.flexcontsmaller .one-fourth:last-child, .flexcontsmaller.flexwrao .one-fourth:last-child { margin-bottom: 0px; }
	/* PADDINGS & MARGINS */
		.szeropd { padding: 0px; }
		.shalfpd { padding: 15px 00px; }
		.shalfmtop { margin-top: 15px; }
		.shalfmbtm { margin-bottom: 15px; }
		.ssinglemtop { margin-top: 30px; }
		.ssinglembtm { margin-bottom: 30px; }
		.ssinglepdtop { padding-top: 30px; }
		.ssinglepdbtm { padding-bottom: 30px; }
		.sdoublepd { padding: 50px 0px; }
		.sdoublepdtop { padding-top: 50px; }
		.sdoublepdbtm { padding-bottom: 50px; }
		.sdoublemtop { margin-top: 50px; }
		.sdoublembtm { margin-bottom: 50px; }
		.striplepd { padding: 80px 0px; }
		.striplepdbtm { padding-bottom: 80px; }
		.striplemtop { margin-top: 80px; }
		.striplembtm { margin-bottom: 80px; }
	/* HEADER */
		.header { font-size: 40px; }
		.header2, .header2b { font-size: 24px; }
		.header2 { margin-bottom: 10px; }
		.header2b { margin-bottom: 20px; }
		.header3 { font-size: 20px; }
		.subheader { font-size: 20px; }
	/* COLORS & FONT WEIGHTS */
		.large { font-size: 22px; }
		.small { font-size: 16px; }
		.xsmall { font-size: 14px; }
}