@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,700i');

/* -------------------------------- 

Primary style

-------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *::after, *::before {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
    font-size: 16px;
    line-height: 25px;
    font-family: 'Open Sans', Arial, "sans-serif";
	font-weight: 400;
    background-color: #ffffff;
}
#skiptocontent a {
    padding: 6px;
    position: absolute;
    top: -40px;
    left: 0px;
    color: white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    border-bottom-right-radius: 8px;
    background: #BF1722;
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 500;
}
#skiptocontent a:focus {
    position: absolute;
    left: 0px;
    top: 0px;
    outline: 0;
    -webkit-transition: top .1s ease-in;
    transition: top .1s ease-in;
}

p{margin: 0px 0px 0px 0px;}

strong {
    font-weight: 700;
}
em{
	font-style:italic;
}
sub, sup {
    font-size: 55%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
	font-weight: 400;
}
sup {
    top: -.8em;
}
sub {
    bottom: -.25em;
}

/* unvisited link */
a.textlink:link {
  color: #000000;
}

/* visited link */
a.textlink:visited {
  color: #000000;
}

/* mouse over link */
a.textlink:hover {
  color: #0f6dbe;	
}

/* selected link */
a.textlink:active {
  color: #000000;
}

a.textlinkblue:link {
  color: #0f6dbe;
}

/* visited link */
a.textlinkblue:visited {
  color: #0f6dbe;
}

/* mouse over link */
a.textlinkblue:hover {
  color: #000000;
}

/* selected link */
a.textlinkblue:active {
  color: #0f6dbe;
}

.assistanceContainer{
	width: 100%;	
	border-bottom: 1px solid #000000;
	padding: 7px 0px 7px 0px;
}

.assistance{
	margin: 0 auto;
	text-align: right;
	font-size: 14px; 
	line-height: 14px;
	max-width: 1300px;	
}

header{
	max-width: 100%;
	width: 1300px;
	margin: 0 auto;
	padding: 15px 0px 15px 0px;
	height: 61px;
}

header img{
	display:block;
}

header img.bcbs{
    width: auto;
    height: 34px;
}

header img.wot{
    width: auto;
    height: 30px;
}

.bcbslogo{
	float: left;
}

.wotlogo{
	float:right;
}

nav{
	position: relative;
	top: 0;
	background-color:#0f6dbe;
	height: 50px;
	z-index: 250;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px 15px 10px 10px;
}

a.navlink {
  color: #ffffff;
  font-size: 14px;
	float: right;
	text-decoration: underline;
	cursor: pointer;
}

a.navlink:visited {
  color: #ffffff;
}

a.navlink:hover {
  color: #ffffff;
	text-decoration: none;
}

a.navlink:active {
  color: #ffffff;
}

.loginArrow{
	display: inline-block;
	margin: 6px 0px 0px 8px;
	float: right;
	
}

/*================================================
==================================================
LOG IN FROM
==================================================
=================================================*/

.login-form {
	display: none;
	width: 300px;
	background: #F5F5F5;
	padding: 25px;
	position: absolute;
	right:0;
	top: 50px;
}
form {
	width: 100%;
}
input[type=text],
input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #000000;
}

span.psw {
	float: right;
	padding-top: 16px;
}
.remember {
	display: inline;
	font-size: 14px;
	line-height: 20px;
}
.passEnrolled {
	font-size: 14px;
	line-height: 25px;
	margin: 0;
}
#toggle,
p.mobileLogin {
	display: none;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.open {
  -webkit-animation: slide 1s;
  -moz-animation: slide 1s;
  animation: slide 1s;
  display: block;
}



/*================================================
==================================================
END LOG IN FROM
==================================================
=================================================*/


.headlineSection{
    position: absolute;
    top: 200px;
    z-index: 100;
    left: 50px;
    bottom: 0;
    text-align: left;
	width: 100%;
	max-width: 860px;
	min-height: 300px;
}

.headlineSection h1{
	font-size: 100px;
	line-height: 100px;
	font-weight:300;
	color: #ffffff;
	margin: 0px;
	text-shadow: 2px 2px 4px #000000;
}

.headlineSection h2{
	font-size: 100px;
	line-height: 100px;
	font-weight:400;
	color: #ffffff;
	margin: 0px;
	text-shadow: 2px 2px 4px #000000;
}


.bcg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  width: 100%;
  background-position: center center;
  margin: -50px 0px 0px 0px;
  position: relative;
}

.home {
  background-image: url("../assets/wot-home-screen-hero.jpg");
}

.downArrow{
	position: absolute;
	top: 650px;
	z-index: 500;
	width: 50px;
	left: calc(50% - 25px);
}

/*****Video Section********/

.video-background {
  background: #000;
  position: relative;
  top: -50px; right: 0; bottom: 0; left: 0;
  z-index: -99;
	height: 700px;
	overflow: hidden;
	pointer-events: none;
}

.video-background iframe {
   height: 56.25vw;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    width: 177.77777778vh;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground { width: 300%; left: -100%; }
}

.vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button,.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{
	display: none !important;
}

/*#bgvideo {
    position:relative;
    right: 0;
    width: 100%;
	height: 700px;
    top: -50px;
    object-fit: cover;
}*/

/*******end Video Section********/


section.textContent{
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	top: 25px;
}

.left{
	float: left;
	width: 33.3%;
	padding: 0px 50px 0px 0px;
}
.center{
	float: left;
	width: 33.3%;
	padding: 0px 25px 0px 0px;
}
.right{
	float: left;
	width: 33.3%;
	padding: 0px 0px 0px 25px;
}

h2.subhead{
	font-size: 26px;
	line-height: 26px;
	font-weight:300;
	color: #0f6dbe;
	margin: 0px 0px 10px 0px;
}


section.reward{
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	top: 50px;
	clear: left;
	overflow: hidden;
}


.pointsContainer{
	position: relative;
	width: 11.7%;
	float: left;
	margin-right:.9%;

}

.last{
	margin-right:0% !important;
}
.pointsTop{
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f6dbe+0,005587+100 */
background: #0f6dbe; /* Old browsers */
background: -moz-linear-gradient(left,  #0f6dbe 0%, #005587 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #0f6dbe 0%,#005587 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #0f6dbe 0%,#005587 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f6dbe', endColorstr='#005587',GradientType=1 ); /* IE6-9 */

	position: relative;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 10px 10px 15px 10px;
	text-align: center;
-webkit-box-shadow: 0 12px 25px -15px #333333;
-moz-box-shadow: 0 12px 25px -15px #333333;
box-shadow: 0 12px 25px -15px #333333;
}


.pointsTop h3{
	font-size: 40px;
	line-height: 40px;
	color: #ffffff;
	font-weight: 700;
	margin: 0px 0px 0px 0px;
}

.pointsTop p{
	font-size: 25px;
	line-height: 25px;
	color: #ffffff;
	font-weight: 400;
	margin: 0px 0px 0px 0px;
}

.pointsContent{
	position: relative;
	background-color: #e6e6e6;
	padding: 10px 15px 10px 15px;
	width: 100%;
	text-align: center;
	padding-bottom: 500%;
    margin-bottom: -500%;
}

.pointsContent p{
	font-size: 15px;
	line-height: 23px;
	margin: 0px 0px 10px 0px;
}

section.details{
	position: relative;
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	top: 75px;
	clear: left;
	overflow: hidden;
}

section.details p{
	margin: 0px 0px 10px 0px;
}

.login{
	float: left;
	width: 49%;
	margin: 0px 1% 0px 0px;
	padding: 20px;
	background-color: #f2f2f2;
	padding-bottom: 500%;
    margin-bottom: -500%;
}

.register{
	float: left;
	width: 49%;
	margin: 0px 0px 0px 0px;
	padding: 20px;
	background-color: #f2f2f2;
	padding-bottom: 500%;
    margin-bottom: -500%;
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
	font-weight: bold;
  margin: 8px 0;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px; 
	border-radius: 3px;
	
}

.button1{
	  background-color: #fe6005;
	margin: 10px 0px 20px 0px;
}

.button2{
	  background-color: #005587;
	margin: 10px 0px 20px 0px;
}

.button1:hover, .button2:hover {
  background-color: #0f6dbe;
  color: white;
}

footer{
	width: 100%;
	background-color: #0f6dbe;
	position: relative;
	top: 100px;
	padding: 35px 25px 25px 25px;
}

section.footerContent{
	margin: 0 auto;
	width: 100%;
	max-width: 940px;
    text-align: center;
}

section.footerContent h4{
	font-size: 22px;
	line-height: 25px;
	color: white;
	font-weight: 700;
	margin: 0px 0px 15px 0px;
}

section.footerContent p{
	font-size: 11px;
	line-height: 18px;
	color: white;
	margin: 0px 0px 10px 0px;
}

hr.one{
    border: 0;
    height: 1px;
    background: #ffffff;
	margin: 10px 0px 10px 0px;
}
hr.two{
    border: 0;
    height: 1px;
    background: #ffffff;
	margin: 10px 0px 15px 0px;
}
section.footerContent p.tagline{
font-size: 12px;
  line-height: 19px;
  color: white;
  margin: 0px 0px 10px 0px;
}

footer h4 a:link{
  color: white;
	font-weight: 700;
		text-decoration: none;
}

/* visited link */
footer h4 a:visited {
  color: white;
}


/* unvisited link */
a.footerlink:link {
  color: white;
	font-weight: 700;
}

/* visited link */
a.footerlink:visited {
  color: white;
}

/* mouse over link */
a.footerlink:hover {
  color: white;	
	text-decoration: none;
}

/* selected link */
a.footerlink:active {
  color: white;
}

@media screen and (max-width:1300px){
.assistanceContainer{
	padding: 7px 10px 7px 10px;
}
header{
	padding: 15px 10px 15px 10px;
	}
section.textContent{
	padding: 25px 15px 0px 15px;
	top: 0px;

}
section.reward{
	padding: 0px 10px 0px 10px;
}	
}

@media screen and (max-width:1150px){
.pointsTop h3{
	font-size: 25px;
	line-height: 25px;
}

.pointsTop p{
	font-size: 18px;
	line-height: 18px;
}
	
.pointsContent p{
	font-size: 14px;
	line-height: 22px;
}
	
section.details{
	padding: 0px 10px 0px 10px;
}	

.login{
	width: 49%;
	margin: 0px 1% 0px 0px;
	padding: 20px;
	background-color: #f2f2f2;
	padding-bottom: 500%;
    margin-bottom: -500%;
}

.register{
	float: left;
	width: 49%;
	margin: 0px 0px 0px 0px;
	padding: 20px;
	background-color: #f2f2f2;
	padding-bottom: 500%;
    margin-bottom: -500%;
}	
	
}

@media screen and (max-width:950px){
.headlineSection{
    top: 250px;
    left: 50px;
	max-width: 540px
}

.headlineSection h1{
	font-size: 80px;
	line-height: 80px;
	margin: 0px;
	}

.headlineSection h2{
	font-size: 80px;
	line-height: 80px;
	font-weight:400;
	color: #ffffff;
	margin: 0px;
	text-shadow: 2px 2px 4px #000000;
}

.downArrow{
	position: absolute;
	top: 500px;
	z-index: 500;
	width: 50px;
	left: calc(50% - 25px);
}	

.video-background {
	height: 500px;
}
	
/*	
#bgvideo {
	height: 500px;
}
*/	
section.reward{
	top: 25px;
	overflow: visible;
}
	
.pointsContainer{
	width: 100%;
	float: none;
	margin-right:0%;
	margin-bottom: 10px;
}	
	
.pointsContent{
	position: relative;
	background-color: #e6e6e6;
	padding: 10px 15px 5px 15px !important;
	width: 100%;
	text-align: center;
	padding-bottom: 0;
    margin-bottom: 0;
}

.pointsContent p{
	font-size: 15px;
	line-height: 23px;
	margin: 0px 0px 10px 0px;
}
	
}

@media screen and (max-width:780px){
section.reward{
	padding: 0px 15px 0px 15px;
}		
section.details{
	padding: 0px 15px 0px 15px;
}		
	.left{
	float: left;
	width: 100%;
	padding: 0px 0px 25px 0px;
}
.center{
	float: none;
	width: 100%;
	padding: 0px 0px 25px 0px;
}
.right{
	float: none;
	width: 100%;
	padding: 0px 0px 0px 0px;
}
	
section.details{
	top: 35px;
}

}

@media screen and (max-width:620px){
.downArrow{
	position: absolute;
	top: 650px;
	z-index: 500;
	width: 50px;
	left: calc(50% - 25px);
}

.video-background {
	height: 700px;
}
	/*
	#bgvideo {
	height: 750px;
}	
	*/
	
.headlineSection{
    position: absolute;
    top: 325px;
	max-width: 410px;
	text-align: center;
	left: calc(50% - 205px);
}

.headlineSection h1{
	font-size: 60px;
	line-height: 60px;
}

.headlineSection h2{
	font-size: 60px;
	line-height: 60px;
}
	
.login{
	float: none;
	width: 100%;
	padding-bottom: 0%;
    margin-bottom: 0%;
}

.register{
	float: none;
	width: 100%;
	margin: 10px 0px 0px 0px;
	padding-bottom: 0%;
    margin-bottom: 0%;
}	
}
@media screen and (max-width:550px){
	header{
	padding: 15px 10px 15px 10px;
	height: 53px;
}

header img{
	height: 25px;
	width: auto;
}
    
    
header img.bcbs{
    height: 25px;
}

header img.wot{
    height: 23px;
}

}

@media screen and (max-width:420px){
	header{
	padding: 15px 10px 15px 10px;
	height: 50px;
}	
header img.bcbs{
    height: 20px;
}

header img.wot{
    height: 18px;
    }
	
.login-form {
	width: 100%;
}	
	.headlineSection h1{
	font-size: 50px;
	line-height: 50px;
}

.headlineSection h2{
	font-size: 50px;
	line-height: 50px;
}
	
	
	.video-background{
		height: 650px;

	}
	
}	

@media screen and (max-width:380px){
.assistance{
	font-size: 12px; 
	line-height: 12px;
}	
.headlineSection{
    top: 300px;
	max-width: 375px;
	left: calc(50% - 187px);
}
	.headlineSection h1{
	font-size: 50px;
	line-height: 50px;
}

.headlineSection h2{
	font-size: 50px;
	line-height: 50px;
}
.downArrow{
	top: 500px;
	z-index: 500;
	width: 50px;
	left: calc(50% - 25px);
}	
	
.video-background {
	height: 600px;
}	

	/*
	#bgvideo {
	height: 600px;
}*/	
}	

/*@media only screen and (max-width: 1000px) {
#bgvideo {
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: #232528;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
} }
*/
