body {
  background: #141515;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden; }

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

/* MAIN HEADER */
.main-header {
  position: absolute;
  left: 55px;
  right: 55px;
  top: 55px;
  z-index: 15;
  opacity: 0; }

.logo {
  float: left; }
  .logo img {
    max-width: 100%; }

.works-link {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #fff;
  padding: 5px 10px;
  margin-left: 15px;
  float: right; }
  .works-link:before, .works-link:after {
    content: "";
    position: absolute;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  .works-link::before {
    width: 5px;
    left: -5px;
    top: -1px;
    border-top: 1px solid #fff; }
  .works-link::after {
    height: 5px;
    left: -1px;
    top: -5px;
    border-left: 1px solid #fff; }
  .works-link img {
    position: relative;
    top: -2px;
    margin-right: 15px; }
  .works-link:hover, .works-link:focus {
    color: #fff; }
  .works-link:hover::before {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px); }
  .works-link:hover::after {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); }

.main-nav {
  float: right; }
  .main-nav ul li,
  .main-nav ul li a {
    float: left; }

.main-nav-link {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 5px 10px; }
  .main-nav-link:hover, .main-nav-link:focus {
    color: #fff; }
  .main-nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    width: 0;
    border-bottom: 1px solid #fff;
    -webkit-transition: width 0.3s;
    transition: width 0.3s; }
  .main-nav-link:hover::after {
    width: calc(100% - 20px); }

/* HOME LINKS */
.fixed-link-group {
  position: fixed;
  right: 55px;
  top: 19%;
  border-right: 1px solid #9b9b9b;
  z-index: 15; }
  .fixed-link-group a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding: 7px 20px;
    z-index: 1; }
    .fixed-link-group a::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background-color: rgba(0, 0, 0, 0.5);
      -webkit-transition: width 0.3s;
      transition: width 0.3s;
      z-index: -1; }
    .fixed-link-group a::before {
      content: "";
      position: absolute;
      right: -1px;
      bottom: 0;
      top: 0;
      border-right: 1px solid #fff;
      z-index: 1; }
    .fixed-link-group a:hover::after {
      width: 100%; }
  .fixed-link-group a + a {
    margin-top: 10px; }

.home-gallery-links {
  position: fixed;
  right: 55px;
  top: 60%;
  text-align: right;
  z-index: 10; }

.gallery-link {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .gallery-link span {
    display: inline-block;
    vertical-align: bottom;
    font-size: 25px;
    margin-right: 25px; }
  .gallery-link:hover, .gallery-link:focus {
    color: #fff; }

.take-a-look {
  position: relative;
  display: inline-block;
  color: #f00;
  font-size: 16px;
  padding: 5px 10px;
  border-bottom: 1px solid #f00;
  margin-top: 20px;
  z-index: 1; }
  .take-a-look:hover, .take-a-look:focus {
    color: #fff; }
  .take-a-look::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: #f00;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    z-index: -1; }
  .take-a-look:hover::after, .take-a-look:focus::after {
    height: 100%; }

/* MAIN SLIDER */
.main-slider .item {
  position: relative;
  height: 100vh;
  overflow: hidden; }

.main-slider .owl-next,
.main-slider .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  z-index: 10; }
  .main-slider .owl-next img,
  .main-slider .owl-prev img {
    -webkit-transition: margin 0.3s;
    transition: margin 0.3s; }

.main-slider .owl-prev {
  left: 55px; }
  .main-slider .owl-prev img {
    margin-right: 10px; }
  .main-slider .owl-prev:hover img {
    margin-right: 5px; }

.main-slider .owl-next {
  right: 55px; }
  .main-slider .owl-next img {
    margin-left: 10px; }
  .main-slider .owl-next:hover img {
    margin-left: 5px; }

.slide-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 15s;
  transition: all 15s; }
  .slide-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.8)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-radial-gradient(center ellipse, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=1 ); }

.owl-item.active .slide-image {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.slide-text {
  position: absolute;
  top: 55%;
  left: 55px;
  z-index: 5; }

.slide-title {
  position: relative;
  overflow: hidden; }
  .slide-title span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 1s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.5s;
    transition: 1s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.5s; }
    .slide-title span::after {
      content: "";
      display: block;
      width: 190px;
      border-top: 2px solid #fff;
      margin-top: 15px;
      -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
      transform-origin: right center;
      -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s;
      transition: -webkit-transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s;
      transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s;
      transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s, -webkit-transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s; }

.owl-item.active .slide-title span {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }
  .owl-item.active .slide-title span::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); }

/* INNER PAGE */
.page-content-wrapper {
  height: 100vh;
  padding: 170px 55px 150px; }

