/* -------------------- ## Common */

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, font, 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 { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } :focus { outline: 0; } ins { text-decoration: none; } del { text-decoration: line-through; } table { border-collapse: collapse; border-spacing: 0; }

.cf:before,.cf:after, .clearfix:before, .clearfix:after { content: " ";display: table; }
.cf:after, .clearfix:after { clear: both; }
.cf, .clearfix { *zoom: 1; }

body,html {
	width: 100%;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

textarea, input[type="text"], input[type="submit"] {
  -webkit-appearance: none;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

/* -------------------- ## Common */

.aleft {
	float: left;
}

.aright {
	float: right;
}

strong {
	font-weight: 700;
}

.hide {
	margin: -9999px;
}

a,a:visited {
	text-decoration: none;
	color: #2684ef;
}

.dotted {
	margin: 20px 0;
	font-size: 0;
	height: 1px;
	border-bottom: 1px dotted #9d9d9d;
}

.relative {
	position: relative;
}

.ellipsis { 
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	-o-text-overflow: ellipsis; 
}

.block {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* -------------------- ## Fonts */

body,
input, 
textarea, 
select,
p {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #33322a;
}

p {
	font-size: 1.2em;
	line-height: 1.6em;
	margin-bottom: 15px;
}

h1,h2,h3 { 
	margin-bottom: 10px;
}

h1 {
	font-size: 1.8em; 
}

h2 {
	font-size: 1.7em; 
}
h3 {
	font-size: 1.6em; 
}

h1.title {
	font-size: 2.3em;
	margin-bottom: 20px;
}

h2.sub {
	font-size: 1.5em;
}

li, li {
	font-size: 1em;
}

/* -------------------- ## dropdown */

.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}

/* WRAPPER */

.dropdown {
	position: relative;
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.dropdown.open{
	z-index: 2;
}

.device-no-touch .dropdown:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.dropdown.focus{
	box-shadow: 0 0 5px rgba(51,102,248,.4);
}

/* CARAT */

.dropdown .carat{
	position: absolute;
	right: 9px;
	top: 50%;
	margin-top: -1px;
	border: 4px solid transparent;
	border-top: 6px solid #000;
}

.dropdown.open .carat{
	margin-top: -6px;
	border-top: 4px solid transparent;
	border-bottom: 6px solid #000;
}

.dropdown.disabled .carat{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.dropdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.dropdown select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.dropdown.touch .old{
	width: 100%;
	height: 100%;
}

.dropdown.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.dropdown .selected,
.dropdown li{
	display: block;
	line-height: 1;
	color: #000;
	padding: 7px;
	overflow: hidden;
	white-space: nowrap;
}

.dropdown.disabled .selected{
	color: #999;
}

.dropdown .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	
	border-radius: 0 2px 2px 0;
}

/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	opacity: 0;
}

/* Height is adjusted by JS on open */

.dropdown.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	
}

.dropdown.scrollable.bottom div::after{
	opacity: 0;
}

/* DROP DOWN LIST */

.dropdown ul{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 8px 12px;
}

/* .focus class is also added on hover */

.dropdown li.focus{
	background: #d24a67;
	position: relative;
	z-index: 3;
	color: #fff;
}

.dropdown li.active{
	font-weight: 700;
}

/* -------------------- ## v-6 */

html,body.v-6 {
  width:100%;
  padding:0px;
  margin:0px;
  font-family: 'Open Sans', sans-serif;
  min-width:320px;
}

body.v-6 .clear {
  clear:both;
  height:40px;
}

body.v-6 p,
body.v-6 h1, 
body.v-6 h2, 
body.v-6 h3,
body.v-6 .p-title {
  padding:0px;
  margin:0px;
  font-weight:400
}

body.v-6 .sstories .p-title{
  font-size:20px;
  font-weight:700;
}

body.v-6 .wrp{
  max-width:960px;
  width:90%;
  margin:auto;
}

body.v-6 .row{
  margin:5% 0 10px 0;
}

body.v-6 footer {
   width:100%;
   padding:20px 0 50px 0;
    display:table;
}
  
body.v-6 .intro {
  width:100%;
  max-height:550px;
  height:550px; 
  display:block;
  position:relative;
  transition: all 0.2s ease;
}

body.v-6.white-man-black-woman-1 .intro {
  background:url(../image/bg-header-white-man-black-woman-2000x611-1.jpg)  50% 0 no-repeat fixed; 
}

body.v-6.white-man-black-woman-2 .intro {
  background:url(../image/bg-header-white-man-black-woman-1900x588-2.jpg)  50% 0 no-repeat fixed; 
}

body.v-6.white-man-black-woman-3 .intro {
  background:url(../image/bg-header-white-man-black-woman-2200x672-3.jpg)  50% 0 no-repeat fixed; 
}  

body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
	position:absolute;
	width:258px;
	height:417px;
	bottom:10%;
	left:28%;
	background: url(../image/liita_quote-01.png) no-repeat ;
	background-size:258px 417px
}

