/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fade-in.one {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.fade-in.two {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay:1.2s;
    animation-delay: 1.2s;
}

.fade-in.three {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

@font-face {
    font-family: heros;
    src: url(fonts/308ED8_0_0.woff);
}
@font-face {
    font-family: museo-slab;
    src: url(fonts/MuseoSlab-500.otf);
}
html,body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "museo-slab",serif;
    color: #272a3e;
    background-color: #f6f6f6;
    font-size: 12px;
}

.blurEffect{-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);

}
h1,h2 {
    letter-spacing: -1px;
}

p,ul {
    margin: 0;
    padding: 0;
}

p {
    word-break: keep-all;
}
	.mobile{
		display:none;
	}
	.desktop{
		display:display;
	}
#container {
    background-color: #272a3e;
    /* border-bottom: 20px solid #aceae2; */
}

#firstPage,#home {
    position: relative;
    /* margin-bottom: 100px; */
}
#firstPage iframe{
	border:0;
}
#firstPage iframe{
	overflow:hidden;
}
#firstPage > .content-page {
    margin: 0 auto 200px;
}
.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

#mainlogo,#menu,#menuOpener {
    position: fixed;
    height: 90px;
    top: 15px;
    background-color: #f6f6f6;
}

#mainlogo {
    padding: 10px 20px;
    top: 15px;
    left: -253px;
    width: 200px;
    border: 4px solid #434343;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 17;
    height: 62px;
    text-align: center;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#mainlogo.endAnimation {
    left: -5px;
}

#mainlogo img {
    height: 100%;
}

#mainlogo.active {
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#mainlogo.noEffect {
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

#menuOpener {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 20px;
    right: -105px;
    width: 100px;
    border: 4px solid #434343;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 15;
    cursor: pointer;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#menuOpener.endAnimation {
    right: -5px;
}

#menuOpener .inactive {
    display: block;
}

#menu {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 15px;
    right: -100%;
    width: 100%;
    border-top: 4px solid #434343;
    border-bottom: 4px solid #434343;
    text-align: right;
    z-index: 16;
}

#menu.endAnimation {
    right: 0;
}

#menu .right {
    padding: 13px 0 0;
}

#menu .closeButton {
    padding: 22px 19px 0 50px;
    cursor: pointer;
}

#menu .closeButton img {
    width: 52px;
}

#menu ul {
    display: block;
    float: left;
    list-style: none;
    margin: -1px 0 0;
}

#menu ul li {
    float: left;
    width: 70px;
    text-align: center;
}

@media only screen and (max-width: 1240px) {
    #menu ul li {
        width: 110px;
    }
}
@media only screen and (max-width: 990px)  {
	#menu ul li {
    width: 80px;
	}
}
#menu ul li .image {
    height: 40px;
}

#menu ul li img {
    height: 32px;
}

#menu ul li a {
    display: block;
    text-decoration: none;
    color: #272a3e;
    font-style: italic;
    font-size: 0.9rem;
}

#menu ul li:nth-child(4) a.text {
 /*   margin-top: -3px;*/
}

#menu .closeButton {
    float: right;
    display: block;
    width: 56px;
}

.page.rotationOne {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    margin: 0 -50px;
}

.page.rotationOne .content-page {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.page.rotationTwo {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    margin: 0 -50px;
}

.page.rotationTwo > .content-page {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

#image {
    display: inline-block;
    width: 500px;
    height: 358px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#image #image-container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

#image #image-container #sublogo {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    font-size: 40px;
    color: #f6f6f6;
    font-family: "heros",serif;
}

#image #image-container #sublogo img {
    width: 450px;
}

#image img {
    width: 100%;
}

#topLayer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

#mission-update {
    background-color: #abe9e2;
    z-index: 20;
    padding: 60px 0 120px;
}

#mission-update .description {
    max-width: 580px;
    margin:auto;
    line-height: 200%;
    padding: 30px 0 0;
    width: 100%;
}
#mission-update .description span {
	
color: #fe7960;
	
font-weight: 700;
}
#mission-update .content-page {
    max-width: 1010px;
}

.content {
    text-align: center;
}

.page {
    text-align: center;
    padding: 40px 70px 120px;
}

.page h2 {
    font-size: 39px;
    font-family: "heros",serif;
    text-transform: capitalize;
    margin: 0;
    padding: 0 0 45px;
    font-weight: 200;
}

.page p {
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
}
.page p span {
	color: #fe7960;
	font-weight: 700;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

#mission-update h1 {
    font-family: "heros",serif;
    font-size: 39px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}

