/* General Styling */

body,
html {
  width: 100%;
  height: 100%;
  color: #777;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
}
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
a {
  color: #608dfd;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #608dfd;
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}

.btn-custom {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #5ca9fb;
  transition: all 0.5s linear;
  font-family: "Raleway", sans-serif;
  background-image: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: none;
  background-color: #6372ff;
}

/* End General Styling */

/* Navigation */
#menu {
  padding: 15px;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}
#menu a.navbar-brand {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}
#menu.navbar-default .navbar-nav > li > a {
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0 20px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
#menu.navbar-default .navbar-nav > li > a:after {
  left: 0;
  width: 0;
  content: "";
  height: 2px;
  bottom: -1px;
  display: block;
  position: absolute;
  transition: width 0.2s;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  left: 0;
  content: "";
  width: 100% !important;
  height: 2px !important;
  bottom: -1px !important;
  display: block !important;
  position: absolute !important;
  transition: width 0.2s !important;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%) !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: #608dfd;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #608dfd;
}

/* End Navigation */

/* Header Section */
header .intro {
  top: 80;
  height: 850px;
  display: flex;
  position: relative;
  align-items: center;
  background: url(../img/intro-bg.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

header .intro .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}

header .intro .intro-text h1 {
  color: #fff;
  margin-top: 0;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}
header .intro .intro-text p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 30px;
}
/* End Header Section */

/* Features Section */
#features {
  padding: 160px 0 100px 0;
  background: #f6f6f6;
}
#features .section-title {
  margin-bottom: 60px;
}
#features .section-title h2 {
  position: relative;
  padding-bottom: 15px;
}
#features .section-title h2::after {
  left: 50%;
  bottom: 0;
  content: "";
  height: 4px;
  width: 60px;
  position: absolute;
  transform: translate(-50%, 0);
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
}
#features .section-title p {
  font-size: 18px;
}
#features i.fa {
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 38px;
  padding: 30px 0;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.5s;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
}
/* End Features Section */

/* Contact Section */
#contact {
  padding: 100px 0 60px 0;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(to right, #6372ff 0%, #a0522d 100%);
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}
#contact .section-title p {
  font-size: 16px;
}

#contact form {
  padding-top: 20px;
}
#contact form label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
#contact form .form-control {
  font-size: 16px;
  border-radius: 0;
  border: 1px solid #ccc;
}
#contact form .form-control:focus {
  outline: 0;
  border-color: #999;
  box-shadow: transparent;
  -webkit-box-shadow: transparent;
}
#contact form .form-control:-moz-placeholder,
#contact form .form-control::-moz-placeholder,
#contact form .form-control:-ms-input-placeholder,
#contact form .form-control::-webkit-input-placeholder {
  color: #777;
}

#contact form .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact form .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact form .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}

#contact h3 {
  color: #fff;
  margin-top: 80px;
  font-weight: 400;
  margin-bottom: 50px;
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}

#contact .social {
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
#contact .social ul li {
  margin: 0 20px;
  display: inline-block;
}
#contact .social i.fa {
  width: 48px;
  height: 48px;
  color: #fff;
  padding: 12px 0;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s;
  border: 2px solid #fff;
}
#contact .social i.fa:hover {
  color: #608dfd;
  background: #fff;
}

/* Footer Section*/
#footer {
  padding: 30px 0;
  background: #f6f6f6;
}
#footer p {
  color: #888;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {
  header .intro {
    height: 500px;
    background-position: center left;
  }
  header .intro .intro-text h1 {
    font-size: 66px;
  }
}
@media (max-width: 480px) {
  header .intro {
    height: 400px;
  }
  header .intro .intro-text h1 {
    font-size: 42px;
  }
  header .intro .intro-text p {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  #menu a.navbar-brand {
    font-size: 18px;
  }
  header .intro .intro-text h1 {
    font-size: 32px;
  }
  #contact .social ul li {
    margin: 0 10px;
  }
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
}