body.v-6 #login{
  top:5%;
  right:0px;
  position:absolute;
  display:table;
}

#login {
	float: left;
}

#login ul li {
	margin-right:5px;
	padding-right:5px;
	font-size: 13px;
	float: left;
	line-height: 21px;
}

#login ul li a.link {
	color: #404040;
}

#login ul li:last-child {
	margin: 0;
	padding-right: 0;
	border: none;
}

body.v-6 #login .btn{
  width:100px;
}

body.v-6 .intro .wrp{
  max-width:970px;
  width:90%;
  height:100%;
  position:relative;
}

body.v-6 .intro .form-position{
  position:absolute;
  max-width:320px;
  width:90%;
  bottom:5%;
  right:0px;
  background:rgba(255,255,255,0.9);
  border-radius:8px;
  padding:2%;
}
  
body.v-6 .intro .form-position h1,
body.v-6 .intro .form-position h2 /* ,
body.v-6 .intro .form-position strong */ {
  font-size:14px;
  font-weight:700;
  padding:0 0 10px 0;
  display:block;
}

body.v-6 .intro .form-position p{
  font-size:12px;
  line-height:16px
}


body.v-6 .intro .img,
body.v-6 .intro .img img{
  width:100%;
  height:auto;
}

body.v-6 .intro .img{
  margin:0 0 20px 0;
}

body.v-6 .intro .form {
  margin:10px 0 0 0 ;
}

body.v-6 .intro .form .dropdown {
  position: relative;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 99%;
  float: left;
}

body.v-6 .intro .form .large {
  width:100%;
  display:table;
  float:left;
  color: #323232;
  font-size:16px;
  font-weight:700;
  padding:10px 0 10px 0;
  text-align: center;
}

body.v-6 .intro .form .ethnicity-ctn,
body.v-6 .intro .form .age-ctn{
  float:left;
  width:48%;
}

body.v-6 .intro .form .gender-ctn,
body.v-6 .intro .form .age-ctn.fr{
  float:right;
  width:48%;
}

body.v-6 .dropdown .selected, .dropdown li {
  display: block;
  line-height: 1;
  color: #000;
  font-size:12px;
  font-weight:700;
  padding: 7px;
  overflow: hidden;
  white-space: nowrap;
}

body.v-6 .intro .form-position .action{
  margin:5% auto 0 auto;
}

body.v-6 .intro .form-position .btn{
  text-align: center;
}

body.v-6 .intro .form-position .btn.c2 {
    background: #4fa63c;
    color: #fff;
    border-color: #4fa63c;
}


body.v-6 .intro .form-position .btn.c2:hover{
    background: #439831;
    border-color: #439831;
}


body.v-6 .intro .btn.c3 {
    background: #fab200;
    color: #fff;
    border-color: #fab200;
}

body.v-6 .intro .btn.c3:hover {
    background: #eda900;
    border-color: #eda900;
}

body.v-6 .intro .btn.c4 {
    background: #fff;
    color: #262626;
    border-color: #bebebe;
}

body.v-6 .intro .btn.c4:hover  {
    background: #f9f9f9;
    color: #262626;
    border-color: #bebebe;
}


body.v-6 .intro .dropdown li.focus{
	background: #eda900;
	position: relative;
	z-index: 3;
	color: #fff;
}

body.v-6 .btn.c1 {
    background: #00adef;
    width:auto;
    border-color: #00adef;
}

body.v-6 .btn.c1:hover {
    background: #00a4e3;
    border-color: #00a4e3;
}

