/* Bootstrap Menu Custom */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Teko:400,500,600,700&amp;display=swap");
.dl-header-container {
  position: relative;
  text-align: center;
}

.dl-burger-menu {
  position: absolute;
  top: 35px;
  right: 14px;
  width: 20px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -webkit-transition: -webkit-transform 330ms ease-out;
  transition: -webkit-transform 330ms ease-out;
  transition: transform 330ms ease-out;
  transition: transform 330ms ease-out, -webkit-transform 330ms ease-out;
}

.dl-burger-menu.dl-menu-open {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.dl-line-menu {
  background-color: #1a191d;
  border-radius: 2px;
  width: 100%;
  height: 2px;
}

.dl-line-menu.dl-line-half {
  width: 50%;
}

.dl-line-menu.dl-first-line {
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.dl-menu-open .dl-line-menu.dl-first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}

.dl-line-menu.dl-last-line {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.dl-menu-open .dl-line-menu.dl-last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}

/* Menu overlay */
.dl-header-overlay .dl-burger-menu,
.dl-fixed-sidebar + .dl-burger-menu {
  display: block;
  position: fixed;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  width: 50px;
  height: 47px;
  top: 30px;
  right: 15px;
  background: #0a6bce;
  padding: 15px;
  z-index: 99999;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dl-header-overlay .dl-burger-menu:hover {
  -webkit-box-shadow: 0px 0px 25px -1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 25px -1px rgba(0, 0, 0, 0.4);
}

.dl-header-overlay .dl-burger-menu > span,
.dl-fixed-sidebar + .dl-burger-menu > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 17px;
  -webkit-transition: transform 330ms ease-out;
  -webkit-transition: -webkit-transform 330ms ease-out;
  transition: -webkit-transform 330ms ease-out;
  transition: transform 330ms ease-out;
  transition: transform 330ms ease-out, -webkit-transform 330ms ease-out;
}

.dl-header-overlay .dl-line-menu,
.dl-fixed-sidebar + .dl-burger-menu .dl-line-menu {
  background-color: #fff;
}

.dl-header-overlay .dl-burger-menu.dl-menu-open,
.dl-fixed-sidebar + .dl-burger-menu.dl-menu-open {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.dl-header-overlay .dl-menu-open > span,
.dl-fixed-sidebar + .dl-menu-open > span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@-webkit-keyframes menuFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes menuFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* Fixed sidebar menu */
.body-fixed-sidebar {
  overflow-x: hidden;
}

.dl-fixed-sidebar {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 9999999;
  overflow-y: auto;
  background-color: #1a191d;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.dl-sidebar-left {
  left: 0;
  /*    border-right: 1px solid $body-color-darken;*/
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.dl-sidebar-left.dl-fixed-sidebar-open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.dl-fixed-sidebar .dl-header-container {
  height: 100%;
}

.dl-fixed-sidebar + .dl-burger-menu {
  z-index: 9999999;
}

.dl-sidebar-left + .dl-burger-menu {
  top: 0;
  right: inherit;
  left: 0;
}

.dl-fixedsidebar-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dl-side-content {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.dl-fixed-sidebar .logo {
  display: none;
  text-align: center;
  padding: 35px 0 35px 0px;
}

.dl-side-content > .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  padding: 0 50px;
  z-index: 99999;
  text-align: center;
  background-color: #1a191d;
  -webkit-box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.15);
}

.dl-side-content > .logo img {
  max-width: inherit;
  max-height: 36px;
  width: auto;
}

.dl-fixed-sidebar .logo h1 {
  font-weight: 400;
  font-size: 75px;
  color: #0a6bce;
}

.dl-fixed-sidebar .logo a span {
  display: block;
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  color: #999;
  font-weight: 400;
  letter-spacing: 10px;
}

.dl-footer-logo {
  padding: 0 0 30px 0;
}

.dl-footer-logo img {
  max-width: inherit;
  max-height: 55px;
  width: auto;
}

.dl-fixed-sidebar-open ~ .dl-fixedsidebar-bg-overlay {
  visibility: visible;
  opacity: 1;
}

.dl-fixed-menu-wrap {
  width: 100%;
}

/* Navigation menu */
.dl-menu-fixed {
  padding-top: 90px;
  text-align: left;
}

.dl-menu-fixed ul li {
  position: relative;
}

.dl-menu-fixed ul li a {
  font-family: "Teko", sans-serif;
  display: block;
  padding-right: 17px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dl-menu-fixed > ul > li > a.active,
.dl-menu-fixed ul li:hover > a {
  color: #0a6bce !important;
}

.dl-menu-fixed > ul {
  margin-bottom: 40px;
}

.dl-menu-fixed > ul > li {
  border-bottom: 1px solid #323232;
  margin: 20px 0 20px 0;
  padding: 0 0 10px 0;
}

.dl-menu-fixed > ul > li:last-child {
  margin-bottom: 0;
}

.dl-menu-fixed > ul > li > a {
  font-family: "Teko", sans-serif;
  font-weight: 400;
  color: #999;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dl-menu-fixed > ul ul {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.dl-menu-fixed > ul ul.submenu-collapse {
  opacity: 1;
}

.dl-menu-fixed > ul ul li {
  margin-bottom: 6px;
}

.dl-menu-fixed > ul ul li:last-child {
  margin-bottom: 0;
}

.dl-menu-fixed > ul ul a {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-style: italic;
  color: #818181;
}

.dl-menu-fixed > ul ul a::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 1px;
  height: 12px;
  background-color: #d1d1d1;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.dl-menu-fixed > ul ul a:hover {
  padding-left: 24px;
}

.dl-menu-fixed > ul > li > ul {
  padding: 27px 0 15px;
}

.dl-menu-fixed > ul > li > ul ul {
  padding-top: 6px;
}

.dl-menu-fixed > ul > li > ul > li ul {
  padding-left: 18px;
}

.dl-menu-fixed .overlay-dropdown-plus {
  top: -1px;
  right: -7px;
  opacity: 1;
}

.dl-menu-fixed > ul ul .overlay-dropdown-plus {
  top: -3px;
}

.dl-menu-fixed.submenu-no-separate > ul ul a::before {
  display: none !important;
}

.dl-menu-fixed.submenu-no-separate > ul ul a,
.dl-menu-fixed.submenu-no-separate > ul > li > ul > li ul {
  padding-left: 12px;
}

.dl-menu-fixed.submenu-no-separate > ul ul a:hover {
  padding-left: 18px;
}

/* Menu icons */
.dl-menu-fixed .dl-menu-icon {
  margin-right: 5px;
}

/* Media queries for responsive design */
@media (min-width: 768px) {
  .dl-header .logo {
    float: left;
    padding: 30px 40px 30px 0;
  }

  .dl-menu {
    clear: both;
  }

  .dl-header-shadow-wrapper:after {
    -webkit-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
  }

  .dl-header-overlay .logo {
    left: 30px;
  }

  .dl-header-overlay .dl-burger-menu {
    right: 30px;
  }
}
@media (min-width: 1200px) {
  /* Viewport Breakpoint */
  .dl-header-container {
    height: 90px;
  }

  .dl-header-overlay .dl-header-container {
    height: auto;
  }

  .dl-header .logo {
    position: relative;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .dl-header .logo img {
    max-width: inherit;
    max-height: 90px;
    width: auto;
  }

  .dl-burger-menu {
    display: none;
  }

  /* Header sticky */
  .dl-header.sticky {
    position: fixed;
    width: 100%;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
  }

  .dl-header.sticky .dl-header-container {
    height: 70px;
  }

  /* Center menu */
  .dl-header.center-menu-1 .dl-header-container > .logo {
    display: none;
  }

  .dl-header.center-menu-2 .dl-header-container {
    height: auto;
  }

  /* Menu overlay */
  .dl-header-overlay .dl-burger-menu {
    top: 40px;
    right: 40px;
  }

  /* Fixed sidebar menu */
  .dl-fixed-sidebar {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }

  .dl-side-content > .logo,
.dl-fixed-sidebar + .dl-burger-menu,
.dl-fixedsidebar-bg-overlay {
    display: none;
  }

  .dl-fixed-sidebar .logo {
    display: block;
    background: #020202;
  }

  .dl-fixed-sidebar .logo img {
    max-width: inherit;
    max-height: 50px;
    width: auto;
    margin: 0 20px;
  }

  .dl-side-content {
    width: calc(100% - 300px);
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
  }

  .dl-sidebar-left ~ .dl-fixedsidebar-bg-overlay + .dl-side-content {
    margin-left: auto;
  }

  .dl-sidebar-left,
.dl-sidebar-right {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    z-index: auto;
  }

  .dl-menu-fixed {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* =======  Google Fonts  ======= */
/* ==========================================================================
   Global Properties
   ========================================================================== */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #a3a3a3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #26252b;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #a3a3a3;
  margin-bottom: 20px;
}

img {
  width: 100%;
  height: auto;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

span:hover,
a:hover {
  text-decoration: none;
  color: #0b78e6;
}

b {
  color: #0b78e6;
  font-weight: 400;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 400;
  font-family: "Teko", sans-serif;
}

/* =======  Margin  ======= */
.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

/* ======= Padding Styles  ======= */
.section-padding {
  padding: 50px 0;
}
@media (min-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .section-padding {
    padding: 100px 0;
  }
}

.padding-10 {
  padding: 10px;
}

.padding-15 {
  padding: 15px;
}

/* =======  Border Style  ======= */
.bd-bottom {
  border-bottom: 1px solid #333;
}

.bd-top {
  border-top: 1px solid #333;
}

/* =======  Scrollbar  ======= */
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #292929;
}

::-webkit-scrollbar-thumb:hover {
  background: #292929;
}

/* selection */
::-webkit-selection {
  color: #a3a3a3;
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  color: #a3a3a3;
  background: rgba(0, 0, 0, 0.1);
}

::selection {
  color: #a3a3a3;
  background: rgba(0, 0, 0, 0.1);
}

/* =======  Preloader Styles  ======= */
.loaded .site-preloader-wrap {
  opacity: 0;
  visibility: hidden;
}

.site-preloader-wrap {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
}

.site-preloader-wrap .spinner {
  background-color: #0b78e6;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.text-shadow {
  text-shadow: 0px 1px 15px black;
}

.lh-1 {
  line-height: 1;
}

/* =======  Lines Styles  ======= */
.dl-side-content {
  position: relative;
}

.content-lines-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.content-lines-inner {
  position: absolute;
  width: 1140px;
  left: 50%;
  margin-left: -570px;
  top: 0;
  height: 100%;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

.content-lines {
  position: absolute;
  left: 33.666666%;
  right: 33.666666%;
  height: 100%;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

/* =======  Buttons Styles  ======= */
.default-btn {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  background-color: #0b78e6;
  color: #fff;
  line-height: 45px;
  display: inline-block;
  padding: 0 35px;
  border-radius: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #333;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.default-btn:hover {
  color: #fff;
}

.default-btn:hover:before {
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.default-btn i {
  margin-left: 10px;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header {
  min-height: 100vh;
  position: relative;
}
.header .caption .o-hidden {
  display: inline-block;
}
.header .caption h4 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  letter-spacing: 15px;
}
.header .caption h1 {
  font-size: 75px;
  color: #fff;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.header .caption p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
  color: #fff;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header .caption p span {
  text-transform: uppercase;
  margin: 0 5px;
  padding-right: 15px;
  position: relative;
}
.header .caption p span:last-child {
  padding: 0;
}
.header .caption p span:last-child:after {
  display: none;
}
.header .caption p span:after {
  content: "";
  width: 7px;
  height: 7px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #0b78e6;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: 0.5;
}
.header .caption .btn {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.header.video {
  overflow: hidden;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-item {
  padding: 40px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-item:hover {
  background-color: #222;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.services-item:hover .dots {
  visibility: visible;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-item .dots {
  background-image: url(../img/doted-pattern.png);
  position: absolute;
  width: 200px;
  height: 200px;
  right: -50px;
  bottom: -50px;
  opacity: 0.5;
  visibility: hidden;
  opacity: 0;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.services-item i {
  color: #0b78e6;
  font-size: 50px;
  display: block;
  margin-bottom: 20px;
}
.services-item h3 {
  font-size: 36px;
}
.services-item p {
  margin-bottom: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background-image: url(../img/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.hero-section .overlay {
  padding-top: 75px;
  padding-bottom: 75px;
  width: 100%;
  background-color: rgba(38, 37, 43, 0.75);
}

.hero-content h1 {
  text-transform: uppercase;
}
.hero-content h2 {
  font-size: 24px;
}
.hero-content h2 span {
  color: #0b78e6;
}

.hero-social {
  position: absolute;
  width: auto;
  height: auto;
  right: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
}
.hero-social li {
  line-height: 35px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-bg {
  position: relative;
}
.about-bg img {
  width: 100%;
}
.about-bg .dots {
  background-image: url(../img/doted-pattern.png);
  position: absolute;
  width: 300px;
  height: 300px;
  left: -200px;
  bottom: -100px;
  opacity: 0.7;
}

.profile-info {
  margin-bottom: 30px;
}
.profile-info li {
  line-height: 35px;
}
.profile-info li span {
  font-weight: 600;
  width: 100px;
  letter-spacing: 0;
  color: #0b78e6;
  position: relative;
  margin-right: 10px;
}
.profile-info li span:after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
}

/* ==========================================================================
   skill Section
   ========================================================================== */
.skill-item {
  background: #1a191d;
}
.skill-item .logo {
  width: auto;
  height: 40px;
  min-width: 45px;
}
.skill-item .exp {
  font-weight: 600;
  font-size: 12px;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
/* =======  Portfolio Filter Styles  ======= */
.portfolio-box {
  position: relative;
  overflow: hidden;
}
.portfolio-box:hover .portfolio-content:before {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.portfolio-box:hover h3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  visibility: visible;
  opacity: 1;
}

.portfolio-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.portfolio-content:before {
  background-color: #222;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.portfolio-content h3 {
  margin-bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio-content h3 a.img-popup {
  display: block;
  font-size: 28px;
  color: #fff;
  text-align: center;
}
.portfolio-content a.img-popup span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.portfolio-content .btns .btn {
  line-height: 22px;
}

.portfolio-filter {
  display: block;
}
.portfolio-filter li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-family: "Teko", sans-serif;
  font-weight: 400;
}
.portfolio-filter li a {
  display: inline-block;
}
.portfolio-filter li:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #0b78e6;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 2px;
}
.portfolio-filter li:hover {
  cursor: pointer;
}
.portfolio-filter li:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.portfolio-filter li:focus {
  cursor: pointer;
}
.portfolio-filter li:focus:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.portfolio-filter li:active {
  cursor: pointer;
}
.portfolio-filter li:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.portfolio-filter li.active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-form .form-group {
  margin-bottom: 30px;
}
.contact-form .form-group .form-control {
  background-color: #222;
  border: none;
  height: 60px;
  border-radius: 2px;
  color: #fff;
}
.contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.contact-form .form-group .form-control.message {
  height: 150px;
}
.contact-form .default-btn {
  border: none;
}
.contact-form .default-btn:focus {
  outline: none;
}

#form-messages {
  display: none;
  margin: 0;
}
#form-messages .alert {
  margin: 0;
}

#form-messages.form-status {
  display: block;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  padding: 60px 0;
  border-top: 1px solid #333;
}
footer p {
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}
footer p a {
  color: #0b78e6;
}

.footer-social a {
  margin-left: 15px;
}

@media screen and (max-width: 1199px) {
  .mobile-navigation {
    display: inline-block;
  }

  #primary-navigation {
    display: none;
  }

  .dl-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 30px;
  }
  .dl-side-content > .logo h1 span {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .sm-padding {
    padding: 15px 0;
  }

  .mb-50 {
    margin-bottom: 50px;
  }

  .about-bg .dots {
    display: none;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0 !important;
  }
  .header .caption h4 {
    font-size: 30px;
  }
  .header .caption h1 {
    font-size: 45px;
    line-height: 1.2em;
  }

  .services .feat-item.active .text-center {
    padding-top: 50px;
    margin-top: 0;
  }

  .about .tab-content .image {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
            flex: 100%;
    max-width: 100%;
    margin: 50px 0 0;
  }

  .dl-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 30px;
  }
  .dl-side-content > .logo h1 span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .row {
    margin: 0;
  }

  .xs-padding {
    padding: 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .dl-side-content > .logo img {
    max-width: inherit;
    max-height: 30px;
    width: auto;
  }
  .dl-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 30px;
  }
  .dl-side-content > .logo h1 span {
    display: none;
  }

  .hero-social {
    position: inherit;
    left: inherit;
    top: inherit;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .hero-social li {
    display: inline-block;
    margin: 0 10px;
  }

  .contact-form .form-group {
    margin-bottom: 15px;
  }

  .cta-section {
    text-align: center !important;
  }
  .cta-section .text-right {
    text-align: center !important;
  }
}
@media screen and (max-width: 580px) {
  footer {
    text-align: center;
  }

  .footer-social {
    text-align: center !important;
    margin-top: 14px;
  }
  .footer-social a {
    margin: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .header .caption h4 {
    font-size: 15px;
    line-height: 1.75em;
  }
  .header .caption h1 {
    font-size: 40px;
    line-height: 1.2em;
  }
  .header .caption p {
    font-size: 15px;
    font-weight: 400;
    color: #eee;
    word-spacing: 2px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }

  .dl-side-content > .logo img {
    max-width: inherit;
    max-height: 30px;
    width: auto;
  }
  .dl-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 30px;
  }
  .dl-side-content > .logo h1 span {
    display: none;
  }
}