@charset "UTF-8";
/*
    colors
*/
/*
	fonts
*/
@font-face {
  font-family: "Quicksand-Regular";
  src: url("/font/Quicksand-Regular.ttf") format("opentype");
}

@font-face {
  font-family: "Quicksand-Bold";
  src: url("/font/Quicksand-Bold.ttf") format("truetype");
}

body, html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Quicksand-Regular", sans-serif;
}

::selection {
  background: #e0c5e0;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #e0c5e0;
  /* Gecko Browsers */
}

a {
  outline: none;
  text-decoration: none;
}

.h_1 {
  font-size: 22px;
  text-align: left;
  margin: 56px 0 40px 0;
}

.sidebar {
  width: 18%;
  height: 100vh;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: #fafbfa;
  border-right: 1px solid #e7e8e7;
}

.logo {
  display: block;
  float: right;
  width: 145px;
  height: 65px;
  background: url(/img/logo@big.png) no-repeat 0 0;
  background-size: 145px 65px;
  text-indent: -9999px;
  margin-top: 114px;
  margin-right: 40px;
  margin-bottom: 40px;
}

.main-nav {
  float: right;
  margin: 0;
  list-style: none;
  list-style-type: none;
  text-align: right;
  margin-right: 40px;
}

.main-nav li {
  margin-left: 0;
  font-size: 13px;
  margin-bottom: 20px;
}

.main-nav li a {
  color: #211520;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.main-nav li a:hover {
  color: #F75940;
}

.site-wrap {
  width: 82%;
  padding: 0 20px;
  box-sizing: border-box;
  float: right;
  position: relative;
}

.site-wrap h1.title {
  font-family: "Quicksand-Bold", Arial;
  font-size: 28px;
  text-align: center;
  margin: 40px 0 0 0;
}

.home-slider.desktop {
  width: 94%;
  margin: auto;
  margin-top: 102px;
}

.post-block .left {
  width: 50%;
  float: left;
  padding-left: 1%;
}

.post-block .left img {
  display: block;
  width: 100%;
}

.post-block .left a img {
  border: none;
  outline: none;
}

.post-block .right {
  width: 45%;
  padding-left: 4%;
  float: left;
}

.post-block .right h1 {
  font-family: "Gotham-Bold", Arial;
  font-size: 28px;
  margin: 30px 0 40px 0;
}

.post-block .right p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 30px;
}

span.label {
  display: inline-block;
  font-size: 13px;
  background: #F75940;
  color: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 5px 10px;
  line-height: 13px;
}

.filter {
  text-align: center;
  margin: 40px auto 15px auto;
}

.filter a, .filter button {
  margin: 0 20px;
  font-size: 12px;
  color: #211520;
  display: inline-block;
  padding: 3px 8px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  font-family: "Gotham-Book", Arial;
}

.submit_btn {
    font-family: "Gotham-Book", Arial;
    background: #F75940;
    color: #ffffff;
    cursor: pointer;
    margin: 20px 0;
    border: none;
    outline: none;
    font-size: 14px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -o-border-radius: 22px;
    -ms-border-radius: 22px;
    border-radius: 22px;
    padding: 12px 14px;
    line-height: 10px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.submit_btn:hover {
  background: #211520;
}

.filter a:hover, .filter button:hover {
  color: #F75940;
}

.filter a.current, .filter button.current {
  background: #F75940;
  color: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
}

.filter a.current:hover, .filter button.current:hover {
  color: #ffffff;
}

#lightgallery a {
  display: block;
  width: 31.3333%;
  margin: 1%;
  float: left;
  overflow: hidden;
}

#lightgallery a img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.9s ease-in;
  -moz-transition: all 0.9s ease-in;
  -o-transition: all 0.9s ease-in;
  transition: all 0.9s ease-in;
}

#lightgallery a:hover img {
  transform: scale(1.03);
}

#lightgallery a.filtered {
  display: none;
}

#lightgallery a.show {
  display: block;
}

#lightgallery a.fullwidth {
  width: 100%;
  margin: 0;
}

a.link {
  color: #211520;
  text-decoration: underline;
}

a.link:hover {
  color: #F75940;
}

.clear {
  clear: both;
}

.spacer {
  height: 2px;
  margin: 19px;
}

.spacer-less {
  margin: 9px;
}

.spacer-more {
  margin: 29px;
}

p.lead {
  width: 60%;
  padding: 3%;
  margin: 30px auto;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  font-family: "Gotham-Bold", Arial;
}

p.lead.less-margin {
  margin-top: 0;
  margin-bottom: 0;
}

p.lead.not-bold {
  font-family: "Gotham-Book", Arial;
}

.footer-mobile {
  display: none;
}

.footer {
  display: block;
  font-size: 11px;
  padding: 20px 30px 40px 20px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 30px;
}

.footer a {
  color: #211520;
}

.social {
  width: 20px;
  height: 20px;
  float: right;
  display: block;
  margin-left: 15px;
  margin-top: 16px;
  text-align: left;
  text-indent: -9999px;
}

.social.instagram {
  background: url(/img/instagram.png) no-repeat 0 0;
  background-size: 20px 20px;
}