#mission-update .box-content {
    display: block;
    clear: both;
    font-size: 14px;
     padding: 0 40px 50px;
    border-bottom: 7.5px solid #434343;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#mission-update .customizeBorder {
    position: relative;
    width: 750px;
    margin: 0 auto;
    margin-top: 40px;
}

#mission-update .customizeBorder .border-left {
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 7.5px;
    height: 95%;
    background-color: #434343;
    border-radius: 5px;
}

#mission-update .customizeBorder .border-right {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 7.5px;
    height: 95%;
    background-color: #434343;
    border-radius: 5px;
}

#mission-update .top {
    position: relative;
}

#mission-update .top {
    text-align: center;
    height: 170px;
    margin-top: -30px;
}

#mission-update .top span {
    display: block;
}

#mission-update .top span.number {
    font-size: 21px;
}

#mission-update span.nstart {
    display: inline;
}

#mission-update span.nend {
    display: none;
}

#mission-update .top .impression,#mission-update .top .uniqueuser {
    position: relative;
}

#mission-update .top .impression .number {
    position: absolute;
    width: 100%;
    top: 90px;
    font-family: "heros",serif;
}

#mission-update .top .impression .subtext,#mission-update .top .uniqueuser .subtext {
    width: 100%;
    position: absolute;
    bottom: 25px;
}

#mission-update .top .uniqueuser .number {
    position: absolute;
    width: 100%;
    top: 130px;
    font-family: "heros",serif;
}

#mission-update .top .impression {
    position: absolute;
    left: 0;
    width: 250px;
}

#mission-update .top .uniqueuser {
    position: absolute;
    right: 0;
    top: -47px;
    width: 250px;
}

#mission-update .top .line {
    position: absolute;
    width: 250px;
    height: 7.5px;
    left: 298px;
    right: 0;
    top: 100px;
    background-color: #434343;
    border-radius: 5px;
}
}

#page3 {
    background-color: #f6f6f6;
}

#page3 {
    background-color: #abe9e2;
}

#page3 .content-page {margin: 25px auto 140px;}
#page3 #formats {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 0;
    width: 50%;
    float: left;
    }
#page3 #formats div {display: flex;flex-direction: column;align-items: center;width: 50px;cursor: pointer;}
#page3 #formats div.active {opacity: 0.6;}
#page3 #formats img {width: auto;height: 55px;display: block;cursor: pointer;/* margin: auto; */}
#page3 #formats span {width: 90%;margin: 10px auto 0;/* padding: 10px 20px; */text-transform: uppercase;text-align: center;display: block;font-size: 10px;}

#page3 h1 {
    font-family: "heros",serif;
    font-size: 52px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

#page3 p {
    display: block;
}

#page3 {
    background-color: #fff;
    padding-bottom: 160px;
    margin-bottom: -210px;
}

#page3 .left {
    width: 50%;
    text-align: right;
    padding-top: 30px;
}

#page3 .left .box {
    width: 320px;
    float: right;
}
@media screen and (max-width: 700px){
	#page3 .left .box {
    width: 100%;
}
}
#page3 .right {
    width: 30%;
    text-align: center;
    position: relative;
    margin-top: -20px;
}

#page3 .right .iphone {
    /* width: 200px; */
    height: 410.5px;
    margin: 35px auto 0;
}

#page3 .right .iphone video {
    width: 100%;
    height: 100%;
    transform: scale(1.5);
}

#page3 .right .iphone iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: #f6f6f6;
}

#page3 h2 {
    color: #ff7963;
}

#page3 .accessCreative {
    width: 180px;
    margin: 40px 0 0;
}

#page4 {
    background-color: #272a3e;
    padding-top: 90px;
    padding-bottom: 0;
}

#page4 .content-page {max-width: 940px;}
#page4 .description span {font-weight: 700;color: #abe8e1;}
#page4 .description {color: #fff;line-height: 28px;max-width: 620px;margin: auto;font-size: 12px;font-weight: 500;}

#page4 .left {
    width: 45%;
}

#page4 .right {
    color: #fff;
    width: 50%;
    text-align: left;
    padding: 0;
}

#page4 .right .box {
    width: 450px;
    float: left;
    padding: 0 0 0 20px;
}

#page4 .right h2 {
    color: #abe9e2;
}

#page4 .spaceship {
    width: 250px;
    height: 360px;
    position: relative;
    margin: -20px auto 0;
}

#page4 .spaceship .hover {
    position: absolute;
    width: 400px;
    height: 100%;
    display: none;
    left: -70px;
}

#what-we-do h2 {
    margin-right: 0;
}

#what-we-do {
    color: #fff;
    text-align: center;
    width: 900px;
    position: absolute;
    height: 580px;
}

