/**
* Template Name: Knight - v4.7.0
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height:175%;
  color: #666666;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #000000
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Exo 2", sans-serif;
}
.image-caption {
font-size: 14px;
font-style: oblique;
}
@media (max-width: 576px) {
  .image-caption {
  font-size: 10px;
  font-style: oblique;
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #005599;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/Tile-Pattern_3.png");
  position: relative;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
#hero .hero-logo {
  margin-bottom: 30px;
}
#hero h1 {
  margin: 0 0 30px 0;
  font-size: 36px;
  font-weight: 300;
  line-height: 56px;
  color: #666;
}
#hero h2 {
  color: #666666;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
#hero .btn-get-started {
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #666;
  background: #ccc
}
#hero .btn-get-started2 {
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #ccc;
  background: #333;
}
#hero .btn-get-started:hover {
  transition: 0.5s;
  color: #ccc;
  background: #677685
}
#hero .btn-get-started2:hover {
  transition: 0.5s;
  color: #000;
  background: #409dff;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    line-height: 22px;
  }
}

