html {
  height: 100%;
}

/* line 7, ../sass/_typography.scss */
body {
  background: #000;
  font-family: 'Neris', sans-serif;
  font-weight: 300;
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* line 16, ../sass/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 20px;
  text-transform: uppercase;
}

/* line 31, ../sass/_typography.scss */
p,
ul,
ol,
form {
  margin: 0 0 20px;
}

/* line 37, ../sass/_typography.scss */
blockquote {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.5);
}
/* line 41, ../sass/_typography.scss */
blockquote footer,
blockquote small,
blockquote .small {
  color: rgba(255, 255, 255, 0.8);
}

/* line 47, ../sass/_typography.scss */
a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
/* line 53, ../sass/_typography.scss */
a:hover, a:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}

/* line 62, ../sass/_typography.scss */
hr {
  border-color: rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 67, ../sass/_typography.scss */
img {
  height: auto;
  max-width: 100%;
}

/* line 71, ../sass/_typography.scss */
.form-group {
  margin-bottom: 22px;
}

/* line 74, ../sass/_typography.scss */
.form-control {
  height: 40px;
  padding: 9px 15px;
}

/* line 78, ../sass/_typography.scss */
.form-control,
.form-control:hover,
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 84, ../sass/_typography.scss */
textarea.form-control {
  height: 102px;
  resize: none;
}

/* line 88, ../sass/_typography.scss */
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: 600;
  outline: none !important;
  text-transform: uppercase;
  -webkit-transition: border-color .2s linear, background-color .2s linear, color .2s linear;
  transition: border-color .2s linear, background-color .2s linear, color .2s linear;
}

/* line 108, ../sass/_typography.scss */
.btn-default {
  color: #fff;
  background: none;
  border-color: rgba(255, 255, 255, 0.5);
}
/* line 113, ../sass/_typography.scss */
.btn-default:hover, .btn-default:focus {
  color: #fff;
  background: none;
  border-color: #fff;
}
/* line 119, ../sass/_typography.scss */
.btn-default:active, .btn-default.active {
  color: #fff;
  background: none;
  border-color: #cde9ff;
}

