@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto');

body {
  font-family: 'Lora', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  background-color: black;
}

html {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 35px;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 25px;
}

@media (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px;
  }
}

/* Color of A tag before clicks */
a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #cf5ece;
}

/*  Wrap text inside buttons  */
.btn {
  white-space: normal;
}

/* ==================================================
   Preloader
================================================== */
#jpreOverlay,
#jSplash {
  background-color: #2f3238;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 700;
}

#jpreSlide {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
}

#jpreLoader {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
}

#jprePercentage {
  width: 50px;
  height: 50px !important;
  line-height: 50px;
  position: absolute !important;
  text-align: center;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  z-index: 800;
  font-size: 24px;
  color: #ffffff;
  -webkit-animation: circle 1s infinite forwards;
  -moz-animation: circle 1s infinite forwards;
  -ms-animation: circle 1s infinite forwards;
  -o-animation: circle 1s infinite forwards;
  animation: circle 1s infinite forwards;
}

#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  background: #cf5ece;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-animation: circle 1s infinite forwards;
  -moz-animation: circle 1s infinite forwards;
  -ms-animation: circle 1s infinite forwards;
  animation: circle 1s infinite forwards;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
  }
}

@-moz-keyframes circle {
  0% {
    -moz-transform: rotateY(0deg);
  }

  50% {
    -moz-transform: rotateY(180deg);
    -moz-animation-timing-function: ease-out;
  }

  100% {
    -moz-transform: rotateY(0deg);
    -moz-animation-timing-function: ease-in;
  }
}

@-ms-keyframes circle {
  0% {
    -ms-transform: rotateY(0deg);
    -ms-animation-timing-function: ease-in;
  }

  50% {
    -ms-transform: rotateY(180deg);
    -ms-animation-timing-function: ease-out;
  }

  100% {
    -ms-transform: rotateY(0deg);
    -ms-animation-timing-function: ease-in;
  }
}

@-o-keyframes circle {
  0% {
    -o-transform: rotateY(0deg);
    -o-animation-timing-function: ease-in;
  }

  50% {
    -o-transform: rotateY(180deg);
    -o-animation-timing-function: ease-out;
  }

  100% {
    -o-transform: rotateY(0deg);
    -o-animation-timing-function: ease-in;
  }
}

@keyframes circle {
  0% {
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }

  50% {
    transform: rotateY(180deg);
    animation-timing-function: ease-out;
  }

  100% {
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }
}

/* ==================================================
   Navigation
================================================== */

#logo:hover {
  opacity: 0.65;
  filter: alpha(opacity=65);
}

#mainNav {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: black;
}

#mainNav .navbar-toggler {
  font-size: 14px;
  padding: 11px;
  color: white;
  border: 1px solid white;
}

#mainNav .navbar-brand {
  font-weight: 700;
}

#mainNav a {
  color: white;
}

#mainNav .navbar-nav .nav-item {
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  /********** NEW */
  transition: background 0.3s ease-in-out;
}

#mainNav .navbar-nav .nav-item:hover {
  color: fade(white, 80%);
  outline: none;
  background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active,
#mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: background 0.3s ease-in-out,
      padding-top 0.3s ease-in-out, padding-bottom 0.3s;
    -moz-transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out,
      padding-bottom 0.3s;
    transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out,
      padding-bottom 0.3s;
    letter-spacing: 1px;
    border-bottom: none;
    background: transparent;
  }

  #mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: black;
  }

  #mainNav .nav-link.active {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
  }

  #mainNav .nav-link.active:hover {
    color: white;
  }
}

/* ==================================================
   Header full slider
================================================== */

#full-slider .carousel-item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#full-slider .carousel-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}

#full-slider .carousel-caption {
  float: none;
  text-shadow: none;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1em;
  margin: 0;
}

#full-slider .carousel-caption span {
  color: #999;
}

/* Devices 768px and up */
@media (min-width: 768px) {
  #full-slider .carousel-caption h3 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -2px;
  }

  #full-slider .carousel-caption p {
    font-size: 30px;
  }

  #full-slider .carousel-caption span {
    font-size: 20px;
  }
}

/* Position indicators and change to dots */
#full-slider .control-nav {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  z-index: 2;
}

#full-slider .carousel-indicators {
  top: 50%;
  padding: 0;
  margin: -6px 0 0 0;
}

#full-slider .carousel-indicators li {
  margin-right: 12px;
}

#full-slider .carousel-indicators li:last-child {
  margin-right: 0;
}

#full-slider .carousel-indicators li {
  background-image: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /*
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    -webkit-transition: background 0.1s linear 0s;
    -moz-transition: background 0.1s linear 0s;
    -o-transition: background 0.1s linear 0s;
    transition: background 0.1s linear 0s;
    */
}

#full-slider .carousel-indicators li:hover {
  background-color: #ffffff;
}

#full-slider .carousel-indicators li.active,
#full-slider .carousel-indicators li.active:hover {
  background-color: #cf5ece;
}

/* ==================================================
   General Content
================================================== */

.content-section {
  padding: 50px 0 25px;
}

/* Small devices less than 768px */
@media (max-width: 767px) {
  .content-section {
    padding: 50px 0 25px;
  }
}

.page {
  background: #2f3238;
}

.page-alternate {
  background: #26292e;
}

.title-page {
  text-align: center;
  margin-bottom: 50px;
}

.title-page .title {
  font-size: 48px;
  margin: 0 0 10px 0;
}

.title-page .title-description {
  font-size: 24px;
  font-weight: 200;
  margin: 0;
}

