/****************

	HUMAN v1.0
	Table of Contents

	00 	Presets
	01	General
	02	Typography
	03	Loader
	04	Layout	
	05	Services
	06	Contact
	07	Footer
	08 	Jumbotron / Flexslider
	09	Portfolio

*****************/
/* 	
	00 	
	Presets 	
*/
* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-backface-visibility: hidden;
}

@font-face {
  font-family: "Aeonik Regular";
  src: url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.eot");
  src: url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.eot?#iefix") format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.woff2") format("woff2"),
  url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.woff") format("woff"),
  url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.ttf") format("truetype"),
  url("https://db.onlinewebfonts.com/t/8f2a9d487bbbc60974cd132fc3a63862.svg#Aeonik Regular") format("svg");
}

/* 	
	01	
	General 	
*/
html, body, .wrapper {
  height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 100%;
  font-size: 16px;
  position: relative;
  font-family: "Aeonik Regular", Arial, sans-serif;
}

@media screen and (max-width: 620px) {
  html, body, .wrapper {
    font-size: 13px;
  }
}

body {
  overflow-y: scroll;
}

/*
	02
	Typography
*/

/* Brand Highlight Color */
.brand-highlight {
  color: #D92B83;
}

h1 {
  font-weight: 300;
  font-size: 3em;
  font-family: "Lato", Arial, sans-serif;
}

@media screen and (max-width: 620px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-weight: 300;
  font-size: 3em;
  font-family: "Lato", Arial, sans-serif;
}

@media screen and (max-width: 620px) {
  h2 {
    font-size: 2em;
  }
}

h4 {
  font-size: .9em;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  color: #777;
  font-size: 1.1em;
  font-family: "Lato", Arial, sans-serif;
}

/*
	03
	Loader
*/
.loader {
  position: fixed;
  z-index: 101;
  background: #333;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: bottom 1s;
  -moz-transition: bottom 1s;
  -o-transition: bottom 1s;
  transition: bottom 1s;
}

.loader .bar {
  color: #E5E5E5;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  position: absolute;
  font-size: 14px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.loader .bar.load {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.loader.loaded {
  bottom: 100%;
}

.loader .bar {
  -webkit-animation: loader 2s infinite;
  animation: loader 2s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Standard syntax */
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
	04
	Layout
*/
.title-block {
  padding: 25px 0 30px;
}

.title-block p {
  font-size: 1.2em;
}

.block {
  padding: 30px;
  background: #E5E5E5;
}

@media screen and (max-width: 992px) {
  .block {
    margin: 0;
    padding: 5px 0;
  }
}

@media screen and (max-width: 540px) {
  .col-xs-6 {
    width: 100%;
  }
}

section, .top, footer {
  text-align: center;
  position: relative;
}

section .row-fluid, .top .row-fluid, footer .row-fluid {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 620px) {
  section .row-fluid, .top .row-fluid, footer .row-fluid {
    padding: 15px 0 !important;
  }
}

section .row-fluid.folio, .top .row-fluid.folio, footer .row-fluid.folio {
  max-width: 100%;
  padding: 0;
  margin: -6px 0;
}

.top {
  line-height: 60px;
  height: 60px;
  padding: 0;
  font-size: .8em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -ms-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 620px) {
  .top {
    padding: 0 15px !important;
  }
}

.top .toggle-close {
  display: none;
}

.top .toggle-close button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #E5E5E5;
  font-size: 24px;
  line-height: 60px;
}

@media screen and (max-width: 992px) {
  .top .toggle-close {
    display: none;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 101;
    margin: 0;
    width: auto;
    text-align: right;
  }
}

.top .menu-toggle {
  height: 40px;
  width: 25px;
  line-height: 3px;
  display: none;
  float: right;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .top .menu-toggle {
    display: block;
    margin-top: 7px;
  }
}

.top .menu-toggle .bar {
  height: 2px;
  width: 25px;
  margin-top: 7px;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  background: #E5E5E5;
}

.top .row-fluid {
  padding: 0 45px !important;
  width: 100%;
  max-width: 1100px;
}

@media screen and (max-width: 620px) {
  .top .row-fluid {
    padding: 0 20px !important;
  }
}

.top .branding {
  width: 30%;
  float: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}

.top .branding a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #E5E5E5;
  padding: 1px 0;
  text-decoration: none;
}

.top nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  float: right;
  text-align: right;
}

.top nav ul li {
  margin-left: 8px;
  display: inline-block;
}