.social.facebook {
  background: url(/img/facebook.png) no-repeat 0 0;
  background-size: 20px 20px;
}

.social.youtube {
  background: url(/img/youtube.png) no-repeat 0 0;
  background-size: 20px 20px;
}

.contact {
  padding: 0 120px;
}

.contact .left {
  width: 400px;
  padding: 0 40px;
  float: left;
  font-size: 15px;
  line-height: 24px;
}

.contact .right {
  width: 400px;
  padding: 0 40px;
  float: right;
  font-size: 15px;
  line-height: 24px;
}

.contact .left .avatar {
  display: block;
  width: 270px;
  margin-bottom: 15px;
}

.contact .left h1 {
  font-size: 22px;
  font-family: "Gotham-Bold", Arial;
  margin-bottom: 25px;
  font-weight: normal;
}

.contact .left h1 span {
  font-size: 15px;
  font-family: "Gotham-Book", Arial;
  color: #c7c7c7;
  font-weight: normal;
}

.contact .left a.label {
  margin-top: 15px;
}

a.label {
  display: inline-block;
  font-size: 17px;
  background: #F75940;
  color: #ffffff;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -o-border-radius: 22px;
  -ms-border-radius: 22px;
  border-radius: 22px;
  padding: 10px 17px;
  line-height: 22px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a.label:hover {
  background: #211520;
}

/*
    form
*/
.form_error, .form_yes {
  font-family: "Gotham-Book", Arial;
  font-size: 14px;
  margin-bottom: 20px;
  color: #d32e2c;
}

.form_yes {
  color: #9bbc18;
}

.g-recaptcha {
  padding-top: 15px;
}

#form {
  font-size: 13px;
  font-family: "Gotham-Bold", Arial;
}

#form input, #form textarea {
  -webkit-appearance: none;
  width: 100%;
  margin: 15px 0 30px 0;
  height: 22px;
  font-size: 13px;
  font-family: "Gotham-Book", Arial;
  outline: none;
  color: #211520;
  border: none;
}

#form input {
  border-bottom: 1px solid #c7c7c7;
}

#form textarea {
  resize: none;
  height: 144px;
  margin-bottom: 0;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 5px;
}

#form input.label {
  -webkit-appearance: none;
  width: 130px;
  border: none;
  display: inline-block;
  font-size: 13px;
  background: #F75940;
  color: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 5px 10px;
  line-height: 13px;
  margin-top: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#form input.label:hover {
  background: #211520;
}

.bold {
  font-family: "Gotham-Bold", Arial;
}

/*
    slider
*/
.slick-prev, .slick-next {
  width: 20px;
  height: 20px;
  border: none;
  outline: none;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.slick-prev {
  background: url(/img/slider/left-arrow.png) no-repeat 0 0;
  background-size: 20px 20px;
  left: -35px;
}

.slick-next {
  background: url(/img/slider/right-arrow.png) no-repeat 0 0;
  background-size: 20px 20px;
  right: -35px;
}

.slick-prev:hover, .slick-next:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}

