/* ------------------------------------------------------------------------------
  Template Name: Flosix
  Author: Designstub
  Author URI: http://www.designstub.com
  License: GNU General Public License version 3.0
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
  Version: 1.0

/* ------------------------------------------------------------------------------
  Typography
-------------------------------------------------------------------------------*/
@import url(font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
p {
  font-size: 1.25em;
  line-height: 150%;
  color: #000000;
}
h1 {
  font-size: 65px;
  color: #000000;
}
h2 {
  font-size: 40px;
  color: #000000;
}
h3 {
  font-size: 28px;
  color: #888888;
  font-weight: 300;
}
h4 {
  font-size: 22px;
  color: #000000;
  font-weight: 400;
}
h5 {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
}
.btn {
  background-color: #333;
  margin: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0px;
  padding: 3%;
  display: inline-block;
  text-transform: uppercase;
}
.btn:hover, .btn:focus {
  background-color: #000;
  color: #fff;
}
.btn-large {
  padding: 15px 40px;
}
/* ------------------------------------------------------------------------------
  Global Styles
-------------------------------------------------------------------------------*/
a {
  color: #000000;
}
a:hover, a:focus, svg:hover {
  text-decoration: none;
  -moz-transition: background-color, color, 0.3s;
  -o-transition: background-color, color, 0.3s;
  -webkit-transition: background-color, color, 0.3s;
  transition: background-color, color, 0.3s;
  color: #000000;
}
body {
  font-family: 'Lora', serif;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: #ffffff;
}
ul, ol {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.section {
  padding: 25px 0;
}
.no-padding {
  padding: 0;
}
.no-gutter [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.extra-padding {
  margin: 60px 0 0 100px;
}
/* ------------------------------------------------------------------------------
   Header
-------------------------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  z-index: 999;
}
#header .header-content {
  margin: 0 auto;
  padding: 40px 10% 10px;
  width: 100%;
  -moz-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
#header .logo {
  float: left;
}
#header.fixed {
  background-color: rgba(255, 255, 255, 1);
}
#header.fixed .header-content {
  border-bottom: 0;
  padding: 25px 10%;
}
#header.fixed .nav-toggle {
  top: 30px;
}
.navigation.open {
  opacity: 0.9;
  visibility: visible;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 5;
}
.navigation {
  float: right;
}
.navigation li {
  display: inline-block;
}
ul li a:hover {
  color: #acacac !important;
  text-decoration: none !important;
}
.navigation, .navigation a {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  margin-left: 40px;
  padding: 10px;
}
.navigation a:hover, .navigation a.active {
  color: #000000;
  text-decoration: underline;
}
.nav-toggle {
  display: none;
  height: 44px;
  overflow: hidden;
  position: fixed;
  right: 5%;
  text-indent: 100%;
  top: 32px;
  white-space: nowrap;
  width: 44px;
  z-index: 99999;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-toggle:before, .nav-toggle:after {
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
.nav-toggle:before {
  background-color: #000000;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.nav-toggle:after {
  background-color: #000;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.nav-toggle span {
  background-color: #fff;
  bottom: auto;
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  width: 18px;
  z-index: 10;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.nav-toggle span:before {
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -webkit-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.nav-toggle.close-nav:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.nav-toggle.close-nav span {
  background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
  background-color: #fff;
}
.nav-toggle.close-nav span:before {
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
svg {
  width: 55px;
}
svg:hover {
  fill: #acacac;
}
/* ------------------------------------------------------------------------------
   Hero content
-------------------------------------------------------------------------------*/
.hero {
  margin: 0 auto;
  float: none;
}
.hero-content {
  text-align: center;
  margin: 15% auto 0;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 400;
  margin-top: 0;
  color: #000000;
  /*background-color: #000000;*/
  background-color: #ffff00;
  padding: 6px 0 10px;
}
.hero h3 {
  font-family: 'Playfair Display', serif;
  margin: 10px 0;
  color: #000000;
  font-size: 32px;
  /*background-color: #000000;*/
  background-color: #00ffff;
  line-height: 140%;
  padding: 8px;
}
.hero h4 {
  font-weight: 300;
}
.hero p {
  padding: 10px 20px;
  color: #000000;
}

/* ------------------------------------------------------------------------------
   Portfolio
-------------------------------------------------------------------------------*/
#portfolio .portfolio-item {
  right: 0;
  margin: 0 0 20px;
  padding: 20px 30px;
  position: relative;
}
#portfolio .portfolio-item .portfolio-link {
  display: block;
  position: relative;
  margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .caption {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(58,54,54,.9);
  -webkit-transition: all ease .5s;
  -moz-transition: all ease .5s;
  transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
  opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -5%;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
  margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3 {
  margin: 0;
  color: #e9eaed;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 4px;
  text-transform: uppercase;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
  margin: 10px 0;
  color: #e9eaed;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
video {
  padding: 8% 4%;
  outline: none;
  margin: 0 auto;
}
.video-background {
  background: rgba(122,132,57,0.2);
  background: linear-gradient(to bottom, rgba(122,132,57,0.2), rgba(0,0,0,0.2));
  border-radius: 4px;
  margin-bottom: 3%;
}
.video-center {
  display: table;
  margin: 0 auto;
}
/*#portfolio * {
  z-index: 2;
}*/
#portfolio {
  padding-bottom: 6%;
}
/*.modal-header {
  border: none;
  padding: 15px;
}
.modal-header .close {
  font-size: 3em;
  margin-top: -10px;
}
.thumbnail {
  border: none;
  margin-bottom: 0.5%;
  padding: 2%;
}
.thumbnail:hover {
  background-color: #f2f2f2;
}
.carousel-control.left,.carousel-control.right {
  background-image: none;
  margin-top: 10%;
  width: 5%;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 80%;
    margin: 2% auto;
  }
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -85px;
    margin-left: 0;
    font-size: 30px;
  }
}*/
/* ------------------------------------------------------------------------------
   Service
-------------------------------------------------------------------------------*/
.service {
  margin-bottom: 50px;
}
.service h4 {
  font-size: 19px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}
.service-content {
  margin-top: 30px;
}
.service .icon {
  color: #a1a4a8;
  font-size: 48px;
}
.service-content h5 {
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}
/* ------------------------------------------------------------------------------
   Footer
-------------------------------------------------------------------------------*/
.footer {
  text-align: left;
  background-color: #333;
  padding: 7%;
}
.footer h4 {
  color: #fff;
  margin: 0 0 15px 0;
  padding: 0px;
}
.footer p {
  color: #c8c8c8;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .fa-heart {
  color: #e84545;
  font-size: 11px;
  margin: 0 2px;
}
.container {
  margin: 0 auto;
  text-align: center;
}
.padding-bottom {
  padding-bottom: 60px;
}
/*.margin-center {
  margin: 5% auto 1%;
  width: 50%;
}*/
/* ------------------------------------------------------------------------------
   Work Details
-------------------------------------------------------------------------------*/
.work-detail img {
  width: 100%;
  text-align: center;
  margin: 5% 0 5% 0;
}

.work-detail a {
  color: #000000;
}

.work-detail a:hover {
  text-decoration: underline !important;
}
