body {
  font-family: 'Roboto', sans-serif;
}

::selection {
  background: #fed11b; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #fed11b; /* Gecko Browsers */
}

header {
	background: #1d2b64;
	background: -moz-radial-gradient(circle farthest-side at right top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  background: -webkit-radial-gradient(circle farthest-side at right top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  background: radial-gradient(circle farthest-side at right top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  position: relative;
  box-shadow: 0px 0px 100px 3px rgba(0,0,0, 0.2);
  outline: 1px solid #fff;
}

header h1 {
  color: #fff;
  margin-top: 100px;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 5.2rem;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
}

header small {
  color: #fdd9bb;
  margin-top: 0;
  font-weight: 300;
  font-size: 2.4rem;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
}

header .container {
  height: 720px;
}

.marketing-button {
  box-shadow: 0 1px 2px rgba(0,91,103,.18);
  background: -webkit-linear-gradient(#fff, #f5e0bc 92%, #f6ca7c);
  background: -o-linear-gradient(#fff, #f5e0bc 92%, #f6ca7c);
  background: linear-gradient(#fff, #f5e0bc 92%, #f6ca7c);
  width: 190px;
  padding: 15px 0;
  display: inline-block;
  border-radius: 5px;
  color: #f87a1a;
  text-align: center;
  margin: 10px 5px;
  font-weight: 400;
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  font-size: 1.5rem;
}

.marketing-button:hover,
.marketing-button:focus {
  text-decoration: none;
  color: #cc532a;
  outline: none;
}

.marketing-button:active {
  -webkit-transform: scale(.95);
  transform: scale(.95);
}

header .hero {
  position: absolute;
  top: 420px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.top-bar, .logo, .emblem {
  z-index: 1000;
}

.top-bar .fa {
  color: #fff;
  font-size: 2.35rem;
  padding-top: 37px;
  padding-left: 10px;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
}

.logo p {
  font-size: 1.2rem;
  position: absolute;
  left: 100px;
  top: 40px;
  color: #fff;
  font-family: 'lato';
}

.emblem {
  position: absolute;
  top: 15px;
  transform: scale(0.72) rotateY(0deg);
  -webkit-transform: scale(0.72) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 1.8s cubic-bezier(.7, 0, 0, 1.2);
}

.emblem:hover {
  transform: scale(0.72) rotateY(360deg);
  -webkit-transform: scale(0.72) rotateY(360deg);
}

.features {
  margin-top: 300px;
  font-family: 'Lato', sans-serif;
}

.bg-color {
  background-color: #fffdf7;
  border: 1px solid #efece2;
}

.feature h2 {
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #242424;
}

.feature p {
  font-weight: 300;
  font-size: 1.85rem;
  line-height: 1.77;
  color: #94928c;
}

.feature {
  padding: 100px 0;
}

.no-padding {
  padding-bottom: 0;
}

.no-padding img {

}

#mouse-icon{
  width:23px; height:35px;
  display:block;
  margin:20px 0 0 -7px;
  border:3px solid #f76c20;
  position:absolute;
  z-index:700;
  opacity:1;
  bottom:-210px; left:50%;
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  -o-border-radius:10px;
  border-radius:10px;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#mouse-icon::before{
  content:'SCROLL';
  width:60px;
  display:block;
  margin:0 0 0 -30px;
  position:absolute;
  left:50%;
  text-align:center;
  font:1em 'Dosis', sans-serif;
  color:#f76c20;
  font-weight:700;
  opacity:0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#mouse-icon:hover{
  cursor:pointer;
}

#mouse-icon:hover:before{
  margin-top:-30px;
  opacity:1;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

#scroll-wheel{
  width:5px;
  height:6px;
  display:block;
  position:absolute;
  top:5px;
  left:6px;
  background:#f76c20;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  -o-border-radius:3px;
  border-radius:3px;
  -webkit-animation: scrollWheel 1s linear infinite;
  -moz-animation: scrollWheel 1s linear infinite;
  -o-animation: scrollWheel 1s linear infinite;
  animation: scrollWheel 1s linear infinite;
}

@-webkit-keyframes scrollWheel {
  0%   { top:5px; opacity:1; }
  100% { top:20px; opacity:0; }
}

@-moz-keyframes scrollWheel {
  0%   { top:5px; opacity:1; }
  100% { top:20px; opacity:0; }
}

@-o-keyframes scrollWheel {
  0%   { top:5px; opacity:1; }
  100% { top:20px; opacity:0; }
}

.benefits {
  background: #1d2b64;
  background: -moz-radial-gradient(circle farthest-side at left top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  background: -webkit-radial-gradient(circle farthest-side at left top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  background: radial-gradient(circle farthest-side at left top,#fed11b 5%,#f8a21a 25%,#f76c20 76%,#bc4c2e 98%);
  padding: 120px 0;
}

.benefits h2 {
  color: #fff;
  margin-bottom: 60px;
  margin-top: 0;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
}

.benefits h3 {
  color: #fdd9bb;
  margin-top: 0;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.4;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
  font-family: 'Lato';
  font-weight: 400;
}

.icon {
  color: #fff;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
  font-size: 4.5rem;
  margin-bottom: 3px;
}

.final-cta {
  padding: 60px 0;
  text-align: center;
}

.marketing-button-2 {
  box-shadow: 0 1px 2px rgba(0,91,103,.18);
  background: -webkit-linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  background: -o-linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  background: linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  padding: 15px 40px;
  display: inline-block;
  border-radius: 8px;
  color: #bc4c2e;
  text-shadow: 1px 1px 0px rgba(255,255,255,.45);
  text-align: center;
  margin: 10px 5px;
  font-weight: 500;
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  font-size: 1.8rem;
}

.marketing-button-2:hover,
.marketing-button-2:focus {
  text-decoration: none;
  color: #cc532a;
}

.marketing-button-2:active {
  -webkit-transform: scale(.95);
  transform: scale(.95);
}

.marketing-button-2 .icon {
  color: #bc4c2e;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
  box-shadow: inset 1px 1px 1px 1px #f76c20;
  background-color: #feea8e;
  font-size: 1.8rem;
  vertical-align: middle;
  padding: 3px 9px 1px 9px;
  margin-left: 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 3px;
}

.modal-body {
  padding: 20px 50px;
}

.modal .marketing-button-2 {
  box-shadow: 0 1px 2px rgba(0,91,103,.18);
  background: -webkit-linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  background: -o-linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  background: linear-gradient(#fed11b, #f8a21a 92%, #f76c20);
  padding: 12px 33px;
  display: inline-block;
  border-radius: 8px;
  color: #bc4c2e;
  text-shadow: 1px 1px 0px rgba(255,255,255,.45);
  text-align: center;
  margin: 10px auto;
  font-weight: 500;
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  font-size: 1.6rem;
}

.modal .marketing-button-2:hover {
  text-decoration: none;
  color: #cc532a;
}

.modal .marketing-button-2:active {
  -webkit-transform: scale(.95);
  transform: scale(.95);
}

.modal .marketing-button-2 .icon {
  color: #bc4c2e;
  text-shadow: 0 2px 2px rgba(0,0,0,.15);
  box-shadow: inset 1px 1px 1px 1px #f76c20;
  background-color: #feea8e;
  font-size: 1.5rem;
  vertical-align: middle;
  padding: 3px 9px 1px 9px;
  margin-left: 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 3px;
}

.form-control::-moz-placeholder {
  color: #bebebe;
}
.form-control:-ms-input-placeholder {
  color: #bebebe;
}
.form-control::-webkit-input-placeholder {
  color: #bebebe;
}

.form-horizontal .form-group:first-child {
  margin-top: 6px;
}

.form-horizontal .form-group:last-child {
  margin-bottom: 0;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {   
  border-color: #f8a21a;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f76c20;
  outline: 0 none;
}

.fade {
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -webkit-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -moz-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
}

.modal.fade .modal-dialog {
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -webkit-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -moz-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.modal.in .modal-dialog {
  transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -webkit-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -moz-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  -webkit-transform: scale(1) translate3d(0,25%,0);
  transform: scale(1) translate3d(0,25%,0);
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

  .feature {
    padding: 60px 0;
  }

  .no-padding {
    padding-bottom: 0;
  }

  .feature h2 {
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #242424;
  }

  .feature p {
    font-weight: 300;
    font-size: 1.65rem;
    line-height: 1.77;
    color: #94928c;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .feature img {
    margin-top: 40px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

  .feature img {
    margin-top: 40px;
  }

  .features {
    margin-top: 0;
    font-family: 'Lato', sans-serif;
  }

  .feature {
    padding-left: 25px;
    padding-right: 25px;
  }

  .feature h2 {
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #242424;
    font-size: 2.5rem;
  }

  header .container {
    height: auto;
    transition: .4s cubic-bezier(.3, 0, 0, 1.3);
  }

  header .hero {
    position: relative;
    margin: 0 auto;
    top: 80px;
  }

  .benefits {
    padding: 80px 0;
  }

  .benefits h2 {
    color: #fff;
    margin-bottom: 60px;
    margin-top: 0;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1;
    text-shadow: 0 2px 2px rgba(0,0,0,.15);
  }

  .benefits h3 {
    color: #fdd9bb;
    margin-top: 0;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.4;
    text-shadow: 0 2px 2px rgba(0,0,0,.15);
    font-family: 'Lato';
    font-weight: 400;
    margin-bottom: 35px;
  }

  .benefits .row .col-lg-2:last-child h3{
    margin-bottom: 0;
  }

  .icon {
    color: #fff;
    text-shadow: 0 2px 2px rgba(0,0,0,.15);
    font-size: 4.1rem;
    margin-bottom: 0px;
  }

  .wow {
    visibility: visible !important;
    -webkit-animation: none !important;
       -moz-animation: none !important;
         -o-animation: none !important;
        -ms-animation: none !important;
            animation: none !important;
  }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
  
  header h1 {
    color: #fff;
    margin-top: 35px;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 3.6rem;
    line-height: 1.3;
    text-shadow: 0 2px 2px rgba(0,0,0,.15);
  }

  header small {
    display: none;
  }

  header .container {
    height: auto;
  }

  header .hero {
    position: relative;
    margin: 0 auto;
    top: 50px;
  }

  .marketing-button {
    display: inline-block;
    width: 40%;
    font-size: 1.3rem;
    margin: 10px 5px;
  }

  .modal.in .modal-dialog {
    transition: .4s cubic-bezier(.3, 0, 0, 1.3);
    -webkit-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
    -moz-transition: .4s cubic-bezier(.3, 0, 0, 1.3);
    -webkit-transform: scale(1) translate3d(0,0,0);
    transform: scale(1) translate3d(0,0,0);
  }

  .modal .marketing-button-2 {
    font-size: 1.3rem;
    padding: 12px 20px;
  }

  .modal .marketing-button-2 .icon {
    font-size: 1.1rem;
  }
}