body {
  font: 16px/22px "Raleway", Arial, Helvetica, sans-serif;
  padding: 0 !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1035;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);

  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.loader .center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

.wave:nth-child(5) {
  animation-delay: 0.4s;
}

.wave:nth-child(6) {
  animation-delay: 0.5s;
}

.wave:nth-child(7) {
  animation-delay: 0.6s;
}

.wave:nth-child(8) {
  animation-delay: 0.7s;
}

.wave:nth-child(9) {
  animation-delay: 0.8s;
}

.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

header {
  position: absolute;
  text-align: center;
  top: 0px;
  z-index: 1000;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  width: 100%;
  height: 99px;
  transition: background-color 200ms ease-in-out 0s;
  -o-transition: background-color 200ms ease-in-out 0s;
  -moz-transition: background-color 200ms ease-in-out 0s;
  -webkit-transition: background-color 200ms ease-in-out 0s;
}

header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(252, 252, 252, 0) 99%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(252, 252, 252, 0) 99%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#a6000000", endColorstr="#00ffffff", GradientType=0);
}

.header-fixed {
  background-color: #242424;
  border-bottom: 1px solid #343434;
  display: block;
  margin-top: 0 !important;
  position: fixed;
  height: 65px;
}

.header-fixed:before {
  background: none;
  height: 0;
}

.navbar {
  height: 65px;
  padding: 0 !important;
}

.hamburger {
  position: relative;
  height: 14px;
  width: 20px;
  margin: auto;
  transition: all 0.2s ease-in-out;
}

.hamburger > div {
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  height: 15%;
  width: 100%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger div:nth-child(1) {
  top: 50%;
  transform: rotate(134deg);
}

.hamburger div:nth-child(2) {
  opacity: 0;
}

.hamburger div:nth-child(3) {
  top: 50%;
  transform: rotate(-134deg);
}

.nav-burger.collapsed .hamburger div:nth-child(1) {
  top: 0;
  transform: none;
}

.nav-burger.collapsed .hamburger div:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
}

.nav-burger.collapsed .hamburger div:nth-child(3) {
  top: auto;
  bottom: 0;
  transform: none;
}

.navbar-brand {
  color: var(--primary);
}

.nav-menu {
  background-color: #242424;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  overflow-y: hidden;
  z-index: 999;
}

.nav-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul li {
  display: block;
  list-style: none;
  text-align: center;
  width: 100%;
}

.nav-menu > ul li a {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;

  position: relative;
  padding: 20px 12px 20px 30px;
  border-top: 1px solid #343434;
  border-bottom: 1px solid #343434;

  display: flex;
  align-items: center;
  justify-content: start;
}

.nav-menu > ul li:first-child a {
  border-top: 0;
}

.nav-menu > ul li a,
.nav-menu > ul li a:hover {
  text-decoration: none !important;
}

.nav-menu > ul li a.current,
.nav-menu > ul li a:hover {
  color: var(--primary);
}

.nav-menu > ul li a i {
  font-size: 11px;
  padding-right: 3px;
}

@media (min-width: 992px) {
  .nav-menu {
    background-color: transparent;
    position: static;
  }

  .nav-menu > ul li {
    display: inline-block;
    width: auto;
  }

  .nav-menu > ul li a {
    border: none;
    padding: 43px 12px;
    justify-content: center;
  }
}

/*------------------------------------------------ */
footer {
  border-top: 2px solid var(--primary);
  background: #111;
  padding: 40px 0;
}

footer,
footer a,
footer p {
  color: #fff;
}
/*------------------------------------------------ */
.social-icons ul {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 30px;
}

.social-icons ul li {
  display: inline-block;
  margin: 0 15px 15px 0;
  padding: 0;
  vertical-align: top;
  list-style: none;
}

.social-icons ul li a {
  border: 3px solid var(--primary);
  background: transparent;
  display: block;
  width: 63px;
  height: 63px;
  line-height: 59px;
  border-radius: 50%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  text-align: center;
  text-decoration: none;
  color: var(--primary);
}

.social-icons ul li a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  background-color: var(--primary);
}

.social-icons ul li a i {
  transform: rotateY(0);
  -webkit-transform: rotateY(0);
}

.social-icons ul li a:hover i {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
}

/*------------------------------------------------ */
#back-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  overflow: hidden;
  z-index: 1111;
}

#back-top a {
  display: block;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 1s;
  transition: 1s;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--primary);
  overflow: hidden;
  position: relative;
}

#back-top i {
  font-size: 19px;
  line-height: 41px;
  transition: 0.5s;
  width: 41px;
  position: absolute;
  left: 0;
}

#back-top i:nth-child(1) {
  top: 0;
  color: var(--primary);
}

#back-top i:nth-child(2) {
  top: 50px;
  color: #fff;
}

#back-top a:hover {
  background-color: var(--primary);
}

#back-top a:hover i:nth-child(1) {
  top: -50px;
}

#back-top a:hover i:nth-child(2) {
  top: 0;
}

/*------------------------------------------------ */

h1.section-title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  margin: 15px 0;
  color: #eee;
  text-align: center;
  text-transform: uppercase;
}

h1.section-title span {
  color: var(--primary);
}

h4.section-title {
  margin: 15px 0 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #eee;
  text-align: center;
  text-transform: uppercase;
}

.section-divider hr {
  border-bottom: 1px solid #888;
  width: 25%;
  display: inline-block;
  vertical-align: middle;
}

.section-divider i {
  font-size: 20px;
  margin: 0 20px;
}

/*------------------------------------------------ */
.section {
  position: relative;
  padding-bottom: 3rem;
}

.section-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
/*------------------------------------------------ */

.media-responsive {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-responsive img {
  margin-right: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .media-responsive {
    flex-direction: row;
  }

  .media-responsive img {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgb(0, 0, 0, 0.4);
  border-width: 1px;
  color: #fff;
  font-weight: bold;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  background: #fff;
  border-color: #000;
  color: #000;
}