.top nav ul li a {
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #E5E5E5;
  font-weight: 600;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top nav ul li a:hover {
  text-decoration: none;
  color: #E5E5E5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.top nav ul li a.active {
  color: #E5E5E5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.top nav ul li.close {
  display: none;
}

@media screen and (max-width: 992px) {
  .top nav ul {
    display: none;
    background: #111;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    line-height: 45px;
  }

  .top nav ul li {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .top nav ul li a {
    color: #E5E5E5 !important;
  }
}

@media screen and (max-width: 992px) {
  .top nav.toggled {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .top nav.toggled ul {
    display: block;
  }

  .top nav.toggled ul .close {
    display: inline-block;
  }

  .top nav.toggled .toggle-close {
    display: block;
  }
}

.top.affix-top {
  top: 0 !important;
}

.top.light .menu-toggle .bar {
  background: #111;
}

.top.light .branding a {
  color: #111;
  border-color: #111;
  -webkit-text-shadow: 0 0 0;
  -moz-text-shadow: 0 0 0;
  -ms-text-shadow: 0 0 0;
  text-shadow: 0 0 0;
}

.top.light nav ul li a {
  color: #111;
  -webkit-text-shadow: 0 0 0;
  -moz-text-shadow: 0 0 0;
  -ms-text-shadow: 0 0 0;
  text-shadow: 0 0 0;
}

.top.affix-top.light nav ul li a {
  color: #999;
}

.top.affix, .top.affix-bottom, .top.affix.light, .top.affix-bottom.light {
  background: #303030;
  top: 0 !important;
}

.top.affix a, .top.affix-bottom a, .top.affix.light a, .top.affix-bottom.light a {
  color: #999;
}

.top.affix a.active, .top.affix-bottom a.active, .top.affix.light a.active, .top.affix-bottom.light a.active {
  color: #E5E5E5;
}

.top.affix .branding a, .top.affix-bottom .branding a, .top.affix.light .branding a, .top.affix-bottom.light .branding a {
  color: #E5E5E5;
  border-color: #E5E5E5;
}

/*
	03
	Lightbox
*/
.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: #111;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0.3, 0.3);
  -moz-transform: scale(0.3, 0.3);
  transform: scale(0.3, 0.3);
}

.lightbox .description {
  position: absolute;
  bottom: 40px;
  width: 60%;
  left: 20%;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .lightbox .description {
    bottom: 0;
  }
}

.lightbox .description p {
  color: #999;
}

.lightbox .title {
  margin-top: 45px;
}

.lightbox .title h3 {
  color: #E5E5E5;
  -webkit-text-shadow: 0 1px 2px #111111;
  -moz-text-shadow: 0 1px 2px #111111;
  -ms-text-shadow: 0 1px 2px #111111;
  text-shadow: 0 1px 2px #111111;
}

.lightbox .counter {
  color: #E5E5E5;
  position: absolute;
  z-index: 999;
  top: 20px;
  left: 40px;
}

@media screen and (max-width: 992px) {
  .lightbox .counter {
    top: -10px;
    left: 10px;
  }
}

.lightbox .counter h1 {
  font-weight: 300;
  font-size: 2em;
  color: #555;
}

.lightbox .counter h1 .count {
  color: #E5E5E5;
}

.lightbox.show {
  z-index: 102;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

.lightbox img {
  position: absolute;
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.lightbox img.large {
  max-height: 100%;
  max-width: 100%;
}

.lightbox img.show {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
  }
}

.lightbox .next, .lightbox .prev, .lightbox .x {
  position: absolute;
  width: 60px;
  height: 25px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  -moz-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.lightbox .next .bar, .lightbox .prev .bar, .lightbox .x .bar {
  left: 23px;
  top: 6px;
  width: 30px;
  height: 2px;
  background: #E5E5E5;
  position: absolute;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}

.lightbox .next .bar.middle, .lightbox .prev .bar.middle, .lightbox .x .bar.middle {
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  top: 10px;
  right: 19px;
  width: 0;
}

.lightbox .next .bar:first-child, .lightbox .prev .bar:first-child, .lightbox .x .bar:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 15px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.lightbox .next .bar:last-child, .lightbox .prev .bar:last-child, .lightbox .x .bar:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 15px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.lightbox .next:hover, .lightbox .prev:hover, .lightbox .x:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.lightbox .next:hover .middle, .lightbox .prev:hover .middle, .lightbox .x:hover .middle {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  width: 30px;
}

.lightbox .next {
  bottom: 50px;
  right: 50px;
}

@media screen and (max-width: 992px) {
  .lightbox .next {
    bottom: 10px;
    right: -10px;
  }
}

.lightbox .next .bar:first-child {
  top: 5px;
}

.lightbox .next .bar:last-child {
  top: 15px;
}

.lightbox .next .bar.middle {
  left: auto;
}

.lightbox .next:hover .bar {
  left: 32px;
}

.lightbox .next:hover .bar.middle {
  left: auto;
  right: 16px;
}

.lightbox .prev {
  bottom: 50px;
  left: 50px;
}

@media screen and (max-width: 992px) {
  .lightbox .prev {
    bottom: 10px;
    left: -10px;
  }
}

.lightbox .prev .bar:first-child {
  top: 15px;
}

.lightbox .prev .bar:last-child {
  top: 5px;
}

.lightbox .prev:hover .bar {
  left: 13px;
}

.lightbox .prev:hover .bar.middle {
  left: auto;
  left: 16px;
}

.lightbox .x {
  top: 50px;
  right: 50px;
}

@media screen and (max-width: 992px) {
  .lightbox .x {
    top: 20px;
    right: 5px;
  }
}

.lightbox .x .bar:first-child {
  width: 30px;
}

.lightbox .x .bar:last-child {
  width: 30px;
}

/*
	05
	Services
*/
.service {
  margin-top: 50px;
}

.service .icon {
  margin-bottom: 30px;
  color: #666;
  font-size: 21px;
}

@media screen and (max-width: 992px) {
  .service .icon {
    margin: 0 auto 30px;
  }
}

.service h4 {
  margin: 0;
  padding: 0;
}

.service h3 {
  margin: 5px 0 15px;
}

/*
	06
	Contact
*/
#contact {
  text-align: center;
  height: 100%;
  position: relative;
  width: 100%;
  background: #999;
}

#contact #maps {
  position: relative;
  height: 100%;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}

#contact .info {
  color: #777;
  position: absolute;
  text-align: left;
  width: 1070px;
  height: 300px;
  z-index: 99;
  left: 50%;
  margin-left: -535px;
  top: 50%;
  margin-top: -170px;
  background: #333;
  padding: 10px 30px;
}

#contact .info h1, #contact .info h2, #contact .info h3, #contact .info h4, #contact .info h5, #contact .info h6, #contact .info a {
  color: #E5E5E5;
}

