/*Colors*/
/*#bcdca2 light green
#4f5e20 dark green
#0eb593 medium green
#3f3f3f grey
 */

/*Clearfix*/
.cf:after {
  content:" ";
  display: table;
  clear:both;
}

body{
  font-family: 'Open Sans', sans-serif;
  color:#fff;
  font-weight: 400;
}

.wrapper {
  	max-width:640px;
    height:400px;
    padding:0;
    border:1px solid #3f3f3f;
    margin:0 auto;
    background-color: #fff;
    overflow: hidden;
}

header{
  background-color: #fff;
  width:100%;
  height:80px;
  padding: 0;

}

.header-left {margin-top:1%;}

.header-right {margin-top:0;}

.header-right p{

    display: block;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: .5rem;
    color:#3f3f3f;
    font: 400 14px/18px 'Open Sans', sans-serif;
    margin-top:5%;
    width:100%;
    margin-left:5%;

  }
  

.animated {
  position: relative;
}

.animated img {
  position: absolute;
  top:-515px;
  left:0px;

  }

.img-anim {
	height: 260px;
    width: auto;
}

  /*cloud animation*/


  
/*The container will also serve as the SKY*/

*{ margin: 0; padding: 0;}

body {
	/*To hide the horizontal scroller appearing during the animation*/
	overflow: hidden;
}

#clouds{
	padding: 100px 0;
	background: #D2F0E9;
	background: -webkit-linear-gradient(top, #D2F0E9 0%, #fff 100%);
	background: -linear-gradient(top, #D2F0E9 0%, #fff 100%);
	background: -moz-linear-gradient(top, #D2F0E9 0%, #fff 100%);
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	
	position: relative; 
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute; 
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;
	
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 40s linear infinite;
	-moz-animation: moveclouds 40s linear infinite;
	-o-animation: moveclouds 40s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/
	
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

.x3 {
	left: -250px; top: -200px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

.x4 {
	left: 470px; top: -250px;
	
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

.x5 {
	left: -150px; top: -150px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}

 /*cloud animation*/

.header-right p span {color:#005874;}

.tabs {
  margin-bottom: 0px !important;
  margin-left: -15px;
  margin-right: -24px;
}

.tabs dd, .tabs .tab-title {
  position: relative;
  margin-bottom: 0px !important;
  list-style: outside none none;
  float: left;
  width: 33%;
  border-bottom:2px solid #fff;
}

.tabs dd > a, .tabs .tab-title > a {
  display: block;
  padding: 10px 10px 10px 10px;
  font: 700 17px/17px "Open Sans", sans-serif;
  text-align: center;
  color:#fff;
  background-color: #3f3f3f;
}

.tabs dd.active a, .tabs .tab-title.active a {
  color:#fff;
   background: url('../img/hover.png') no-repeat;
}

.tabs dd:first-child a {
  background-color: #3f3f3f;
    border-right: 2px solid #fff;
}

.tabs dd:last-child a {
	background-color: #3f3f3f;
/*    border-right: 2px solid #fff;*/
  }

.tabs dd:nth-child(2) a{
  background-color: #3f3f3f;
  border-right:2px solid #fff;
}

 /*Content for tabs   */

.tabs-content {
  margin-bottom: 0;
  width: 105%;
  margin-left: -16px; /*-54px;*/
 
  position: relative;
  background-color: #D2F0E9;
}

.tabs-content .answer {
  margin: 15px 35px 15px 35px;
  position: relative;
  top:250px;

}

.tabs-content .answer h2 {
  font: 300 34px/34px "Open Sans", sans-serif;
  color:#bcdca2;
  text-transform: uppercase;
}

.tabs-content .js-choosing.answer h2 {color:#0eb593;}

.tabs-content .js-tracking.answer h2 {color:#bcdca2;}

.tabs-content .answer p {
  font: 400 15px/21px "Open Sans", sans-serif;
  color:#fff;
}

.tabs-content .content {
  background-color: #D2F0E9;
  
}

.tabs-content .content:first-child {
  background-color: #D2F0E9;
  
}

.tabs-content .content:nth-child(2) {
  background-color: #D2F0E9;
  
}

.tabs-content .content:last-child {
  background-color: #D2F0E9;
  
}



/*intro screen for desktop*/
#intro-screen{
  display: block;
  padding: 1em;
      width: 100%;
    height: 100%;
  z-index: 1000;
  position: absolute;
  top:0px;
  background: url('../img/index_bg.jpg') no-repeat left top;
}

.intro-text {
  position: relative;
  margin: 0 auto;
  width:100%;
}

.intro-text p{
  font: 300 20px/26px "Open Sans", sans-serif;
  color:#fff;
}

.center {
    text-align: center;
}


#intro-screen .intro-text button {
  border: 3px solid #fff;
    font-size: 21px;
    line-height: 1;
    font-family: "ProximaNova-SemiBold", sans-serif;
    background-color: transparent;
    padding: 0.75rem 2rem;
    position: relative;
    margin-top: 1em;
  
}

#intro-screen .intro-text button:hover {
  background-color: rgba(79,94,32,0.30);
}

#branch {padding-left:80px; display:block; float:left;}

#eggnest {padding-left:75px; padding-right:50px; display:block; float:left;}
#footer {
  font: 500 12px/20px "Open Sans",sans-serif;
    color: #000;
    width: 100%;
    float: left;
    padding-top: 20px;
    position: relative;
    top: -286px;
    /* left: 37px; */
    text-align: center;
}

.mobile {
  display: none;
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers)
====================================================================== */
@media only screen and (max-width: 568px) {

.mobile {
  display: block;
  position: relative;
  top: -510px;
  text-align: center;
}

.animated {
  display: none;
}

  .wrapper {
    height:100%;
    width:100%;
  }
#intro-screen {
    padding-top: 25px;
    width: 100%;
    height: 100%;
    top: 0px;
  }

  .intro-text {width: 90%;}

  .intro-text p {
    font: 300 18px/24px "Open Sans",sans-serif;
  }

  #intro-screen .intro-text button {
    top: 25px;
    left: 0.5%;
  }

  header {height: 90px;}

  .header-left {margin-top: 2%;}


  .header-right p {
    display: block;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: .5rem;
    margin-left:0;
    width:95%;
  }

  .tabs dd > a, .tabs .tab-title > a {
      font: 700 12px/14px "Open Sans",sans-serif;
      padding: 8px;
    }

  .tabs-content .answer h2 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0px;
    font-weight: 300;
  }

  .tabs-content .answer p {
    font-size:10px;
    line-height: 17px;
  }

  .tabs-content .answer {
    margin: 15px 5% 15px 5%;
    top: 190px;
     width: 90%;
  }

  .tabs-content {width: 111%;}

  #footer {
    font: 500 12px/16px "Open Sans",sans-serif; 
    width:90%; 
    position: relative;
    top: -525px;
    left: 15px;
  }

  .animated img {
    position: absolute;
    top: -640px;
    left: 0px;




}
}