#what-we-do .content-page {
}

#what-we-do h2 {
    text-align: center;
    padding: 0;
    margin-top: 55px;
    margin-bottom: 8px;
}

#what-we-do ul {
    padding: 40px 0 0;
    display: inline-block;
    list-style-type: none;
}

#what-we-do ul li {
    display: inline-block;
    text-align: center;
    width: 180px;
    height: 165px;
    padding: 0 30px 25px 0;
}

#what-we-do ul li:nth-child(8) img {
    height: 80px;
    padding-bottom: 10px;
}

#what-we-do ul li img {
    height: 100px;
    width: auto;
}

#what-we-do ul li span {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding-top: 10px;
    text-transform: lowercase;
    color: #272a3e;
}

#targeting {
    position: absolute;
    top: 580px;
    height: 590px;
}

#targeting ul {
    width: 100%;
    height: 100%;
    position: relative;
    list-style-type: none;
}

#targeting ul li {
    background-color: #f6f6f6;
    border-radius: 50%;
    behavior: url(PIE.htc);
    width: 130px;
    height: 130px;
    border: 6px solid #434343;
    position: absolute;
    padding-top: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#targeting ul li img {
    height: 42px;
    width: auto;
}

#targeting ul li span {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding-top: 8px;
}

#targeting ul li:nth-child(1) {
    left: 210px;
    top: -50px;
}

#targeting ul li:nth-last-child(1) {
    right: 210px;
    top: -50px;
}

#targeting ul li:nth-child(2) {
    left: 110px;
    top: 75px;
}

#targeting ul li:nth-last-child(2) {
    right: 110px;
    top: 75px;
}

#targeting ul li:nth-child(3) {
    left: -10px;
    top: 185px;
}

#targeting ul li:nth-last-child(3) {
    right: -10px;
    top: 185px;
}

#targeting ul li:nth-child(4) {
    left: 110px;
    top: 290px;
}

#targeting ul li:nth-last-child(4) {
    right: 110px;
    top: 290px;
}

#targeting ul li:nth-child(5) {
    left: 10px;
    top: 415px;
}

#targeting ul li:nth-last-child(5) {
    right: 10px;
    top: 415px;
}

#targeting ul li:nth-child(6) {
    left: 165px;
    top: 440px;
}

#targeting ul li:nth-last-child(6) {
    right: 165px;
    top: 440px;
}
#targeting .main-icon{
    position: absolute;
    left: 250px;
    top: 90px;
    width: 400px;
    height: 400px;    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	padding:60px 0 0 0;

}
#targeting .main-icon span.toptitle{
	font-size:45px;
	display:block;
	font-family: "heros",serif;

}
#targeting .main-icon  img{
	width:180px;
	margin:20px 0;
}
#targeting .main-icon span.subtitle{
	font-size:35px;
	display:block;
	font-family: "heros",serif;

}
#publisher {
    /* position: absolute; */
    /* top: 1570px; */
    height: 310px;
    width: 100%;
    color: #abe9e1;
}

#page4 h1 {

font-size: 39px;

color: #fff;

font-family: "heros",serif;

font-weight: normal;
}

#publisher h2 {
    padding: 70px 0 0;
    font-size: 28px;
}

#publisher ul {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 20px;
}

#publisher ul li {
    float: left;
    height: 100%;
}

#publisher ul li img {
    height: 100%;
    opacity: 0.6;
}

#publisher #smart-scroll {
    margin: 40px 0 0;
    padding: 0 9px;
}

#analysis {
    position: absolute;
    top: 1564px;
    height: 170px;
    width: 100%;
}

#analysis ul {
    display: inline-block;
}

#analysis .content-page {
}

#analysis p {
    padding: 50px 0;
}

#analysis h2 {
    text-align: center;
    padding: 40px 0 0;
}

#analysis .targeting {
}

#analysis ul {
    padding: 40px 0 0;
    list-style-type: none;
    text-align: center;
    margin: 0;
}

#analysis ul li {
    text-align: center;
    float: left;
    width: 138px;
    height: 100px;
    padding: 0;
}

#analysis ul li img {
    height: 50px;
    width: auto;
}

#analysis ul li span {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding-top: 20px;
}