#contact .info .icon {
  display: inline-block;
  border: 1px solid #777;
  width: 30px;
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  margin: 10px 3px;
}

#contact .info .icon:hover {
  background: #222;
}

#contact textarea {
  height: 163px;
}

#contact .form-control {
  margin-top: 30px;
}

@media screen and (max-width: 992px) {
  #contact {
    height: auto;
  }

  #contact #maps {
    height: 120px;
  }

  #contact .info {
    width: 100%;
    position: relative;
    margin: 0;
    left: 0;
    top: 0;
    padding: 0 15px;
    height: auto;
  }
}

/*
	07
	Footer
*/
footer {
  background: #111;
  color: #aaa;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer a {
  color: #E5E5E5;
}

@media screen and (max-width: 992px) {
  footer h4 {
    margin: 35px 0 15px;
  }
}

footer .btn {
  color: #ccc;
  border-color: #777;
  background: transparent;
  font-size: .6em;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
}

footer .btn:hover {
  background: transparent;
  border-color: #E5E5E5;
  color: #E5E5E5;
}

footer a {
  margin-bottom: 5px;
  display: inline-block;
}

footer .icon {
  color: #aaa;
  font-size: 14px;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  margin-bottom: 4px;
}

footer form {
  padding-top: 10px;
}

footer form input {
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
}

footer form a.btn,
footer form button.btn {
  margin: 0;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  padding: 0 12px;
}

footer .shots a {
  width: 30%;
  margin: 1.95% 1%;
  background: #000;
}

footer .shots a img {
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer .shots a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}

.form-group {
  margin-bottom: 0;
}

.form-control-feedback {
  display: none !important;
}

.has-feedback .form-control-feedback {
  display: inline-block !important;
  margin-top: -24px;
}

.copy {
  background: #000;
}

.copy .row-fluid {
  padding: 45px 30px;
}

.copy .row-fluid p {
  margin: 0;
  padding: 0;
  color: #444;
}

/*
	07
	Elements
*/
img.fs, img.bg {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}

blockquote {
  margin: 40px 0;
  border-color: #333;
}

img {
  max-width: 100%;
}

.btn {
  text-transform: uppercase;
  color: #B82471;
  font-weight: 400;
  font-size: .8em;
  letter-spacing: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  margin: 10px 0;
  background: transparent;
  border-color: #B82471;
}

.btn span {
  margin-right: 10px;
}

.btn:hover {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  background: #B82471;
  color: #E5E5E5;
}

.form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border-color: #777;
  background: transparent;
  color: #ccc;
}