body.v-6 .btn.s3a {
    font-size: 14px;
    font-weight:400;
    color: #fff;
    padding:5px 10px 5px 10px;
}

.btn {
	display: inline-block;
	outline: none;
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px;
	border-radius: 5px;
	line-height: 100%;
	font-weight: 700;
	cursor: pointer;
	border-style: solid;
	border-width: 1px;
	text-align: center;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear; 
}

.btn.s0 {
	font-size: 11px;
	height: 21px;
	line-height: 21px;
	padding: 0 5px;
}

.btn.s1 {
	font-size: 12px;
	height: 28px;
	line-height: 28px;
	padding: 0 8px;
}

.btn.s2 {
	font-size: 16px;
	height: 38px;
	line-height: 38px;
	padding: 0 10px;
}

.btn.s3 {
	font-size: 23px;
	height: 48px;
	line-height: 48px;
	padding: 0 15px;
}

/*////////SUCCESS STORIES*/
body.v-6 .sstories{
  width:100%;
}

body.v-6 .sstories .details{
  width:95.4%;
  background:#f9fbfa;
  border:1px solid #e8e8ea;
  text-align:center;
  padding:2%;
  margin:20px auto;
  display:table;
}


body.v-6 .sstories .details .p-title{
  font-size:28px;
  font-weight:700;
  padding:0 0 15px 0;
  border-bottom:1px solid #000;
  display:table;
  text-align:center;
  margin:auto;
}

body.v-6 .sstories .details p{
  font-size: 14px;
  margin: 12px 0 0 0;
}



body.v-6 .sstories .success{
  float:left;
  width:100%;
}


body.v-6 .success .story {
  width:100px;
  height:auto;
  float:left;
}

body.v-6 .sstories .success br{
  display:none;
}

body.v-6 .sstories .success .story .photo-ctn {
  width:100%;
  float:left;
}

body.v-6 .sstories .success .story  .photo-ctn img{
  width:100%;
  height:auto;
}

body.v-6 .sstories .success .bg-name {
  width: 100%;
  text-align: center;
  padding: 1%;
  margin: auto;
}

body.v-6.white-man-black-woman-2 .sstories .success .bg-name {
  background-color:#333333 !important;
}
            
body.v-6 .sstories .success .bg-name span{
  text-align:center;
  font-size:10px;
  color:#fff;
  line-height:20px;
}          
            
/*/////////HOME_INTRO*/
body.v-6 .home_intro {
  position:relative;
}


body.v-6 .home_intro h1{
  font-size:22px;
  padding:0 0 10px 0;
  line-height:26px;
  
}

body.v-6 .home_intro h2{
  font-size:18px;
  line-height:26px;
}

body.v-6 .home_intro h3{
  font-size:16px;
}

body.v-6 .home_intro p{
  font-size:14px;
}

body.v-6 .home_intro p a{
  color:#000;
}
body.v-6 .home_intro p a:hover{
  color:#2684ef
}

body.v-6 .home_intro h3 {
  padding:0 0 10px 0;
}


body.v-6 .home_intro h1,
body.v-6 .home_intro h2,
body.v-6 .home_intro p {
  padding:0 0 20px 0;
  color:#5e5e5e;
}

body.v-6 .home_intro story {
  padding:0 0 20px 20px;
  color:#5e5e5e;
  line-height: 1.6em;
  margin: 0px;
  font-weight: 400;
  font-size: 14px;
  font-style: oblique;
  display:block;
}

story:before {
    content: '"';
    font-size: 20px;
    font-weight:700;
    padding-right: 10px;
}

story:after {
    content: '"';
    font-size: 20px;
    font-weight:700;
    padding-right: 10px;
}

body.v-6 .home_intro .movie{
  right:0;
  top:0;
  display:block;
  height:auto;
  max-width:50%;
  width:100%;
  float:right;
  padding:0 0 10px 10px;
} 

body.v-6 .home_intro .movie video{
  width:100%;
  height:auto;
}

body.v-6 .home_intro .movie .youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;  
}

body.v-6 .home_intro .movie .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.v-6 .dotted {
  margin: 0px 0;
  font-size: 0;
  height: 11px;
  border-bottom: 1px dotted #9d9d9d;
}

