@font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  src: local('PT Serif Italic'), local('PTSerif-Italic'), url(https://fonts.gstatic.com/s/ptserif/v11/EJRTQgYoZZY2vCFuvAFT_r21dw.ttf) format('truetype');
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  src: local('PT Serif'), local('PTSerif-Regular'), url(https://fonts.gstatic.com/s/ptserif/v11/EJRVQgYoZZY2vCFuvAFWzro.ttf) format('truetype');
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  src: local('PT Serif Bold'), local('PTSerif-Bold'), url(https://fonts.gstatic.com/s/ptserif/v11/EJRSQgYoZZY2vCFuvAnt66qSVy4.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: local('Ubuntu Regular'), local('Ubuntu-Regular'), url(https://fonts.gstatic.com/s/ubuntu/v14/4iCs6KVjbNBYlgoKfw7z.ttf) format('truetype');
}
body,
html {
  font-family: 'PT Serif', serif;
  background: #333;
  color: lightgrey;
  padding: 0;
  margin: 0;
  height: 100%;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: lightgrey;
}
strong {
  font-weight: 700;
  color: #fff;
}
h1,
h2,
h3,
h4 {
  font-family: 'PT Serif', sans-serif;
  font-weight: normal;
}
img[align="left"] {
  margin: 5px 10px 0 0;
}
img[align="right"] {
  margin: 5px 0 0 10px;
}
p img {
  width: 100%;
  height: auto;
  margin-bottom: 10px !important;
}
@media only screen and (min-width: 520px) {
  p img {
    width: auto;
    margin-bottom: 0;
  }
}
.container {
  width: 100vw;
  max-width: 992px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 10px;
}
.container.body {
  overflow: hidden;
  margin-bottom: 20px;
}
.hamburger {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 11;
}
.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-expanded .hamburger .bar1 {
  -webkit-transform: rotate(-45deg) translate(-8px, 6px);
      -ms-transform: rotate(-45deg) translate(-8px, 6px);
          transform: rotate(-45deg) translate(-8px, 6px);
}
.menu-expanded .hamburger .bar2 {
  opacity: 0;
}
.menu-expanded .hamburger .bar3 {
  -webkit-transform: rotate(45deg) translate(-9px, -8px);
      -ms-transform: rotate(45deg) translate(-9px, -8px);
          transform: rotate(45deg) translate(-9px, -8px);
}
.menu-expanded nav {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
nav {
  position: fixed;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #444;
  z-index: 999;
  margin-top: 56px;
  padding: 5px 20px 20px 20px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
nav .lang {
  position: absolute;
  right: 60px;
  top: -29px;
  font-family: Ubuntu, sans-serif;
  font-size: 14px;
}
nav .lang a {
  text-decoration: none;
  color: #8e8e8e;
  margin-left: 16px;
}
nav .lang a:not(.active):hover {
  text-decoration: underline;
}
nav .lang a.active {
  color: #fff;
}
nav ul,
nav li {
  margin: 5px 0;
  padding: 0;
  list-style-type: none;
}
nav .nav > li:first-child svg {
  display: none;
}
nav li a:hover {
  background: #000;
}
nav li.menu-item-has-children .open-menu-link {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
nav li.menu-item-has-children .sub-menu {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}
nav li.menu-item-has-children.is-open .open-menu-link {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
nav li.menu-item-has-children.is-open .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}
nav li.active {
  background-color: #0a0a0a;
  background-image: url(../img/slof.svg);
  background-size: 14px;
  background-position: calc(100% - 5px) 50%;
  background-repeat: no-repeat;
  padding-right: 25px;
}
nav li.hover {
  background-color: #121212;
}
nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  padding: 5px 10px;
  font-family: Ubuntu, sans-serif;
  white-space: nowrap;
}
nav li a svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}
nav li a .open-menu-link {
  margin-left: auto;
}
nav li ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  padding-left: 20px;
}
@media only screen and (min-width: 992px) {
  nav li ul {
    position: absolute;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
nav li ul li {
  width: 100%;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
nav li ul li ul {
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  nav li ul li ul {
    left: 100%;
    top: 0;
  }
}
@media only screen and (min-width: 992px) {
  nav {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    position: relative;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
  nav .lang {
    top: 5px;
    right: 30px;
  }
  nav .nav > li:first-child svg {
    display: block;
  }
  nav .nav > li:first-child span {
    display: none;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-right: 16px;
  }
  nav ul li {
    margin: 0;
    padding-right: 0;
    display: inline-block;
    position: relative;
  }
  nav ul li:first-child.active {
    background-image: none;
    white-space: nowrap;
    padding-right: 5px;
  }
  nav ul li:last-child ul {
    right: 0;
  }
  nav ul li a {
    font-size: 14px;
    text-align: center;
    height: 100%;
  }
  nav ul li a .open-menu-link {
    margin-left: 3px;
  }
  nav ul li ul {
    background: #212121;
    padding: 0;
    width: auto;
  }
}
header {
  height: 122px;
  background-image: url(../img/header-bow.jpg), url(../img/sluier_l.jpg);
  background-repeat: repeat-x, no-repeat;
  background-position: 0 100%, 0 0;
  text-align: right;
  position: relative;
  margin-bottom: 20px;
}
header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1124px;
  margin: 0 auto;
}
header .logo {
  position: relative;
  height: 122px;
}
header .logo img {
  margin-top: -20px;
  width: 372px;
  height: auto;
  max-width: 100vw;
}
header .logo .pay-off {
  font-family: 'Ubuntu', sans-serif;
  text-decoration: none;
  font-style: italic;
  color: #fff;
  position: absolute;
  right: 28px;
  bottom: 8px;
}
header:after {
  width: 140px;
  height: 30px;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.home .container {
  padding: 0;
}
.home .container section {
  width: 100vw;
  float: left;
  height: 100vw;
  overflow: hidden;
}
.home .container section.active .section-content:before {
  -webkit-filter: blur(7px);
          filter: blur(7px);
}
.home .container section .section-content {
  height: 100%;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.home .container section .section-content:before {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: 0.4s all;
  -o-transition: 0.4s all;
  transition: 0.4s all;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .container section a {
  max-width: 80%;
  font-size: 5vw;
  padding: 2vw 4vw;
  margin-top: 30vw;
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-align: center;
  z-index: 2;
}
.home .container section a:hover {
  background: #000;
  color: #fff;
}
.home .container section h2 {
  font-size: 5vw;
}
.home .container section.hero {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.home .container section.hero .section-content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.home .container section.hero .section-content:before {
  background-image: url(../img/heroshot.jpg);
}
.home .container section.hero h1 {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  width: 50%;
  margin-right: 20px;
  font-size: 5vw;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 648px) {
  .home .container section.hero h1 {
    padding: 100px 20px 100px !important;
  }
}
.home .container section.hero h1 .quote {
  display: block;
  width: 100%;
  position: absolute;
  font-size: 20vw;
  line-height: 20px;
}
@media only screen and (min-width: 648px) {
  .home .container section.hero h1 .quote {
    line-height: 50px !important;
    font-size: 30vw;
  }
}
@media only screen and (min-width: 992px) {
  .home .container section.hero h1 .quote {
    font-size: 200px;
  }
}
.home .container section.hero h1 .quote.right {
  text-align: right;
  bottom: 0px;
  right: 20px;
}
.home .container section.bows .section-content:before {
  background-image: url(../img/P1030641.JPG);
}
.home .container section.choose .section-content:before {
  background-image: url(../img/9202231.jpg);
}
.home .container section.maker .section-content:before {
  background-image: url(../img/9202165.jpg);
}
.home .container section.s-bows .section-content:before {
  background-image: url(../img/9212246.jpg);
}
.home .container section.video .section-content a {
  padding-top: 0;
  padding-bottom: 0;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .container section.video .section-content a img {
  height: 30px;
  width: auto;
}
.home .container section.video .section-content:before {
  background-image: url(../img/videolink.jpg);
}
.home .container section.album .section-content:before {
  background-image: url(../img/9202207.jpg);
}
.home .container section.contact .section-content:before {
  background-image: url(../img/mapsnew.gif);
}
@media only screen and (min-width: 648px) {
  header:after {
    background: url(../img/header-bow-grip.jpg) 0 0 no-repeat;
  }
  .home .container section {
    height: 50vw;
    width: 50vw;
  }
  .home .container section a {
    font-size: 2vw;
    margin-top: 30vw;
  }
  .home .container section .section-content {
    margin-left: 10px;
  }
  .home .container section.hero {
    width: 100vw;
    height: 100vw;
  }
  .home .container section.hero .section-content {
    margin-left: 20px;
  }
  .home .container section.bows .section-content,
  .home .container section.maker .section-content {
    margin-left: 20px;
    margin-right: 10px;
  }
  .home .container section.video,
  .home .container section.album,
  .home .container section.contact {
    width: 33.333vw;
  }
}
@media only screen and (min-width: 992px) {
  header #hamburger,
  header .hamburger {
    display: none;
  }
  .home .container section {
    height: 178px;
    width: 20%;
  }
  .home .container section a {
    margin-top: 0;
  }
  .home .container section.hero {
    height: 712px;
    width: 80%;
  }
  .home .container section.hero:before {
    background-position: center;
  }
  .home .container section.hero .section-content {
    margin-left: 20px;
    margin-right: 10px;
  }
  .home .container section.hero .section-content h1 {
    font-size: 40px;
  }
  .home .container section:nth-child(n+1):nth-child(-n+5) .section-content a {
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    padding: 10px 20px 30px;
  }
  .home .container section.bows .section-content,
  .home .container section.maker .section-content {
    margin-left: 10px;
    margin-right: 20px;
  }
  .home .container section.video,
  .home .container section.album,
  .home .container section.contact {
    width: 33.3333%;
  }
  .home .container section a {
    font-size: 16px;
    padding: 20px;
    max-width: 80%;
  }
}
.album .body.container .og-grid li {
  background: none;
  padding-left: 0;
}
footer {
  margin-top: 20px;
  min-height: 80px;
  background: #444 url(../img/bow-part.jpg) 0 0 repeat-x;
  position: relative;
  padding-top: 40px;
}
footer:before {
  height: 39px;
  width: 151px;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background: #444 url(../img/bow-mark.jpg) 0 0 repeat-x;
}
footer .copyright {
  font-size: 12px;
}
.contact .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .contact-wrapper > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 940px) {
  .contact .contact-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact .contact-wrapper address {
    padding-right: 30px;
  }
}
#contact-form ul,
#contact-form li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#contact-form li:nth-child(3) {
  display: none;
}
#contact-form .form-group {
  position: relative;
  margin: 10px 0;
  max-width: 100%;
}
#contact-form .form-group.has-danger .with-errors:after {
  bottom: 100%;
  left: 14px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(206, 70, 82, 0);
  border-bottom-color: rgba(206, 70, 82, 0.9);
  border-width: 8px;
  margin-left: -8px;
}
#contact-form .help-block {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
}
#contact-form .help-block ul {
  display: block !important;
}
#contact-form .help-block ul li {
  width: 100% !important;
  line-height: 130%;
  padding: 5px !important;
}
#contact-form .help-block.with-errors {
  color: #fff;
  border-radius: 3px;
  background: rgba(206, 70, 82, 0.9);
}
#contact-form .messages {
  display: none;
  background-color: darkolivegreen;
  border-radius: 4px;
  font-size: 20px;
  padding: 20px;
}
#contact-form li {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 940px) {
  #contact-form li {
    width: 395px;
  }
}
#contact-form li .disabled {
  cursor: default;
  opacity: 0.7;
}
#contact-form li label {
  position: absolute;
  top: 8px;
  left: 0;
  margin-left: 12px;
  color: #999999;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  font-family: Ubuntu, sans-serif;
}
#contact-form li label.hidden {
  opacity: 0;
  visibility: hidden;
}
#contact-form li label span {
  font-size: 10px;
}
#contact-form input,
#contact-form textarea {
  border: 1px solid #0a0a0a;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  font-family: Ubuntu, sans-serif;
}
@media only screen and (min-width: 940px) {
  #contact-form input,
  #contact-form textarea {
    width: 360px;
  }
}
#contact-form input:focus + label,
#contact-form textarea:focus + label,
#contact-form input .hidden + label,
#contact-form textarea .hidden + label {
  opacity: 0;
  visibility: hidden;
}
#contact-form textarea {
  height: 113px;
  line-height: 150%;
}
@media only screen and (min-width: 940px) {
  #contact-form textarea {
    max-width: 365px;
    width: 365px;
  }
}
#contact-form .submit input {
  width: auto;
  padding: 10px 14px;
  background: darkolivegreen;
  font-size: 14px;
  color: #fff;
  border-color: #39481f;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
#contact-form .submit input:hover {
  background: #1d2410;
}
#contact-form input:not('.disabled'):hover,
#contact-form textarea:hover,
#contact-form input:focus,
#contact-form textarea:focus {
  -webkit-box-shadow: 0 0 8px #000;
          box-shadow: 0 0 8px #000;
}
#contact-form #website,
#contact-form [for="website"] {
  display: none;
}
.video-wrap {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.video-wrap iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video-wrap.ended::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 64px;
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
}
.video-wrap.paused::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  bottom: 50px;
  right: 0;
  cursor: pointer;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEiIHdpZHRoPSIxNzA2LjY2NyIgaGVpZ2h0PSIxNzA2LjY2NyIgdmlld0JveD0iMCAwIDEyODAgMTI4MCI+PHBhdGggZD0iTTE1Ny42MzUgMi45ODRMMTI2MC45NzkgNjQwIDE1Ny42MzUgMTI3Ny4wMTZ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+);
}