.info-block {
  background: #333;
  color: #E5E5E5;
}

.info-block h1, .info-block h2, .info-block h3, .info-block h4, .info-block h5, .info-block h6, .info-block p {
  margin: 15px 0;
}

.info-block .btn {
  color: #E5E5E5;
  border-color: #555;
  background: #222;
}

.info-block .btn:hover {
  background: transparent;
  color: #ccc;
  border-color: #ccc;
}

#maps {
  height: 300px;
}

.progress {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.progress .progress-bar {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.skills {
  margin-top: 30px;
}

.grey {
  background: #e5e5e5;
}

.member {
  position: relative;
  background: #E5E5E5;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.member:hover {
  -webkit-box-shadow: 0 0 50px #cccccc;
  -moz-box-shadow: 0 0 50px #cccccc;
  -ms-box-shadow: 0 0 50px #cccccc;
  box-shadow: 0 0 50px #cccccc;
}

.member:hover .img .social {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.member .img {
  position: relative;
}

.member .img img {
  position: relative;
  max-width: 100%;
}

.member .img .social {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.member .img .social .icons {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -25px;
  text-align: center;
}

.member .img .social .icons .icon {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #666;
  text-decoration: none;
  margin: auto 10px;
  font-size: 21px;
  width: 20px;
  display: inline-block;
}

.member .img .social .icons .icon:hover {
  color: #E5E5E5;
}

.member .info {
  padding: 5px 25px 10px;
}

.icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 42px;
  color: #333;
  text-align: center;
}

.icon:hover {
  text-decoration: none;
}

/*
	08
	Flexslider / Jumbotron
*/

/* Video Background Container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.jumbotron {
  position: relative;
  width: 100%;
  height: 100%;
  background: none;
  margin: 0;
}

.jumbotron .flexslider {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.jumbotron .flexslider .flex-viewport {
  height: 100%;
}

.jumbotron .flexslider ul.slides {
  padding: 0;
  position: relative;
  display: inline-block;
  height: 100%;
}

.jumbotron .flexslider ul.slides li.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 0));
  z-index: 1;
  pointer-events: none;
}

.jumbotron .flexslider ul.slides li.slide {
  overflow: hidden;
  position: relative;
  height: 100%;
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
}

.jumbotron .flexslider .flex-direction-nav {
  position: absolute;
  z-index: 10;
  list-style: none;
  bottom: -10px;
  left: 0;
  right: 0;
}

.jumbotron .flexslider .flex-direction-nav .flex-prev, .jumbotron .flexslider .flex-direction-nav .flex-next {
  position: absolute;
  height: 50px;
  line-height: 45px;
  background: transparent;
  bottom: 0;
  width: 50px;
  display: inline-block;
  padding-left: 21px;
  overflow: hidden;
  font-family: 'fontAwesome';
  color: #E5E5E5;
  -webkit-transition: background 0.25s;
  -moz-transition: background 0.25s;
  -o-transition: background 0.25s;
  transition: background 0.25s;
}

.jumbotron .flexslider .flex-direction-nav .flex-prev:before, .jumbotron .flexslider .flex-direction-nav .flex-next:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 50px;
  text-align: center;
  content: '\f104';
  -webkit-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -ms-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jumbotron .flexslider .flex-direction-nav .flex-prev:hover, .jumbotron .flexslider .flex-direction-nav .flex-next:hover {
  text-decoration: none;
  background: #000;
}

.jumbotron .flexslider .flex-direction-nav .flex-prev {
  left: 0;
}

.jumbotron .flexslider .flex-direction-nav .flex-next {
  right: 0;
}

.jumbotron .flexslider .flex-direction-nav .flex-next:before {
  content: '\f105';
}

.jumbotron h1, .jumbotron h2 {
  text-transform: uppercase;
  line-height: 1.4em;
  padding-bottom: 0;
  font-size: 3em;
  font-weight: 300;
}

@media screen and (max-width: 992px) {
  .jumbotron h1, .jumbotron h2 {
    font-size: 2em;
  }
}

.jumbotron p {
  color: #E5E5E5;
  font-weight: 400;
}

.jumbotron .btn {
  background: #AFFC41;
  color: #303030;
  border-color: #AFFC41;
}

.jumbotron i {
  font-weight: 300;
}

.jumbotron u {
  text-decoration: none;
  border-bottom: 2px solid #e5e5e5;
}

.jumbotron .centered {
  text-align: left;
  position: absolute;
  height: 300px;
  top: 50%;
  left: 50%;
  max-width: 1020px;
  width: 100%;
  margin-left: -510px;
  margin-top: -150px;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  .jumbotron .centered {
    margin: 0;
    left: 0;
    top: 70px;
    padding: 40px;
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .jumbotron .centered {
    margin: 0;
    left: 0;
    top: 70px;
    padding: 40px;
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .jumbotron .centered {
    padding: 30px;
  }
}

.jumbotron .light {
  background: rgba(255, 255, 255, 0.5) !important;
  color: #111;
}

.jumbotron .light p {
  color: #111;
}

.jumbotron .light u {
  border-color: #111;
}

.jumbotron .light .btn {
  color: #111;
  border-color: #111;
}

.jumbotron .dark {
  background: rgba(0, 0, 0, 0.4);
  color: #E5E5E5;
  -webkit-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -ms-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jumbotron .dark a.icon {
  margin: 10px 0;
  border-color: #E5E5E5;
  color: #E5E5E5;
}

.jumbotron .dark a.icon:hover {
  text-decoration: none;
}

/*
	09
	Portfolio
*/
@media screen and (max-width: 620px) {
  .folio {
    margin-bottom: -20px !important;
  }
}

.folio a.item {
  width: 25%;
  margin: 0;
  padding: 0;
  display: inline-block;
  float: left;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .folio a.item {
    width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .folio a.item {
    width: 100%;
  }
}

.folio a.item img {
  width: 100%;
  -webkit-backface-visibility: visible;
}

.folio a.item .caption {
  position: absolute;
  color: #E5E5E5;
  z-index: 2;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.8);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.folio a.item:hover .caption {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*
    Services & Skills Grid Fix
    Override Bootstrap 3 floats with flexbox for equal-height cards
*/
@media screen and (min-width: 992px) {
  #services .row-fluid,
  #skills .row-fluid {
    display: flex;
    flex-wrap: wrap;
  }

  #services .service,
  #skills .service {
    display: flex;
    flex-direction: column;
  }

  #services .service > .row,
  #skills .service > .row {
    flex: 1;
    display: flex;
  }
}

/*
    About Section - Tech Stack List Spacing
*/
#about ul li {
  margin-bottom: 15px;
}

/*
    Contact Section - Background Image
*/
#contact.contact-section {
  position: relative;
  background: transparent;
  overflow: hidden;
  height: auto;
}

