/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Base
  01.1 Typography
02. Components
  02.1 Navigation
  02.2 Buttons
  02.3 Footer
03. Layout
  03.1 Home
04. Media Queries

--------------------------------------------------------------*/
/*--------------------------------------------------------------
01. Base
--------------------------------------------------------------*/
/**
 * 01.1 Typography
 */
body {
  font-family: 'Poppins', sans-serif;
  color: #2a2a2a; }

h1 {
  color: #fff;
  font-size: 180px;
  font-weight: 700; }

h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5em; }

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0; }

h4 {
  font-size: 16px;
  font-weight: 700; }

p {
  font-size: 20px;
  line-height: 1.6em; }

/*--------------------------------------------------------------
02. Components
--------------------------------------------------------------*/
/**
 * 02.1 Navigation
 */
.navbar-default {
  background-color: transparent;
  border: none;
  padding-top: 35px; }
  .navbar-default .navbar-brand {
    color: #2a2a2a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase; }
    .navbar-default .navbar-brand:hover {
      color: #2a2a2a; }
  .navbar-default .navbar-nav > li > a {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 600;
    transition: opacity ease-in-out 300ms;
    -webkit-transition: opacity ease-in-out 300ms; }
    .navbar-default .navbar-nav > li > a:hover {
      color: #fff;
      opacity: 0.7; }

ul.nav.navbar-nav {
  padding-top: 5px; }

.nav > li > a {
  padding: 10px 25px; }

.navbar-right {
  margin-right: -25px; }

.navbar-default .navbar-toggle {
  border: none; }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #2a2a2a;
    width: 24px;
    height: 3px; }
  .navbar-default .navbar-toggle:hover {
    background-color: transparent; }

.nav-white .navbar-nav > li > a,
.nav-white .navbar-brand {
  color: #fff; }
.nav-white .navbar-brand:hover {
  color: #fff; }
.nav-white.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff; }

#nav.scrolled {
  background-color: #fff;
  padding-top: 4px;
  padding-bottom: 1px;
  -webkit-box-shadow: 0 2px 20px 0 rgba(26, 26, 26, 0.08);
  box-shadow: 0 2px 20px 0 rgba(26, 26, 26, 0.08);
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms; }
  #nav.scrolled .navbar-nav > li > a {
    font-size: 13px; }

.nav-white.scrolled .navbar-nav > li > a,
.nav-white.scrolled .navbar-brand {
  color: #2a2a2a; }
.nav-white.scrolled.navbar-default .navbar-toggle .icon-bar {
  background-color: #2a2a2a; }

.nav-white.scrolled .navbar-nav > li > a.highlight-link {
  color: #FF3165; }

/**
 * 02.2 Buttons
 */
.btn {
  font-size: 16px;
  font-weight: 600;
  border-width: 2px;
  border-radius: 4px;
  padding: 24px 44px;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms; }

.btn-default {
  background-color: #FF3165;
  color: #fff;
  border-color: #FF3165; }
  .btn-default:hover {
    background-color: #fff;
    color: #2a2a2a;
    border-color: #fff; }

.btn-clear {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  border-radius: 3px;
  border-color: #fff; }
  .btn-clear:hover {
    background-color: #fff;
    color: #2a2a2a; }

/**
 * 02.3 Footer
 */
footer {
  color: #fff;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 30px; }
  footer p {
    font-size: 45px;
    font-weight: 600;
    margin-top: 40px; }
  footer span {
    display: inline-block;
    border-bottom: 4px solid #fff;
    line-height: 1.2em; }
  footer .btn {
    margin-top: 40px; }
  footer .copyright {
    font-size: 14px;
    margin-top: 100px; }
    footer .copyright a {
      color: #fff;
      text-decoration: underline; }

/*--------------------------------------------------------------
03. Layout
--------------------------------------------------------------*/
#intro {
  height: 900px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex; }
  #intro .content {
    text-align: center;
    margin: auto auto; }
  #intro h1 {
    margin-top: 70px; }
  #intro p {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 50px; }

#demos {
  padding-top: 120px;
  padding-bottom: 130px; }
  #demos header {
    text-align: center;
    margin-bottom: 90px; }
    #demos header p {
      font-weight: 600; }
  #demos a {
    display: block; }
  #demos img {
    margin-left: auto;
    margin-right: auto;
    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms; }
    #demos img:hover {
      -webkit-transform: scale(1.005);
      transform: scale(1.005);
      -webkit-box-shadow: 0 3px 45px 0 rgba(26, 26, 26, 0.17);
      box-shadow: 0 3px 45px 0 rgba(26, 26, 26, 0.17); }
  #demos h3 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 95px; }

.cta {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 130px; }
  .cta p {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.7em;
    width: 60%;
    margin-top: 40px;
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto; }
  .cta span {
    display: inline-block;
    border-bottom: 4px solid #fff;
    line-height: 1.2em; }

#features {
  text-align: center;
  padding-top: 130px;
  padding-bottom: 100px; }
  #features header {
    margin-bottom: 80px; }
    #features header p {
      font-weight: 600; }
  #features ul {
    width: 700px;
    margin-left: auto;
    margin-right: auto; }
  #features h4 {
    margin-top: 18px;
    margin-bottom: 45px; }
  #features li {
    margin-left: 11px;
    margin-right: 11px;
    width: 140px; }
  #features .more {
    font-size: 36px;
    font-weight: 700;
    margin-top: 50px; }

#reviews {
  background-color: #1e1f28;
  color: #fff;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 200px; }
  #reviews header {
    margin-bottom: 100px; }
  #reviews .box {
    border: 3px solid #303141;
    padding: 55px 30px 30px 35px;
    margin-bottom: 30px; }
  #reviews .quote {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px; }
  #reviews .author {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 15px; }
  #reviews i {
    color: #fff35d; }
  #reviews li {
    padding-left: 2px;
    padding-right: 2px; }

/*--------------------------------------------------------------
04. Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
  .cta p {
    width: 75%; } }
@media only screen and (max-width: 992px) {
  .cta p {
    width: 90%; }

  #features ul {
    width: 100%; } }
@media only screen and (max-width: 768px) {
  .cta p {
    width: 100%; } }
@media only screen and (max-width: 550px) {
  h1 {
    font-size: 100px; }

  #intro p {
    font-size: 30px; } }
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 50px; }

  .cta {
    padding-bottom: 120px; }
    .cta p {
      font-size: 30px; }

  footer p {
    font-size: 30px; } }
@media only screen and (max-width: 360px) {
  #features li {
    margin-left: 0;
    margin-right: 0; } }