2018-02-02 23:55:09 +00:00
|
|
|
/*
|
|
|
|
Theme Name: Imperial
|
|
|
|
Theme URL: https://bootstrapmade.com/imperial-free-onepage-bootstrap-template/
|
|
|
|
Author: BootstrapMade
|
|
|
|
Author URL: https://bootstrapmade.com
|
|
|
|
*/
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# General
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
body {
|
2018-02-03 08:27:26 +00:00
|
|
|
background: #000;
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #999;
|
2018-02-02 23:55:09 +00:00
|
|
|
font-family: "Open Sans", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover, a:active, a:focus {
|
|
|
|
color: #03c5ec;
|
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 30px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: "Raleway", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 0 0 20px 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prelaoder */
|
|
|
|
#preloader {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 999;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: visible;
|
2018-02-03 08:27:26 +00:00
|
|
|
background: #000 url("../img/preloader.svg") no-repeat center center;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Back to top button */
|
|
|
|
.back-to-top {
|
|
|
|
position: fixed;
|
|
|
|
display: none;
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
color: #fff;
|
|
|
|
padding: 6px 12px 9px 12px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 2px;
|
|
|
|
right: 15px;
|
|
|
|
bottom: 15px;
|
|
|
|
transition: background 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.back-to-top {
|
|
|
|
bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-to-top:focus {
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
color: #fff;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-to-top:hover {
|
2018-02-05 02:12:30 +00:00
|
|
|
background: #003777;
|
2018-02-02 23:55:09 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Welcome
|
|
|
|
--------------------------------------------------------------*/
|
2018-02-03 06:24:19 +00:00
|
|
|
#top {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
2018-10-14 19:18:41 +00:00
|
|
|
background: url(https://cdn.enp.one/img/backgrounds/cl-network.jpg) top center fixed;
|
2018-02-02 23:55:09 +00:00
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
2018-02-06 13:08:16 +00:00
|
|
|
#top .top-logo {
|
2018-02-02 23:55:09 +00:00
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2018-02-06 13:08:16 +00:00
|
|
|
#top .top-logo img {
|
2018-02-02 23:55:09 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-02-06 13:08:16 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
#top .top-logo img {
|
|
|
|
max-width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-03 08:27:26 +00:00
|
|
|
#top .top-container {
|
2018-02-02 23:55:09 +00:00
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
display: table-cell;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-02-03 06:24:19 +00:00
|
|
|
#top h1 {
|
2018-02-02 23:55:09 +00:00
|
|
|
margin: 30px 0 10px 0;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: 48px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2018-02-03 06:24:19 +00:00
|
|
|
#top h1 {
|
2018-02-02 23:55:09 +00:00
|
|
|
font-size: 28px;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-03 06:24:19 +00:00
|
|
|
#top h2 {
|
2018-02-02 23:55:09 +00:00
|
|
|
color: #999;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2018-02-03 06:24:19 +00:00
|
|
|
#top h2 {
|
2018-02-02 23:55:09 +00:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 26px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2018-02-03 06:24:19 +00:00
|
|
|
#top h2 .rotating {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-03 06:24:19 +00:00
|
|
|
#top .rotating > .animated {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2018-02-03 06:24:19 +00:00
|
|
|
#top .actions a {
|
2018-02-02 23:55:09 +00:00
|
|
|
font-family: "Raleway", sans-serif;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px 20px;
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: 0.5s;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2018-02-05 02:12:30 +00:00
|
|
|
#top .btn-header {
|
2018-02-02 23:55:09 +00:00
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2018-02-05 02:12:30 +00:00
|
|
|
#top .btn-header:hover {
|
2018-02-03 06:24:19 +00:00
|
|
|
background: #1a82d8;
|
2018-02-05 01:45:06 +00:00
|
|
|
border: 2px solid #1a82de;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Header
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
#header {
|
2018-02-03 02:00:31 +00:00
|
|
|
background: black;
|
2018-02-06 13:22:15 +00:00
|
|
|
padding: 15px 0;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header.homepage {
|
2018-02-06 13:08:16 +00:00
|
|
|
padding: 10px 0;
|
|
|
|
height: 40px;
|
|
|
|
margin-top: -60px;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header #logo {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #logo h1 {
|
|
|
|
font-size: 36px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 6px 0;
|
|
|
|
line-height: 1;
|
|
|
|
font-family: "Raleway", sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
letter-spacing: 3px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #logo h1 a, #header #logo h1 a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header #logo img {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
#header {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
#header #logo h1 {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
|
|
|
#header #logo img {
|
|
|
|
max-height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-sticky #header {
|
2018-02-03 02:00:31 +00:00
|
|
|
background: black;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Navigation Menu
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Nav Menu Essentials */
|
|
|
|
.nav-menu, .nav-menu * {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
top: 100%;
|
|
|
|
left: 0;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu li {
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu > li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu li:hover > ul,
|
|
|
|
.nav-menu li.sfHover > ul {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul ul {
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul li {
|
|
|
|
min-width: 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nav Menu Arrows */
|
|
|
|
.sf-arrows .sf-with-ul {
|
|
|
|
padding-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sf-arrows .sf-with-ul:after {
|
|
|
|
content: "\f107";
|
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
font-family: FontAwesome;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sf-arrows ul .sf-with-ul:after {
|
|
|
|
content: "\f105";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nav Meu Container */
|
2018-02-06 12:53:13 +00:00
|
|
|
#contact-menu {
|
2018-02-05 22:29:36 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2018-02-06 12:53:13 +00:00
|
|
|
#contact-menu span.hb {
|
|
|
|
/*font-size: 10px;*/
|
2018-02-05 22:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2018-02-06 12:53:13 +00:00
|
|
|
#contact-menu {
|
|
|
|
float: none;
|
|
|
|
text-align: center;
|
2018-02-05 22:29:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nav Meu Container */
|
2018-02-06 12:53:13 +00:00
|
|
|
#nav-menu-container {
|
2018-02-02 23:55:09 +00:00
|
|
|
float: right;
|
2018-02-06 13:08:16 +00:00
|
|
|
/*margin: 5px 0;*/
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2018-02-06 12:53:13 +00:00
|
|
|
#nav-menu-container {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nav Meu Styling */
|
|
|
|
.nav-menu a {
|
|
|
|
padding: 10px 15px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
color: #fff;
|
|
|
|
font-family: 'Raleway', sans-serif;
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 14px;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu a:hover, .nav-menu li:hover > a, .nav-menu .menu-active > a {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul {
|
|
|
|
margin: 4px 0 0 15px;
|
|
|
|
box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul li {
|
|
|
|
background: #fff;
|
|
|
|
border-top: 1px solid #f4f4f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul li:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul li:hover {
|
|
|
|
background: #f6f6f6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul li a {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu ul ul {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mobile Nav Toggle */
|
|
|
|
#mobile-nav-toggle {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 999;
|
|
|
|
margin: 20px 20px 0 0;
|
|
|
|
border: 0;
|
|
|
|
background: none;
|
|
|
|
font-size: 24px;
|
|
|
|
display: none;
|
|
|
|
transition: all 0.4s;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav-toggle i {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
#mobile-nav-toggle {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mobile Nav Styling */
|
|
|
|
#mobile-nav {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
padding-top: 18px;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 998;
|
|
|
|
background: rgba(0, 0, 0, 0.9);
|
|
|
|
left: -260px;
|
|
|
|
width: 260px;
|
|
|
|
overflow-y: auto;
|
|
|
|
transition: 0.4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul li {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul li a {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 16px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 10px 22px 10px 15px;
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul li a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul li li {
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul .menu-has-children i {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
z-index: 99;
|
|
|
|
padding: 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul .menu-has-children i.fa-chevron-up {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-nav ul .menu-item-active {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#mobile-body-overly {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 997;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: fixed;
|
|
|
|
background: rgba(0, 0, 0, 0.6);
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mobile Nav body classes */
|
|
|
|
body.mobile-nav-active {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.mobile-nav-active #mobile-nav {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.mobile-nav-active #mobile-nav-toggle {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Sections
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Sections Common
|
|
|
|
--------------------------------*/
|
|
|
|
.section-title {
|
|
|
|
font-size: 32px;
|
2018-02-03 02:00:31 +00:00
|
|
|
color: white;
|
2018-02-02 23:55:09 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-description {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title-divider {
|
|
|
|
width: 50px;
|
|
|
|
height: 3px;
|
2018-02-05 01:28:57 +00:00
|
|
|
background: #003777;
|
2018-02-02 23:55:09 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get Started Section
|
|
|
|
--------------------------------*/
|
|
|
|
#about {
|
2018-10-14 19:18:41 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://cdn.enp.one/img/backgrounds/bw-watch.jpg") fixed center center;
|
2018-02-02 23:55:09 +00:00
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about .about-title {
|
2018-02-03 09:18:15 +00:00
|
|
|
color: #bababa;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 20px;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#about .about-text {
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about .about-text:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-03 08:27:26 +00:00
|
|
|
#about .about-portrait {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
max-height: 30rem;
|
|
|
|
}
|
|
|
|
|
2018-02-03 02:00:31 +00:00
|
|
|
/* Network Section
|
2018-02-02 23:55:09 +00:00
|
|
|
--------------------------------*/
|
|
|
|
#network {
|
2018-10-14 19:18:41 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://cdn.enp.one/img/backgrounds/bw-datacenter.jpg") fixed center center;
|
2018-02-02 23:55:09 +00:00
|
|
|
background-size: cover;
|
2018-02-03 08:36:29 +00:00
|
|
|
padding: 80px 0 60px 0;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-item {
|
2018-02-03 09:24:49 +00:00
|
|
|
margin-top: 80px;
|
|
|
|
margin-bottom: 30px;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-icon {
|
|
|
|
float: left;
|
2018-02-03 08:27:26 +00:00
|
|
|
background-color: #fff;
|
2018-02-02 23:55:09 +00:00
|
|
|
padding: 16px;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 0.5s;
|
2018-02-03 08:27:26 +00:00
|
|
|
border: 1px solid black;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-icon i {
|
2018-02-03 08:27:26 +00:00
|
|
|
color: #000;
|
2018-02-02 23:55:09 +00:00
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-item:hover .service-icon {
|
2018-02-05 01:28:57 +00:00
|
|
|
border: 1px solid #003777;
|
2018-02-03 06:24:19 +00:00
|
|
|
outline: 0;
|
|
|
|
color: white;
|
2018-02-05 01:28:57 +00:00
|
|
|
background-color: #003777;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-item:hover .service-icon i {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: white;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 08:56:08 +00:00
|
|
|
#network .service-icon-no-link {
|
|
|
|
float: left;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 16px;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 0.5s;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-icon-no-link i {
|
|
|
|
color: #000;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
2018-02-02 23:55:09 +00:00
|
|
|
#network .service-title {
|
|
|
|
margin-left: 80px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-transform: uppercase;
|
2018-02-03 06:24:19 +00:00
|
|
|
color: white;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-title a {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: inherit;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-description {
|
|
|
|
margin-left: 80px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2018-02-03 01:05:54 +00:00
|
|
|
#network .service-link {
|
|
|
|
margin-left: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#network .service-link a {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2018-02-02 23:55:09 +00:00
|
|
|
/* status Section
|
|
|
|
--------------------------------*/
|
|
|
|
#status {
|
2018-02-03 06:24:19 +00:00
|
|
|
background-color: #111;
|
2018-02-02 23:55:09 +00:00
|
|
|
background-size: cover;
|
2018-02-03 06:24:19 +00:00
|
|
|
padding: 40px 0;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#status .status-title {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 28px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
#status .status-text {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#status .status-btn-container {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#status .status-btn {
|
|
|
|
font-family: "Raleway", sans-serif;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px 20px;
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: 0.5s;
|
|
|
|
margin: 10px;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#status .status-btn:hover {
|
2018-02-05 01:47:40 +00:00
|
|
|
background: #003777;
|
|
|
|
border: 2px solid #003777;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Portfolio Section
|
|
|
|
--------------------------------*/
|
2018-02-06 15:43:50 +00:00
|
|
|
#project {
|
2018-10-14 19:18:41 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://cdn.enp.one/img/backgrounds/bw-engine.jpg") fixed center center;;
|
2018-02-02 23:55:09 +00:00
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item {
|
2018-02-02 23:55:09 +00:00
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
|
|
|
height: 260px;
|
|
|
|
width: 100%;
|
|
|
|
display: table;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 30px;
|
2018-02-07 01:40:13 +00:00
|
|
|
outline-style: solid;
|
|
|
|
outline-color: white;
|
|
|
|
outline-width: 2px;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item .details {
|
2018-02-02 23:55:09 +00:00
|
|
|
height: 260px;
|
|
|
|
background: #fff;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
opacity: 0;
|
|
|
|
transition: 0.3s;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item .details h4 {
|
2018-02-06 22:21:47 +00:00
|
|
|
font-size: 18px;
|
2018-02-02 23:55:09 +00:00
|
|
|
transition: opacity 0.3s, -webkit-transform 0.3s;
|
|
|
|
transition: transform 0.3s, opacity 0.3s;
|
|
|
|
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
|
|
|
-webkit-transform: translate3d(0, -15px, 0);
|
|
|
|
transform: translate3d(0, -15px, 0);
|
|
|
|
font-weight: 700;
|
2018-02-06 22:21:47 +00:00
|
|
|
color: #000;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item .details span {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: block;
|
2018-02-06 22:21:47 +00:00
|
|
|
color: #000;
|
|
|
|
font-size: 15px;
|
2018-02-02 23:55:09 +00:00
|
|
|
transition: opacity 0.3s, -webkit-transform 0.3s;
|
|
|
|
transition: transform 0.3s, opacity 0.3s;
|
|
|
|
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
|
|
|
-webkit-transform: translate3d(0, 15px, 0);
|
|
|
|
transform: translate3d(0, 15px, 0);
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:40:13 +00:00
|
|
|
@media (max-width: 990px) {
|
|
|
|
#project .project-item {
|
|
|
|
outline-style: none;
|
|
|
|
}
|
2018-02-06 22:21:47 +00:00
|
|
|
#project .project-item .details h4 {
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
#project .project-item .details span {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item:hover .details {
|
2018-02-02 23:55:09 +00:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item:hover .details h4 {
|
2018-02-02 23:55:09 +00:00
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:43:50 +00:00
|
|
|
#project .project-item:hover .details span {
|
2018-02-02 23:55:09 +00:00
|
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Testimonials Section
|
|
|
|
--------------------------------*/
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations {
|
2018-02-02 23:55:09 +00:00
|
|
|
background: #f6f6f6;
|
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .profile {
|
2018-02-02 23:55:09 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .profile .pic {
|
2018-02-02 23:55:09 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 6px solid #fff;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 260px;
|
|
|
|
width: 260px;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .profile .pic img {
|
2018-02-02 23:55:09 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .profile h4 {
|
2018-02-02 23:55:09 +00:00
|
|
|
font-weight: 700;
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .profile span {
|
2018-02-02 23:55:09 +00:00
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .quote {
|
2018-02-02 23:55:09 +00:00
|
|
|
position: relative;
|
|
|
|
background: #fff;
|
|
|
|
padding: 60px;
|
|
|
|
margin-top: 40px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-style: italic;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .quote b {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 22px;
|
|
|
|
left: -9px;
|
|
|
|
position: relative;
|
|
|
|
top: -8px;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:46:43 +00:00
|
|
|
#locations .quote small {
|
2018-02-02 23:55:09 +00:00
|
|
|
display: inline-block;
|
|
|
|
right: -9px;
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Team Section
|
|
|
|
--------------------------------*/
|
|
|
|
#team {
|
|
|
|
background: #fff;
|
|
|
|
padding: 80px 0 60px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .pic {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 260px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .pic img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member h4 {
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member span {
|
|
|
|
font-style: italic;
|
|
|
|
display: block;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .social {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .social a {
|
|
|
|
color: #b3b3b3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .social a:hover {
|
2018-02-03 06:24:19 +00:00
|
|
|
color: #1a82d8;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#team .member .social i {
|
|
|
|
font-size: 18px;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Contact Section
|
|
|
|
--------------------------------*/
|
|
|
|
#contact {
|
2018-02-03 02:00:31 +00:00
|
|
|
background: #111;
|
2018-02-03 06:24:19 +00:00
|
|
|
padding: 30px 0;
|
2018-02-02 23:55:09 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Footer
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
#footer {
|
2018-02-03 06:24:19 +00:00
|
|
|
background: black;
|
2018-02-06 13:35:01 +00:00
|
|
|
padding: 30px 0;
|
2018-02-02 23:55:09 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2018-02-06 13:35:01 +00:00
|
|
|
#footer.homepage {
|
|
|
|
background: black;
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
color: #fff;
|
2018-02-06 13:13:14 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 23:55:09 +00:00
|
|
|
#footer .copyright {
|
|
|
|
text-align: center;
|
2018-02-06 15:43:50 +00:00
|
|
|
padding-bottom: 5px;
|
2018-02-02 23:55:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer .credits {
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2018-02-03 01:05:54 +00:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Primary button
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
.btn-default {
|
2018-02-03 06:24:19 +00:00
|
|
|
border: 1px solid white;
|
|
|
|
color: white;
|
2018-02-03 01:05:54 +00:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-default:hover,
|
|
|
|
.btn-default:focus {
|
2018-02-05 01:28:57 +00:00
|
|
|
border: 1px solid #003777;
|
2018-02-03 01:05:54 +00:00
|
|
|
outline: 0;
|
2018-02-03 06:24:19 +00:00
|
|
|
color: white;
|
2018-02-05 01:28:57 +00:00
|
|
|
background-color: #003777;
|
2018-02-03 01:05:54 +00:00
|
|
|
}
|
2018-02-03 08:27:26 +00:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
# Custom hexagon buttons
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
.hb-instagram, .hb-instagram:after, .hb-instagram:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#cd486b;
|
|
|
|
border-color:#cd486b;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff
|
|
|
|
}
|
|
|
|
|
|
|
|
.hb-instagram-inv, .hb-instagram-inv:after, .hb-instagram-inv:before, .hb-instagram:hover, .hb-instagram:hover:after, .hb-instagram:hover:before {
|
|
|
|
background:0 0;
|
2018-02-04 00:07:47 +00:00
|
|
|
border-color:#cd486b;
|
|
|
|
color:#cd486b;
|
2018-02-03 08:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hb-instagram-inv:hover, .hb-instagram-inv:hover:after, .hb-instagram-inv:hover:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#cd486b;
|
|
|
|
border-color:#cd486b;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hb-email, .hb-email:after, .hb-email:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#A93125;
|
|
|
|
border-color:#A93125;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hb-email-inv, .hb-email-inv:after, .hb-email-inv:before, .hb-email:hover, .hb-email:hover:after, .hb-email:hover:before {
|
|
|
|
background:0 0;
|
2018-02-04 00:07:47 +00:00
|
|
|
border-color:#A93125;
|
|
|
|
color:#A93125;
|
2018-02-03 08:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hb-email-inv:hover, .hb-email-inv:hover:after, .hb-email-inv:hover:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#A93125;
|
|
|
|
border-color:#A93125;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff
|
|
|
|
}
|
|
|
|
|
|
|
|
.hb-resume, .hb-resume:after, .hb-resume:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#003777;
|
|
|
|
border-color:#003777;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hb-resume-inv, .hb-resume-inv:after, .hb-resume-inv:before, .hb-resume:hover, .hb-resume:hover:after, .hb-resume:hover:before {
|
|
|
|
background:0 0;
|
2018-02-04 00:07:47 +00:00
|
|
|
border-color:#003777;
|
|
|
|
color:#003777;
|
2018-02-03 08:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hb-resume-inv:hover, .hb-resume-inv:hover:after, .hb-resume-inv:hover:before {
|
2018-02-04 00:07:47 +00:00
|
|
|
background:#003777;
|
|
|
|
border-color:#003777;
|
2018-02-03 08:27:26 +00:00
|
|
|
color:#fff;
|
|
|
|
}
|