#contact.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#contact.contact-section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#contact.contact-section .row-fluid {
  position: relative;
  z-index: 2;
}

#contact.contact-section h2,
#contact.contact-section p,
#contact.contact-section label {
  color: #E5E5E5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#contact.contact-section .form-control {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
  color: #303030;
}

#contact.contact-section .btn {
  margin-top: 20px;
}

/*
    Process Section - Background Image
*/
#process {
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

#process img.bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

#process .row-fluid {
  position: relative;
  z-index: 2;
}

#process h2,
#process h4,
#process p {
  color: #E5E5E5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#process .service .icon {
  color: #AFFC41;
}

/*
    Project Modal
*/
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-modal.show {
  z-index: 200;
  opacity: 1;
  visibility: visible;
}

.project-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.project-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.project-modal.show .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.project-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  z-index: 10;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}

.project-modal .modal-close:hover {
  color: #333;
}

.project-modal .modal-image {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}

.project-modal .modal-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-modal .modal-body {
  padding: 30px;
}

.project-modal .modal-title {
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
  color: #333;
}

.project-modal .modal-description {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.project-modal .modal-article {
  font-size: 1em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.project-modal .btn {
  display: inline-block;
}

body.modal-open {
  overflow: hidden;
}

@media screen and (max-width: 620px) {
  .project-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .project-modal .modal-body {
    padding: 20px;
  }

  .project-modal .modal-image {
    max-height: 200px;
  }
}

/* Hidden iframe (newsletter form target) */
.hidden-iframe {
  display: none;
  width: 0;
  height: 0;
}

/* Keep in Touch form */
#form-success {
  display: none;
  color: #5cb85c;
  margin-top: 10px;
  font-weight: 600;
}

#form-success.show {
  display: block;
}

/*
    10
    Accessibility
*/

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 999;
  padding: 8px 16px;
  background: #AFFC41;
  color: #303030;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
}

/* Screen Reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Indicators */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #AFFC41;
  outline-offset: 2px;
}

/* Nav phone link */
.top nav ul li.nav-phone a {
  opacity: 1;
  color: #F2A524;
  font-weight: 700;
}

.top nav ul li.nav-phone a:hover {
  color: #fff;
}

.top.affix nav ul li.nav-phone a,
.top.affix-bottom nav ul li.nav-phone a {
  color: #F2A524;
}

.top.affix nav ul li.nav-phone a:hover,
.top.affix-bottom nav ul li.nav-phone a:hover {
  color: #fff;
}

