/* -----------------------------------------------------------------------------------

 01. Google fonts
 02. Basics style
 03. Owl-Theme custom style
 04. Section style
 05. Navbar style
 06. Language style
 07. Header style
 08. Slider style
 09. Animated headline style
 10. Page Banner Header style
 11. About style 
 12. Sidebar style
 13. Clients style
 14. Gallery style
 15. Media Audio style
 16. Application areas style
 17. Dynamic Background video style
 18. Homepage News style
 19. News style
 20. Contact style
 21. Button style
 22. Footer style
 23. Preloader style
 24. toTop Button style
 25. Responsive (Media Query)
 
----------------------------------------------------------------------------------- */



/* ======= Google fonts (Oswald & Didact Gothic) ======= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');


/* ======= Basic style ======= */

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
    color: #aab0b9;
    overflow-x: hidden !important;
    background: #131519;
}
p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
    color: #aab0b9;
    margin-bottom: 15px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    line-height: 1.25em;
    margin: 0 0 15px 0;
    color: #6f9dd3;
    letter-spacing: 0.5px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 26px;
}
h4 {
    font-size: 25px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #1e2127;
}
a {
    text-decoration: none;
    color: #6f9dd3;
	transition: color 0.2s;
}
span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
	transition: color 0.2s;
}
footer a, a:visited {
    text-decoration: none;
    color: #aab0b9;
	transition: color 0.2s;
}
footer a:hover {
    text-decoration: none;
    color: #6f9dd3;
	transition: color 0.2s;
}

b, strong {
    font-weight: 400;
    color: #6f9dd3;
}

.layer_wysiwyg b, strong {
    font-weight: 600;
	color: #aab0b9;
}

.layer_wysiwyg ul {
	margin-top: 0;
	margin-bottom: 1rem;
}
}

.layer_wysiwyg li {
	margin-left: -5px;
}

.layer_wysiwyg li:before {
	content: '–';
	font-size: 17px;
	font-weight: 300;
	position: relative;
	padding: 0 7px 0 2px;
	color: #aab0b9;
	margin-left: 8px;
}

.layer_wysiwyg a, a:visited {
    text-decoration: none;
	color: #ced1d7;
	transition: color 0.2s;
}

.layer_wysiwyg a:hover {
    text-decoration: none;
    color: #6f9dd3;
	transition: color 0.2s;
}

/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: 'Roboto', sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #aab0b9;
    background-image: none;
    border-bottom: 1px solid #1e2127;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}
input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: #6f9dd3;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: #1e2127;
    border: 1px solid transparent;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    color: #fff;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
select {
    padding: 10px;
    border-radius: 5px;
}
table,
th,
tr,
td {
    border: none; /* 1px solid #ececec */
}
th,
tr,
td {
    /* padding: 10px; */
}


/* Placeholder */
::-webkit-input-placeholder {
    color: #aab0b9;
    font-size: 15px;
    font-weight: 300;
}
:-moz-placeholder {
    color: #aab0b9;
}
::-moz-placeholder {
    color: #aab0b9;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #aab0b9;
}