.page-content {
  height: 100%;
  overflow: hidden; }

/* ABOUT */
.page-bg-wrapper {
  background: url(../img/about-bg.jpg) no-repeat center center;
  background-size: cover; }

.about-title {
  color: #fff;
  font-size: 43px;
  font-weight: 700;
  margin: 25px 0 55px; }

.about-text {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.6; }
  .about-text p {
    margin-bottom: 35px; }

.about-left {
  width: 61.5%;
  padding-right: 165px;
  float: left; }

.about-image {
  position: relative;
  width: 35.6%;
  float: left; }
  .about-image img {
    width: 100%; }

/* CONTACT US */
.page-left-title {
  width: 440px;
  padding-right: 15px;
  float: left; }

.page-title {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  margin: 130px 0 20px; }
  .page-title::after {
    content: "";
    display: block;
    max-width: 170px;
    height: 2px;
    background-color: #fff;
    margin-top: 20px; }
  .page-title span {
    color: #fff;
    font-size: 33px;
    font-weight: 800; }

.page-subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px; }

.page-left-content {
  padding-left: 440px; }

.contact-map {
  position: relative;
  width: 48.5%;
  height: 64vh;
  max-height: 545px;
  float: left; }
  .contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1); }

.contact-info {
  width: 51.5%;
  float: left;
  padding: 0 40px; }

.ci-title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff; }

.ci-desc-item {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 17px; }
  .ci-desc-item a {
    color: #fff;
    font-size: 16px;
    font-weight: 300; }
    .ci-desc-item a:hover {
      text-decoration: underline; }