/* dots */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../slick/fonts/slick.eot");
  src: url("../slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("../slick/fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

.slick-dotted.slick-slider {
  margin-bottom: 5px;
}

.slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/*
    bootstrap
*/
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/*
    respo
*/
.nav-trigger {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 99;
  display: none;
}

.bar1, .bar2, .bar3 {
  width: 24px;
  height: 3px;
  background-color: #211520;
  margin: 4px 0;
  transition: 0.4s;
}

.nav-trigger:hover .bar1, .nav-trigger:hover .bar2, .nav-trigger:hover .bar3 {
  background-color: #F75940;
}

.overlay {
  background: rgba(255, 255, 255, 0.98);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: 0;
  position: fixed;
  z-index: 111;
}

.menu {
  width: 80%;
  height: 100%;
  position: absolute;
  z-index: 112;
  padding: 0;
  margin: 0;
}

.menu ul {
  list-style: none;
  line-height: 40px;
  margin: 0;
  padding: 20px;
  list-style: none;
  font-family: "Gotham-Book", Arial;
}

.menu ul li a, .menu ul li span {
  display: inline-block;
  padding: 5px;
  color: #211520;
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
}

.menu ul li a:hover {
  color: #666;
}

.menu ul li span.bezar {
  cursor: pointer;
  color: #F75940;
  font-size: 18px;
  font-family: "Gotham-Book", Arial;
  margin-top: 30px;
}

.menu ul li span.bezar:hover {
  color: #666;
}

.home-slider.desktop {
  display: block !important;
}

.home-slider.mobile {
  display: none !important;
}

.just-on-mobile {
  display: none !important;
}

.just-on-desktop {
  display: inline-block !important;
}

.extra-menu {
  display: none;
  list-style: none;
  list-style-type: none;
  margin: 60px 0 0 0;
  padding: 0;
}

.extra-menu li {
  width: 100%;
  height: 38px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 12px;
}

.extra-menu li a {
  display: block;
  color: #211520;
  background: #fff;
  border: 1px solid #211520;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -o-border-radius: 1px;
  -ms-border-radius: 1px;
  border-radius: 1px;
}

.extra-menu li a:hover {
  color: #F75940;
}

.to_top {background: url('/img/to_top.png') no-repeat center center; display: block; background-size: 41px 41px; width: 41px; height: 41px; position: fixed; bottom: 20px; right: 20px; cursor: pointer; display: none;}

.fixed-topbar {position: fixed; background: #fff; top: 0; right: 0; z-index: 111; margin: 0 auto; padding: 15px 0; width: 81.92%;}

@media only screen and (min-width: 300px) and (max-width: 1520px) {
  .contact {
    padding: 0 30px;
  }
  .contact .left {
    width: 390px;
    padding: 0 40px;
    float: left;
  }
  .contact .right {
    width: 390px;
    padding: 0 40px;
    float: right;
    font-size: 15px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 1299px) {
  .contact {
    padding: 0 20px;
  }
  .contact .left {
    width: 350px;
    padding: 0 20px;
    float: left;
  }
  .contact .right {
    width: 340px;
    padding: 0 20px;
    float: right;
    font-size: 15px;
    line-height: 24px;
  }
}

.clients {padding-left: 30px;}

@media only screen and (min-width: 300px) and (max-width: 1110px) {
  .post-block .right h1 {
    margin-top: 0;
  }
}

@media only screen and (min-width: 300px) and (max-width: 1059px) {
  .contact {
    padding: 0 50px;
  }
  .contact .spacer-more {
    margin: 0;
  }
  .contact .left {
    width: 100%;
    padding: 0;
    float: none;
    margin-bottom: 40px;
  }
  .contact .right {
    width: 100%;
    padding: 0;
    float: none;
  }
  .contact .right .avatar {
    display: block;
    width: 100%;
  }
}

@media only screen and (min-width: 300px) and (max-width: 980px) {
  .clients {padding-left: 0;}
  .footer-mobile {
    display: block;
    text-align: center;
    font-size: 14px;
  }
  .footer {
    display: none;
  }
  .sidebar {
    background: none;
    border: none;
  }
  .sidebar, .site-wrap {
    width: 100%;
    position: relative;
    float: none;
    height: auto;
  }
  .h_1 {
    margin-top: 10px;
  }
  social {
    width: 20px;
    height: 20px;
    float: none;
    margin: 10px 20px;
    position: relative;
  }
  .footer-mobile {
    padding: 50px 0;
  }
  .footer-mobile .social-wrap {
    width: 120px;
    text-align: center;
    margin: 20px auto 40px auto;
  }
  .footer-mobile .social-wrap .social {
    width: 20px;
    height: 20px;
    float: left;
    margin: 10px;
  }
  .logo {
    background: url(/img/logo@ios.png) no-repeat 0 0;
    float: none;
    width: 145px;
    height: 65px;
    background-size: 145px 65px;
    margin: 40px auto 0 15px;
  }
  .home-slider.desktop {
    display: none !important;
  }
  .home-slider.mobile {
    display: block !important;
  }
  .just-on-mobile {
    display: inline-block !important;
  }
  .just-on-desktop {
    display: none !important;
  }
  input, textarea {
    padding: 0;
    text-indent: 5px;
  }
  .lg-outer .lg-img-wrap {
    padding: 0 !important;
  }
  button.lg-prev.lg-icon, button.lg-next.lg-icon {
    display: none;
  }
  .site-wrap {
    padding: 20px 15px 0 15px;
  }
  .site-wrap h1.title {
    margin-bottom: 20px;
  }
  .post-block .left {
    width: 100%;
    padding: 0;
    float: none;
    margin-bottom: 15px;
  }
  .post-block .right {
    width: 100%;
    padding: 0;
    float: none;
  }
  .post-block .right h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .post-block .right p {
    margin-bottom: 20px;
  }
  p.lead {
    width: 98%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
  }
  p.lead.less-margin {
    margin-bottom: 20px;
  }
  .nav-trigger {
    display: inline-block;
  }
  .main-nav {
    display: none;
  }
  #lightgallery a {
    display: block;
    width: 100%;
    margin: 0;
    float: none;
    margin-bottom: 15px;
  }
  .footer {
    padding: 0;
    height: auto;
    border: none;
  }
  .footer .left {
    border-top: 1px solid #dedede;
    padding-top: 20px;
    display: block;
    float: none;
    text-align: center;
    margin: 0 0 6px 0;
    line-height: 26px;
  }
  .footer .right {
    display: block;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  .slick-prev, .slick-next {
    display: none !important;
  }
}

#category{display: none;}
.filter {display: block;}
@media only screen and (min-width: 300px) and (max-width: 500px) {
  .filter a, .filter button {
    margin-bottom: 10px;
  }
  .contact {
    padding: 0;
  }
  .extra-menu {
    display: block;
  }
  #category{display: block; font-size: 15px; width: 100%;}
  .filter {display: none;}
}

@media only screen and (min-width: 300px) and (max-width: 414px) {
  .filter a, .filter button {
    margin: 0 10px;
    padding: 3px 7px;
  }
  .filter button {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .filter.long a, .filter.long button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }
}