/* Important */
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 300;
}
.count {
    font-family: 'Roboto', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.js .animate-box {
    opacity: 0;
}


/*  Selection style  */
::-webkit-selection {
    color: #aab0b9;
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: #aab0b9;
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: #aab0b9;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: transparent;
    border: 1px solid #6f9dd3;
}


/* ======= Section style ======= */
.section-padding {
    padding: 90px 0;
}
.section-padding h6 {
    color: #6f9dd3;
    font-size: 20px;
    margin-bottom: 20px;
}
.section-padding h2 {
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: #6f9dd3;
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 17px;
	margin-left:-1px;
}

.homepage-news h2 {
	font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-padding h1 {
    text-transform: uppercase;
	margin-bottom:25px;
	margin-left:-1px;
}

p.upper-title {
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #6f9dd3;
    position: relative;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bgcolor-brighter {
	background-color: #1e2127;
}

/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(11, 12, 14, 0.5);
    z-index: 99;
    padding: 0;
}
.navbar .icon-bar {
    color: #6f9dd3;
}
.navbar .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 5px 3px 5px 8px; /* 5px 3px */
    -webkit-transition: all .4s;
    transition: all .4s;
}
.navbar .navbar-nav .nav-link.black-color {
    color: #aab0b9;
}
.navbar .navbar-nav .nav-link:hover {
    color: #6f9dd3;
}
.navbar .navbar-nav .active {
    color: #6f9dd3 !important;
}
.nav-box .container {
    padding: 0px 20px;
    margin-top: 0px;
}
.nav-scroll {
    background: #0b0c0e;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.nav-scroll .icon-bar {
    color: #6f9dd3;
}
.nav-scroll .navbar-nav .nav-link {
    color: #fff;
}
.nav-scroll .navbar-nav .active {
    color: #6f9dd3 !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}
.logo {
    padding: 33px 0;
    width: 200px;
}
.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown .nav-link {
    cursor: pointer;
}
.dropdown .nav-link i {
    padding-left: 1px;
    font-size: 9px;
}
.dropdown-item {
    position: relative;
}
.dropdown-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.dropdown-item span {
    display: block;
    cursor: pointer;
}
.dropdown-menu,
.sub-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    width: 210px;
    padding: 15px 10px;
    border-radius: 0;
    border: 0;
    background-color: #131519;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.dropdown-menu .dropdown-item,
.sub-menu .dropdown-item {
    padding: 5px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #aab0b9;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.dropdown-menu .dropdown-item:last-child,
.sub-menu .dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-menu .dropdown-item:hover,
.sub-menu .dropdown-item:hover {
    background: transparent;
    padding-left: 20px;
    color: #6f9dd3;
}
.dropdown-menu .dropdown-item a,
.sub-menu .dropdown-item a {
    display: block;
    color: #fff;
}
.dropdown-menu .dropdown-item a:hover,
.sub-menu .dropdown-item a:hover {
    color: #6f9dd3;
}
.dropdown-menu .dropdown-item i,
.sub-menu .dropdown-item i {
    padding: 5px 0 0 5px;
    font-size: 11px;
    float: right;
}
.dropdown-menu .dropdown-item em,
.sub-menu .dropdown-item em {
    font-size: 8px;
    background-color: #131519;
    padding: 2px 4px;
    color: #fff;
    border-radius: 2px;
    position: absolute;
    right: 10px;
    top: 5px;
}
.dropdown-menu.last {
    left: -25%;
}
.dropdown-menu .dropdown-item.sub-active a {
    color: #6f9dd3 !important;
}

.sub-menu {
    position: absolute;
    left: 100%;
    top: -5px;
}
.sub-menu.left {
    left: -100%;
    margin-left: -20px;
}
.mega-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    right: -150px;
    width: 800px;
    background-color: #aab0b9;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.mega-menu .dropdown-title {
    display: block;
    color: #aab0b9;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.mega-menu .dropdown-menu {
    position: static !important;
    float: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    ;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    -webkit-transition: all .3s;
    transition: all .3s;
}
@media screen and (max-width: 767px) {
    .navbar {
        padding-right: 0px;
        padding-right: 0px;
        background: #131519;
    }
    .nav-scroll {
        background: #131519;
    }
    .logo-wrapper {
        float: left;
        padding: 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 15px;
        background-color: #131519;
    }
}



/* ======= Slider style ======= */
.hero-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #131519;
}
.hero-inner {
    position: relative;
    z-index: 15;
}
.hero-inner h5 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 20px;
    margin: 0 0 30px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
#heroSliderContainer .vegas-overlay {}
#heroSliderContainer .hero-inner .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.hero-inner .text-inner {
    min-height: 600px;
    position: relative;
}
.hero-inner .desc {
    position: absolute;
    bottom: 0px;
    left: 0;
    background: transparent;
}


/* ======= Animated headline style ======= */
/* cd-headline  */
.cd-headline {
	font-size: 72px; /* 50px */
    font-family: 'Oswald', sans-serif;
	line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
	margin-left: -2px;
    font-weight: 300;
}
.cd-headline b {
    font-weight: 300;
    color: #fff;
}
.cd-headline.clip b {
color: #fff;
}
@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 35px;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}
/* clip animation effect */
.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  right: 0;
  top: 55%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 80%;
  width: 4px;
  background-color: rgba(255,255,255,0.3);
}
.cd-headline.clip b {
  opacity: 0;
}
.cd-headline.clip b.is-visible {
  opacity: 1;
}


