
@-ms-viewport{
  width: device-width;
}
html, body {
    position: relative;
}
body {
  font-family: 'Fjalla One', sans-serif;
    background: #ddd;
    font-size: 16px;
    color:#333;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}
/*-------------------------------------------------------------------------------header------------------------------------------------------------------------*/
.top{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header{
  height: 60px;
  width: 95%;
  margin: 0px auto;
}
.branding{
  float: left;
  margin: 35px 0 0 0;
}

.branding span {
  color: #faaa05;
  margin: 0 10px 0 0;
}
.logoTag {
  color: #fff;
  text-shadow: 1px 1px 0 rgba(51, 51, 51, 0.2);
  font-size: 28px;
  text-decoration: none;
  padding-left: 60px;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: 10px 0;
}

.section-menu {
  position: fixed;
  right: -50px;
  top:20px;
  display: block;
  z-index: 100000;
  float: left;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
}

#show, #hide {
  float: left;
  width: 50px;
  height: 24px;
  position: absolute;
  top: 18px;
  z-index: 1000;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

#show span, #hide span{
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: #faaa05;
  border-radius: 3px;
  box-shadow: 1px 1px 0 rgba(51, 51, 51, 0.2);

}

#show:hover span, #hide:hover span {
  background: #fff;
}
ul.floater{
  margin: 0 0 0 70px ;
  display: block;
  width: 400px;
  height: 30px;
  padding: 10px 0;
  list-style: none;
  overflow: hidden;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  float: left;
}
ul.floater li {
  text-align: center;
  margin: 10px;
  float: left;
}

ul.floater li a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(51, 51, 51, 0.2);
  cursor: pointer;
}
ul.floater li a:hover {
  color: #faaa05;
  cursor: pointer;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
}
ul.floater li a:active {
  color: #777;
  cursor: pointer;
  transition: all .1s linear;
  -webkit-transition: all .1s linear;
}
/*-------------------------------------------------------------------------------- slider-----------------------------------------------------------------------------*/
.swiper-container {
    width: 100%;
    height: 100% !important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  background-image: url(../img/next.png);
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
  background-image: url(../img/prev.png);
}
.swiper-slide {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.slide-caption{
    text-align: center;
    display: block;
    margin-top: 42%;
    z-index: 100;
    width: 90%;
  }

.slide-caption h2{
  font-family: 'Fjalla One', sans-serif;
  width: 100%;
  margin-top: 0px;
  font-weight: 100;
  line-height: 90px;
  letter-spacing: -5px;
  color: white;
  font-size: 100px;
  text-shadow: 1px 1px 0 rgba(51, 51, 51, 0.2);
    }

.slide-caption h3{
  font-family: 'Shadows Into Light', cursive;
  color: #faaa05;
  margin-top: -95px;
  width: 100%;
  font-size: 40px;
  height: 100px;
  text-shadow: 1px 1px 0 rgba(51, 51, 51, 0.2);
}
.lrn-more {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  margin-top: 35px;
  font-family: 'Heebo', sans-serif;
  font-size: 20px;

}
.lrn-more::before {
  content: "See More";
  color: white;
  position: absolute;
  z-index: 1000;
  left: 0;
  bottom: 40px;
  text-align: center;
  width: 100%;
}
.lrn-more::after {
  content: "\25bc";
  font-size: 25px;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 15px 0 rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 1000;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  line-height: 50px;
  transform: scaleY(0.2);
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  animation: seeMor 5s linear infinite;
  -webkit-animation: seeMor 5s linear infinite;
}

@keyframes seeMor {
  0%    { line-height: 50px;}
  80%    { line-height: 50px;}
  85%  {  line-height: 30px;}
  90%  {  line-height: 50px;}
  95%  {  line-height: 30px;}
  100%  {  line-height: 50px;}
}
@-webkitkeyframes seeMor {
  0%    { line-height: 50px;}
  80%    { line-height: 50px;}
  85%  {  line-height: 30px;}
  90%  {  line-height: 50px;}
  95%  {  line-height: 30px;}
  100%  {  line-height: 50px;}
}
.swiper-slide img{
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -120px;
}
.swiper-pagination{
  margin: 0 0 20px 0;
  transform: scale(1.7);
  -webkit-transform: scale(1.7);
}
.slide1, .slide2, .slide3, .slide4 {
  background-repeat: no-repeat;
  background-size: 100%;
}
.slide1 {
  background-image: url(../img/slide-image-1.jpg);
}
.slide2 {
  background-image: url(../img/slide-image-2.jpg);
}
.slide3 {
  background-image: url(../img/slide-image-3.jpg);
}
.slide4 {
  background-image: url(../img/slide-image-4.jpg);
}
/*-----------------------------------------------------------------------------content-----------------------------------------------------------------*/
section {
  position: relative;
  width: 99%;
  display: block;
  }
section img{
  width: 100%;
  padding: 0;
  margin: -10px 0 0 0;
  border:4px solid #ddd;
  }
#section1, #section2, #section3, #section4 {
  width: 100%;
  display: block;
  min-height: 100%;
  float: left;
  clear: both;
  margin-bottom: 100px;
}
#section1::before, #section2::before, #section3::before, #section4::before {
  background-color: #333;
  content: " ";
  width: 101%;
  height: 440px;
  margin-bottom: -300px;
  display: block;
}
.section-content {
  width: 80%;
  height: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
}
.five, .ten, .fifteen, .twenty, .thirty, .forty, .fifty, .seventy, .ninety, .hundred{
  position: relative;
  display: block;
  margin:  0;
  padding: 0;
}
.five {
  width: 5%;
}
.ten {
  width: 10%;
}
.fifteen {
  width: 15%;
}
.twenty {
  width: 20%;
}
.thirty {
  width: 30%;
}
.forty {
  width: 40%;
}
.fifty {
  width: 50%;
}
.seventy {
  width: 70%;
}
.ninety {
  width: 90%;
}
.hundred {
  width: 100%;
}