/* Direct channel block (contact section) */
.direct-channel {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.direct-channel h4 {
  color: #E5E5E5;
  margin-bottom: 10px;
}

.direct-channel a {
  color: #F2A524;
  font-weight: 700;
}

.direct-channel a:hover {
  color: #fff;
  text-decoration: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*
  11
  Blog Pages
*/

/* Page Hero Banner (blog & blog-post) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #303030;
  padding: 0;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.page-hero img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero .row-fluid {
  position: relative;
  z-index: 2;
  padding: 120px 30px 55px;
  text-align: left;
}

.page-hero h1 {
  color: #E5E5E5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0 0 15px;
}

/* Breadcrumb in hero */
.blog-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.blog-breadcrumb li,
.blog-breadcrumb a {
  color: rgba(229, 229, 229, 0.7);
  font-size: 0.85em;
  letter-spacing: 0.5px;
}

.blog-breadcrumb a:hover {
  color: #E5E5E5;
  text-decoration: none;
}

.blog-breadcrumb > li + li::before {
  color: rgba(229, 229, 229, 0.4);
}

.blog-breadcrumb .active {
  color: rgba(229, 229, 229, 0.5);
}

/* Blog listing & single section */
.blog-listing,
.blog-single {
  background: #fff;
}

.blog-listing .row-fluid,
.blog-single .row-fluid {
  overflow: hidden;
}

/* Blog two-col wrapper — contains Bootstrap floats */
.blog-listing .row,
.blog-single .row {
  margin: 0;
}

/* Post Cards (blog listing) */
.blog-post-card {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e8e8e8;
}

.blog-post-card:last-of-type {
  border-bottom: none;
}

.post-thumb {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
  transition: opacity 0.2s;
}

.blog-post-card a:hover .post-thumb {
  opacity: 0.9;
}

.post-date {
  display: block;
  color: #aaa;
  font-size: 0.78em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Lato", Arial, sans-serif;
}

.blog-post-card h2 {
  font-size: 1.4em;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0;
  text-transform: none;
}

.blog-post-card h2 a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-post-card h2 a:hover {
  color: #B82471;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72em;
  font-weight: 700;
  color: #B82471;
  text-decoration: none;
  transition: color 0.2s;
}

.read-more .fa {
  margin-left: 6px;
  font-size: 0.9em;
}

.read-more:hover {
  color: #333;
  text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 20px;
  padding-top: 20px;
}

.page-num {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  margin: 0 2px;
  border: 1px solid #ddd;
  color: #555;
  text-decoration: none;
  font-size: 0.82em;
  font-family: "Lato", Arial, sans-serif;
  transition: all 0.2s;
}

.page-num:hover,
.page-num.active {
  background: #B82471;
  border-color: #B82471;
  color: #fff;
  text-decoration: none;
}

/* Blog Sidebar */
.blog-sidebar-col {
  padding-left: 35px;
}

@media screen and (max-width: 992px) {
  .blog-sidebar-col {
    padding-left: 15px;
    margin-top: 50px;
  }
}

.sidebar-widget {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar-widget:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget h4 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #B82471;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 9px 0;
  border-bottom: 1px solid #f2f2f2;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.95em;
  font-family: "Lato", Arial, sans-serif;
  transition: color 0.2s;
}

.sidebar-widget ul li a:hover {
  color: #B82471;
}

/* Recent posts list */
.recent-posts-list li {
  display: block;
  padding: 10px 0;
}

.recent-posts-list li a {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.4;
}

.post-date-small {
  display: block;
  font-size: 0.75em;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", Arial, sans-serif;
}

/* Sidebar CTA */
.sidebar-cta p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.sidebar-cta .btn {
  margin-top: 0;
}

/* Single Post */
.post-meta {
  color: #aaa;
  font-size: 0.82em;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  font-family: "Lato", Arial, sans-serif;
}

.post-meta time,
.post-meta span {
  margin-right: 18px;
  color: #aaa;
}

.post-meta .fa {
  margin-right: 5px;
}

.post-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  margin-bottom: 35px;
}

@media screen and (max-width: 620px) {
  .post-hero-img {
    height: 220px;
  }
}

.post-content h3 {
  margin: 35px 0 15px;
  font-size: 1.1em;
}

.post-content p {
  line-height: 1.85;
  margin-bottom: 22px;
}

.post-content a {
  color: #B82471;
  text-decoration: underline;
}

.post-content a:hover {
  color: #333;
}

.post-content ul {
  margin: 20px 0 25px 20px;
  padding: 0;
  list-style: disc;
}

.post-content ul li {
  color: #777;
  font-size: 1.05em;
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 5px;
}

/* Post Footer */
.post-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.post-tags .fa,
.post-share span {
  color: #999;
  margin-right: 8px;
  font-size: 0.85em;
}

.post-tags a {
  display: inline-block;
  background: #f2f2f2;
  color: #555;
  padding: 4px 12px;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 2px 3px 2px 0;
  text-decoration: none;
  transition: all 0.2s;
}

.post-tags a:hover {
  background: #B82471;
  color: #fff;
}

.post-share {
  font-size: 0.85em;
  color: #999;
}

.post-share a {
  color: #555;
  margin-left: 5px;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}

.post-share a:hover {
  color: #B82471;
}

/* Back to Blog link */
.post-nav {
  margin-top: 30px;
  padding-top: 10px;
}

.post-nav .btn {
  margin: 0;
}

.post-nav .btn .fa {
  margin-right: 8px;
  margin-left: 0;
}

/* Comments Section */
.comments-section {
  margin-top: 55px;
  padding-top: 40px;
  border-top: 2px solid #e8e8e8;
}

.comments-section h4 {
  margin-bottom: 8px;
}

.comments-section .post-meta {
  margin-bottom: 25px;
}

.comment-form .form-control {
  margin-bottom: 20px;
  background: #f9f9f9;
  border-color: #ddd;
  color: #333;
}

.comment-form .form-control:focus {
  border-color: #B82471;
  box-shadow: none;
  outline: none;
}

.comment-form textarea.form-control {
  height: 140px;
  resize: vertical;
  margin-top: 5px;
}

.comment-form .btn {
  margin-top: 0;
}

/*
  12
  Service Pages (systems-integration et al.)
*/

/* ---- Hero ---- */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  padding: 0;
  text-align: left;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1;
}

