/**
 * fullPage 2.1.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html, body {
    margin: 0;
    padding: 0;
    overflow:hidden;
    
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
    }
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    margin: 0 auto;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    padding-top:75px;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: scroll;
}
.fp-easing {
    -webkit-transition: all 0.7s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.7s ease-out;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav li,
.fp-slidesNav li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav li {
    display: inline-block;
}
#fp-nav li a,
.fp-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav li .active span,
.fp-slidesNav .active span {
    background: #333;
}
#fp-nav span,
.fp-slidesNav span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
}
.fp-tooltip.right {
    right: 20px;
}
.fp-tooltip.left {
    left: 20px;
}

/* down arrow */

.arrow-wrap {
  position:absolute;
  z-index:1;
  left:50%;
  bottom:9em;
  margin-left:-5em;
  
  width:10em;
  height:10em;
  padding:4em 2em;
  border-radius:50%;
  font-size:0.5em;
  display:block;
  
}
.arrow {
	float: left;
  position: relative;
  width: 0;
  height: 0;
  top:10px;
  left:15px;
  border-top: 30px solid transparent;
  border-right: 30px solid black;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

.arrow:after {
	content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top: 13px solid black;
  border-radius: 40px 0 0 0;
  top: -40px;
  left: -30px;
  width: 42px;
  height: 42px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}


.hint {
  position:absolute;
  top:0.6em;
  width:100%;
  left:0;
  font-size:2em;
  font-style:italic;
  text-align:center;
  color:#fff;
  opacity:0;
}


.arrow-wrap:hover .hint {
  opacity:1;
}


  @-webkit-keyframes arrows {
    0% { top:0; }
    10% { top:12%; }
    20% { top:0; }
    30% { top:12%; }
    40% { top:-12%; }
    50% { top:12%; }
    60% { top:0; }
    70% { top:12%; }
    80% { top:-12%; }
    90% { top:12%; }
    100% { top:0; }
  }
  
  .arrow-wrap .arrow {
    -webkit-animation: arrows 2.8s 0.4s;
    -webkit-animation-delay: 3s;
  }
   #header, #footer{
		position:fixed;
		height: 70px;
		display:block;
		width: 100%;
		text-align:center;
		z-index:9;	
		padding: 10px 10px 10px 0px;
	}

	#header{
		background-color:#ffffff;
		top:0px;
	}
	#footer{
		background-color:#ffffff;
		bottom:0px;
	}
.profile{
	height: 70px;
	float: left; 
	width: 12%;
	
}
.profile-icons{
	height: 70px;
	float:left;	
	}
.social{
	float:right;
	width:50%;
	display:inline-block;
}
.twitter-share-button{
	float:right;
}
.fb-like{
	float:right;
	font-size:2em;
}
.linkedin{
	float:right;
}
.g-plusone{
	float:right;
}

#footer img{
	
	float:left;
    
	}
#footer h6 {
	padding:0px;
	margin: 0px 0px;
	line-height: 15px;
	}

@media (max-width: 767px){
	
	  #header, #footer{
		position:fixed;
		
		display:block;
		width: 100%;
		text-align:center;
		z-index:9;	
		padding: 10px 40px 10px 0px;
	}

	#header{
		background-color:#ffffff;
		height: 55px;
		top:0px;
	}
	#footer{
		background-color:#ffffff;
		height: 45px;
		bottom:0px;
	}

#footer img{
	
	 float:left;
	 
	}
	#footer h6 {
	padding:0px;
	margin: 0px 0px;
	line-height: 10px;
	}
	
	.arrow-wrap {
  position:absolute;
  z-index:1;
  left:45%;
  bottom:12em;
  margin-left:-5em;
  width:10em;
  height:10em;
  padding:4em 2em;
  border-radius:50%;
  font-size:0.5em;
  display:block;
  
}
.arrow {
	float: left;
	 position: relative;
  width: 0;
  height: 0;
  top:10px;
  left:10px;
  border-top: 20px solid transparent;
  border-right: 20px solid black;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

.arrow:after {
	content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top: 8px solid black;
  border-radius: 30px 0 0 0;
  top: -26px;
  left: -31px;
  width: 42px;
  height: 42px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
}