/*/////////FOOTER NAVIGATION VIEW*/
body.v-6 .fnv {
   width:96%;
   padding:2%;
   background:#404040;
}
body.v-6 .fnv h3 {
   color:#fff;
   padding:0 0 10px 0;
}

body.v-6 keygen, 
body.v-6 select, 
body.v-6 select[size="0"], 
body.v-6 select[size="1"] {
    border-radius: 0px;
    border-color: rgb(169, 169, 169);
}

body.v-6 select:not(:-internal-list-box) {
    overflow: visible !important;
}

body.v-6 select{
    -webkit-appearance: menulist;
    box-sizing: border-box;
    align-items: center;
    white-space: pre;
    -webkit-rtl-ordering: logical;
    color: black;
    background-color: white;
    cursor: default;
    border-width: 1px;
    border-style: solid;
    border-color: initial;
    border-image: initial;
    width:50%;
}

body.v-6 keygen,
body.v-6 select {
    border-radius: 5px;
}

body.v-6 input, 
body.v-6 textarea, 
body.v-6 keygen, 
body.v-6 select, 
body.v-6 button {
    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin: 0em 0em 0em 0em;
    font: 13.3333px Arial;
}

body.v-6 input, 
body.v-6 textarea, 
body.v-6 keygen, 
body.v-6 select, 
body.v-6 button, 
body.v-6 meter, 
body.v-6 progress {
    -webkit-writing-mode: horizontal-tb;
}

body.v-6 footer .left
{
    width:60%; 
    height:30px;
    float:left;
}
body.v-6 footer .left h5{
    font-size:12px;
    line-height:16px;
}

body.v-6 footer .right
{
    min-width:27%; 
    float:right;
    height:30px;
}

body.v-6 footer .right .label{
    float:left;
    font-size:12px;
    font-weight:700;
    padding:10px 10px 0 0;
}

body.v-6 footer .right li{
    text-align:right
}

#social-v6 {
    margin: 0 auto;
}

#social-v6 {
    float: left;
    margin: 0 auto;
}

#social-v6 li {
    float: left;
    margin: 0 1px;
}

#social-v6 li a {
    width: 34px;
    height: 34px;
    display: inline-block;
    background: url('../image/sprite-4.png') 0 0 no-repeat;
    background-size: 500px auto;
}

#social-v6 li.facebook a {
    background-position: -187px -6px;
}

#social-v6 li.twitter a {
    background-position: -152px -6px;
}

#social-v6 li.gplus a {
    background-position: -222px -6px;
}

#social-v6 li.brands a {
    background-position: -187px -158px;
}

#social-v6 li.pinterest a {
    background-position: -257px -6px;
}

#social-v6 li.youtube a {
	background-position: -222px -158px;
}

#social-v6 li.instagram a {
	background-position: -409px -158px;
}

#social-v6 li.tumblr a {
	background-position: -372px -158px;
}

#social-v6 li.wikipedia a {
	background-position: -446px -158px;
}

#social-v6 li span {
	display: none;
}

body.v-6 .sstories .text,
body.v-6 header.mob {
  display:none
  }

  
body.v-6 .footer-nav li a{
  color:#fff
}

body.v-6 .footer-nav a:hover{
  color:#2684ef
} 

@media only screen and (max-width: 820px) { 
  
  body.v-6 .success .story {
    width: 50%;
    height: auto;
    float: left;
    margin-bottom:20px;
  }

  
  body.v-6 .row .sstories{
  margin:40px 0 0px 0;
  display:table;
  } 
}
 