.svc-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.svc-hero .row-fluid {
  position: relative;
  z-index: 2;
  padding: 185px 30px 110px;
}

.svc-eyebrow {
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B82471;
  margin: 0 0 18px;
}

.svc-hero h1 {
  color: #E5E5E5;
  font-size: 2.6em;
  line-height: 1.25;
  margin: 0 0 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  font-weight: 300;
}

@media screen and (max-width: 620px) {
  .svc-hero h1 {
    font-size: 1.8em;
  }
}

.svc-hero-sub {
  color: rgba(229, 229, 229, 0.82);
  font-size: 1.15em;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 35px;
  font-family: "Lato", Arial, sans-serif;
}

.svc-hero-btn {
  color: #E5E5E5;
  border-color: rgba(229, 229, 229, 0.6);
  font-size: 0.72em;
}

.svc-hero-btn:hover {
  background: #E5E5E5;
  border-color: #E5E5E5;
  color: #1a1a1a;
}

/* ---- Shared Section Label ---- */
.svc-section-label {
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B82471;
  margin: 0 0 12px;
}

.svc-section-label--light {
  color: rgba(184, 36, 113, 0.85);
}

/* ---- The Problem ---- */
.svc-problem {
  background: #fff;
}

.svc-problem-body {
  display: flex;
  gap: 50px;
  margin-top: 10px;
}

.svc-problem-col {
  flex: 1;
}

.svc-problem-col p {
  line-height: 1.85;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .svc-problem-body {
    flex-direction: column;
    gap: 0;
  }
}

/* ---- Symptoms ---- */
.symptom-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.symptom-item {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid #d8d8d8;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.0em;
  color: #444;
  line-height: 1.55;
}

.symptom-item:nth-last-child(-n+2) {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .symptom-item {
    width: 100%;
  }
  .symptom-item:last-child {
    border-bottom: none;
  }
  .symptom-item:nth-last-child(2) {
    border-bottom: 1px solid #d8d8d8;
  }
}

.symptom-icon {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 8px;
  color: #F2A524;
}

/* ---- Why This Happens (dark + bg image) ---- */
.svc-why {
  position: relative;
  overflow: hidden;
  background: #111;
  text-align: center;
}

.svc-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1;
}

.svc-why img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.svc-why .row-fluid {
  position: relative;
  z-index: 2;
}

.svc-why h2 {
  color: #E5E5E5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.svc-why-body {
  margin: 30px 0;
  text-align: left;
}

.svc-why-body p {
  color: rgba(229, 229, 229, 0.8);
  font-size: 1.1em;
  line-height: 1.85;
  margin-bottom: 20px;
}

.svc-pullquote {
  border-left: 4px solid #B82471;
  margin: 40px auto 0;
  max-width: 680px;
  padding: 10px 0 10px 30px;
  text-align: left;
}