/*
*/
/*
#control {
    background-color: #f6f6f6;
    margin: 0 -50px;
    margin-bottom: -195px;

}
#control .content-page{
	position:relative;
}
#control .ball{
	 position: absolute;
	 width:50px;
	 left:220px;
	 top: -30px;

}
#control .bg{

	width:100%;
	height:100%;    position: absolute;
    width: 80%;
    height: 80%;
    top: -55px;
    left: 240px;	z-index:-100;

}
#control .controller{
	margin-bottom:-20px;
	z-index:10;
}
 @media only screen and (min-width: 1500px) {

	 #control {
    margin-bottom: -215px;
	}
 }
#control .content-page {
}

#control p {
    padding: 60px 0 40px 0;
}

#control h2 {
    text-align: center;
    padding: 0;
	    padding-top: 10px
}
*/
/*
#targeting {
    background-color: #ffef6c;
    margin-bottom: -20px;
    padding-bottom: 20px;
}

#targeting .content-page {
}

#targeting p {
    padding: 50px 0;
}

#targeting h2 {
    text-align: center;
    padding: 0;
}

#targeting .targeting {
    margin-bottom: 40px;
}

#targeting .targeting h2 {
    text-align: left;
}

#targeting ul {
    padding: 50px 0 0;
    list-style-type: none;
    text-align: center;
    margin: 0 -35px;
}

#targeting ul li {
    text-align: center;
    float: left;
    width: 158px;
    height: 150px;
    padding: 0;
}

#targeting ul li img {
    height: 60px;
    width: auto;
}

#targeting ul li span {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding-top: 20px;
}

#targeting .reporting h2 {
    text-align: right;
}
*/
/*
#page11 {
    background-color: #f6f6f6;
    margin-bottom: -20px;
    padding-bottom: 50px;
}

#page11 .content-page {
}

#page11 p {
    padding: 50px 0;
}

#page11 h2 {
    text-align: center;
    padding: 0;
}

#page11 .targeting {
    margin-bottom: 40px;
}

#page11 .targeting h2 {
    text-align: left;
}

#page11 ul {
    padding: 50px 0 0;
    list-style-type: none;
    text-align: center;
    margin: 0 -24px;
}

#page11 ul li {
    text-align: center;
    float: left;
    width: 118px;
    height: 140px;
    padding: 0;
	vertical-align:middle;
}
#page11 ul li:nth-child(4) img {
width:50px;

}
#page11 ul li .image{
	width:100%;
	height:80px;
	position:relative;

	text-align:center;
    vertical-align: middle;

}
#page11 ul li img {

	position:absolute;
	margin:auto;
	left:0;
	right:0;
	bottom:0;
	top:0;
        width: 70px;


}

#page11 ul li span {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding-top: 20px;
}

#page11 .reporting h2 {
    text-align: right;
}
*/
#seperator {
    position: relative;
    background-color: #f6f6f6;
    padding: 60px 0;
}
#flow-chart {
    position: relative;
    background-color: #f6f6f6;
    padding: 40px 0;
    margin-top: -110px;
}

#flow-chart .content-page {
    position: relative;
    z-index: 9;
    width: 900px;
}

#flow-chart #flow-chart-background {
    z-index: 5;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    margin: 0 -50px;
    background-color: #abe9e2;
    position: absolute;
    left: 0;
    top: 650px;
    right: 0;
    height: 600px;
    margin: auto -50px;
}

#flwo-chart .bg2 {
}

#beyond-media {
    background-color: #f6f6f6;
}

#beyond-media {
    background-color: #abe9e2;
}

#beyond-media .content-page {margin: 45px auto;}
#beyond-media #formats {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 0;
    width: 50%;
    float: left;
}
#beyond-media #formats div {display: flex;flex-direction: column;align-items: center;width: 50px;cursor: pointer;}
#beyond-media #formats div.active {opacity: 0.6;}
#beyond-media #formats img {width: auto;height: 55px;display: block;cursor: pointer;/* margin: auto; */}
#beyond-media #formats h4 {font-size: 10px;margin: 10px 0 0;font-weight: 500;}
#beyond-media #formats span {width: 90%;margin: auto;padding: 0;/* text-transform: uppercase; */text-align: center;display: block;font-size: 7px;}

#beyond-media h1 {
    font-family: "heros",serif;
    font-size: 52px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

#beyond-media p {
    display: block;
}

#beyond-media {
    background-color: #f6f6f6;
    padding-bottom: 140px;
}

#beyond-media .left {
    width: 50%;
    text-align: right;
    padding-top: 30px;
}

#beyond-media .left .box {
    width: 400px;
    float: right;
}
@media screen and (max-width: 700px){
    #beyond-media .left .box {
        width: 100%;
    }
}
#beyond-media .right {
    width: 35%;
    text-align: center;
    position: relative;
    margin-top: -30px;
}

#beyond-media .right .iphone {
    width: 260px;
    height: 410.5px;
    margin: 0 auto;
}