/******************************************************************************
  Preloader
*******************************************************************************/
/* line 4, ../sass/_preloader.scss */
.preloader {
  background: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
/* line 13, ../sass/_preloader.scss */
.preloader .loader {
  width: 50px;
  height: 50px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/* line 23, ../sass/_preloader.scss */
.preloader .loader:before {
  content: '';
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow .5s linear infinite;
  animation: shadow .5s linear infinite;
}
/* line 36, ../sass/_preloader.scss */
.preloader .loader:after {
  content: '';
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-animation: animate .5s linear infinite;
  animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes shadow {
  0%, 100% {
    -webkit-transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1);
  }
}
@keyframes shadow {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
/******************************************************************************
  Background
*******************************************************************************/
/* line 4, ../sass/_background.scss */
.background {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
/* line 11, ../sass/_background.scss */
.background .layer {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 23, ../sass/_background.scss */
.background .background-blur {
  -webkit-filter: blur(15px);
  filter: blur(15px);
  filter: url(../img/blur.svg#blur);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='15');
  box-sizing: border-box;
}
/* line 30, ../sass/_background.scss */
.background .background-pattern {
  background-image: url(../img/bg-overlay.png);
  background-repeat: repeat;
  -webkit-background-size: inherit;
  background-size: inherit;
}
/* line 36, ../sass/_background.scss */
.background .background-slider {
  z-index: inherit !important;
}
/* line 39, ../sass/_background.scss */
.background .background-slider .owl-stage-outer,
.background .background-slider .owl-stage-outer .owl-stage,
.background .background-slider .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
/* line 44, ../sass/_background.scss */
.background .background-slider .owl-stage-outer .owl-stage .owl-item .item {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
/* line 54, ../sass/_background.scss */
.background .background-video video {
  max-width: inherit;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
}
/* line 60, ../sass/_background.scss */
.background .background-video .tubular-container {
  height: 100%;
  width: 100%;
}
/* line 64, ../sass/_background.scss */
.background .background-video .tubular-container .tubular-player {
  position: absolute;
}
/* line 69, ../sass/_background.scss */
.background .background-image-1 {
  background-image: url(../content/img/background-1.jpg);
}
/* line 72, ../sass/_background.scss */
.background .background-image-2 {
  background-image: url(../content/img/background-2.jpg);
}
/* line 75, ../sass/_background.scss */
.background .background-image-3-1 {
  background-image: url(../content/img/background-3-1.jpg);
}
/* line 78, ../sass/_background.scss */
.background .background-image-3-2 {
  background-image: url(../content/img/background-3-2.jpg);
}
/* line 81, ../sass/_background.scss */
.background .background-image-3-3 {
  background-image: url(../content/img/background-3-3.jpg);
}
/* line 84, ../sass/_background.scss */
.background .background-image-3-4 {
  background-image: url(../content/img/background-3-4.jpg);
}
/* line 87, ../sass/_background.scss */
.background .background-image-6 {
  background-image: url(../content/img/background-6.jpg);
}
/* line 90, ../sass/_background.scss */
.background .background-image-7 {
  background-image: url(../content/img/background-7.jpg);
}
/* line 93, ../sass/_background.scss */
.background .background-image-11 {
  background-image: url(../content/img/background-404.jpg);
}
/* line 96, ../sass/_background.scss */
.background .background-overlay-1 {
  background-color: rgba(0, 64, 128, 0.5);
}
/* line 99, ../sass/_background.scss */
.background .background-overlay-2 {
  background-color: rgba(0, 0, 0, 0.8);
}
/* line 102, ../sass/_background.scss */
.background .background-overlay-3 {
  background-color: rgba(0, 0, 0, 0.6);
}
/* line 105, ../sass/_background.scss */
.background .background-overlay-4 {
  background-color: #111;
}
/* line 108, ../sass/_background.scss */
.background .background-gradient {
  background: #65187c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY1MTg3YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3NDY3YmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #65187c 0%, #7467bf 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #65187c), color-stop(100%, #7467bf));
  background: -webkit-linear-gradient(top, #65187c 0%, #7467bf 100%);
  background: -o-linear-gradient(top, #65187c 0%, #7467bf 100%);
  background: -ms-linear-gradient(top, #65187c 0%, #7467bf 100%);
  background: linear-gradient(to bottom, #65187c 0%, #7467bf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65187c', endColorstr='#7467bf',GradientType=0 );
}
/* line 119, ../sass/_background.scss */
.background .background-overlay-7 {
  background-color: rgba(0, 0, 0, 0.9);
}
/* line 122, ../sass/_background.scss */
.background .background-overlay-8 {
  background-color: rgba(0, 0, 35, 0.9);
}
/* line 125, ../sass/_background.scss */
.background .background-overlay-11 {
  background-color: rgba(17, 32, 96, 0.8);
}

/******************************************************************************
  Header
*******************************************************************************/
/* line 4, ../sass/_header.scss */
.site-header {
  background: rgba(0, 0, 0, 0.4);
  display: table-row;
  min-height: 80px;
  width: 100%;
  /* Menu */
}
/* line 10, ../sass/_header.scss */
.site-header .container {
  padding-top: 5px;
  padding-bottom: 5px;
}
/* line 14, ../sass/_header.scss */
.site-header .logo-box {
  display: table;
  height: 70px;
  max-width: 211px;
  table-layout: fixed;
  width: 100%;
}
/* line 21, ../sass/_header.scss */
.site-header .logo-box .logo {
  display: table-cell;
  vertical-align: middle;
}
/* line 25, ../sass/_header.scss */
.site-header .logo-box.text-center {
  margin: 0 auto;
}
/* line 30, ../sass/_header.scss */
.site-header .menu-box {
  display: table;
  height: 70px;
  table-layout: fixed;
  width: 100%;
}
/* line 36, ../sass/_header.scss */
.site-header .menu-box .menu {
  background: none;
  border: 0 none;
  display: table-cell;
  margin: 0;
  min-height: inherit;
  vertical-align: middle;
}
@media (max-width: 767px) {
  /* line 36, ../sass/_header.scss */
  .site-header .menu-box .menu {
    position: static;
  }
}
/* line 47, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-collapse {
  padding: 0;
}
@media (max-width: 767px) {
  /* line 47, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-collapse {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0 none;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 100%;
    width: 300%;
    z-index: 99;
  }
}
@media (max-width: 767px) {
  /* line 62, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav {
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
  }
}
/* line 68, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav.navbar-right {
  margin: 0;
}
/* line 72, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 1px 10px;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  /* line 72, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav > li > a {
    color: #000 !important;
  }
}
/* line 86, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:before, .site-header .menu-box .menu .navbar-nav > li > a:after {
  content: "";
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
@media (max-width: 767px) {
  /* line 86, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav > li > a:before, .site-header .menu-box .menu .navbar-nav > li > a:after {
    display: none !important;
  }
}
/* line 101, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
/* line 107, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
/* line 113, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:focus {
  background: none;
  color: #fff;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
@media (max-width: 767px) {
  /* line 113, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav > li > a:focus {
    border-color: transparent;
  }
}
/* line 122, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:hover, .site-header .menu-box .menu .navbar-nav > li > a:hover:focus {
  background: none;
  color: #fff;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
@media (max-width: 767px) {
  /* line 122, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav > li > a:hover, .site-header .menu-box .menu .navbar-nav > li > a:hover:focus {
    border-color: transparent;
  }
}
/* line 132, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:hover:before, .site-header .menu-box .menu .navbar-nav > li > a:hover:focus:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 137, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li > a:hover:after, .site-header .menu-box .menu .navbar-nav > li > a:hover:focus:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 145, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li.active > a {
  border-color: transparent;
  color: #fff !important;
  cursor: default;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  /* line 145, ../sass/_header.scss */
  .site-header .menu-box .menu .navbar-nav > li.active > a {
    color: #000;
    text-shadow: none;
  }
}
/* line 155, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-nav > li.active > a:before, .site-header .menu-box .menu .navbar-nav > li.active > a:after {
  display: none;
}
/* line 163, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-toggle {
  margin: 0;
}
/* line 166, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-toggle .icon-bar {
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  -webkit-transition: background .2s linear;
  transition: background .2s linear;
  width: 25px;
}
/* line 176, ../sass/_header.scss */
.site-header .menu-box .menu .navbar-toggle:hover .icon-bar {
  background: rgba(255, 255, 255, 0.8);
}

/******************************************************************************
  Main
*******************************************************************************/
/* line 4, ../sass/_main.scss */
.page-box {
  display: table;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  table-layout: fixed;
  width: 100%;
}

/* line 13, ../sass/_main.scss */
#main {
  display: table-row;
  height: 100%;
  width: 100%;
}
/* line 18, ../sass/_main.scss */
#main .content-wrapper {
  display: table-cell;
  padding-top: 30px;
  padding-bottom: 30px;
  vertical-align: middle;
}
/* line 25, ../sass/_main.scss */
#main .content-wrapper .content .article {
  height: 0;
  overflow: hidden;
}
/* line 29, ../sass/_main.scss */
#main .content-wrapper .content .article.active {
  height: auto;
  overflow: visible;
}
/* line 33, ../sass/_main.scss */
#main .content-wrapper .content .article .title {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 767px) {
  /* line 33, ../sass/_main.scss */
  #main .content-wrapper .content .article .title {
    font-size: 28px;
  }
}
/* line 40, ../sass/_main.scss */
#main .content-wrapper .content .article .title:before {
  background: #fff;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 50%;
  margin: 0 0 0 -20px;
  position: absolute;
  width: 0px;
}

/******************************************************************************
  Content
*******************************************************************************/
/* line 60, ../sass/_main.scss */
.subscribe .title {
  font-size: 40px;
}
/* line 63, ../sass/_main.scss */
.subscribe .description {
  margin-bottom: 15px;
}

/* Newsletter */
/* line 68, ../sass/_main.scss */
.newsletter,
.search-form {
  margin: 0 auto;
  max-width: 550px;
}
/* line 73, ../sass/_main.scss */
.newsletter .form,
.search-form .form {
  margin: 0;
  position: relative;
}
/* line 77, ../sass/_main.scss */
.newsletter .form .form-control,
.search-form .form .form-control {
  padding-right: 145px;
}
/* line 80, ../sass/_main.scss */
.newsletter .form .form-control:focus,
.search-form .form .form-control:focus {
  border-color: #fff;
  color: #fff;
}
/* line 84, ../sass/_main.scss */
.newsletter .form .form-control:focus + .btn,
.search-form .form .form-control:focus + .btn {
  border-left-color: #fff;
}
/* line 89, ../sass/_main.scss */
.newsletter .form .btn,
.search-form .form .btn {
  border-color: transparent;
  border-left-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 0;
  top: 0;
}
/* line 97, ../sass/_main.scss */
.newsletter .form:hover .form-control,
.search-form .form:hover .form-control {
  border-color: #fff;
}
/* line 100, ../sass/_main.scss */
.newsletter .form:hover .btn,
.search-form .form:hover .btn {
  border-left-color: #fff;
}
/* line 106, ../sass/_main.scss */
.newsletter .form:focus .form-control, .newsletter .form:focus:hover .form-control,
.search-form .form:focus .form-control,
.search-form .form:focus:hover .form-control {
  border-color: #fff;
  color: #fff;
}
/* line 110, ../sass/_main.scss */
.newsletter .form:focus .btn, .newsletter .form:focus:hover .btn,
.search-form .form:focus .btn,
.search-form .form:focus:hover .btn {
  border-left-color: #fff;
}
/* line 114, ../sass/_main.scss */
.newsletter .form .form-message,
.search-form .form .form-message {
  background: #fff;
  bottom: 100%;
  font-size: .92em;
  left: 0;
  margin: 0 0 5px;
  padding: 1px 8px 2px;
  position: absolute;
}
/* line 123, ../sass/_main.scss */
.newsletter .form .form-message:before,
.search-form .form .form-message:before {
  border: 5px solid transparent;
  border-top-color: #fff;
  content: "";
  height: 0;
  left: 10px;
  position: absolute;
  top: 100%;
  width: 0;
}

/* Count Down */
/* line 137, ../sass/_main.scss */
.count-down {
  margin-bottom: 30px;
}
/* line 141, ../sass/_main.scss */
.count-down .time_circles h4,
.count-down .time_circles span {
  color: #fff;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
}
/* line 147, ../sass/_main.scss */
.count-down .time_circles h4 {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  text-transform: none;
}
/* line 153, ../sass/_main.scss */
.count-down .time_circles canvas {
  vertical-align: top;
}

/* Employee */
/* line 159, ../sass/_main.scss */
.employee {
  border-radius: 50%;
  height: 158px;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  width: 158px;
}
/* line 167, ../sass/_main.scss */
.carousel .employee {
  margin-bottom: 0;
}
/* line 171, ../sass/_main.scss */
.employee .image img {
  border-radius: 50%;
}
/* line 175, ../sass/_main.scss */
.employee .image-hover {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  bottom: 0;
  color: #000;
  color: rgba(0, 0, 0, 0.8);
  left: 0;
  opacity: 0;
  padding-top: 66px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}
/* line 192, ../sass/_main.scss */
.employee .image-hover .name {
  font-size: 14px;
  margin-bottom: 10px;
}
/* line 196, ../sass/_main.scss */
.employee .image-hover .social {
  vertical-align: top;
}
/* line 199, ../sass/_main.scss */
.employee .image-hover .social a {
  color: #000;
  color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  font-size: 12px;
  height: 20px;
  line-height: 12px;
  margin: 0 4px;
  padding-top: 4px;
  vertical-align: top;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  width: 20px;
}
/* line 213, ../sass/_main.scss */
.employee .image-hover .social a:hover {
  color: #fff;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
/* line 218, ../sass/_main.scss */
.employee .image-hover .social a .fa {
  vertical-align: top;
}
/* line 225, ../sass/_main.scss */
.employee.hover .image-hover {
  opacity: 1;
  transition: opacity .2s linear;
  transition: opacity .2s linear;
}

/* Carousels */
/* line 234, ../sass/_main.scss */
.owl-carousel .owl-item {
  -webkit-backface-visibility: inherit;
  backface-visibility: inherit;
}
/* line 239, ../sass/_main.scss */
.owl-carousel .owl-controls {
  margin-top: 20px;
  text-align: center;
}
/* line 243, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-prev,
.owl-carousel .owl-controls .owl-next {
  display: inline-block;
  height: 24px;
  margin: 0 10px;
  position: relative;
  text-indent: -9999px;
  width: 24px;
}
/* line 252, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-prev:before,
.owl-carousel .owl-controls .owl-next:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform .1s linear;
  transition: transform .1s linear;
  width: 100%;
}
/* line 265, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-next:before {
  background: url(../img/next.svg) 50% 50% no-repeat;
}
/* line 270, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-next:hover:before {
  -webkit-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}
/* line 277, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-prev:before {
  background: url(../img/prev.svg) 50% 50% no-repeat;
}
/* line 282, ../sass/_main.scss */
.owl-carousel .owl-controls .owl-prev:hover:before {
  -webkit-transform: translate3d(-5px, 0, 0);
  transform: translate3d(-5px, 0, 0);
}

/* line 290, ../sass/_main.scss */
.carousel-270 {
  margin: 0 auto;
  max-width: 270px;
}

/* Contact Us */
/* line 296, ../sass/_main.scss */
.contact > .title {
  margin-bottom: 56px;
}

/* line 299, ../sass/_main.scss */
.contact-info {
  display: block;
  font-size: 15px;
  margin-bottom: 28px;
  text-align: center;
  text-decoration: none;
}
/* line 306, ../sass/_main.scss */
.contact-info .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
}
/* line 311, ../sass/_main.scss */
.contact-info .icon {
  color: #fff;
  font-size: 40px;
  height: 48px;
  line-height: 45px;
  margin: 0 auto 10px;
  width: 48px;
}
/* line 319, ../sass/_main.scss */
.contact-info .icon.amimated-icon svg {
  -webkit-transition-property: fill;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: linear;
  transition-property: fill;
  transition-duration: .2s;
  transition-timing-function: linear;
}
/* line 329, ../sass/_main.scss */
.contact-info:hover .icon.amimated-icon svg {
  -webkit-animation-name: shake;
  -webkit-animation-duration: .3s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 100%;
  animation-name: shake;
  animation-duration: .16s;
  animation-timing-function: ease-in;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  transform-origin: 50%;
  fill: #fff;
}

/* line 347, ../sass/_main.scss */
a.contact-info:hover, a.contact-info:focus {
  text-decoration: none;
}
/* line 351, ../sass/_main.scss */
a.contact-info:hover .link, a.contact-info:focus .link {
  border-bottom-color: transparent;
}

/* line 356, ../sass/_main.scss */
.contact-form {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
}
/* line 362, ../sass/_main.scss */
.contact-form .col-sm-6 > div {
  position: relative;
}
/* line 366, ../sass/_main.scss */
.contact-form .form-message {
  background: #fff;
  font-size: .92em;
  left: 0;
  margin: 5px 0 0;
  padding: 1px 8px 2px;
  position: absolute;
  top: 100%;
}
/* line 375, ../sass/_main.scss */
.contact-form .form-message:before {
  border: 5px solid transparent;
  border-bottom-color: #fff;
  bottom: 100%;
  content: "";
  height: 0;
  left: 10px;
  position: absolute;
  width: 0;
}

/* Map */
/* line 388, ../sass/_main.scss */
.modal-content {
  border: 0 none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 396, ../sass/_main.scss */
.map-box {
  display: block !important;
  visibility: hidden;
}
/* line 400, ../sass/_main.scss */
.map-box .close {
  opacity: 1;
  filter: alpha(opacity=100);
  outline: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 999;
}
/* line 409, ../sass/_main.scss */
.map-box .close svg {
  transition-property: fill;
  transition-duration: .2s;
  transition-timing-function: linear;
}
/* line 415, ../sass/_main.scss */
.map-box .close:hover svg {
  animation-name: beat;
  animation-duration: .28s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  transform-origin: 50%;
  -webkit-animation-name: beat;
  -webkit-animation-duration: .28s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  -webkit-transform-origin: 50%;
}
/* line 433, ../sass/_main.scss */
.map-box .modal-dialog {
  height: 100%;
  margin: 0;
  width: 100%;
  -webkit-transform: scale(0.2, 0.2);
  transform: scale(0.2, 0.2);
}
/* line 440, ../sass/_main.scss */
.map-box .modal-dialog .modal-content {
  height: 100%;
}

/* line 446, ../sass/_main.scss */
.modal.fade .modal-dialog {
  -webkit-transform: scale(0.2, 0.2);
  transform: scale(0.2, 0.2);
}
/* line 450, ../sass/_main.scss */
.modal.in {
  visibility: visible;
}
/* line 453, ../sass/_main.scss */
.modal.in .modal-dialog {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* line 459, ../sass/_main.scss */
.map-canvas {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
}
/* line 464, ../sass/_main.scss */
.map-canvas img {
  max-width: inherit;
}
/* line 467, ../sass/_main.scss */
.map-canvas .marker-content {
  color: #000;
}
/* line 470, ../sass/_main.scss */
.map-canvas .marker-content .title {
  font-size: 1.2em;
  margin: 0 0 10px;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateY(-14px);
  }
  15% {
    -webkit-transform: translateY(0px);
  }
  30% {
    -webkit-transform: rotate(-40deg);
  }
  50% {
    -webkit-transform: rotate(30deg);
  }
  80% {
    -webkit-transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes shake {
  0% {
    transform: translateY(-14px);
  }
  15% {
    transform: translateY(0px);
  }
  30% {
    transform: rotate(-40deg);
  }
  50% {
    transform: rotate(30deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes beat {
  0% {
    -webkit-transform: scale(1);
  }
  20% {
    -webkit-transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(1.6);
  }
  80% {
    -webkit-transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes beat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.6);
  }
  80% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* Progress */
/* line 507, ../sass/_main.scss */
.progress {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 513, ../sass/_main.scss */
.progress-bar {
  padding: 0 10px;
  text-align: left;
}

/* Services */
/* line 519, ../sass/_main.scss */
.service .icon {
  border: 1px solid #fff;
  color: rgba(243, 77, 101, 0.8);
  height: 60px;
  float: left;
  font-size: 32px;
  line-height: 60px;
  margin: 0 15px 0 0;
  text-align: center;
  width: 60px;
}
/* line 530, ../sass/_main.scss */
.service .service-title {
  font-size: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}
/* line 535, ../sass/_main.scss */
.service .description {
  overflow: hidden;
}

/* Pricing */
/* line 540, ../sass/_main.scss */
.pricing {
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: auto;
  max-width: 270px;
  text-align: center;
}
/* line 547, ../sass/_main.scss */
.pricing .pricing-title {
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
}
/* line 552, ../sass/_main.scss */
.pricing .pricing-title h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
/* line 556, ../sass/_main.scss */
.pricing .pricing-title span {
  color: rgba(255, 255, 255, 0.8);
}
/* line 560, ../sass/_main.scss */
.pricing .price {
  font-size: 22px;
  line-height: 1;
  padding: 20px;
}
/* line 565, ../sass/_main.scss */
.pricing .price .unit {
  line-height: 1.5;
  vertical-align: top;
}
/* line 569, ../sass/_main.scss */
.pricing .price .count {
  font-size: 54px;
  font-weight: 500;
}
/* line 573, ../sass/_main.scss */
.pricing .price .tenure {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
/* line 578, ../sass/_main.scss */
.pricing .action {
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
}
/* line 583, ../sass/_main.scss */
.pricing.pricing-info {
  border-color: rgba(91, 192, 222, 0.5);
}
/* line 586, ../sass/_main.scss */
.pricing.pricing-info .pricing-title {
  background: rgba(91, 192, 222, 0.2);
  border-bottom: 1px solid rgba(91, 192, 222, 0.5);
}
/* line 590, ../sass/_main.scss */
.pricing.pricing-info .action {
  background: rgba(91, 192, 222, 0.2);
  border-top: 1px solid rgba(91, 192, 222, 0.5);
}
/* line 595, ../sass/_main.scss */
.pricing.pricing-danger {
  border-color: rgba(243, 77, 101, 0.5);
}
/* line 598, ../sass/_main.scss */
.pricing.pricing-danger .pricing-title {
  background: rgba(243, 77, 101, 0.2);
  border-bottom: 1px solid rgba(243, 77, 101, 0.5);
}
/* line 602, ../sass/_main.scss */
.pricing.pricing-danger .action {
  background: rgba(243, 77, 101, 0.2);
  border-top: 1px solid rgba(243, 77, 101, 0.5);
}
/* line 607, ../sass/_main.scss */
.pricing.pricing-success {
  border-color: rgba(92, 184, 92, 0.5);
}
/* line 610, ../sass/_main.scss */
.pricing.pricing-success .pricing-title {
  background: rgba(92, 184, 92, 0.2);
  border-bottom: 1px solid rgba(92, 184, 92, 0.5);
}
/* line 614, ../sass/_main.scss */
.pricing.pricing-success .action {
  background: rgba(92, 184, 92, 0.2);
  border-top: 1px solid rgba(92, 184, 92, 0.5);
}
/* line 619, ../sass/_main.scss */
.pricing.pricing-warning {
  border-color: rgba(240, 173, 78, 0.5);
}
/* line 622, ../sass/_main.scss */
.pricing.pricing-warning .pricing-title {
  background: rgba(240, 173, 78, 0.2);
  border-bottom: 1px solid rgba(240, 173, 78, 0.5);
}
/* line 626, ../sass/_main.scss */
.pricing.pricing-warning .action {
  background: rgba(240, 173, 78, 0.2);
  border-top: 1px solid rgba(240, 173, 78, 0.5);
}

/* Promo Box */
@media (min-width: 768px) {
  /* line 634, ../sass/_main.scss */
  .promo-box {
    display: table;
    margin: 0;
    table-layout: fixed;
  }
  /* line 639, ../sass/_main.scss */
  .promo-box .col-sm-6 {
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
}
/* Portfilio */
/* line 647, ../sass/_main.scss */
.portfolio-item {
  margin: 0 auto;
  max-width: 272px;
  text-align: center;
}
/* line 652, ../sass/_main.scss */
.portfolio-item .image {
  display: block;
  margin-bottom: 15px;
  position: relative;
}
/* line 657, ../sass/_main.scss */
.portfolio-item .image .hover {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: block;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  -webkit-transition: opacity .1s linear;
  transition: opacity .1s linear;
  z-index: 2;
}
/* line 672, ../sass/_main.scss */
.portfolio-item .image .hover .fa {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  margin: -20px 0 0 -20px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 40px;
}
/* line 686, ../sass/_main.scss */
.portfolio-item .image .new {
  border-top: 56px solid #ea1024;
  border-right: 56px solid transparent;
  color: #fff;
  display: block;
  height: 0;
  line-height: 22px;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 3;
}
/* line 698, ../sass/_main.scss */
.portfolio-item .image .new:before {
  color: #fff;
  content: "New";
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin: -50px 0 0 5px;
  position: absolute;
  text-transform: uppercase;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
/* line 712, ../sass/_main.scss */
.portfolio-item .image:hover .hover {
  opacity: 1;
}
/* line 717, ../sass/_main.scss */
.portfolio-item .portfolio-title {
  font-size: 20px;
  margin-bottom: 5px;
}
/* line 721, ../sass/_main.scss */
.portfolio-item .tags {
  color: rgba(255, 255, 255, 0.8);
}
/* line 725, ../sass/_main.scss */
.portfolio-item .gallery .portfolio-title {
  bottom: 0;
  font-size: 14px;
  left: 0;
  margin-bottom: -40px;
  padding: 0 10px;
  position: absolute;
  right: 0;
  -webkit-transition: margin .2s ease-out;
  transition: margin .2s ease-out;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}
/* line 738, ../sass/_main.scss */
.portfolio-item .gallery .fa {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
}
/* line 745, ../sass/_main.scss */
.portfolio-item .gallery:hover .portfolio-title {
  margin-bottom: 10px;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
/* line 750, ../sass/_main.scss */
.portfolio-item .gallery:hover .fa {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 757, ../sass/_main.scss */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* line 765, ../sass/_main.scss */
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

/* line 768, ../sass/_main.scss */
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* line 771, ../sass/_main.scss */
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* line 775, ../sass/_main.scss */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  background: url(../img/close.svg) 50% 50% no-repeat;
  cursor: pointer;
  height: 30px;
  font-size: 0;
  opacity: 1;
  padding: 0;
  position: fixed;
  right: 16px;
  top: 12px;
  text-align: left;
  text-indent: -9999px;
  -webkit-transition-property: fill;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: linear;
  transition-property: fill;
  transition-duration: .2s;
  transition-timing-function: linear;
  width: 30px;
}
/* line 796, ../sass/_main.scss */
.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
  -webkit-animation-name: beat;
  -webkit-animation-duration: .28s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  -webkit-transform-origin: 50%;
  animation-name: beat;
  animation-duration: .28s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  transform-origin: 50%;
}

/* line 813, ../sass/_main.scss */
.mfp-figure:after {
  top: 50px;
  bottom: 50px;
}

/* line 817, ../sass/_main.scss */
img.mfp-img {
  padding: 50px 0 50px;
}

/* line 820, ../sass/_main.scss */
.mfp-arrow {
  opacity: 1;
}
/* line 823, ../sass/_main.scss */
.mfp-arrow:before, .mfp-arrow.mfp-b {
  border: none;
  display: block;
  height: 24px;
  margin-top: 43px;
  opacity: 1;
  -webkit-transition: -webkit-transform .1s linear;
  transition: transform .1s linear;
  width: 24px;
}

/* line 835, ../sass/_main.scss */
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  display: none;
}

/* line 840, ../sass/_main.scss */
.mfp-arrow-right:before, .mfp-arrow-right.mfp-b {
  background: url(../img/next.svg) 50% 50% no-repeat;
}
/* line 845, ../sass/_main.scss */
.mfp-arrow-right:hover:before, .mfp-arrow-right:hover.mfp-b {
  -webkit-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}

/* line 853, ../sass/_main.scss */
.mfp-arrow-left:before, .mfp-arrow-left.mfp-b {
  background: url(../img/prev.svg) 50% 50% no-repeat;
}
/* line 858, ../sass/_main.scss */
.mfp-arrow-left:hover:before, .mfp-arrow-left:hover.mfp-b {
  -webkit-transform: translate3d(-5px, 0, 0);
  transform: translate3d(-5px, 0, 0);
}

/* Page 404 */
/* line 868, ../sass/_main.scss */
.page-404 .title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 200px;
  line-height: 1;
  margin-top: -30px;
}
@media (max-width: 767px) {
  /* line 868, ../sass/_main.scss */
  .page-404 .title {
    font-size: 150px !important;
  }
}
/* line 877, ../sass/_main.scss */
.page-404 .title:before {
  background: rgba(255, 255, 255, 0.4) !important;
}

/******************************************************************************
  Footer
*******************************************************************************/
/* line 4, ../sass/_footer.scss */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  display: table-row;
  color: rgba(255, 255, 255, 0.3);
  min-height: 60px;
  width: 100%;
}
/* line 11, ../sass/_footer.scss */
.site-footer .container {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  /* line 11, ../sass/_footer.scss */
  .site-footer .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/* line 19, ../sass/_footer.scss */
.site-footer .copyright {
  font-size: 12px;
  line-height: 2;
  padding: 3px 0;
}
@media (max-width: 767px) {
  /* line 19, ../sass/_footer.scss */
  .site-footer .copyright {
    text-align: center;
  }
}
@media (max-width: 767px) {
  /* line 27, ../sass/_footer.scss */
  .site-footer .social {
    text-align: center;
  }
}

/* line 34, ../sass/_footer.scss */
.social a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
  height: 30px;
  font-size: 12px;
  line-height: 29px;
  margin: 0 2px;
  position: relative;
  text-align: center;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  vertical-align: top;
  width: 30px;
}
/* line 48, ../sass/_footer.scss */
.social a:before {
  border: 1px solid #fff;
  border-radius: 50%;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity .2s linear, -webkit-transform .2s linear;
  transition: opacity .2s linear, -webkit-transform .2s linear;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* line 67, ../sass/_footer.scss */
.social a:hover {
  color: #fff;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
/* line 72, ../sass/_footer.scss */
.social a:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/******************************************************************************
  Landing Page
*******************************************************************************/
/* line 4, ../sass/_landing.scss */
.landing-page {
  height: auto;
}
/* line 7, ../sass/_landing.scss */
.landing-page .page-box {
  display: block;
  height: auto;
  overflow: visible;
  position: relative;
}
/* line 13, ../sass/_landing.scss */
.landing-page .site-header,
.landing-page .site-footer {
  background: rgba(0, 0, 0, 0.9);
  display: block;
  position: fixed;
  top: 0;
  z-index: 99;
}
@media (max-width: 767px) {
  /* line 13, ../sass/_landing.scss */
  .landing-page .site-header,
  .landing-page .site-footer {
    position: relative;
  }
}
/* line 24, ../sass/_landing.scss */
.landing-page .site-footer {
  bottom: 0;
  top: auto;
}
/* line 28, ../sass/_landing.scss */
.landing-page #main {
  display: block;
  height: auto;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  /* line 28, ../sass/_landing.scss */
  .landing-page #main {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/* line 38, ../sass/_landing.scss */
.landing-page #main .content-wrapper {
  display: block;
  padding: 0;
}
/* line 42, ../sass/_landing.scss */
.landing-page #main .content-wrapper .article {
  height: auto;
  padding: 50px 0;
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  /* line 42, ../sass/_landing.scss */
  .landing-page #main .content-wrapper .article {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/******************************************************************************
  Customizer
*******************************************************************************/
/* line 5, ../sass/_customizer.scss */
.style-2 .site-header,
.style-2 .site-footer {
  background: rgba(255, 255, 255, 0.15);
}

/* line 11, ../sass/_customizer.scss */
.style-4 .site-header,
.style-4 .site-footer {
  background: rgba(0, 0, 0, 0.1);
}

/* line 17, ../sass/_customizer.scss */
.style-6 .site-header,
.style-6 .site-footer {
  background: rgba(0, 0, 0, 0.9);
}

/* line 23, ../sass/_customizer.scss */
.style-8 .site-header,
.style-8 .site-footer {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  /* line 28, ../sass/_customizer.scss */
  .margin-xs {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  /* line 33, ../sass/_customizer.scss */
  .margin-sm {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  /* line 38, ../sass/_customizer.scss */
  .margin-md {
    margin-bottom: 30px;
  }
}

/* line 43, ../sass/_customizer.scss */
.margin {
  margin-bottom: 30px;
}

/* line 46, ../sass/_customizer.scss */
.flipInX {
  -webkit-backface-visibility: inherit !important;
  backface-visibility: inherit !important;
}

/******************************************************************************
  Intro Page
*******************************************************************************/
/* line 6, ../sass/_intro.scss */
.intro-page .portfolio-item .portfolio-title {
  font-size: 14px;
}
/* line 10, ../sass/_intro.scss */
.intro-page .site-header .menu-box .menu {
  font-size: 26px;
}
@media (max-width: 767px) {
  /* line 10, ../sass/_intro.scss */
  .intro-page .site-header .menu-box .menu {
    font-size: 14px;
  }
}
/* line 17, ../sass/_intro.scss */
.intro-page #main .content-wrapper {
  padding-bottom: 0;
}
