/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/* mixin usage */
.linear-gradient {
  background: -moz-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00FFFF), color-stop(100%, #0080FF));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
  /* ie10+ */
  background: linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
  /* ie6-9 */ }

/* mixin usage */
.center-both p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.center-vert p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* mixin usage */
.border-all {
  border: 5px solid #0080FF; }

.border-less-bottom {
  border: 5px solid #0080FF;
  border-bottom: none; }

.border-top {
  border-top: 5px dashed #0080FF; }

/* BOX SHADOW */
/* mixin usage */
button.fade {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: #00FFFF;
  background-color: #0080FF;
  border-color: #00FFFF; }
  button.fade:hover {
    color: #0080FF;
    background-color: #00FFFF;
    border-color: #0080FF; }

button.scale {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #00FFFF;
  background-color: #0080FF;
  width: 18rem;
  position: relative;
  top: 0; }
  button.scale:hover {
    width: 22rem;
    top: 10px; }

/* mixin usage */
.demo1 {
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  -ms-border-radius: 1em;
  border-radius: 1em; }

.demo2 {
  -webkit-border-radius: 25px 5px 25px 5px;
  -moz-border-radius: 25px 5px 25px 5px;
  -ms-border-radius: 25px 5px 25px 5px;
  border-radius: 25px 5px 25px 5px; }

/* mixin usage */
.box.sevenfive {
  filter: alpha(opacity=75);
  opacity: 0.75; }

.box.twofive {
  filter: alpha(opacity=25);
  opacity: 0.25; }

/* mixin usage */
.demo1 {
  color: #0080FF;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25); }

.demo2 {
  color: #FFFFFF;
  text-shadow: -1px -2px 3px #00FFFF, 1px 2px 3px #0080FF; }

/* mixin usage */
.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=1, M21=-1, M22=0, sizingMethod='auto expand');
  zoom: 1; }

html, body {
  font-family: Arial, Helvetica, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: Impact, Arial, Helvetica, sans-serif;
  color: #000; }

body {
  padding-bottom: 20px;
  margin: 0;
  color: #50514f;
  position: relative; }

h1 {
  font-size: 60px;
  font-weight: 900; }

h2 {
  font-size: 45px;
  font-weight: 800; }

h3 {
  font-size: 24px;
  font-weight: 700; }

h4 {
  font-size: 22px;
  font-weight: 500; }

h5 {
  font-size: 20px;
  font-weight: 600; }

h6 {
  font-size: 18px;
  font-weight: 300; }

ul {
  list-style-type: none; }

a {
  text-decoration: none;
  display: inline-block; }

strong {
  font-family: Impact, Arial, Helvetica, sans-serif; }

a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none; }

ul.services li {
  margin: 10px;
  list-style-type: circle; }

ul.services {
  padding: 0; }

.card {
  border: none; }

.image-featured {
  padding-top: 10px; }

footer {
  margin-top: 40px; }

.our-works-area {
  line-height: 10px; }
  .our-works-area .title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 16px;
    padding-bottom: 0;
    margin-bottom: 0; }
  .our-works-area hr {
    margin-top: 0; }

.carousel-control-prev-icon {
  background-image: none; }

img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%); }
  img:hover, img:focus {
    -webkit-filter: grayscale(0);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0); }

.wow {
  visibility: hidden; }

.link-external {
  color: #000; }
  .link-external:hover {
    color: #50514f; }
  .link-external:visited {
    color: #000; }

@media (max-width: 768px) {
  .image-featured {
    text-align: center;
    margin-left: auto;
    margin-right: auto; }
  .display-4 {
    margin-top: 10px;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: center; } }

@media (min-width: 768px) {
  .image-featured {
    text-align: center;
    margin-left: auto;
    margin-right: auto; } }

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.navbar {
  border-bottom: 1px solid #f4f4f4;
  font-weight: 400;
  font-family: Impact;
  padding-bottom: 0px; }
  .navbar li.nav-item {
    line-height: 14px; }
    .navbar li.nav-item a {
      padding-bottom: 0; }

.nav-link {
  text-transform: uppercase; }

.gallery-block.grid-gallery {
  padding-bottom: 60px;
  padding-top: 60px; }

.gallery-block.grid-gallery .heading {
  margin-bottom: 50px;
  text-align: center; }

.gallery-block.grid-gallery .heading h2 {
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase; }

.gallery-block.grid-gallery a:hover {
  opacity: 0.8; }

.gallery-block.grid-gallery .item img {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s; }

.gallery-block.grid-gallery .item {
  margin-bottom: 20px; }

@media (min-width: 576px) {
  .gallery-block.grid-gallery .scale-on-hover:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important; } }

.image {
  max-height: 220px;
  margin: 0 auto; }

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.main-slider .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  border: #fff solid 1px;
  border-radius: 4px; }

.main-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 3px; }

.works-slider {
  max-height: 160px; }
  .works-slider img {
    max-height: 160px; }
  .works-slider .swiper-container {
    width: 100%;
    height: 100%; }
  .works-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    width: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