#beyond-media .right .iphone img {
    height: 100%;
    transform: scale(1.3);
}
#beyond-media .right .iphone iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: #f6f6f6;
}

#beyond-media h2 {
    color: #272a3e;
}

#beyond-media .accessCreative {
    width: 180px;
    margin: 40px 0 0;
}

#page8 {
    padding: 50px 0;
    background-color: #f6f6f6;
    text-align: center;
}

#page8 .content-page {
}

#page8 h3 {
}

#page8 h2 {
    text-decoration: underline;
}

#page9 .content-page {
    padding: 40px 0;
    /* background-color: #f6f6f6; */
}

#page9 .description {line-height: 28px;max-width: 710px;margin: 40px auto 50px;font-size: 12px;font-weight: 500;}
#page9 .description span {color: #fe7960;font-weight: 700;}
#page9 h1 {
    font-family: "heros",serif;
    font-size: 52px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

#page9 p {
    display: block;
}

#page9 {
    padding-bottom: 40px;
    margin-bottom: 0px;
    margin-top: 20px;
    padding-top: 110px;
    background: #ffef6c;
}

#page9 .left {
    width: 50%;
    text-align: right;
    margin-top: 40px;
}

#page9 .left .box {
    float: right;
    width: 450px;
}

#page9 .right {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 26px 0 0;
    padding: 0 0 0 50px;
}

#page9 .left h2 {
    color: #272a3e;
}

#page9 .alien {
    width: 208px;
    position: relative;
    z-index: 7;
}

#page9 .alien .hover {
    position: absolute;
    top: -151px;
    width: 495px;
    display: none;
}

#page9 .content-page {
    padding: 40px 0 50px;
    /* background-color: #f6f6f6; */
    /* width: 900px; */
}

#page9 h1 {
    font-family: "heros",serif;
    font-size: 39px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

#page9 h1 img {position: relative;top: 7px;}

#page9 p {
    display: block;
}

#launch-pad {
    background-color: #f6f6f6;
    padding-bottom: 210px;
    margin-bottom: -90px;
    position: relative;
    padding-top: 143px;
}

#launch-pad .content-page {
    position: relative;
}

#launch-pad .left {
    width: 47%;
    text-align: right;
}

#launch-pad .left .box {
    float: right;
    width: 400px;
}

#launch-pad .right {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 50px 0 0;
    padding: 0 0 0 12px;
    text-align: left;
}

#launch-pad .left h2 {
    color: #272a3e;
}

#launch-pad .lunchStation {
    width: 337px;
    position: absolute;
    bottom: -120px;
}

#launch-pad .lunchpadButton {
    margin-top: 30px;
    width: 210px;
}

#contact {
    color: #fff;
    background-color: #272a3e;
    padding-bottom: 40px;
    padding-top: 100px;
}

#contact h2 {
    
color: #abe9e2;
    
text-align: center;
}

#contact p {
    margin: -20px 0 50px;
    text-align: center;
}

#contact .content-page {
    text-align: right;
    margin-top: -40px;
    width: 1030px;
    max-width: 100%;
}

#contact .top {
    float: right;
    width: 380px;
}

#contact .top h2 {
    color: #aceae2;
}

#contact form {
    padding: 0 0 0;
}

input {
    height: 50px;
}

input,textarea {
    background-color: #f6f6f6;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border: 2px solid #f6f6f6;
    background-color: #f6f6f6;
    text-align: left;
    padding: 0 0 0 25px;
    display: block;
    font-style: italic;
    color: #272a3e;
    font-weight: 700;
    font-size: 12px;
    font-weight: 300;
    font-family: "museo-slab",serif;
}

#contact input,#contact textarea {
    margin: 0 0 25px;
    width: 350px;
}
#contact .left .lunchStation {
	display: flex;
	margin-bottom: 210px;
}
#contact .left .lunchStation img {
    width: 240px;
    height: 290px;
    display: block;
}
#contact .left .lunchStation span {color: #abe8e0;font-family: "heros",serif;font-size: 30px;text-align: left;padding: 0 0 0 30px;align-self: flex-end;}

textarea {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
    resize: none;
}

input:focus,textarea:focus {
    outline: none;
}

#contact .left {
       padding: 0px 0 0;
}

#contact .submit {
    width: 170px;
    float: right;
	cursor:pointer;
}

#contact .submit a {
    display: block;
    color: #f6f6f6;
    text-decoration: none;
}

#contact .submit .text {
    font-weight: 700;
    float: left;
    font-size: 35px;
    text-align: left;
}

#contact .submit .rocket {
    float: right;
    width: 75px;
    -ms-transform: rotate(60deg);
/* IE 9 */
    -webkit-transform: rotate(60deg);