.cf-link {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin-right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .cf-link img {
    margin-right: 5px;
    position: relative;
    top: -2px; }
  .cf-link:hover {
    color: #fff;
    background-color: #000;
    border-color: #000; }

.share-link {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  line-height: 34px;
  padding: 0 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 115px; }
  .share-link img {
    margin-right: 10px;
    position: relative;
    top: -2px; }
  .share-link:hover {
    color: #fff;
    background-color: #000;
    border-color: #000; }

.contact-form-modal {
  position: relative;
  width: 100%;
  max-width: 915px;
  margin: 0 auto; }

.contact-form-modal .mfp-close {
  right: -69px;
  top: 46px;
  width: 70px;
  height: 70px;
  color: #fff;
  background: url(../img/close-icon.jpg) no-repeat center center;
  color: transparent;
  opacity: 1;
  text-align: center; }

.cfm-title {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 10px; }

.cfm-body {
  background-color: #fff;
  padding: 55px 55px 35px 55px; }

.contact-form .form-group {
  margin-bottom: 30px; }

.contact-form ::-webkit-input-placeholder {
  color: #1a1e2d; }

.contact-form ::-moz-placeholder {
  color: #1a1e2d; }

.contact-form :-ms-input-placeholder {
  color: #1a1e2d; }

.contact-form :-moz-placeholder {
  color: #1a1e2d; }

.contact-form :placeholder-shown {
  color: #1a1e2d; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  height: 70px;
  border: 1px solid #1a1e2d;
  color: #333;
  padding: 0 30px;
  outline: none;
  font-size: 20px;
  font-style: inherit;
  font-weight: 300;
  line-height: 70px;
  background: #fff;
  border-radius: 10px; }

.contact-form textarea {
  height: auto;
  padding-top: 30px;
  line-height: 16px;
  resize: none; }

.contact-form input[type="submit"] {
  display: inline-block;
  width: 180px;
  height: 50px;
  line-height: 40px;
  background: #b7ae25;
  color: #fff;
  border: none; }

.contact-form input[type="submit"]:hover {
  background: #8d861c; }

.mfp-container {
  padding: 0 70px; }

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9); }

/* NEWS / NEWS DETAIL */
.news-slider {
  padding-right: 90px; }
  .news-slider .item {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s; }
  .news-slider .owl-item.active .item {
    opacity: 1; }

.news-slider-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
  background-color: #f5f5f5; }
  .news-slider-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%; }

.news-slider-date {
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  margin-top: 30px; }

.news-slider-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px; }

.news-slider-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 23px;
  height: 45px;
  overflow: hidden; }

.news-slider-link {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  padding: 7px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.news-slider .item:hover .news-slider-link {
  background-color: #fff;
  color: #000; }

.news-slider .item:hover .news-slider-image img {
  -webkit-transform: scale(1.02) translate(-50%, -50%);
  -ms-transform: scale(1.02) translate(-50%, -50%);
  transform: scale(1.02) translate(-50%, -50%); }

.news-slider .owl-prev,
.news-slider .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.news-slider .owl-prev.disabled,
.news-slider .owl-next.disabled {
  -webkit-transform: scale(0.9) translateY(-50%);
  -ms-transform: scale(0.9) translateY(-50%);
  transform: scale(0.9) translateY(-50%);
  opacity: 0.1; }

.news-slider .owl-prev {
  left: -80px; }

.news-slider .owl-next {
  right: 0; }

.news-detail-right {
  padding-left: 32%; }

.news-detail-image {
  width: 30%;
  max-width: 405px;
  float: left; }
  .news-detail-image img {
    max-width: 100%; }

.news-detail-desc {
  width: 100%;
  float: left;
  color: #fff;
  font-size: 16px;
  font-weight: 300; }

.news-detail-top {
  width: 100%;
  float: left;
  margin: 5px 0 25px 0; }

.news-detail-title {
  float: left;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 10px 10px 0; }

.news-detail-date {
  color: #fff;
  float: right;
  font-size: 11px;
  font-weight: 300;
  padding-top: 4px;
  margin-left: 15px; }

.news-detail-share {
  position: relative;
  float: right;
  color: #fff;
  font-size: 11px;
  line-height: 34px;
  padding: 0 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 115px;
  top: -5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .news-detail-share img {
    margin-right: 10px; }
  .news-detail-share:hover, .news-detail-share:focus {
    background-color: #000; }

/* WORKS */
.works-wrapper {
  position: relative;
  padding: 0 120px; }

.next-work,
.prev-work {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10; }
  .next-work a,
  .prev-work a {
    color: #fff;
    font-size: 16px;
    font-weight: 300; }
    .next-work a:hover, .next-work a:focus,
    .prev-work a:hover,
    .prev-work a:focus {
      color: #fff; }
  .next-work img,
  .prev-work img {
    -webkit-transition: margin 0.3s;
    transition: margin 0.3s; }

.next-work {
  right: 55px; }
  .next-work img {
    margin-left: 10px; }
  .next-work:hover img,
  .next-work:focus img {
    margin-left: 5px; }

.prev-work {
  left: 55px; }
  .prev-work img {
    margin-right: 10px; }
  .prev-work:hover img,
  .prev-work:focus img {
    margin-right: 5px; }

.works-title {
  width: 410px;
  float: left;
  padding-top: 120px;
  padding-right: 15px; }
  .works-title h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0; }
    .works-title h1::after {
      content: "";
      display: block;
      max-width: 170px;
      height: 2px;
      background-color: #fff;
      margin-top: 20px; }
    .works-title h1 span {
      display: block;
      font-size: 54px; }

.works-share {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 170px;
  margin-top: 65px;
  cursor: pointer; }
  .works-share img {
    margin-right: 10px; }
  .works-share:hover {
    background-color: #000;
    border-color: #000; }

.works-content {
  padding-left: 410px; }

.works-gallery {
  padding-left: 410px; }

.works-gallery-item {
  position: relative;
  height: 250px;
  margin-bottom: 25px;
  overflow: hidden; }
  .works-gallery-item img {
    position: relative;
    max-width: 100%; }

.page-content-wrapper.works-page {
  height: auto;
  padding-bottom: 15px; }

.main-footer.works-page {
  position: static;
  padding-left: 55px;
  padding-right: 55px;
  padding-bottom: 15px; }

.mfp-image-holder .mfp-arrow {
  width: 69px;
  height: 137px;
  margin-top: -34px;
  opacity: 1; }
  .mfp-image-holder .mfp-arrow::before, .mfp-image-holder .mfp-arrow::after {
    display: none; }

.mfp-image-holder .mfp-arrow-left {
  background: url(../img/gallery-prev-icon.png) no-repeat 50% 50%;
  left: 30px; }

.mfp-image-holder .mfp-arrow-right {
  background: url(../img/gallery-next-icon.png) no-repeat 50% 50%;
  right: 30px; }

.mfp-image-holder {
  padding: 0 115px; }

.mfp-image-holder .mfp-close {
  right: -69px;
  top: 39px;
  width: 70px;
  height: 70px;
  color: #fff;
  background: url(../img/close-icon.jpg) no-repeat center center;
  color: transparent;
  opacity: 1;
  text-align: center; }

/* MAIN FOOTER */
.main-footer {
  position: fixed;
  bottom: 55px;
  left: 55px;
  right: 55px;
  z-index: 15;
  opacity: 0; }

.mf-bottom {
  border-top: 1px solid #fff;
  padding-top: 20px;
  margin-top: 15px; }

.mf-development {
  float: right; }

.mf-copyright {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  float: left; }

.footer-lang {
  display: inline-block;
  color: #fff;
  margin-left: 20px; }
  .footer-lang a {
    color: #fff;
    font-size: 15px; }
    .footer-lang a:hover {
      text-decoration: underline; }

.footer-social {
  display: inline-block;
  text-align: left; }
  .footer-social a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-left: 13px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
    .footer-social a:hover {
      -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px); }

.fs-title {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  display: inline-block; }
  .fs-title::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    width: 20px;
    height: 1px;
    background-color: #fff; }

/* ===PAGE-LOADER=== */
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  overflow: hidden; }

.loader-text {
  width: 100%;
  display: inline-block;
  margin: 10px 0;
  font-weight: 700;
  color: #333; }

.loader-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2; }

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.ball-scale-multiple {
  position: relative;
  width: 60px;
  height: 60px; }

.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -.4s;
  animation-delay: -.4s; }

.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -.2s;
  animation-delay: -.2s; }

.ball-scale-multiple > div {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite; }

/* MOBILE MENU */
.mobile-menu {
  background-color: #333;
  display: none;
  padding-bottom: 25px;
  padding-top: 50px;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 300;
  padding-left: 0;
  height: 100%;
  overflow: auto;
  right: -100%;
  -webkit-transition: 0.5s;
  transition: 0.5s; }

.mobile-menu.active {
  right: 0; }

.mobile-menu ul {
  padding: 0 33px; }

.mobile-menu ul li {
  display: block; }

.mobile-menu .mm-parent {
  display: block;
  padding: 10px 0 20px;
  text-align: right;
  color: #fff;
  font-size: 14px;
  font-weight: 700; }

.mobile-menu .mm-child {
  padding: 0 21px 10px; }

.mm-child li {
  border-right: 1px solid #fff; }

.mobile-menu .mm-child a {
  display: block;
  padding: 5px 15px;
  text-align: right;
  color: #fff; }

.mobile-menu-close {
  color: white;
  font-size: 40px;
  position: absolute;
  right: 31px;
  top: 0;
  display: block;
  color: #fff;
  cursor: pointer; }

.hamburger {
  position: relative;
  float: right;
  display: none;
  width: 40px;
  height: 24px;
  margin: 5px 0 0 15px;
  cursor: pointer; }

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  background-color: #fff;
  position: absolute;
  width: 40px;
  height: 4px;
  border-radius: 4px; }

.hamburger-inner::after, .hamburger-inner::before {
  display: block;
  content: ''; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

/* MEDIA */
@media (max-width: 1600px) {
  .news-detail-title,
  .news-detail-date {
    width: 100%; }
  .news-detail-share {
    float: left;
    top: 0;
    margin: 10px 0; } }

@media (max-width: 1440px) {
  .works-title h1,
  .works-title h1 span {
    font-size: 50px; }
  .about-title {
    margin-bottom: 15px; }
  .about-text {
    font-size: 14px; }
    .about-text p {
      margin-bottom: 10px; }
  .ci-title {
    font-size: 20px; }
  .contact-info {
    padding: 0 0 0 30px; }
  .page-title {
    font-size: 50px;
    margin: 100px 0 30px; }
  .page-left-title,
  .works-title {
    width: 360px; }
  .page-left-content,
  .works-gallery {
    padding-left: 360px; } }

@media (max-width: 1366px) {
  .prev-work {
    left: 30px; }
  .next-work {
    right: 30px; }
  .news-slider-image {
    padding-bottom: 70%; }
  .news-slider-date {
    margin-top: 15px; }
  .news-slider-title {
    margin-bottom: 10px; }
  .news-slider-desc {
    margin-bottom: 15px; }
  .about-left {
    width: 71.5%;
    padding-right: 35px; }
  .about-image {
    width: 26.6%;
    float: right; }
  .about-title {
    font-size: 34px; }
  .about-text {
    line-height: 1.6; }
    .about-text p {
      margin-bottom: 30px; }
  .page-content-wrapper {
    height: 100vh;
    padding-top: 145px;
    padding-bottom: 120px; }
  .page-content-wrapper,
  .main-footer.works-page {
    padding-left: 30px;
    padding-right: 30px; }
  .main-header {
    top: 30px;
    left: 30px;
    right: 30px; }
  .main-footer {
    bottom: 30px;
    left: 30px;
    right: 30px; }
  .fixed-link-group,
  .home-gallery-links {
    right: 30px; }
  .main-slider .owl-prev {
    left: 30px; }
  .main-slider .owl-next {
    right: 30px; }
  .slide-text {
    left: 30px; }
  .slide-title span {
    font-size: 60px; } }

@media (max-width: 1199px) {
  .works-title {
    width: 100%;
    padding: 0;
    float: none; }
  .works-gallery {
    padding: 0; }
  .page-bg-wrapper {
    min-height: 100vh; }
  .news-detail-image {
    width: 100%;
    max-width: 300px; }
  .news-detail-right {
    padding-left: 330px; }
  .news-slider {
    padding: 0 50px; }
  .news-slider .owl-prev {
    left: 0; }
  .news-slider-image {
    padding-bottom: 75%; }
  .news-slider-desc {
    height: auto;
    overflow: visible; }
  .cfm-body {
    padding: 30px 30px 15px 25px; }
  .contact-form input {
    height: 60px;
    line-height: 60px; }
  .contact-form .form-group {
    margin-bottom: 15px; }
  .contact-info,
  .contact-map {
    width: 50%;
    margin-bottom: 20px; }
  .page-left-title {
    width: 100%;
    float: none; }
  .page-title {
    margin-top: 0; }
  .page-left-content {
    padding: 0; }
  .page-content-wrapper {
    padding-left: 15px;
    padding-right: 15px; }
  .main-header {
    top: 15px;
    left: 15px;
    right: 15px; }
  .main-footer {
    bottom: 15px;
    left: 15px;
    right: 15px; }
  .fixed-link-group,
  .home-gallery-links {
    right: 15px; }
  .main-slider .owl-prev {
    left: 15px; }
  .main-slider .owl-next {
    right: 15px; }
  .slide-text {
    left: 15px; }
  .slide-title span {
    font-size: 50px; }
  .main-footer.inner-page {
    position: static;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px; }
  .page-content-wrapper {
    padding-top: 155px;
    padding-bottom: 30px;
    height: auto; } }

@media (max-width: 800px) {
  .works-title {
    margin-bottom: 30px; }
  .works-share {
    margin-top: 20px; }
  .news-detail-image {
    width: 100%;
    max-width: inherit;
    float: none;
    margin-bottom: 20px; }
    .news-detail-image img {
      width: 100%; }
  .news-detail-right {
    padding: 0; }
  .contact-info,
  .contact-map {
    width: 100%; }
  .contact-info {
    padding: 0; }
  .home-gallery-links {
    display: none; }
  .about-title {
    margin-top: 0; }
  .about-left {
    width: 100%;
    padding-right: 0; }
  .about-image {
    width: 100%;
    margin-top: 20px; }
    .about-image img {
      width: auto;
      max-width: 100%; }
  .contact-form-modal {
    margin: 10px 0; }
  .contact-form-modal .mfp-close,
  .mfp-image-holder .mfp-close {
    width: 50px;
    height: 50px;
    right: 0;
    top: -8px;
    background-size: contain; }
  .mfp-image-holder .mfp-close {
    top: 40px; }
  .mfp-container {
    padding: 0 30px; }
  .mfp-image-holder {
    padding: 0 50px; }
  .mfp-image-holder .mfp-arrow-left,
  .mfp-image-holder .mfp-arrow-right {
    width: 30px;
    height: 75px;
    background-size: contain;
    margin-top: -34px; }
  .mfp-image-holder .mfp-arrow-left {
    left: 10px; }
  .mfp-image-holder .mfp-arrow-right {
    right: 10px; }
  .cfm-title {
    font-size: 23px; }
  .contact-form input {
    font-size: 16px; }
  .cf-link {
    margin-right: 15px; }
  .works-gallery-item {
    width: 50%;
    padding: 0 10px;
    height: auto; }
    .works-gallery-item img {
      width: 100%; }
  .works-wrapper {
    padding: 0; }
  .fixed-link-group.works-page {
    position: absolute; }
  .next-work,
  .prev-work {
    position: static; }
  .next-work {
    float: right; }
  .prev-work {
    float: left; }
  .page-content-wrapper.works-page {
    padding-bottom: 50px; } }

@media (max-width: 480px) {
  .works-link {
    margin-left: 0; }
  .page-title,
  .works-title h1,
  .works-title h1 span {
    font-size: 40px; }
  .fs-title::after {
    display: none; }
  .main-slider .owl-nav,
  .main-nav {
    display: none; }
  .mobile-menu,
  .hamburger {
    display: block; }
  .slide-text {
    top: 50%; }
  .slide-title span {
    font-size: 36px; } }

/* MIN */
@media (min-width: 801px) {
   /* .works-gallery-item:nth-child(-n+5) img {
    top: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  .works-gallery-item:nth-child(7) img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } */
    }

@media (min-width: 1920px) {
  .pc-spacing {
    padding-top: 50px; } }