@media only screen and (max-width: 768px) { 
  body.v-6 .intro .form .large {
    text-align: center;
  }
  
  body.v-6 .intro .form-position{
    width:90%;
    bottom:2%;
    padding:0% 5% 5% 5%;
  }
  
  body.v-6 .intro .form-position .logo {
    display:none
  }
  
  body.v-6 header.mob{
    display:table;
    background:rgba(255,255,255,0.6);
    padding:10px 0 10px 0;
    width:100%;
    height:30px;
    position:absolute;
    z-index:9;
  }
  
  body.v-6 #login{
    top:2%;
    z-index:99
  }

  body.v-6 #login .btn{
    width:100px;
  }

  body.v-6 header.mob .img img{
    width:200px;
    height:auto;
  }
  
  body.v-6.white-man-black-woman-1 .intro{
    background:url(../image/bg-header-white-man-black-woman-768x611-1.jpg) 50% 0 no-repeat fixed;  
  }
  
  body.v-6.white-man-black-woman-2 .intro{
    background:url(../image/bg-header-white-man-black-woman-1900x588-2.jpg) 38% 0 no-repeat fixed;  
  }
  
  body.v-6.white-man-black-woman-3 .intro{
    background:url(../image/bg-header-white-man-black-woman-800x672-3.jpg) 38% 0 no-repeat fixed;  
  } 

  body.v-6 .sstories .text{
    display:table;
    margin:20px 0 20px 0;
    width:100%;
    text-align:center;
  }  
  
  body.v-6 .sstories .text h1,
  body.v-6 .sstories .text h2 /* ,
  body.v-6 .sstories .text strong */ {
    font-weight:700;
    font-size:20px;
    padding:0 0 10px 0;
    line-height:26px;
    display:block;
  }  
  
  body.v-6 .sstories .text p{
    font-size:14px;
  }
  
  body.v-6 footer .left{
   width:100%; 
   float:left;
  }
 
  body.v-6 footer .left h5
  {
  text-align:center;
  }
  
  body.v-6 footer .right{
  min-width:100%; 
  float:left;
  margin:0 0 10px 0;
  display:table;
  text-align:center;
  }
  
  #social-v6 {
    float: none;
    margin: 20px auto;
  }

  body.v-6 footer .right .label {
  width: 100%;
  text-align: center;
  margin-bottom:10px;
  }
  
  body.v-6 footer .right ul{
    display:table;
  } 
  
  body.v-6 footer .right #social-v6 {
    /* float: left; */
    margin: 10px auto;
  }
  
  
  body.v-6 .home_intro .movie{
    max-height:500px;
    max-width:100%;
    width:100%;
    margin:0 0 30px 0;
  } 
  
  body.v-6 .content-slider-tablet {
  }
  
  /*DISPLAY NONE*/
  body.v-6 .form-position .text,
  body.v-6 .intro .img, 
  body.v-6 .intro .img img {
   display:none;
  }
}

@media screen and (max-width: 600px){ 
 
  .page-loading-bg {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -23px;
    margin-top: -23px;
    z-index: 99999;
    display: none;
  }
  
  .page-loading-icon {
    background: #000 url(../image/ajax-loader-46x46.gif) no-repeat scroll 0 0 / 46px 46px;
    width: 44px;
    height: 44px;
    opacity: 0.18;
    margin: 0;
    padding: 1px;
    border-radius: 36px;
    display: block;
    z-index: 99999;
  }
 
  body.v-6.white-man-black-woman-2 .intro{
    background-position-x:42%;  
  }
  
  body.v-6 .sstories .success .bg-name span{
   font-size:10px;
  }  
  
  body.v-6 header.mob .logo{
    width: 255px;
    height: 35px;
    text-align: center;
    margin: auto;
    background-size: 255px auto;
  }
  
  body.v-6 .intro .form {
    margin: 0px 0 0 0;
  }
  
  body.v-6 header.mob .img{
    width:100%;
    text-align:center
  }
  body.v-6 header.mob .img img{
    width:160px;
    height:auto;
  }
  
  body.v-6 #login{
    width:100%;
    top:60px;
    z-index:99;
    text-align:center
  }
  
   body.v-6 .sstories .details{
    width:95.6%;
    text-align:center;
    margin:0 0 20px 0;
  } 
  
  body.v-6 .sstories .success{
    width:100%;
  }
  
  body.v-6 #login ul{
    width:220px;
    height:22px;
    margin:auto;
    text-align:center;
  }
  
  body.v-6 #login li{
    width:100px;
    height:22px;
    margin:auto;
    text-align:center;
    float:left;
  }
  
  body.v-6 #login .btn.s1 {
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    width:80px;
  }
  
  body.v-6 #login li.left{
    float:left;
  }
  body.v-6 #login li.right{
    float:right;
  }
}