/* ======= Page Banner Header style ======= */
.banner-header {
    height: 55vh;
    z-index: -2;
}
.banner-header h6 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
}
.banner-header h6 a:hover {
    color: #aab0b9;
}
.banner-header h6 i {
    margin: 0 15px;
    font-size: 10px;
}
.banner-header h5 {
    color: #6f9dd3;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}
.banner-header h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.25em;
}
.banner-header p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
    color: #aab0b9;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.banner-header p a {
    color: #6f9dd3;
}
@media screen and (max-width: 767px) {
    .banner-header {
        height: 35vh;
        margin-top: 70px;
    }
    .banner-header h6 {
        font-size: 12px;
        font-weight: 300;
        margin-bottom: 10px;
    }
    .banner-header h6 a:hover {
        color: #6f9dd3;
    }
    .banner-header h6 i {
        margin: 0 15px;
        font-size: 10px;
    }
    .banner-header h5 {}
    .banner-header h1 {
        margin-bottom: 60px;
    }
    .banner-header p {
        font-size: 20px;
        color: #aab0b9;
    }
}


/* ======= About style ======= */
.about {
    padding-bottom: 90px;
}
.about .about-img img:hover {
    transform: scale(0.95);
}
.about .about-img {
    position: relative;
}
.about .about-img .img {
    padding: 0;
    position: relative;
}
.about .about-img .img img {
    position: relative;
    z-index: 2;
    background: #131519;
}
.about-img-2 {
    position: relative
}
.about-img .about-img-2 {
    width: 100% !important;
    position: absolute;
    bottom: 90px;
    z-index: 3;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.25em;
}
.about-buro {
    background: transparent;
}
/* logo text effect */
.light {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 35px;
    color: #fff;
    text-align: center;
}
.effect {
    text-shadow: 0 -40px 80px, 0 0 2px, 0 0 1em #FFFF00, 0 0 .6em #FFFF00, 0 0 1.2em #FFFF00, 0 4px 2px #000;
}
.light span {
    animation: on-off 1s infinite linear;
}
.light span:nth-child(2) {
    animation-delay: 0.5s;
}
@keyframes on-off {
    69% {
        text-shadow: inherit;
        color: inherit;
    }
    70% {
        color: #000;
    }
    71% {
        text-shadow: none;
    }
    73% {
        text-shadow: inherit;
        color: inherit;
    }
    74% {
        text-shadow: none;
        color: #000;
    }
    75% {
        text-shadow: inherit;
        color: inherit;
    }
    90% {
        text-shadow: none;
        color: #000;
    }
    90.5% {
        text-shadow: inherit;
        color: inherit;
    }
}