.blank {
  opacity: 0;
}
.cover_lft{
  background-color: #333;
  margin-top: -4px;
  padding-top: 4px;
}
.colored::after {
  content: " ";
  background-color: #ddd;
  position: absolute;
  z-index: 100;
  top: -6px;
  left: 4px;

  width: 100%;
  height: 99.5%;
  display: block;
  min-height: 100px;
  min-width: 100%;
}
.section-content h2 {
  position:absolute;
  left:40px;
  top:-50px;
  font-family: 'Shadows Into Light', cursive;
  color: #faaa05;
  font-size: 60px;
  font-weight: normal;
  line-height: 50px;
}
.section-content p { display: none;
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  line-height: 24px;
  position:absolute;
  left:40px;
  top:100px;
  color:white;
  width: 80%;
}
.section-content p::first-letter {
    font-size: 150%;
    letter-spacing: 2px;
    color: #faaa05;
    font-family: 'Fjalla One', sans-serif;

}
.left {
  float: left;
}
.right {
  float: right;
}

.copyright {
  padding: 10px 0;
  float: left;
  clear: both;
  width: 100%;
  height: 20px;
  background: #555;
  display: block;
  font-size: 70%;
  color: #ddd;
  text-align: center;
}
/*-------------------------------------------------------------------------------------media-------------------------------------------------------------------------*/
#slideUp, #slideDown {
  float: right;
  background-color: #888;
  position: absolute;
  top: -38px;
  right: 0px;
  z-index: 1000;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  height: 38px;
  border-radius: 17px 0 0 0;
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.2);
}

#slideUp span, #slideDown span{
  display: block;
  height: 30px;
  width: 100%;
  position: relative;
  background-image: url(../img/share.svg);
  background-position: 50% 0px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.media {
  float: left;
  position: fixed;
  bottom: -385px;
  right: 0px;
  z-index: 100;
  background-color: #888;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.2);

}
.media label {
  color: #fff;
  float: left;
  clear: both;
  margin: 5px 5px 0 0;
  font-size: 14px;
}
.social-share, .social-follow  {
  float: left;
  clear: both;
  margin: 15px;
}
.social-share .facebook, .social-share .twitter, .social-share .instagram,
.social-share .behance, .social-share .gmail, .social-follow .facebook,
.social-follow .twitter, .social-follow .instagram, .social-follow .behance, .social-follow .gmail {
  background-color: #transparent;
  opacity: 0.7;
}

.links{
float: left;
clear: both;
  width: 100%;
  display: block;
}
.social-share a, .social-follow a{
  width: 30px;
  height: 30px;
  margin: 5px;
  float: left;
  clear: both;
}
.facebook{
  background-image: url(../img/logoFacebook.svg);
}
.twitter{
  background-image: url(../img/logoTwitter.svg);
}
.instagram{
  background-image: url(../img/logoInstagram.svg);
}
.behance{
  background-image: url(../img/logoBehance.svg);
}
.gmail{
  background-image: url(../img/logoGmail.svg);
}
.social-share .facebook, .social-share .twitter, .social-share .instagram, .social-share .behance, .social-share .gmail,
.social-follow .facebook, .social-follow .twitter, .social-follow .instagram, .social-follow .behance, .social-follow .gmail {
  background-size: 100%;
  background-repeat: no-repeat;
}
.social-share .facebook, .social-share .twitter, .social-share .instagram, .social-share .behance, .social-share .gmail {
  border-radius: 50%;
}
.social-follow .facebook, .social-follow .twitter, .social-follow .instagram, .social-follow .behance, .social-follow .gmail {
  border-radius: 10%;
}
.social-share .facebook:hover, .social-share .twitter:hover, .social-share .instagram:hover, .social-share .behance:hover, .social-share .gmail:hover,
.social-follow .facebook:hover, .social-follow .twitter:hover, .social-follow .instagram:hover, .social-follow .behance:hover, .social-follow .gmail:hover {
  transform: scale(1.1);
  transition: transform .1s linear;
  -webkit-transition: transform .1s linear;

}
/*----------------------------------------------back to top ---------------------------------*/
.cd-top {
  border-radius: 70% 70% 0 0;
  display: inline-block;
  height: 55px;
  width: 150px;
  position: fixed;
  bottom: 0;
  left: 45%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
 background: #808285 url(../img/cd-top-arrow.svg) no-repeat center 50%;
 visibility: hidden;
 opacity: 0;
 -webkit-transition: opacity .3s 0s, visibility 0s .3s;
 -moz-transition: opacity .3s 0s, visibility 0s .3s;
 transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
 -webkit-transition: opacity .3s 0s, visibility 0s 0s;
 -moz-transition: opacity .3s 0s, visibility 0s 0s;
 transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
 /* the button becomes visible */
 visibility: visible;
 opacity: 1;
}
.cd-top.cd-fade-out {
 /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
 opacity: .5;
}
.no-touch .cd-top:hover {
 background-color: #57A375;
 opacity: 1;
}