@media screen and (max-width: 420px){

  body.v-6.white-man-black-woman-1 .intro{
    background:url(../image/bg-header-white-man-black-woman-481x500-1.jpg) 50% 0 no-repeat fixed; 
    height:480px;
  } 
  
  body.v-6.white-man-black-woman-1 .intro .form-position {
    border-radius: 0px; 
  }
  
  body.v-6.white-man-black-woman-1 .intro .form-position {
    padding: 0% 5% 5% 5%;
  }

  body.v-6.white-man-black-woman-1 .intro .form .cf.row-1 {
    width:62%;
    float:left;
  }
  
  body.v-6.white-man-black-woman-1 .intro .form .cf.row-2 {
    width:32%;
    float:left;
    margin:0 0 0 2%;
  }
  body.v-6.white-man-black-woman-1 .dropdown .selected, .dropdown li {
  font-size:10px;
  }

  body.v-6.white-man-black-woman-1 .intro .form .cf.row-1 label,
  body.v-6.white-man-black-woman-1 .intro .form .cf.row-2 label
  {
    text-align:center;
    font-size:12px;
  }
  
  body.v-6.white-man-black-woman-1 .intro .form  .dotted{
    display:none;
  }
  
  body.v-6.white-man-black-woman-1 .intro .form .dropdown {
    position: relative;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 96%;
  }
   
  body.v-6.white-man-black-woman-1 .intro .form-position .action {
    margin: 5% auto 0 auto;
    text-align: center;
  }
  
  body.v-6.white-man-black-woman-1 .intro .form-position .btn {
      text-align: center;
      margin: 10px 0 0 0;
  }
  
  body.v-6.white-man-black-woman-1 .btn.s3 {
    font-size: 13px;
    height: 34px;
    line-height: 28px;
    padding: 0 5px;
  }
  
  body.v-6.white-man-black-woman-1 .btn.c2 {
    width:160px;
    margin:auto;
  } 
}

@media screen and (max-width: 481px){

  body.v-6.white-man-black-woman-2 .intro{
    background:url(../image/bg-header-white-man-black-woman-481x500-2.jpg) 50% 0 no-repeat fixed; 
    height:480px;
  } 
  
  body.v-6.white-man-black-woman-4 .intro{
    background:url(../image/bg-header-white-man-black-woman-500x571-4.jpg) 50% 0 no-repeat fixed; 
    height:571px;
  }
  
} 

@media screen and (max-width: 768px){

  body.v-6.white-man-black-woman-2 .intro .form-position,
  body.v-6.white-man-black-woman-3 .intro .form-position  {
    border-radius: 0px; 
  }
  
  body.v-6.white-man-black-woman-2 .intro .form-position,
  body.v-6.white-man-black-woman-3 .intro .form-position {
    padding: 0% 5% 5% 5%;
  }

  body.v-6.white-man-black-woman-2 .intro .form .cf.row-1,
  body.v-6.white-man-black-woman-3 .intro .form .cf.row-1  {
    width:62%;
    float:left;
  }
  
  body.v-6.white-man-black-woman-2 .intro .form .cf.row-2,
  body.v-6.white-man-black-woman-3 .intro .form .cf.row-2  {
    width:32%;
    float:left;
    margin:0 0 0 2%;
  }
  
  body.v-6.white-man-black-woman-2 .dropdown .selected, body.v-6.white-man-black-woman-2 .dropdown li,
  body.v-6.white-man-black-woman-3 .dropdown .selected, body.v-6.white-man-black-woman-3 .dropdown li {
    font-size:10px;
  }

  body.v-6.white-man-black-woman-2 .intro .form .cf.row-1 label, body.v-6.white-man-black-woman-2 .intro .form .cf.row-2 label,
  body.v-6.white-man-black-woman-3 .intro .form .cf.row-1 label, body.v-6.white-man-black-woman-3 .intro .form .cf.row-2 label {
    text-align:center;
    font-size:12px;
  }
  
  body.v-6.white-man-black-woman-2 .intro .form  .dotted,
  body.v-6.white-man-black-woman-3 .intro .form  .dotted {
    display:none;
  }
  
  body.v-6.white-man-black-woman-2 .intro .form .dropdown,
  body.v-6.white-man-black-woman-3 .intro .form .dropdown {
    position: relative;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 96%;
  }
   
  body.v-6.white-man-black-woman-2 .intro .form-position .action,
  body.v-6.white-man-black-woman-3 .intro .form-position .action {
    margin: 5% auto 0 auto;
    text-align: center;
  }
  
  body.v-6.white-man-black-woman-2 .intro .form-position .btn,
  body.v-6.white-man-black-woman-3 .intro .form-position .btn {
      text-align: center;
      margin: 10px 0 0 0;
  }
  
  body.v-6.white-man-black-woman-2 .btn.s3,
  body.v-6.white-man-black-woman-3 .btn.s3 {
    font-size: 13px;
    height: 34px;
    line-height: 28px;
    padding: 0 5px;
  }
  
  body.v-6.white-man-black-woman-2 .btn.c2,
  body.v-6.white-man-black-woman-3 .btn.c2 {
    width:160px;
    margin:auto;
  } 
}