/* ======= Sidebar style ======= */
.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}
.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
    padding: 45px;
    background: #1e2127;
    border-radius: 0px;
}
.sidebar .sidebar-widget .widget-inner:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: -webkit-linear-gradient(315deg, #e9e9e9 8.33%, transparent 8.33%, transparent 50%, #e9e9e9 50%, #e9e9e9 58.33%, transparent 58.33%, transparent 100%);
    background-image: -o-linear-gradient(315deg, #e9e9e9 8.33%, transparent 8.33%, transparent 50%, #e9e9e9 50%, #e9e9e9 58.33%, transparent 58.33%, transparent 100%);
    background-image: linear-gradient(135deg, #e9e9e9 8.33%, transparent 8.33%, transparent 50%, #e9e9e9 50%, #e9e9e9 58.33%, transparent 58.33%, transparent 100%);
    background-size: 8.49px 8.49px;
    opacity: .05;
    z-index: -2;
}
.sidebar-title {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}
.sidebar-title h3 {
    position: relative;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    line-height: 1.25em;
    color: #6f9dd3;
    font-weight: 300;
    margin-bottom: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sidebar .sidebarpage ul {
    position: relative;
}
.sidebar .sidebarpage ul li {
    position: relative;
    line-height: 48px;
    font-size: 15px;
    color: #aab0b9;
    font-weight: 300;
    margin-bottom: 5px;
}
.sidebar .sidebarpage ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background: #6c92c3;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .sidebarpage ul li:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    border-left: 2px solid var(--thm-base);
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .sidebarpage ul li:last-child {
    margin-bottom: 0;
}
.sidebar .sidebarpage ul li a {
    position: relative;
    display: block;
    font-size: 17px;
    color: #aab0b9;
    font-weight: 300;
    transition: all 0.3s ease;
    z-index: 1;
}
.sidebar .sidebarpage ul li:hover a,
.sidebar .sidebarpage ul li.active a {
    color: #fff;
}
.sidebar .sidebarpage ul li:hover:before,
.sidebar .sidebarpage ul li.active:before,
.sidebar .sidebarpage ul li:hover:after,
.sidebar .sidebarpage ul li.active:after {
    opacity: 1;
}
.sidebar .sidebarpage ul li a:after {
    position: absolute;
    right: 0;
    top: -1px;
    font-family: "themify";
    content: "\e649";
    opacity: 1;
    font-size: 10px;
    font-weight: normal;
    z-index: 1;
}
.sidebar .sidebarpage ul li a:hover:before,
.sidebar .sidebarpage ul li.active a:before {
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease 0.1s;
}


/* ======= Clients style ======= */
.clients {
    background-color: #131519; /* heller #1e2127 */
    padding-top: 45px;
	padding-bottom: 32px;
}

.clients .owl-carousel {}
.clients .clients-logo {
    opacity: 1;
    line-height: 0;
}
.clients .clients-logo:hover {
    opacity: 1;
}
.clients img {
    -webkit-filter: none;
    filter: none;
}
.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ======= Gallery style ======= */
.gallery-item {
    position: relative;
    padding-bottom: 5px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: #aab0b9;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: Rgba(0, 0, 0, 0.4);
    font-size: 15px;
}
.gallery-box .gallery-detail i {
    color: #131519;
    padding: 8px;
}
.gallery-box .gallery-detail i:hover {
    color: #131519;
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: rgba(0, 0, 0, 0.05);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}


/* =======  Media Audio style  ======= */
/* audio1 */
.audio1 {
    position: relative;
}
.audio1 .mejs-container {
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: #fff;
    height: auto !important;
}
.audio1 .mejs-container .mejs-controls {
    top: 0;
    background: none;
    height: 30px;
    position: relative;
    padding: 0;
}
.audio1 .mejs-container .mejs-controls div {
    font-size: 15px;
    font-family: inherit;
    line-height: 1;
}
.audio1 .mejs-controls a.mejs-horizontal-volume-slider {
    width: 0;
    overflow: hidden;
    opacity: 0;
}
.audio1 .mejs-controls .mejs-button button:focus {
    outline: none;
}
.audio1 .mejs-controls .mejs-cust1-button button {
    background: url(../media/icon/btn-prev.png) center center no-repeat;
}
.audio1 .mejs-controls .mejs-playpause-button {}
.audio1 .mejs-controls .mejs-play button {
    background: url(../media/icon/btn-play.png) center center no-repeat;
}
.audio1 .mejs-controls .mejs-play button:hover {}
.audio1 .mejs-controls .mejs-pause button {
    background: url(../media/icon/btn-pause.png) center center no-repeat;
}
.audio1 .mejs-controls .mejs-pause button:hover {}
.audio1 .mejs-controls .mejs-cust2-button button {
    background: url(../media/icon/btn-next.png) center center no-repeat;
}
.audio1 .mejs-container .mejs-controls .mejs-time {
    padding-top: 8px;
}
.audio1 .mejs-controls div.mejs-time-rail {
    padding-top: 9px;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-total {
    background: #fff;
    height: 3px;
    outline: none;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-buffering {
    height: 3px;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #fff;
    height: 3px;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-current {
    height: 3px;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-handle {
    height: 3px;
}
.audio1 .mejs-controls .mejs-time-rail .mejs-time-float {
    font-size: 12px;
}
/* audio2 */
.audio2 {
    background: transparent;
    padding: 19px 20px 0;
    margin-bottom: 30px;
    margin-top: -67px
}
.audio2 .mejs-playlist {
    display: block !important;
    position: relative;
    height: auto !important;
    bottom: auto !important;
    margin-left: -20px;
    margin-right: -20px;
    width: auto !important;
    top: auto !important;
}
.audio2 .mejs-playlist ul {
    display: block;
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}
.audio2 .mejs-playlist li {
    display: block;
    cursor: pointer;
    padding: 15px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease-out;
}
.audio2 .mejs-playlist li:nth-child(odd) {
    background: #1e2127;
    color: #6f9dd3;
}
.audio2 .mejs-playlist li:hover {
    color: #6f9dd3;
}
.audio2 .mejs-playlist li.current {
    color: #6f9dd3;
}


/* ======= Application areas style ======= */
.application-areas {
    background: #1e2127;
}
.application-areas .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.application-areas .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(75%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.application-areas .item:hover .con {
    bottom: 0;
}
.application-areas .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-filter: brightness(100%);
}
.application-areas .item .con {
    margin: -70px 20px 50px;
    padding: 15px;
    background-color: #131519;
    border: 1px solid #131519;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.3, .58, .55, 1);
    transition: .2s cubic-bezier(.3, .58, .55, 1);
    bottom: -40px;
    position: relative;
}
.application-areas .item .con .category {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.application-areas .item .con .category a {
    margin-right: 5px;
    position: relative;
}
.application-areas .item .con .category a:hover {
    color: #6f9dd3;
}
.application-areas .item .con .category a:last-child {
    margin-right: 0;
}
.application-areas .item .con .category a:last-child:after {
    display: none;
}
.application-areas .item .con h5,
.application-areas .item .con h5 a {
    color: #aab0b9;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0px;
}
.application-areas .item .con h5:hover,
.application-areas .item .con h5 a:hover {
    color: #6f9dd3;
}
.application-areas .item .con p {
    color: #aab0b9;
    font-size: 17px;
}
.application-areas .item .con i {
    color: #aab0b9;
    font-size: 20px;
}


/* ======= Dynamic Background video style ======= */
.dynamic-video-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;
    max-height: 700px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.dynamic-video-wrapper:before {
    background: url(/pic/video-infront.png);
    content: "";
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.dynamic-video-wrapper video {
    display: flex;
}
.dynamic-video-wrapper .wrap-content {
    position: absolute;
    padding: 30px;
    top: 40%;
    width: 100%;
    margin: auto;
    z-index: 10;
    text-align: center;
}
.dynamic-video-wrapper .wrap-content .text-content {
    width: 320px;
    margin-right: 0;
    margin-left: auto;
    background: rgba(11, 12, 14, 0.5);
    padding: 60px 30px;
}
.dynamic-video-wrapper .wrap-content .text-content p {
    font-size: 17px !important;
    color: #fff;
    font-style: italic;
}
.dynamic-video-wrapper .wrap-content .text-content h5,
.dynamic-video-wrapper .wrap-content .text-content .h5 {
    font-size: 17px !important;
}
.dynamic-video-wrapper .wrap-content .text-content h4,
.dynamic-video-wrapper .wrap-content .text-content .h4 {
    letter-spacing: 1px;
    line-height: 1.2em;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin-bottom: 0px;
}
.dynamic-video-wrapper .wrap-content .text-content img {
    
    width: 160px;
}
@media (max-width: 860px) {
    .dynamic-video-wrapper {
        height: 345px;
    }
    .dynamic-video-wrapper video {
        transform: scale(2.1);
    }
    .dynamic-video-wrapper .wrap-content .text-content h1,
    .dynamic-video-wrapper .wrap-content .text-content .h1 {
        font-size: 30px !important;
        margin-bottom: 30px;
    }
    .dynamic-video-wrapper .wrap-content .text-content h2,
    .dynamic-video-wrapper .wrap-content .text-content .h2 {
        font-size: 15px !important;
    }

}
@media (max-width: 1400px) {
    .dynamic-video-wrapper .wrap-content {
        padding: 0 35px;
    }
}
@media (max-width: 1050px) {
    .dynamic-video-wrapper .wrap-content {
        top: 50% !important;
        transform: translateY(-50%);
    }
}

/* ======= Google Map style ======= */
.dynamic-map-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;
    max-height: 700px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.dynamic-map-wrapper .wrap-content {
    position: absolute;
    padding: 30px;
    top: 40%;
    width: 100%;
    margin: auto;
    z-index: 10;
    text-align: center;
}
@media (max-width: 860px) {
    .dynamic-map-wrapper {
        height: 345px;
    }
}
@media (max-width: 1400px) {
    .dynamic-map-wrapper .wrap-content {
        padding: 0 35px;
    }
}
@media (max-width: 1050px) {
    .dynamic-map-wrapper .wrap-content {
        top: 50% !important;
        transform: translateY(-50%);
    }
}



/* ======= Homepage News style  ======= */
.homepage-news .item {
    margin-bottom: 20px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.homepage-news .item img {
    -webkit-filter: brightness(100%);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.homepage-news .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
    -webkit-filter: brightness(50%);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.homepage-news .item .content {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    padding: 40px 30px;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.homepage-news .item:hover .content {
    opacity: 1;
}
.homepage-news .item .content .data {
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.homepage-news .item .content .data a {
    color: #fff;
    margin-right: 10px;
    position: relative;
}
.homepage-news .item .content .data a:after {
    content: '/';
    position: relative;
    margin-left: 10px;
}
.homepage-news .item .content .data a:last-child {
    margin-right: 0;
}
.homepage-news .item .content .data a:last-child:after {
    display: none;
}
.homepage-news .item .content h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25em;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.homepage-news .item .content h5 a {
    color: #fff;
}
.homepage-news .item .content p {
    color: #eee;
    margin-bottom: 20px;
    line-height: 1.5em;
}
.homepage-news .item .line {
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    margin-bottom: 15px;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
.homepage-news .item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}
.homepage-news .item .icon {
    display: inline-block;
    position: absolute;
    bottom: 25px;
    right: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    padding: 11px 10px 11px 12px;
    line-height: 0;
}


/* ======= News style ======= */
.news .item {
    background: #1e2127;
}
.news .item img {}
.news .item .content {
    padding: 30px 20px;
    margin-bottom: 30px;
}
.news .item h4 {
    color: #6f9dd3;
}


/* ======= Contact style ======= */
/* map */
#laserwerk-contactMap {
    width: 100%;
    height: 450px;
}
/* contact form */
form {
    padding: 0;
    position: relative;
    width: 100%;
}
.form-control {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
    height: 40px;
    display: block;
    border: none;
    border-bottom: 1px solid #1e2127;
    color: #aab0b9;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
    border-radius: 0;
    padding: 10px 15px;
    background: #1e2127;
}
.form-control:focus {
    border: none;
    box-shadow: none;
    outline: 0 none;
    background: #1e2127;
}
.img-fluid {
    margin-bottom: 15px;
}
form .input-select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: auto;
}
.form-select {
    position: relative;
}
.form-select::after {
    position: absolute;
    right: 12px;
    top: 11px;
    content: '\e64b';
    font-family: 'themify';
    font-size: 10px;
    z-index: 9;
}
/* label */
label {
    color: #aab0b9;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    display: inline-block;
    -moz-appearance: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    margin-bottom: 0;
}
/* input */
input[type=email],
input[type=text],
textarea,
input[type=password],
input[type=number] {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: none;
    padding: 10px 15px;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    color: #aab0b9;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 300;
    border-radius: 0;
    background: #1e2127;
}
input[type=email].input-active,
input[type=email]:focus,
input[type=text].input-active,
input[type=text]:focus,
textarea.input-active,
textarea:focus,
input[type=password].input-active,
input[type=password]:focus,
input[type=number].input-active,
input[type=number]:focus {
    background-position: 0 0;
    box-shadow: none;
    outline: 0;
    border: none;
    color: #aab0b9;
    border-radius: 0;
    background: #1e2127;
}
input[type=email].input-active,
input[type=email]:focus:after,
input[type=text].input-active,
input[type=text]:focus:after,
textarea.input-active,
textarea:focus:after,
input[type=password].input-active,
input[type=password]:focus:after,
input[type=number].input-active,
input[type=number]:focus:after {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: none;
    padding: 15px 0;
    will-change: background-position;
    transition: all .3s cubic-bezier(.64, .09, .08, 1);
    color: #aab0b9;
    font-size: 15px;
    line-height: 1.75em;
}
input[type=email]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder {
    transition: all .2s cubic-bezier(.64, .09, .08, 1);
    color: #aab0b9;
}
input[type=radio]:after,
input[type=radio]:before {
    content: '';
    position: absolute;
    transition: all .3s cubic-bezier(.64, .09, .08, 1)
}
input[type=checkbox] {
    position: relative;
    cursor: pointer;
    margin: 5px 25px 15px 0px;
    -moz-appearance: none;
    -webkit-appearance: none;
}
input[type=checkbox]:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid #1e2127;
    background: #1e2127;
    position: absolute;
    top: 0px;
    margin-left: -1px;
}
input[type=checkbox]:after {
    font-family: 'themify';
    content: '\e64c';
    color: #7fa1c6;
    background: transparent;
    position: absolute;
    top: 1px;
    margin-left: -1px;
    left: 0;
    width: 18px;
    height: 18px;
    border: none;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.64, .09, .08, 1);
    will-change: opacity;
    font-size: 12px;
}
input[type=checkbox]:checked:after {
    opacity: 1
}
input[type=radio] {
    position: relative;
    cursor: pointer;
    margin: 5px 25px 15px 0px;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 10px;
}
input[type=radio]:before {
    background-color: #1e2127;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #1e2127;
    display: inline-block;
    top: 0px;
    left: 0px;
    background-image: radial-gradient(circle, #7fa1c6 50%, #1e2127 70%);
    background-size: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: background-size;
    z-index: 2;
}
input[type=radio]:after {
    width: 18px;
    height: 18px;
    background: transparent;
    border-radius: 50%;
}
input[type=radio]:checked:before {
    background-size: 14px 14px
}
textarea.form-control {
    padding: 10px 15px;
    height: auto;
    margin-bottom: 15px;
    background: #1e2127;
}
::placeholder {
    color: #aab0b9 !important;
}


/* ======= Button style ======= */
.butn {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 25px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    position: relative;
    z-index: 3;
    margin-right: 10px;
    -webkit-box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    outline: none !important;
    overflow: hidden;
}
.butn span {
    position: relative;
    z-index: 2;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.butn:before,
.butn:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    z-index: 1;
    opacity: .4;
}
.butn:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background: #6c92c3;
    opacity: 1;
}
.butn:hover:before,
.butn:hover:after {
    width: 100%;
}
.butn:hover:after {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.butn:hover span {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
/* butn-light */
.butn-light {
    background: transparent;
    border: 1px solid #fff;
}
.butn-light:hover {
    border: 1px solid #6c92c3;
}
.butn-light:before,
.butn-light:after {
    background: #6c92c3;
}
.butn-light:hover span {
    color: #fff;
}
.butn-light span {
    color: #fff;
}
/* butn-dark */
.butn-dark {
    background: #6c92c3;
    border: 1px solid #6c92c3;
    color: #fff;
}
.butn-dark:hover {
    border: 1px solid #fff;
     background: transparent;
}
.butn-dark:before,
.butn-dark:after {
    background: transparent;
}
.butn-dark:hover span {
    color: #fff;
}
.butn-dark span {
    color: #fff;
}


/* ======= Footer style ======= */
.main-footer {
    padding: 80px 0 0;
    overflow: hidden;
}
.main-footer.dark {
    background: #0b0c0e;
}
.main-footer .abot p {
    font-size: 15px;
	text-transform:uppercase;
}
.main-footer .abot .logo {
    padding: 0;
    width: 220px;
    margin-top: 3px;
    margin-right: 0;
    margin-bottom: 5px;
}
.main-footer .abot .social-icon {
    margin-top: 20px;
}
.main-footer .abot .social-icon a {
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    font-size: 13px;
    color: #aab0b9;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.main-footer .abot .social-icon a:hover {
    border-color: #6f9dd3;
    color: #6f9dd3;
}
.main-footer .fothead h6 {
    color: #aab0b9;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
	text-transform: uppercase;
}
.main-footer .fotcont .fothead h6 {
    position: relative;
    padding-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}
.main-footer .fotcont .fothead h6:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    height: 1px;
}
.main-footer .fotcont p {
    margin-bottom: 0px;
}
.main-footer b {
    color: #aab0b9;
	font-weight: 600;
}

/* sub footer */
.main-footer .sub-footer {
    padding: 30px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer .sub-footer p {
    font-size: 13px;
    color: #aab0b9;
    margin-top: 5px;
}
.main-footer .sub-footer p a {
    color: #aab0b9;
}
.main-footer .sub-footer p a:hover {
    color: #6f9dd3;
}
.main-footer .sub-footer p.right {
    text-align: right;
}
.main-footer .sub-footer div.t-right {
    text-align: right;
}


/* ======= Preloader Style ======= */
.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #6f9dd3;
}
.pace.pace-inactive {
    width: 100vw;
    opacity: 0;
}
.pace.pace-inactive .pace-progress {
    max-width: 100vw;
}
#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
}
#preloader:after,
#preloader:before {
    content: '';
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: #131519;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader:before {
    top: 0;
}
#preloader:after {
    bottom: 0;
}
#preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
}
#preloader.isdone:after,
#preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
.loading-text {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 4px;
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #6f9dd3;
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
}
.loading-text.isdone {
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #1e2127;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.progress-wrap::after {
    color: #6f9dd3;
}
.progress-wrap svg.progress-circle path {
    stroke: #6f9dd3;
}


/* ======= Responsive style ======= */
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
        margin-right: 0;
        width: 200px;
        padding: 25px 0;
    }
    .nav-scroll .logo {
        width: 200px;
    }
    .logo-img {
        margin-bottom: 0px;
    }
    .navbar button {
        margin-top: 5px;
        margin-right: 0;
        outline: none !important;
        background: #131519;
    }
    .navbar button:hover {
        background: #131519;
    }
    .navbar .container {
        max-width: 100%;
    }
    .navbar .navbar-collapse {
        max-height: 600px;
        overflow: auto;
        background: #131519;
        text-align: left;
        padding: 15px 30px 30px 15px
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #fff;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #6f9dd3 !important;
    }
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
        padding: 10px;
    }
    .dropdown-menu .sub-menu {
        position: static;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
        padding: 10px;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .mega-menu {
        display: block;
    }
    .dropdown .dropdown-menu:hover .sub-menu {
        display: block;
    }
    .dropdown .mega-menu {
        width: 100%;
        position: static;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }
    .dropdown .mega-menu .dropdown-menu {
        border: 0;
        margin: 0;
    }
    .dropdown .mega-menu .dropdown-title {
        border-bottom-color: #aab0b9;
    }
    .dropdown-menu .dropdown-item,
    .sub-menu .dropdown-item {
        color: #aab0b9;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 40px;
    }
    .homepage-news .item .content p {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .logo-wrapper .logo h2 {
        display: none;
    }
    .hero .intro h3 {
        font-size: 28px;
    }
    .hero .intro h4 {
        font-size: 20px;
    }
    .header .caption h1 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
    }
    .header .caption p {
        font-size: 15px;
        margin-right: 10px;
    }
    .hero-inner h5 {
        font-size: 16px;
    }
    .application-areas .item .con h5,
    .application-areas .item .con h5 a {
        font-size: 20px;
    }
    .homepage-news .item .content h5 {
        font-size: 17px;
    }
    .main-footer .sub-footer p.right {
        text-align: left;
    }
    .main-footer .abot .social-icon {
        text-align: left;
        margin-bottom: 15px;
    }
    .main-footer .sub-footer div.t-right {
        text-align: left;
    }
    .footer .logo {
        padding: 0;
        width: auto;
        margin: 0px 0;
    }
}
@media screen and (max-width: 480px) {
    .footer {
        padding: 60px 0;
    }
    .text-left {
        text-align: center;
    }
    .text-center {
        text-align: center;
    }
}
