/*
* Style
*/

/*
* Google font
*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Roboto");

/*
* Section - Home
*/

/** BG Image */
#home {
  background-image: url("../images/bg-home-1.jpg");
}

/** BG Parallax */
#home-bg-parallax > .bg-parallax {
  background: url("../images/bg-parallax.jpg");
}

/** BG Slideshow */
#home-bg-slideshow .slides > .bg-cover:nth-child(1) {
  background: url("../images/bg-home-1.jpg");
}
#home-bg-slideshow .slides > .bg-cover:nth-child(2) {
  background: url("../images/bg-home-2.jpg");
}
#home-bg-slideshow .slides > .bg-cover:nth-child(3) {
  background: url("../images/bg-home-3.jpg");
}
#home-bg-slideshow > .position-absolute {
  z-index: 20;
}

/** BG Video */
#home-bg-video .player:before {
  z-index: 15;
}
#home-bg-video .player.is-mobile {
  display: none;
}
#home-bg-video .container {
  position: relative;
  z-index: 20;
}
#home-bg-video .inline-YTPlayer {
  height: 100%;
  overflow: hidden;
}

/*
* Section - Fun Facts
*/

#fun-facts {
  background-image: url("../images/bg-fun-facts.jpg");
}

/*
* Section - Skills
*/

#skills {
  background-image: url("../images/bg-skills.jpg");
}

/*
* Section - Quote
*/

#quote {
  background-image: url("../images/bg-quote.jpg");
}

/*
* Section - Keep In Touch
*/

#keep-in-touch {
  background-image: url("../images/bg-keep-in-touch.jpg");
}

/*
* Section - Coming Soon
*/

#coming-soon {
  background-image: url("../images/bg-coming-soon.jpg");
}

/*
* Section - Contact
*/

#contact {
  background-image: url("../images/bg-contact.jpg");
}

/*
* Footer
*/

.footer-logo {
  max-height: 80px;
}
.footer-icon-social {
  bottom: 10px;
  position: relative;
}
.super-ul{
  list-style: none;
  padding-left: 30px;

}
.super-ul li{
  padding: 0 0 5px 0;
  font-weight: 700;
}
.super-ul li::before {
  content: "\2022";
  color: #1694ca;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
  font-size: 30px;
}
.timeline-ul{
  list-style: none;
  padding-left: 0;

}
.timeline-ul li{
  padding: 0 0 5px 0;
}
.question {
  color: #fff;
  position: relative;
  background: #262626;
  margin: 0;
  padding: 10px 10px 10px 15px;
  display: block;
  width:100%;
  cursor: pointer;
  border-radius: 20px;
}

.answers {
  font-weight:300;
  background: #f2f2f2;
  padding: 0px 15px;
  margin: 0px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .7s ease;
  -moz-transition: .7s ease;
  -o-transition: .7s ease;
  transition: .7s ease;
}

.questions:checked ~ .answers{
  height: auto;
  opacity: 1;
  padding: 15px;
}

.plus {
  color:#fff;
  position: absolute;
  margin-left: 10px;
  margin-top: 5px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.questions:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}
#faq .row{
  margin-bottom: 10px;
}
.terms{
  background-color: #009cdb !important;
  padding: 15px;
  font-size: 11px;
  margin: 0;
}