/*HEIGHT QUERIES*/
@media screen and (max-height: 480px){
  body.v-6.white-man-black-woman-1 .intro{
    width:100%;
    height:100vh;
    background:url(../image/bg-header-white-man-black-woman-768x611-1.jpg) 50% 0 no-repeat fixed; 
    display:block;
    position:relative;
  }
  
  body.v-6.white-man-black-woman-2 .intro{
    width:100%;
    height:100vh;
    background:url(../image/bg-header-white-man-black-woman-1900x588-2.jpg) 38% 86% no-repeat fixed; 
    display:block;
    position:relative;
  }

  body.v-6 .intro .form-position {
    border-radius: 0px; 
  }
  
  body.v-6 .intro .form-position {
    padding: 2% 2% 2% 2%;
  }

  body.v-6 .intro .form .cf.row-1 {
    width:62%;
    float:left;
  }
  
  body.v-6 .intro .form .cf.row-2 {
    width:32%;
    float:left;
    margin:0 0 0 2%;
  }
  body.v-6 .dropdown .selected, .dropdown li {
    font-size:10px;
  }
  body.v-6 .intro .form-position .btn {
      text-align: center;
      margin: 10px 0 0 0;
  }
  
  body.v-6 .btn.s3 {
    font-size: 13px;
    height: 34px;
    line-height: 28px;
    padding: 0 5px;
  }
  
  body.v-6 .btn.c2 {
    width:160px;
    margin:auto;
  }
  
} 

@media screen and (max-width:1800px){
	
	body.v-6.white-man-black-woman-3 .intro {
		background-position: -25px 0;
	}
	
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -200px 0;
	} 

}

@media screen and (max-width:1650px){
	
	body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
		left: 35%;
	}
}

@media screen and (max-width:1400px){
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -150px 0;
	}
	
	body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
		position: absolute;
		width: 200px;
		height: 200px;
		bottom: 7%;
		left: 35%;
		background: rgba(255,255,255,.8) url(../image/liita_quote-01.png) center no-repeat;
		background-size: 120px auto;
		padding: 10px;
		border-radius: 50%;
	}
}

@media screen and (max-width:1250px){
	body.v-6.white-man-black-woman-3 .intro {
		background-position: 10% 0;
	} 
	
	body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
		left: 3%;
	}
} 

@media screen and (max-width:1000px){
	body.v-6.white-man-black-woman-3 .intro {
		background-position: 20% 0;
	}
} 
 
@media screen and (max-width:900px){
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -280px 0;
	}
} 
 
@media screen and (max-width:860px){
	body.v-6.white-man-black-woman-3 .intro {
		background-position: -300px 0;
	}
}

@media screen and (max-width:768px){
	body.v-6.white-man-black-woman-3 .intro {
		background-position: -30px 0;
	} 
	
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -35px 0;
	}
	
	body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
		position: absolute;
		width: 130px;
		height: 130px;
		bottom: inherit;
		left: inherit;
		background: rgba(255,255,255,.8) url(../image/liita_quote-01.png) center no-repeat;
		background-size: 90px auto;
		padding: 20px;
		border-radius: 50%;
		top: 160px;
		right: 10px;
	}
}


@media screen and (max-width:520px){
  body.v-6.white-man-black-woman-3 .intro {
		background-position: -30px 0;
	} 
	
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -140px 0;
	} 
}
 
