@import url('https://fonts.googleapis.com/css?family=Lato:100,400,700');
@import url('https://fonts.googleapis.com/css?family=Oxygen:100,400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 10;
  font-family: 'Lato', sans-serif;
  height: 70px;
  background-color: white;
  padding-left: 100px;
  padding-right: 100px;
  text-transform: uppercase;
}
@media only screen and (max-device-width: 667px) {
  .header {
    height: 100px;
  }
}
.header .logo {
  align-self: center;
  font-size: 1.8em;
  font-weight: 700;
  cursor: pointer;
}
.header .nav {
  display: flex;
  font-size: 1em;
  color: grey;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .header .nav {
    display: none;
  }
}
.header .nav .nav_tab {
  vertical-align: middle;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header .nav .nav_tab:hover,
.header .nav .nav_tab.active {
  color: black;
  border-bottom: 5px solid black;
}
.header .toggleBtn_wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media only screen and (min-width: 992px) {
  .header .toggleBtn_wrapper {
    display: none;
  }
}
.header .toggleBtn_wrapper .navbar-toggle {
  display: block;
  cursor: pointer;
  margin: 0 15px;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  border: 1px solid black;
  border-radius: 4px;
}
.header .toggleBtn_wrapper .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.header .toggleBtn_wrapper .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: black;
}
.header .toggleBtn_wrapper .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
.nav_small {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 1;
  font-family: 'Open Sans', sans-serif;
}
@media only screen and (max-device-width: 667px) {
  .nav_small {
    top: 100px;
  }
}
.nav_small ul {
  background-color: white;
}
.nav_small ul li {
  text-align: center;
  border-top: 1px solid black;
  padding: 10px;
  cursor: pointer;
}
@media only screen and (max-device-width: 667px) {
  .nav_small ul li {
    font-size: 20px;
    padding: 20px;
  }
}
.nav_small ul li:last-child {
  border-bottom: 1px solid black;
}
.content {
  font-family: 'Oxygen', sans-serif;
  margin-top: 70px;
}
@media only screen and (max-device-width: 667px) {
  .content {
    margin-top: 100px;
  }
}
.content .intro {
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../assets/images/intro3.jpg');
  background-position: center;
  background-size: cover;
  color: white;
  padding-top: 100px;
  text-align: center;
}
.content .intro .title {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media only screen and (max-device-width: 667px) {
  .content .intro .subtitle {
    font-size: 24px;
  }
}
.content .intro .portfolio_btn {
  margin-top: 50px;
}
.content .category {
  padding: 50px 100px;
  text-align: center;
}
@media only screen and (max-device-width: 667px) {
  .content .category {
    font-size: 24px;
    padding: 100px 100px;
  }
}
.content .category .title {
  text-transform: uppercase;
  font-weight: 700;
}
.content .category .subtitle {
  color: #999;
  margin-bottom: 50px;
}
@media only screen and (max-device-width: 667px) {
  .content .category .subtitle {
    font-size: 24px;
  }
}
.content .services {
  color: #A9A9A9;
}
.content .services .service_item {
  padding: 20px;
  background-color: white;
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
@media only screen and (max-device-width: 667px) {
  .content .services .service_item {
    margin-bottom: 20px;
  }
}
.content .services .service_item:hover {
  background-color: #F7F7F7;
  -webkit-transition: 0.5s;
  /* Safari */
  transition: 0.5s;
}
.content .services .service_item:hover .service_icon img {
  height: 100px;
  -webkit-transition: height 0.5s;
  /* Safari */
  transition: height 0.5s;
}
.content .services .service_item .service_icon {
  margin-bottom: 20px;
}
.content .services .service_item .service_icon img {
  height: 70px;
  -webkit-transition: height 1s ease-out;
  transition: height 1s ease-out;
}
.content .services .service_item .service_title {
  font-weight: bold;
  font-size: 1.6em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: black;
  word-break: break-word;
}
.content .services .service_item .service_content {
  padding: 0 25px;
  line-height: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
}
@media only screen and (max-device-width: 667px) {
  .content .services .service_item .service_content {
    font-size: 14px;
  }
}
.content .portfolio {
  background-color: #F7F7F7;
}
.content .portfolio .item {
  text-align: left;
}
.content .portfolio .item img {
  width: 100%;
}
.content .portfolio .item .title {
  font-size: 1.4em;
  color: #7CC576;
  margin-bottom: 5px;
}
.content .portfolio .item_image {
  background-color: white;
  padding-bottom: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
  position: relative;
}
.content .portfolio .item_image .details {
  position: absolute;
  background-color: #fafafa;
  height: 100%;
  width: 100%;
  color: #7CC576;
  display: none;
}
.content .portfolio .item1 {
  background-image: url('../../assets/images/portfolio/desktopCoolerMaster.jpg');
}
.content .portfolio .item2 {
  background-image: url('../../assets/images/portfolio/desktopSharkoon.jpg');
}
.content .portfolio .item3 {
  background-image: url('../../assets/images/portfolio/livingplus_home2.png');
}
.content .contact {
  text-align: left;
  font-size: 1em;
}
@media only screen and (max-device-width: 667px) {
  .content .contact {
    font-size: 18px;
  }
}
.content .contact .title {
  margin-bottom: 15px;
}
.content .contact ul li {
  min-height: 30px;
  display: flex;
  align-items: center;
}
.content .contact ul li i {
  font-size: 1em;
  width: 30px;
  text-align: center;
  vertical-align: middle;
}
.content .contact ul li span {
  flex: 1;
}
.content .contact ul li span a {
  color: #7CC576;
}
.content .contact,
.content .services {
  background-color: white;
}
@media only screen and (min-width: 48em) {
  .portfolio .item {
    margin-bottom: 50px;
  }
}
.footer {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  background-color: #F7F7F7;
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (max-device-width: 667px) {
  .footer {
    height: 100px;
    font-size: 24px;
  }
}
.button {
  background-color: #7CC576;
  border: none;
  color: white;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}
@media only screen and (max-device-width: 667px) {
  .button {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 30px;
  }
}
h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: black;
}
h2 {
  font-size: 2.4em;
  margin-bottom: 10px;
  color: black;
}
h1,
h2,
h3 {
  font-family: 'Lato', sans-serif;
}
button {
  outline: 0;
}