.svc-pullquote p {
  color: rgba(229, 229, 229, 0.75) !important;
  font-style: italic;
  font-size: 1.15em !important;
  line-height: 1.7;
  margin: 0;
}

/* ---- What Good Looks Like ---- */
.svc-future {
  background: #fff;
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #ebebeb;
}

.outcome-item:last-child {
  border-bottom: none;
}

.outcome-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #AFFC41;
  margin-top: 2px;
  /* needs dark background to be visible — use a muted green on white */
  color: #3a9e4f;
}

.outcome-item strong {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  color: #222;
  margin-bottom: 4px;
}

.outcome-item p {
  margin: 0;
  font-size: 1.0em;
  line-height: 1.6;
  color: #666;
}

/* ---- How We Fix It (Steps) ---- */
.svc-approach {
  background: #e5e5e5;
}

.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.svc-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid #d0d0d0;
}

.svc-step:last-child {
  border-bottom: none;
}

.svc-step-number {
  flex-shrink: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  min-width: 60px;
  text-align: right;
  user-select: none;
}

.svc-step-content h4 {
  margin: 0 0 12px;
  font-size: 0.88em;
}

.svc-step-content p {
  margin: 0;
  line-height: 1.8;
}

@media screen and (max-width: 620px) {
  .svc-step {
    flex-direction: column;
    gap: 8px;
  }
  .svc-step-number {
    font-size: 1.8em;
    text-align: left;
    min-width: auto;
  }
}

/* ---- Capabilities (reuses .service from homepage) ---- */
.svc-capabilities {
  background: #fff;
}

/* ---- Point of No Return ---- */
.svc-tipping-point {
  background: #111;
  color: #E5E5E5;
}

.svc-tipping-point .svc-section-label {
  color: #aaa;
}

.svc-tipping-point h2 {
  color: #E5E5E5;
}

.svc-tipping-point .symptom-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.svc-tipping-point .symptom-icon {
  color: #D92B83;
}

.svc-tipping-close {
  margin-top: 40px;
  font-size: 1.15em;
  line-height: 1.6;
  color: #E5E5E5;
  font-weight: 600;
}

/* ---- Mid-page CTA ---- */
.svc-mid-cta {
  padding: 40px 20px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* ---- Article link in Why This Happens ---- */
.svc-article-link {
  margin-top: 30px;
  color: rgba(229, 229, 229, 0.85);
  font-size: 0.95em;
}

.svc-article-link a {
  color: #E5E5E5;
  text-decoration: underline;
}

.svc-article-link a:hover {
  color: #fff;
}

/* ---- Related Areas We Fix ---- */
.svc-related {
  background: #fff;
}

.svc-related-grid {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

@media screen and (max-width: 620px) {
  .svc-related-grid {
    flex-direction: column;
  }
}

.svc-related-item {
  flex: 1;
  display: block;
  padding: 32px;
  border: 1px solid #e0e0e0;
  color: #333;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-related-item:hover {
  border-color: #D92B83;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
}

.svc-related-item h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #111;
}

.svc-related-item p {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.svc-related-link {
  color: #D92B83;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ---- CTA Section ---- */
.svc-cta-section {
  position: relative;
  overflow: hidden;
  background: #111;
  text-align: center;
}

.svc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1;
}

.svc-cta-section img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.svc-cta-section .row-fluid {
  position: relative;
  z-index: 2;
}

.svc-cta-section h2 {
  color: #E5E5E5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.svc-cta-sub {
  color: rgba(229, 229, 229, 0.75);
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 35px 40px;
  margin: 0 auto 40px;
  max-width: 620px;
  text-align: left;
}

.svc-cta-box h4 {
  color: #E5E5E5;
  margin: 0 0 20px;
}

.svc-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-cta-list li {
  color: rgba(229, 229, 229, 0.82);
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.0em;
  line-height: 1.6;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.svc-cta-list li:last-child {
  border-bottom: none;
}

.svc-cta-list .fa {
  flex-shrink: 0;
  margin-top: 4px;
  color: #AFFC41;
  font-size: 0.85em;
}

.svc-cta-btn {
  color: #E5E5E5;
  border-color: rgba(229, 229, 229, 0.6);
  font-size: 0.78em;
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  letter-spacing: 2.5px;
}

.svc-cta-btn:hover {
  background: #E5E5E5;
  border-color: #E5E5E5;
  color: #111;
}

.svc-cta-alt {
  margin-top: 20px;
  color: rgba(229, 229, 229, 0.45);
  font-size: 0.9em;
}

.svc-cta-alt a {
  color: #F2A524;
  text-decoration: none;
}

.svc-cta-alt a:hover {
  color: #fff;
}