@media screen and (max-width:420px){
	body.v-6.white-man-black-woman-3 .intro {
		background-position: -74px 50px;
		background-size: 705px auto;
	}
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -50px 50px; 
	}
	
	body.v-6.white-man-black-woman-3.liita .intro .img-slogan {
		position: absolute;
		width: 88px;
		height: 88px;
		bottom: 0;
		right: 0;
		left: inherit;
		background: rgba(255,255,255,0.84) url(../image/liita_quote-01.png) center no-repeat;
		background-size: 68px auto;
		top: 48%;
		border-radius: 50%;
		border-radius:1px solid #fff;
	}
}

@media screen and (max-width:375px){
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -90px 50px; 
	}
}

@media screen and (max-width:360px){
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -100px 50px; 
	}
}

@media screen and (max-width:340px){
	body.v-6.white-man-black-woman-3.liita .intro {
		background-position: -125px 50px; 
	}
}

/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/ 

body.v-6 ul{
	list-style: none outside none;
  padding-left: 0;
  margin: 0;
}
    
body.v-6 	.content-slider li{
  text-align: center;
  color: #FFF;
}
body.v-6 	.content-slider h3 {
    margin: 0;
    padding: 70px 0;
} 
 
.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #d8d8d8;
    border-radius: 30px;
    display: inline-block;
    height: 10px;
    overflow: hidden;
    text-indent: -999em;
    width: 10px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #323232;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url('../image/ss-controls_v6.png');
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

/* -------------------- ## Footer ---------------------------------------- */

#footer-ctn {
	background: #fff;
	padding-bottom: 50px;
}

body.v-5 #footer {
	margin-bottom: 0;
}

#social {
	float: left;
	margin: 0 auto;
}

#social li {
	float: left;
	margin: 0 1px;
}

#social li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	background: url('../image/sprite-4.png') 0 0 no-repeat;
	background-size: 500px auto;
}

#social li.facebook a {
	background-position: -187px -6px;
}

#social li.twitter a {
	background-position: -152px -6px;
}

#social li.gplus a {
	background-position: -222px -6px;
}

#social li.brands a {
	background-position: -187px -158px;
}

#social li.pinterest a {
	background-position: -257px -6px;
}

#social li.youtube a {
	background-position: -222px -158px;
}

#social li.instagram a {
	background-position: -409px -158px;
}

#social li.tumblr a {
	background-position: -372px -158px;
}

#social li.wikipedia a {
	background-position: -446px -158px;
}

#social li span {
	display: none;
}

.quicklinks {
	padding: 15px;
	background: #404040;
	color: #fff;
}

.quicklinks .label {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
}

ul.footer-nav {
	max-width: 720px;
}

#footer .followus {
	margin: 15px 0 0 15px;
}

ul.footer-nav li {
	font-size: 13px;
	list-style-type: none;
	line-height: 18px;
}

ul.footer-nav li {
	display: inline-block;
}

ul.footer-nav li a {
	color: #fff;
	text-decoration: none;
}

ul.footer-nav li.last a {
	border: none;
	padding-right: 0;
	margin-right: 0;
}

#footer .followus .label {
	font-size: 15px;
	font-weight: 700;
	line-height: 32px;
	margin-right: 10px;
}

#footer .copyright {
	font-size: 11px;
	line-height: 13px;
	float: left;
	margin: 20px 0 0 15px;
}

#powered-by {
	width: 144px;
	height: 30px;
	background: url('../image/sprite-1.png') -301px -9px no-repeat;
	background-size: 500px auto;
	float: left;
	display: block;
	margin: 15px 0 0 15px;
}

#powered-by.dotcom {
  width:172px;
}

#powered-by span {
	display: none;
} 

ul.footer-nav li {
	width: 24%;
}

#footer-ctn {
	padding-top: 50px;
}

#footer .followus {
	float: right;
	margin: 15px 13px 0 15px;
}

#footer .followus .label {
	float: left;
} 

.page-intro {
	display: none;
}

@media only screen and (max-width: 600px) {

ul.footer-nav li {
    width: 32%;
}

}

@media only screen and (max-width: 480px) {
 
.quicklinks {
  margin-left:-6px;
  margin-right:-6px;  
}

ul.footer-nav li {
  width:49%;
}

} 