/* Chrome, Safari, Opera */
    transform: rotate(60deg);
    margin: -9px 8px 0 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.footerText {
    text-align: center;
    padding-top: 15px;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    padding-bottom: 15px;
}

::-webkit-input-placeholder {
/* WebKit, Blink, Edge */
    color: #272a3e;
    font-weight: 700;
}

:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
    color: #272a3e;
    opacity: 1;
    font-weight: 700;
}

::-moz-placeholder {
/* Mozilla Firefox 19+ */
    color: #272a3e;
    opacity: 1;
    font-weight: 700;
}

:-ms-input-placeholder {
/* Internet Explorer 10-11 */
    color: #272a3e;
    font-weight: 700;
}

:placeholder-shown {
/* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
    color: #272a3e;
    font-weight: 700;
}

input:focus::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder,textarea:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder,textarea:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder,textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* IE 10+ */
#contact #map {
    height: 49px;
    /* border: 6px solid #ff7962; */
    border-radius: 10px;
    text-align: left;
    font-size: 15px;
}
#contact .list-cities{
	color:#f6f6f6;
	font-size:20.3px;
	font-family: "heros",serif;
	text-align:left;
	padding: 0 0 40px 0;
}
#contact .list-cities span {cursor: pointer;}
#contact .list-cities .red{color:#ff7962;}
#contact .list-cities .skyblue{color:#aceae2;}
#contact .list-cities .yellow{color:#ffed6b;}
#contact .list-cities .white{color:#f6f6f6;}
#pop-up-access {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;

    height: 100%;
    color: #f6f6f6;
    z-index: 100000;
	display:none;

}
#pop-up-access .bg{
	 position: fixed;
    left: 0;
    top: 0;
    width: 100%;	 background: #f6f6f6;
     filter:alpha(opacity=70); /* IE */
-moz-opacity:0.7; /* Mozilla */
opacity: 0.7; /* CSS3 */
    height: 100%;
	z-index:200;


}
@media screen and (max-height: 650px) {
    #pop-up-access {
		zoom:0.8;
    }
}

#pop-up-access .close-button {
    position: absolute;
    right: 35px;
    width: 20px;
    height: 20px;
    top: 0;
}

#pop-up-access .close-button img {
    width: 100%;
    height: 100%;
}

#pop-up-access .content {
    position: relative;
}

#pop-up-access h2 {
    font-size: 41px;
    font-family: "heros",serif;
    margin: 30px 0 10px;
    font-weight: 300;
}

#pop-up-access form {
    display: block;
    padding: 40px 0 0;
}

#pop-up-access input {
    width: 330px;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto 20px;
	height:40px;
}

#pop-up-access p {
    display: block;
    width: 55%;
    margin: 0 auto;
    line-height: 30px;
}

#pop-up-access .submit {
    width: 160px;
    height: 50px;
    margin: 40px auto;
    display: block;
}

#pop-up-access-content {
    position: absolute;z-index:210;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 660px;
    margin: auto;
    background-color: #272a3e;
    border: 7.5px solid #434343;
    opacity: 1;
    border-radius: 50px;
   -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;

}

#pop-up-access-content h2 {
    color: #ffed6b;
}

/* Container DIV - automatically generated */
.simply-scroll-container {
    position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip {
    position: relative;
    overflow: hidden;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

.simply-scroll-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.simply-scroll-list li img {
    border: none;
    display: block;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */
/* Container DIV */
.simply-scroll {
    margin-bottom: 1em;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
}

/* Explicitly set height/width of each list item */
.simply-scroll .simply-scroll-list li {
    float: left;
/* Horizontal scroll only */
    padding: 0 10px;
}


#footer .content-page {

max-width: 1030px;

display: flex;

align-items: center;
}
#footer .content-page > div {

font-size: 15px;

color: #505050;
}
#footer .pages {flex: 1;text-align: center;}
/* tablet */
@media only screen and (min-width:500px) and (max-width: 900px)  {
	#mainlogo,#menu,#menuOpener,.page{
		zoom:0.70;
	}
}