.full-width {
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .title-page {
    margin-bottom: 25px;
  }

  .title-page .title {
    font-size: 36px;
  }

  .title-page .title-description {
    font-size: 16px;
  }
}
/* ==================================
Featured Clients
================================== */

#html5-watermark { 
  display: none !important;
}

/*****************CARDS ***/

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
  }
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 4;
  }
}

@media (min-width: 992px) {
  .card-columns {
    column-count: 5;
  }
}

@media (min-width: 1200px) {
  .card-columns {
    column-count: 6;
  }
}
/* Override BOOTSTRAP text color for modal */
.modal-title {
  color: #343a40;
}

/* =======  Hack to fix lightbox flex issue in ie11 ======== */
.ekko-lightbox .modal-dialog {
  flex: 100% !important;
  margin-left: 0;
  margin-right: 0;
}
/* ==================================================
   About Section
================================================== */

.profile-name {
  margin-bottom: 15px;
}

.profile-description {
  margin-bottom: 25px;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  cursor: pointer;
}

.image-wrap img {
  width: 100%;
}

.image-wrap .hover-wrap {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 450ms ease-out 0s;
  -moz-transition: all 450ms ease-out 0s;
  -o-transition: all 450ms ease-out 0s;
  transition: all 450ms ease-out 0s;
  -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
  -moz-transform: rotateY(180deg) scale(0.5, 0.5);
  -ms-transform: rotateY(180deg) scale(0.5, 0.5);
  -o-transform: rotateY(180deg) scale(0.5, 0.5);
  transform: rotateY(180deg) scale(0.5, 0.5);
}

.image-wrap:hover .hover-wrap,
.image-wrap.active .hover-wrap {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: rotateY(0deg) scale(1, 1);
  -moz-transform: rotateY(0deg) scale(1, 1);
  -ms-transform: rotateY(0deg) scale(1, 1);
  -o-transform: rotateY(0deg) scale(1, 1);
  transform: rotateY(0deg) scale(1, 1);
}

.image-wrap .hover-wrap .overlay-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #cf5ece;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.image-wrap .hover-wrap .overlay-text-thumb {
  position: absolute;
  width: 100%;
  height: 32px;
  top: 50%;
  margin: -16px 0 0 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  text-transform: uppercase;
  text-align: center;
  opacity: 1;
  filter: alpha(opacity=100);
}

.social-icons {
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-left: 15px;
}

.social-icons li:first-child {
  margin-left: 0;
}

.social-icons li a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1em;
  width: 16px;
  height: 16px;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity 0.1s linear 0s;
  -moz-transition: opacity 0.1s linear 0s;
  -o-transition: opacity 0.1s linear 0s;
  transition: opacity 0.1s linear 0s;
}

.social-icons li a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* ==================================================
   Testimonial Section
================================================== */

.testimonial-area p {
  background: transparent;
  border: 4px solid;
  border-color: #6c757d;
  border-radius: 5px;
  margin-bottom: 25px;
  padding: 20px;
  position: relative;
  font-style: italic;
}

.testimonial-area p:after {
  border-top: 22px solid;
  border-left: 0px solid transparent;
  border-right: 22px solid transparent;
  left: 60px;
  bottom: -22px;
  width: 0;
  height: 0;
  content: '';
  display: block;
  position: absolute;
  border-top-color: #6c757d;
  border-left-style: inset;
  border-right-style: inset;
}

.testimonial-info {
  min-height: 60px;
}

.testimonial-info span {
  font-size: 18px;
}

.testimonial-info span em {
  color: #cdc9c9;
  display: block;
  font-size: 13px;
}

.testimonial-info img {
  border: 2px solid #6c757d;
  float: left;
  /* height: 60px;*/
  margin-right: 15px;
  padding: 2px;
  /* width: 60px;*/
}

#mytestimonials .carousel-indicators li {
  bottom: -25px;
  background-image: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /*
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    -webkit-transition: background 0.1s linear 0s;
    -moz-transition: background 0.1s linear 0s;
    -o-transition: background 0.1s linear 0s;
    transition: background 0.1s linear 0s;
    */
}

#mytestimonials .carousel-indicators li:hover {
  background-color: #ffffff;
}

#mytestimonials .carousel-indicators li.active,
#mytestimonials .carousel-indicators li.active:hover {
  background-color: #cf5ece;
}

/* ==================================================
   Contact Section - Social Area
================================================== */
.contact-details ul {
  list-style: none;
  padding: 0;
}

ul.social-network {
  list-style: none;
  display: inline;
  margin-left: 0 !important;
  padding: 0;
}

ul.social-network li {
  display: inline-block;
  margin: 5px;
}

.social-network a.icoFacebook:hover {
  background-color: #3b5998;
}

.social-network a.icoTwitter:hover {
  background-color: #33ccff;
}

.social-network a.icoGoogle:hover {
  background-color: #bd3518;
}

.social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}

.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoLinkedin:hover i {
  color: #fff;
}

a.socialIcon:hover,
.socialHoverClass {
  color: #44bcdd;
}

.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #6c757d;
}

.social-circle li i {
  margin: 0;
  line-height: 50px;
  text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.social-circle i {
  color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

/* ==================================================
   Footer
================================================== */

footer .credits {
  font-size: 14px;
  margin-bottom: 0;
  padding: 20px 0;
  text-transform: uppercase;
}

/* Small devices less than 768px */
@media (max-width: 767px) {
  footer .credits {
    font-size: 10px;
  }
}