#contact .ajaxResponse{
	display:none;
	color:#ff7962;
	font-size:30px;
	padding:100px 0;
	font-family: "heros",serif;
	text-align:center;
}
#footer a{
  color: #505050;
  font-size: 15px;
}
#footer ul {
    list-style-type: none;
}
#footer .pages {
    font-size: 1vw;
    font-style: normal;
    /* text-align: left; */
    /* padding-bottom: 15px; */
    /* border-bottom: 1px solid white; */
}
#footer .pages li {
    display: inline;
    border-right: 1px solid #505050;
    margin: 0;
    padding: 0;
}
#footer .pages li:first-child a {
    padding-left: 0;
}
#footer {
    padding: 10px 0;
    background: #aceae2;
    display: block;
    position:relative;
    bottom:50px;
}
#footer a{
    text-decoration: none;
}
#footer .pages li:last-child {
    border-right: 0;
}
#footer .pages li a {
    margin: 0;
    padding: 0 20px 0 20px;
}
#footer .social-icons {
    /* margin: 15px 0; */
    text-align: left;
    /* border-top: 1px solid white; */
    float: left;
}
#footer .social-icons li {
    display: inline;
}
#footer .social-icons li img {
    margin: 0;
    width: 40px;
    margin-left: -10px;
    margin-right: 20px;
    color: #505050;
}
#footer .copyright{
    margin-top: 15px;
    float: right;
}
@media screen and (min-width: 500px) {
    .pop-up-frame-content {
        position: absolute;
        z-index: 210;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 600px;
        height: 660px;
        margin: auto;
        background-color: #272a3e;
        border: 7.5px solid #434343;
        opacity: 1;
        border-radius: 50px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
    }
    #pop-up-jobs-content h2 {
        font-size: 3vw;
    }
    #pop-up-jobs-content .content .title {
        font-size: 1.5vw;
    }
    #pop-up-jobs-content .content-job .text {
        display: block;
        height: 14vh;
        font-size: 1.5vw;
        text-align: left;
    }

#pop-up-jobs-content .content .title span{
  background: url(images/arrow-01.svg) right center no-repeat;
  padding: 0 60px 0 0;
}
}

/* .gdpr-page{
    background: rgba(39,42,62,1) url(../imagine-image.png) center center no-repeat;
    height: 100%;
} */

.gdpr-page .header{
    color: rgba(246,246,246,1);
    font-family: museo-slab;
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    text-shadow: 0px 2px 2px rgba(0,0,0,0.25);
    padding-top: 4%;    
} 

.gdpr-box-content{
    background-color: rgba(39,42,62,1);
    color: white;
    font-size: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-top: 20px;   

}

.gdpr-body{
    height: 100%;
}

.gdpr-text{
    margin: auto;
    font-size: 16px;
    width: 60%;
    text-align: left;
}


.gdpr-header{
    text-align: center;
}

.container{
    background-color: rgba(39,42,62,1);
    color: white;
}

.gdpr-button{
    position: absolute;
    right: 10%;
    top: 3%;
    background-color: red; /* Green */
    border: none;
    color: rgba(39,42,62,1);
    padding: 7px 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

#logo {
    padding: 130px 0 0;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    display: block;
}

.subheading {
    font-size: 39px;
    font-family: "heros", serif;
    color: #abe9e2;
    padding: 100px 0 0;
    text-align: center;
    text-transform: capitalize;
}

#sublogo {
    bottom: 0px;
    left: 0;
    width: 100%;
    font-size: 16px;
    color: #f6f6f6;
    font-family: museo-slab, "heros", serif;
    margin: 20px auto 0;
    line-height: 240%;
    text-align: center;
    max-width: 660px;
    text-transform: capitalize;
}
#sublogo span {
	color: #ffee6b;
}

#balls {

justify-content: space-between;

display: flex;

width: 400px;

margin: 40px auto 0;
}
#balls .ball {

background: #98EAE1;

width: 100px;

height: 100px;

border-radius: 100%;

justify-content: center;

align-items: center;

display: flex;

text-align: center;

font-weight: bold;

color: #252A3D;
}
#balls .ball span { width: 90%; }
#balls .ball.red {
    background: #FD6F58;
}
#balls .ball.yellow {
    background: #FDEF50;
}
#balls .ball.red {}

#client-services h2 {
    margin-right: 0;
}

#client-services {
    color: #fff;
    text-align: center;
    max-width: 1010px;
}

#client-services .content-page {
}

#client-services h2 {
    text-align: center;
    padding: 0;
    margin-top: 55px;
    margin-bottom: 8px;
}

#client-services ul {
    padding: 40px 0 0;
    display: inline-block;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#client-services ul li {
    display: block;
    text-align: center;
    width: 25%;
    height: 165px;
    margin: 0 0 45px 0;
    position: relative;
}
#client-services ul li:nth-child(4n) {
	/* margin-right: 0; */
}

#client-services ul li img {
    width: auto;
    height: 160px;
    display: block;
    margin: auto;
}

#client-services ul li div {
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    text-transform: lowercase;
    color: #272a3e;
    margin: -60px auto 0;
    width: 70%;
    height: 50px;
    right: 0;
    left: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
#client-services ul li div span { }


#revolution-china h2 {
    margin-right: 0;
}

#revolution-china {
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 30px auto 10px;
}

#revolution-china .content-page {
}

#revolution-china h2 {
    text-align: center;
    padding: 0;
    margin-top: 55px;
    margin-bottom: 8px;
}

#revolution-china ul {
    padding: 40px 0 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#revolution-china ul li {
    display: block;
    text-align: center;
    width: 260px;
    position: relative;
    margin-bottom: 70px;
}

#revolution-china ul li:nth-child(8) img {
    height: 80px;
    padding-bottom: 10px;
}

#revolution-china ul li img {
    width: auto;
    height: 150px;
    margin: auto;
}

#revolution-china ul li div span { }
#revolution-china ul li div {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    padding: 0;
    text-transform: none;
    color: #272a3e;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 70px;
    margin: auto;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}






#data-compliance .content-page {margin: 25px auto;}
#data-compliance #formats {
    display: flex;
    justify-content: space-between;
    padding: 0px 0 0;
    flex-wrap: wrap;
}
#data-compliance #formats > div {display: flex;flex-direction: column;align-items: center;width: 220px;cursor: pointer;position: relative;margin-bottom: 20px;}
#data-compliance #formats > div img {width: 120px;height: 101px;display: block;cursor: pointer;}
#data-compliance #formats > div div {width: 120px;height: 32px;margin: 10px auto 0;padding: 10px 0px;text-transform: lowercase;text-align: center;font-size: 10px;position: absolute;bottom: 0;display: flex;justify-content: center;align-items: center;}

#data-compliance h1 {
    font-family: "heros",serif;
    font-size: 52px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

#data-compliance {
    background-color: #abe9e2;
    padding: 100px 0 110px;
    margin-top: -180px;
}

#data-compliance span.description {width: 90%;line-height: 28px;display: block;font-size: 12px;margin: 0 auto 51px;font-weight: 500;}
#data-compliance span.description span, #data-compliance span.description a {color: #ff7963;text-decoration: none;font-weight: 700;}
#data-compliance h2 {
    color: #272a3e;
}




@media screen and (max-width: 700px){
    #balls {
    flex-direction: column;
    align-items: center;
    width: auto;
    }
    #sublogo {
        width: 60%;
    }
    #balls .ball {margin-bottom: 50px;}

    #client-services ul {flex-wrap: wrap;padding: 10px 55px 0;flex-direction: row;justify-content: space-evenly;}
    #client-services ul li {
        width: 150px;
        margin: 0 auto 25px;
        height: 150px;
    }
    #client-services ul li:nth-child(4n) {
        margin-right: auto;
    }
    #mission-update .description {
        width: 70%;
    }

    #revolution-china ul li {margin: 0 auto 10px;flex: 1 1 150px;}
    #data-compliance #formats > div {/* margin: 0 auto 20px; */flex: 1 1 160px;}
    #firstPage  {margin-bottom: 20px;}

    #page3 .right .iphone video {
        margin-top: -30px;
        transform: scale(1.2);
    }
    #beyond-media .content-page {
        margin: 5px auto;
        display: flex;
        flex-direction: column;
    }
    #data-compliance {

padding: 50px 0 1px;

}

    #contact .left .lunchStation { display: none;}
    #footer .content-page {
        width: 100% !important;
        padding: 0 10px !important;
        flex-direction: column;
    }
    #footer .content-page > div {
        margin-bottom: 30px;
    }
    #page3 #formats {
        
justify-content: center;
        
order: 3;
        
width: 100%;
    }
    #page3 #formats div {
        
width: 70px;
    }
    #beyond-media .right .iphone img {

transform: scale(1.2);

}
    #data-compliance .content-page {
        
padding: 0 40px !important;
    }
    #footer {
        padding: 25px 0;
    }
    #page3 .content-page {
        display: flex;
        flex-direction: column;
    }
    #page3 .content-page .right {
    order: 2;
}
    #page3 .content-page .left {
    order: 1;
    margin: -70px 0 60px;
}
    #beyond-media #formats {
        width: 100%;
        order: 3;
    }
    #beyond-media .right {
    order: 2;
    margin-top: 50px;
}
    #beyond-media .left {
    order: 1;
    margin-top: -60px;
}
    #contact .submit .rocket { display: none; }
    #contact .submit .text { float: right; }
    #logo {
        
padding: 80px 0 0;
        
width: 90%;
    }
    .subheading {
    padding: 60px 0 0;
}
    #page9 .content-page {
    margin: -50px 0  0!important;
}
    #revolution-china {
        margin-top: -70px;
    }
}
