@charset "UTF-8";
body {
  transition: all 0.4s cubic-bezier(0.36, 0.13, 0.4, 0.96);
  -webkit-transition: all 0.4s cubic-bezier(0.36, 0.13, 0.4, 0.96);
  -moz-transition: all 0.4s cubic-bezier(0.36, 0.13, 0.4, 0.96);
  -ms-transition: all 0.4s cubic-bezier(0.36, 0.13, 0.4, 0.96);
  -o-transition: all 0.4s cubic-bezier(0.36, 0.13, 0.4, 0.96);
}

*, :after, :before {
  box-sizing: border-box;
}

.no-scroll {
  overflow-y: scroll;
  height: 100vh;
  transform: initial;
}
@media screen and (max-width: 992px) {
  .no-scroll {
    overflow: hidden;
  }
}

body {
  margin: 0;
  font-family: "Playfair Display", serif;
  background-color: #000;
  overflow-x: hidden;
}

.preloader {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.preloader img {
  width: 60px;
  position: relative;
  top: 3px;
}
@-webkit-keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader div.loading {
  position: absolute;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0);
  border-left-color: #C7AE72;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  -webkit-animation: donut-spin 1.2s linear infinite;
  animation: donut-spin 1.2s linear infinite;
}

p {
  margin: 0;
}

p.side-title-left,
p.side-title-right {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #C7AE72;
  letter-spacing: 4px;
  position: relative;
  font-style: italic;
}

p.side-title-left {
  text-align: left;
  margin-left: 20px;
}

p.side-title-right {
  text-align: right;
  margin-right: 20px;
}

p.side-title-left ~ img,
p.side-title-right ~ img {
  max-width: 55px;
}

p.side-title-left::before,
p.side-title-right::before {
  content: "";
  position: absolute;
  background-color: #C7AE72;
  width: 2px;
  height: 100%;
  display: block;
}

p.side-title-left::before {
  left: -20px;
}

p.side-title-right::before {
  right: -20px;
}

.container {
  width: 1040px;
  margin: auto;
  padding: 0 90px;
  position: relative;
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1450px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 962px;
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .container {
    width: 748px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }
}

.hero-img .contact, header .menu-btn > span:first-child, header .weapons, a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-family: museo-sans, sans-serif;
  font-weight: 100;
  text-shadow: 0 2px 8px #000;
}

a[href*=mail] {
  text-transform: lowercase;
}

a[href*=goo] {
  text-transform: initial;
}

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

h1 {
  font-family: museo-sans, sans-serif;
  font-size: 71px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 46px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 8px #00000063, 0 2px 35px #000;
}

h2 {
  font-family: museo-sans, sans-serif;
  font-size: 34px;
  color: #fff;
  letter-spacing: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #000;
}

h2 ~ p {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  color: #d2d2d2;
  letter-spacing: 1px;
  font-weight: 100;
  line-height: 25px;
  position: relative;
}

h2 ~ p:first-of-type::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #C7AE72;
  position: absolute;
  top: -30px;
}
@media screen and (max-width: 578px) {
  h2 ~ p:first-of-type::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}

.clip-text > h2 {
  margin-top: -3px;
}

.btn-main {
  background-color: #C7AE72;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  width: max-content;
  padding: 19px 66px;
  cursor: pointer;
  border: 1px solid #C7AE72;
  letter-spacing: 3px;
  position: relative;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.btn-main::after {
  content: "";
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  text-shadow: 0 0 24px #000;
  color: #fff;
  bottom: 24px;
  right: 35px;
  opacity: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.btn-main:hover {
  box-shadow: 0 0 8px #C7AE72;
  text-shadow: 0 0 24px #000;
}
.btn-main:hover::after {
  opacity: 1;
  right: 20px;
}

.form-page .container {
  height: 100vh;
}
.form-page .container .form {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  height: 100%;
  margin-bottom: initial;
}
.form-page .container .form > div:first-child {
  margin-bottom: 30px;
}
.form-page .container .form > div:first-child .fa-times ~ p:last-of-type {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  font-weight: 100;
}
.form-page .btn-main {
  z-index: 1;
}
.form-page .btn-main:hover::after {
  left: 20px;
}
.form-page .btn-main::after {
  content: "";
  left: 35px;
  right: initial;
  bottom: 19px;
}
.form-page .fa-check {
  color: green;
  font-size: 40px;
  border: 1px solid;
  border-radius: 100%;
  padding: 50px;
  margin-bottom: 30px;
}
.form-page .fa-times {
  color: red;
  font-size: 40px;
  border: 1px solid;
  border-radius: 100%;
  padding: 44px 50px;
  margin-bottom: 30px;
}
.form-page p {
  color: #fff;
  font-family: museo-sans, sans-serif;
  font-size: 21px;
}
.form-page p a {
  font-family: inherit;
  font-size: inherit;
  color: #C7AE72;
}

header {
  position: absolute;
  left: 0;
  right: 0;
}
header * {
  z-index: 1;
}
header > div {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
@media screen and (max-width: 450px) {
  header > div {
    grid-template-columns: 1fr 1fr;
  }
}
header > div.active {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 6;
}
header > div > div {
  margin-top: 55px;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  background-image: radial-gradient(at top, #ffffff38 5%, transparent 60%);
  width: 100%;
  height: 360px;
  margin: 0;
  z-index: 1;
}
header .weapons {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-left: 55px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.2 ease;
  -webkit-transition: all 0.2 ease;
  -moz-transition: all 0.2 ease;
  -ms-transition: all 0.2 ease;
  -o-transition: all 0.2 ease;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  header .weapons:hover ul {
    height: 190px;
    transform: translateY(95px);
    -webkit-transform: translateY(95px);
    -moz-transform: translateY(95px);
    -ms-transform: translateY(95px);
    -o-transform: translateY(95px);
    opacity: 1;
    top: -50px;
    pointer-events: all;
  }
}
header .weapons:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
header .weapons > img {
  max-width: 36px;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  bottom: -2px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media screen and (min-width: 1200px) {
  header .weapons:hover > img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
}
header .weapons > span {
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  font-weight: 100;
  text-shadow: 0 5px 8px #000;
  display: inline-block;
  z-index: 2;
}
header .weapons span:nth-child(2):hover {
  color: #C7AE72;
}
header .weapons ul {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transform: translateY(75px);
  -webkit-transform: translateY(75px);
  -moz-transform: translateY(75px);
  -ms-transform: translateY(75px);
  -o-transform: translateY(75px);
  top: -50px;
  z-index: -1;
  pointer-events: none;
  height: 180px;
}
header .weapons ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
header .weapons ul li img {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .weapons ul li:hover img {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
header .weapons ul li:hover a {
  color: #C7AE72;
}
header .weapons ul li:nth-child(even) {
  margin: 20px 0;
}
@media screen and (max-width: 450px) {
  header .weapons ul li:nth-child(even) {
    margin: 0;
  }
}
header .weapons ul a {
  font-family: museo-sans, sans-serif;
  font-size: 19px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #C7AE72;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .weapons ul img {
  width: 32px;
  margin-right: 25px;
}
header .weapons .vertical-lines {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  margin-right: 20px;
}
header .weapons .line {
  display: block;
  width: 24px;
  height: 2px;
  background: #C7AE72;
  margin-bottom: 7px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .weapons .line:nth-child(even) {
  width: 70%;
}
@media screen and (max-width: 450px) {
  header .weapons {
    margin-left: 20px;
  }
}
header .shown {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
@media screen and (max-width: 1200px) {
  header .shown ul {
    height: 190px;
    transform: translateY(95px);
    -webkit-transform: translateY(95px);
    -moz-transform: translateY(95px);
    -ms-transform: translateY(95px);
    -o-transform: translateY(95px);
    opacity: 1;
    top: -50px;
    pointer-events: all;
  }
}
@media screen and (max-width: 450px) {
  header .shown ul {
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    opacity: 1;
    top: -50px;
    pointer-events: all;
    height: 130px;
  }
}
header .shown > img {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
header .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  margin: 55px auto 0;
}
header .main-header li:first-child {
  margin-right: 30px;
}
header .main-header img {
  margin: 0 20px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .main-header img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
header .main-header ul li {
  display: inline-block;
}
header .main-header a {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .main-header a:hover {
  text-shadow: 0 2px 8px #C7AE72;
  color: #C7AE72;
}
@media screen and (max-width: 992px) {
  header .main-header ul {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  header .main-header {
    display: none;
  }
}
header .menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  z-index: 6;
  cursor: pointer;
}
header .menu-btn:hover span {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
@media screen and (max-width: 450px) {
  header .menu-btn {
    margin-right: 25px;
  }
}
header .menu-btn > span:first-child {
  margin-right: 20px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
header .menu-btn > span:first-child:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
header .lines {
  height: 20px;
  margin-right: 55px;
}
header .lines:hover .line {
  box-shadow: 0 2px 8px #C7AE72;
}
header .lines .line {
  display: block;
  transform-origin: 4%;
  width: 27px;
  height: 2px;
  background: #C7AE72;
  margin-bottom: 7px;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
@media screen and (max-width: 450px) {
  header .lines {
    margin-right: 0;
  }
}
header .active .weapons, header .active .main-header {
  opacity: 0;
  pointer-events: none;
}
header .active .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 2px 8px #C7AE72;
}
header .active .line:nth-child(2) {
  opacity: 0;
}
header .active .line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px #C7AE72;
}

footer {
  position: relative;
  z-index: 1;
}
footer .content-wrapper {
  background-image: url(assets/img/footer-bg.png);
  background-size: 145%;
  background-position: center 0px;
  background-repeat: no-repeat;
  padding-top: 130px;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  footer .content-wrapper {
    padding-top: 100px;
  }
}
@media screen and (max-width: 578px) {
  footer .content-wrapper {
    padding-top: 80px;
  }
}
footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
}
footer .logo img:last-of-type {
  max-width: 280px;
  margin-top: 15px;
}
footer .logo > div {
  position: relative;
}
footer .logo > div::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 38px;
  height: 38px;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0px 5px 15px 0px #000000ad;
}
footer .content {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  margin-top: 55px;
}
@media screen and (max-width: 992px) {
  footer .content > div:first-child {
    margin-left: 20%;
  }
}
@media screen and (max-width: 578px) {
  footer .content > div:first-child {
    margin-left: 5%;
  }
}
@media screen and (max-width: 450px) {
  footer .content > div:first-child {
    text-align: center;
    margin: 0;
  }
}
@media screen and (max-width: 992px) {
  footer .content > div:nth-child(2) {
    margin-left: 40%;
  }
}
@media screen and (max-width: 578px) {
  footer .content > div:nth-child(2) {
    margin-left: 30%;
  }
}
@media screen and (max-width: 450px) {
  footer .content > div:nth-child(2) {
    text-align: center;
    margin: 0;
  }
}
footer .content ul {
  margin-top: 30px;
}
footer .content ul:first-of-type li:first-child {
  text-transform: uppercase;
}
footer .content li, footer .content a {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 34px;
  color: #fff;
  font-family: museo-sans, sans-serif;
  font-weight: 100;
  text-shadow: 0 5px 8px #000;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
footer .content a:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
footer .content li:hover a {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
footer .content p {
  font-family: museo-sans, sans-serif;
  color: #fff;
  opacity: 0.5;
  text-align: right;
  line-height: 34px;
  letter-spacing: 1px;
  font-size: 13px;
}
@media screen and (max-width: 992px) {
  footer .content > div:last-of-type p {
    text-align: center;
  }
}
footer .content > div:last-of-type div:nth-child(3) a {
  text-align: right;
  text-transform: none;
  letter-spacing: initial;
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type div:nth-child(3) a {
    display: block;
    text-align: center;
  }
}
footer .content > div:last-of-type div:nth-child(3) a:last-of-type {
  margin-left: 34px;
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type div:nth-child(3) a:last-of-type {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  footer .content > div:last-of-type div:nth-child(3) {
    margin: 10px 0;
  }
}
footer .content > div:last-of-type div:nth-child(4) {
  margin-top: 35px;
}
footer .content > div:last-of-type div:nth-child(4) a {
  text-align: right;
  text-transform: none;
  letter-spacing: initial;
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type div:nth-child(4) {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type div:nth-child(4) span {
    margin-right: 0;
  }
}
@media screen and (max-width: 992px) {
  footer .content > div:last-of-type div:nth-child(5) {
    margin: 10px 0;
  }
}
footer .content > div:last-of-type > div {
  text-align: right;
}
footer .content > div:last-of-type > div > span {
  font-family: museo-sans, sans-serif;
  color: #fff;
  opacity: 0.5;
  font-size: 13px;
  display: inline-block;
  margin-right: 35px;
}
@media screen and (max-width: 992px) {
  footer .content > div:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    grid-column: span 2;
  }
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type {
    grid-column: initial;
  }
}
footer .content .social {
  display: inline-block;
  position: initial;
}
footer .content .social a:nth-child(2) {
  margin: 0 34px;
}
@media screen and (max-width: 450px) {
  footer .content .social {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  footer .content {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 60px;
  }
}
@media screen and (max-width: 450px) {
  footer .content {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}
footer .content > div > span {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: 8px;
  color: #fff;
  opacity: 0.25;
  font-style: italic;
}
footer .content > div > span {
  margin-bottom: 30px;
  display: block;
  text-align: left;
}
@media screen and (max-width: 450px) {
  footer .content > div > span {
    text-align: center;
  }
}
footer .content > div:last-of-type > span {
  text-align: right;
}
@media screen and (max-width: 450px) {
  footer .content > div:last-of-type > span {
    text-align: center;
  }
}
footer .copyright {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #fff;
  margin: 80px auto 50px;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .copyright span {
  opacity: 0.5;
}
footer .copyright a {
  opacity: 1;
  text-transform: initial;
  margin-left: 3px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
footer .copyright a:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}

/*INDEX SVG LOGO*/
svg .svg-elem-1 {
  stroke-dashoffset: 1793.1636962891px;
  stroke-dasharray: 1793.1636962891px;
  -webkit-transition: stroke-dashoffset 2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

svg .svg-elem-2 {
  stroke-dashoffset: 2712.8325195313px;
  stroke-dasharray: 2712.8325195313px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: white;
}

/*INDEX SVG LOGO*/
.mapify-hover {
  fill: rgba(255, 255, 255, 0.192);
}

.side-menu {
  overflow: hidden;
  position: fixed;
  left: 100%;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #000;
  z-index: 5;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.side-menu .container {
  height: 100%;
}
.side-menu .menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-box-pack: distribute;
  -ms-flex-pack: distribute;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  height: 100vh;
  align-items: center;
}
.side-menu .menu-wrap > div {
  opacity: 0;
}
@media screen and (max-width: 450px) {
  .side-menu .menu-wrap {
    height: 100%;
  }
}
.side-menu .logo {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
}
.side-menu .logo a:first-of-type img {
  width: 70px;
}
@media screen and (max-width: 450px) {
  .side-menu .logo a:first-of-type img {
    max-width: 50px;
  }
}
.side-menu .logo a:last-of-type img {
  max-width: 280px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .side-menu .logo a:last-of-type img {
    max-width: 190px;
  }
}
@media screen and (max-width: 450px) {
  .side-menu .logo {
    margin-top: 65px;
  }
}
.side-menu .content {
  width: 100%;
  max-width: 618px;
}
.side-menu .main-items a {
  z-index: 1;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 34px;
  text-transform: uppercase;
  margin-left: 60px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media screen and (max-width: 578px) {
  .side-menu .main-items a {
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .side-menu .main-items a {
    font-size: 18px;
  }
}
.side-menu .main-items > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  margin-bottom: 45px;
  position: relative;
}
.side-menu .main-items > li > img {
  position: absolute;
  top: 5px;
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li > img {
    bottom: 0;
    top: 6px;
    left: 60px;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li > img {
    display: none;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li {
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: initial;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li {
    margin-bottom: 0;
  }
}
.side-menu .main-items > li:hover a {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
.side-menu .main-items > li:nth-child(2) .sub-items li,
.side-menu .main-items > li:nth-child(3) .sub-items li {
  position: relative;
}
.side-menu .main-items > li:nth-child(2) .sub-items li:not(:last-child)::after,
.side-menu .main-items > li:nth-child(3) .sub-items li:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 14px;
  width: 1px;
  bottom: 0;
  right: -10px;
  background-color: #fff;
  opacity: 0.4;
}
.side-menu .main-items > li:nth-child(2) .sub-items li:nth-child(2) {
  margin: 0 20px;
}
.side-menu .main-items > li:nth-child(3) .sub-items li:nth-child(2) {
  margin-right: 10px;
  margin-left: 20px;
}
.side-menu .main-items > li:nth-child(3) .sub-items li:nth-child(3) {
  margin-left: 10px;
  margin-right: 20px;
}
.side-menu .main-items .sub-items-big {
  display: grid;
  position: absolute;
  top: 40px;
}
.side-menu .main-items .sub-items-big a {
  display: block;
  position: relative;
  margin: auto;
}
.side-menu .main-items .sub-items-big a span {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 2px 5px #000;
  text-transform: capitalize;
  font-style: italic;
  position: absolute;
  margin: auto;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
}
.side-menu .main-items .sub-items-big a span:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
.side-menu .main-items > li:nth-child(2) {
  cursor: pointer;
  height: 30px;
  overflow: hidden;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.side-menu .main-items > li:nth-child(2) .sub-items-big {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}
.side-menu .main-items > li:nth-child(2) .sub-items-big li {
  margin: auto;
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(2) .sub-items-big li {
    height: 20px;
    margin: 5px 0;
  }
}
.side-menu .main-items > li:nth-child(2) .sub-items-big img {
  max-width: 193px;
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(2) .sub-items-big img {
    display: none;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(2) .sub-items-big {
    grid-template-columns: 1fr;
    top: 50px;
  }
}
.side-menu .main-items > li:nth-child(3) {
  cursor: pointer;
  height: 30px;
  overflow: hidden;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.side-menu .main-items > li:nth-child(3) .sub-items-big {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}
.side-menu .main-items > li:nth-child(3) .sub-items-big li {
  margin: auto;
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(3) .sub-items-big li {
    height: 20px;
    margin: 5px 0;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(3) .sub-items-big img {
    display: none;
  }
}
@media screen and (max-width: 578px) {
  .side-menu .main-items > li:nth-child(3) .sub-items-big {
    grid-template-columns: 1fr;
    top: 40px;
  }
}
.side-menu .sub-items {
  display: inline;
}
.side-menu .sub-items li {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 13px;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 2px;
  line-height: 34px;
  display: inline;
}
@media screen and (max-width: 578px) {
  .side-menu .sub-items {
    display: none !important;
  }
}
.side-menu .social-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
}
.side-menu .social-wrap > span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 13px;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 2px;
  line-height: 34px;
}
.side-menu .social-wrap .social a {
  font-size: 21px;
}
.side-menu .social-wrap .social a span {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.side-menu .social-wrap .social a:nth-child(2) {
  margin: 0 30px;
}
.side-menu .social-wrap .social a:hover span {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}

.active {
  left: 0;
  color: #C7AE72 !important;
}

.hero-img {
  background-image: url(assets/img/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
}
.hero-img .hero-wrap {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: initial;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.hero-img .hero-wrap .hero-content {
  margin: auto;
}
@media screen and (max-width: 450px) and (max-height: 619px) {
  .hero-img .hero-wrap .hero-content {
    margin-top: 200px;
  }
}
.hero-img .hero-wrap h2.this-h2 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  letter-spacing: 8px;
  color: #C7AE72;
  font-style: italic;
  font-weight: 500;
  text-transform: initial;
}
.hero-img .hero-wrap h2.this-h2 span {
  font-size: 34px;
  font-style: italic;
  margin: 0 7px;
}
@media screen and (max-width: 450px) {
  .hero-img .hero-wrap h2.this-h2 span {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .hero-img .hero-wrap h2.this-h2 {
    font-size: 17px;
  }
}
.hero-img .hero-wrap .main-logo {
  padding: 20px;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .hero-img .hero-wrap .main-logo svg {
    max-width: 540px;
  }
}
@media screen and (max-width: 578px) {
  .hero-img .hero-wrap .main-logo svg {
    max-width: 380px;
  }
}
@media screen and (max-width: 450px) {
  .hero-img .hero-wrap .main-logo svg {
    max-width: 290px;
  }
}
@media screen and (max-width: 578px) {
  .hero-img .hero-wrap .main-logo {
    padding: 0;
  }
}
.hero-img .hero-wrap .main-logo + div {
  margin: auto;
  max-width: 500px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .hero-img .hero-wrap {
    height: 95vh;
  }
}
.hero-img .main-arrow {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 50px;
  width: 49px;
  bottom: 80px;
  cursor: pointer;
}
.hero-img .main-arrow:hover::after {
  bottom: -5px;
}
.hero-img .main-arrow:hover::before {
  text-shadow: 0 2px 8px #C7AE72;
}
@media screen and (max-width: 578px) {
  .hero-img .main-arrow {
    bottom: 35px;
  }
}
.hero-img .main-arrow::before {
  content: "Viac";
  font-size: 13px;
  font-family: museo-sans, sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 3px;
  color: #C7AE72;
  display: block;
  margin: 0 auto 10px;
  position: relative;
  left: 2px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-img .main-arrow::after {
  content: "";
  background-image: url(assets/img/arrow-down.svg);
  background-size: 43px;
  display: block;
  width: 43px;
  height: 23px;
  margin: auto;
  position: relative;
  bottom: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-img .contact {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-left: 55px;
  position: absolute;
  bottom: 70px;
  z-index: 0;
}
.hero-img .contact:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
.hero-img .contact > span {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-img .contact span:nth-child(2):hover {
  color: #C7AE72;
}
.hero-img .contact ul {
  overflow: hidden;
  position: absolute;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  opacity: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  height: 150px;
  transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.hero-img .contact ul li:hover a {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
.hero-img .contact ul li:last-child {
  margin-top: 20px;
}
.hero-img .contact ul span {
  display: inline-block;
  margin-right: 20px;
  top: 5px;
  position: relative;
}
.hero-img .contact ul a {
  font-family: museo-sans, sans-serif;
  font-size: 19px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: lowercase;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media screen and (max-width: 450px) {
  .hero-img .contact ul a {
    font-size: 15px;
  }
}
.hero-img .contact .vertical-lines {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  margin-right: 20px;
}
.hero-img .contact .line {
  display: block;
  width: 24px;
  height: 2px;
  background: #C7AE72;
  margin-bottom: 7px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-img .contact .line:nth-child(even) {
  width: 70%;
}
@media screen and (min-width: 1200px) {
  .hero-img .contact:hover ul {
    opacity: 1;
    bottom: 0;
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    pointer-events: all;
  }
}
@media screen and (min-width: 1200px) {
  .hero-img .contact:hover .vertical-lines .line {
    box-shadow: 0px 2px 8px #C7AE72;
  }
  .hero-img .contact:hover .vertical-lines .line:nth-child(even) {
    width: 24px;
  }
}
@media screen and (max-width: 450px) {
  .hero-img .contact {
    margin-left: 25px;
    bottom: 60px;
  }
}
@media screen and (max-width: 370px) and (max-height: 600px) {
  .hero-img .contact {
    display: none;
  }
}
.hero-img .shown .vertical-lines .line {
  box-shadow: 0px 2px 8px #C7AE72;
}
.hero-img .shown .vertical-lines .line:nth-child(even) {
  width: 24px;
}
.hero-img .shown span:nth-child(2) {
  color: #C7AE72;
  text-shadow: 0px 2px 8px #C7AE72;
}
@media screen and (max-width: 1200px) {
  .hero-img .shown ul {
    opacity: 1;
    bottom: 0;
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    pointer-events: all;
  }
}
.hero-img .social {
  position: absolute;
  right: 55px;
  bottom: 80px;
}
.hero-img .social a {
  opacity: 0.5;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-img .social a:hover {
  color: #C7AE72;
  opacity: 1;
  text-shadow: 0 2px 8px #C7AE72;
}
.hero-img .social a:nth-child(2) {
  margin: 0 34px;
}
@media screen and (max-width: 450px) {
  .hero-img .social a:nth-child(2) {
    margin: 24px 0;
  }
}
@media screen and (max-width: 450px) and (max-height: 620px) {
  .hero-img .social {
    right: 0;
    bottom: 140px;
    left: 0;
    width: fit-content;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .hero-img .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: initial;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    align-items: initial;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    flex-direction: column;
    bottom: 30px;
    right: 25px;
    left: initial;
    margin: initial;
  }
}
@media screen and (max-width: 370px) and (max-height: 600px) {
  .hero-img .social {
    display: none;
  }
}

.benefits {
  position: relative;
}
.benefits::before {
  background-image: url(assets/img/gradient-whole.svg);
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  height: 516px;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}
.benefits img {
  max-width: 200px;
  box-shadow: 0 5px 21px #000;
}
.benefits .container {
  z-index: 3;
  max-width: 1040px;
}
@media screen and (min-width: 1200px) {
  .benefits .container {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1200px) {
  .benefits .container {
    padding: 0;
  }
}
.benefits .container > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.benefits .container > div div {
  position: relative;
}
@media screen and (min-width: 1600px) {
  .benefits .container > div div {
    margin: auto;
  }
}
.benefits .container > div span {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 3px 10px #000, 0 3px 10px #000, 0 3px 10px #000, 0 3px 10px #000;
  position: absolute;
  left: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  margin: auto;
  margin-top: 84px;
  font-style: italic;
  padding: 7px;
  padding-top: 0;
}
@media screen and (max-width: 992px) {
  .benefits .container > div {
    grid-template-columns: 240px 240px;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
  }
}
@media screen and (max-width: 450px) {
  .benefits .container > div {
    grid-template-columns: 200px;
  }
}
.benefits .container > div > div {
  padding: 0 0 90px;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .benefits .container > div > div {
    padding-bottom: 35px;
  }
}

.sections {
  overflow: hidden;
}

.sections > div {
  background-size: 1400px;
  background-position: center -70px;
  background-repeat: no-repeat;
  min-height: 650px;
  width: 100%;
  position: relative;
  margin-top: 100px;
}
.sections > div .container > div {
  position: relative;
  width: 65%;
}
.sections > div p + p {
  margin-top: 10px;
}
.sections > div h2 {
  margin: 48px 0 60px;
}
@media screen and (max-width: 578px) {
  .sections > div h2 {
    text-align: center;
  }
}

/*odd section styles*/
.sections > div:nth-child(odd) .container::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  background-image: radial-gradient(at left, #ffffff38 5%, transparent 60%);
  width: 380px;
  height: 660px;
  margin: 0;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .sections > div:nth-child(odd) .container::before {
    left: -70px;
  }
}
@media screen and (max-width: 768px) {
  .sections > div:nth-child(odd) .container::before {
    left: 0;
  }
}
.sections > div:nth-child(odd) .container > div div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: initial;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (max-width: 578px) {
  .sections > div:nth-child(odd) .container > div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
.sections > div:nth-child(odd) .container > div img {
  margin-right: 35px;
}
.sections > div:nth-child(odd) .container > div h2 + p,
.sections > div:nth-child(odd) .container > div p + p {
  padding-right: 150px;
}
@media screen and (max-width: 578px) {
  .sections > div:nth-child(odd) .container > div h2 + p,
.sections > div:nth-child(odd) .container > div p + p {
    padding-right: 0;
    text-align: justify;
  }
}
@media screen and (max-width: 992px) {
  .sections > div:nth-child(odd) .container > div {
    width: 100%;
  }
}

/*odd section styles*/
/*even section styles*/
.sections > div:nth-child(even) .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
}
.sections > div:nth-child(even) .container::before {
  content: "";
  position: absolute;
  right: 0;
  top: -60px;
  background-image: radial-gradient(at right, #ffffff38 5%, transparent 60%);
  width: 380px;
  height: 660px;
  margin: 0;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .sections > div:nth-child(even) .container::before {
    right: -70px;
  }
}
@media screen and (max-width: 768px) {
  .sections > div:nth-child(even) .container::before {
    right: 0;
  }
}
.sections > div:nth-child(even) .container > div {
  width: 65%;
}
.sections > div:nth-child(even) .container > div > p {
  text-align: right;
  padding-left: 150px;
}
@media screen and (max-width: 578px) {
  .sections > div:nth-child(even) .container > div > p {
    padding-left: 0;
    text-align: justify;
  }
}
.sections > div:nth-child(even) .container > div div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (max-width: 578px) {
  .sections > div:nth-child(even) .container > div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
.sections > div:nth-child(even) .container > div img {
  margin-left: 35px;
  order: 1;
}
@media screen and (max-width: 1600px) {
  .sections > div:nth-child(even) .container > div {
    width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .sections > div:nth-child(even) .container > div {
    width: 100%;
  }
}
.sections > div:nth-child(even) h2 {
  margin: 48px 0 60px;
  text-align: right;
  right: -10px;
  position: relative;
}
@media screen and (max-width: 578px) {
  .sections > div:nth-child(even) h2 {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .sections > div:nth-child(even) h2 {
    right: 0;
  }
}
.sections > div:nth-child(even) h2 + p::before {
  right: 0;
}

/*even section styles*/
.sections > div:nth-child(1) {
  background-image: url(assets/img/handmade-bcg.jpg);
}

.sections > div:nth-child(2) {
  background-image: url(assets/img/material-bcg.jpg);
}

.sections > div:nth-child(3) {
  background-image: url(assets/img/luxury-bcg.jpg);
}

/*index form */
.form {
  margin-bottom: 200px;
}
.form .form-wrap {
  background-image: url(assets/img/form-bcg.jpg);
  background-size: 90%;
  background-position: center -60px;
  background-repeat: no-repeat;
  padding-top: 160px;
}
@media screen and (max-width: 1200px) {
  .form .form-wrap {
    background-size: cover;
  }
}
@media screen and (min-width: 1600px) {
  .form .form-wrap {
    background-size: 80%;
  }
}
.form .container {
  padding: 0;
}
.form h2 {
  margin-bottom: 60px;
  text-shadow: 0 3px 10px #000;
}
@media screen and (max-width: 450px) {
  .form h2 {
    font-size: 21px;
  }
}
.form p {
  margin-bottom: 40px;
}
.form h2, .form p {
  text-align: center;
}
.form h2 + p::before {
  left: 0;
  right: 0;
  margin: auto;
}
.form form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 52px auto 3fr;
  grid-gap: 10px 15px;
  width: 595px;
  margin: auto;
}
.form form label.error {
  top: -30px;
  left: 0;
  font-weight: 900;
  background-color: red;
  color: #000;
  padding: 7px 2px;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: museo-sans, sans-serif;
  font-style: normal;
  width: 100%;
  text-align: center;
  transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
}
.form form input[type=text], .form form input[type=email] {
  background: none;
  outline: none;
  border: none;
  position: relative;
  font-family: "Playfair Display", serif;
  text-transform: lowercase;
  color: #fff;
  border-bottom: 1px solid #C7AE72;
  letter-spacing: 5px;
  font-style: italic;
  height: 30px;
  padding-top: 10px;
  box-shadow: 0 14px 20px -13px #C7AE72;
}
.form form input[type=text] ::placeholder, .form form input[type=email] ::placeholder {
  color: #fff;
  opacity: 0.25;
}
.form form .invalid::before {
  content: "Zadajte minimálne 4 a maximálne 40 znakov.";
  position: absolute;
  font-size: 13px;
  font-family: museo-sans, sans-serif;
  text-transform: uppercase;
  top: -40px;
  left: 0;
  text-align: center;
  background: #f32819;
  z-index: 1;
  padding: 5px;
  border-radius: 5px;
}
.form form textarea {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  font-family: "Playfair Display", serif;
  text-transform: lowercase;
  border-bottom: 1px solid #C7AE72;
  resize: none;
  color: #fff;
  letter-spacing: 5px;
  font-style: italic;
  margin-top: 5px;
  box-shadow: 0px 14px 19px -10px #C7AE72;
}
.form form button[type=submit] {
  grid-row: 3;
  grid-column: 1/3;
  margin: auto;
  height: 65px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .form form button[type=submit] {
    grid-row: 4;
    grid-column: initial;
    padding: 19px 50px;
  }
}
.form form #content::after {
  position: absolute;
  content: "* povinný údaj";
  color: #C7AE72;
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  margin: auto;
  left: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: -30px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .form form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .form form {
    width: 90%;
  }
}
.form .input-wrap {
  position: relative;
}
.form .input-wrap label {
  position: absolute;
  font-family: "Playfair Display", serif;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 5px;
  font-style: italic;
  font-size: 13px;
  top: 5px;
  pointer-events: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.form .input-wrap label span {
  font-family: museo-sans, sans-serif;
  color: #C7AE72;
  font-size: 13px;
}
.form .input-wrap input {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .form .input-wrap:nth-child(1) {
    grid-row: 1;
  }
}
@media screen and (max-width: 768px) {
  .form .input-wrap:nth-child(2) {
    grid-row: 2;
    margin-top: 10px;
  }
}
.form .input-wrap:last-of-type {
  grid-row: 2;
  grid-column: 1/3;
}
@media screen and (max-width: 768px) {
  .form .input-wrap:last-of-type {
    grid-row: 3;
    grid-column: initial;
    margin-top: 10px;
  }
}

input[name=url] {
  display: none;
}

.focus {
  top: -20px !important;
}

/*SUBPAGES STYLES*/
/*DESIGN SUBPAGE*/
.design .hero-img {
  background-image: url(assets/img/design-hero.jpg);
  overflow: hidden;
  background-size: contain;
  background-position: top;
  height: initial;
}
.design .hero-img .hero-wrap, .design .hero-img .hero-content {
  height: initial;
}
.design .hero-img .hero-content {
  margin-top: 225px;
}
.design .hero-img h1 {
  width: 494px;
}
@media screen and (max-width: 768px) {
  .design .hero-img h1 {
    width: 421px;
    font-size: 51px;
  }
}
@media screen and (max-width: 450px) {
  .design .hero-img h1 {
    width: 299px;
    font-size: 40px;
    letter-spacing: 30px;
  }
}
.design .benefits {
  margin-top: 200px;
}
.design .benefits .container > div {
  grid-template-columns: 240px 240px 240px;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .design .benefits .container > div {
    grid-template-rows: initial;
  }
}
@media screen and (max-width: 768px) {
  .design .benefits .container > div {
    grid-template-columns: 240px;
    grid-template-rows: 240px;
  }
}
@media screen and (min-width: 1600px) {
  .design .benefits .container {
    width: 1040px;
  }
}
.design .sections > div {
  height: 620px;
}
@media screen and (max-width: 578px) {
  .design .sections > div h2 {
    font-size: 25px;
    letter-spacing: 4px;
  }
}

/*CONTACT SUBPAGE*/
.contact .hero-img {
  background-image: url(assets/img/contact-hero.jpg);
}
.contact .hero-img .hero-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.contact .hero-img .hero-wrap .hero-content {
  margin-top: 225px;
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap .hero-content {
    margin-top: 130px;
  }
}
@media screen and (max-width: 450px) and (max-height: 619px) {
  .contact .hero-img .hero-wrap .hero-content {
    margin-top: 200px;
  }
}
@media screen and (max-width: 768px) {
  .contact .hero-img .hero-wrap h1 {
    width: 520px;
    font-size: 57px;
    letter-spacing: 40px;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap h1 {
    width: 422px;
    font-size: 50px;
    letter-spacing: 30px;
  }
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap h1 {
    width: 305px;
    font-size: 38px;
    letter-spacing: 20px;
  }
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap h2 {
    font-size: 18px;
  }
}
.contact .hero-img .hero-wrap .contact-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  margin-top: 40px;
  position: absolute;
}
.contact .hero-img .hero-wrap .contact-icons > div {
  display: inline-flex;
  flex-direction: column;
}
.contact .hero-img .hero-wrap .contact-icons > div img {
  margin: 0 auto 30px;
  max-width: 50px;
  height: 50px;
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap .contact-icons > div img {
    margin: 0 auto 10px;
    max-width: 30px;
    height: 30px;
  }
}
.contact .hero-img .hero-wrap .contact-icons > div a {
  font-size: 20px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  text-align: center;
}
.contact .hero-img .hero-wrap .contact-icons > div a:hover {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
@media screen and (max-width: 992px) {
  .contact .hero-img .hero-wrap .contact-icons > div a {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .contact .hero-img .hero-wrap .contact-icons > div a {
    font-size: 16px;
  }
}
.contact .hero-img .hero-wrap .contact-icons div:nth-child(2) {
  margin: 0 120px;
}
@media screen and (max-width: 768px) {
  .contact .hero-img .hero-wrap .contact-icons div:nth-child(2) {
    margin: 0 50px;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap .contact-icons div:nth-child(2) {
    margin: 40px 0;
  }
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap .contact-icons div:nth-child(2) {
    margin: 10px 0;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap .contact-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap .contact-icons {
    bottom: 90px;
  }
}
@media screen and (max-width: 450px) and (min-height: 619px) {
  .contact .hero-img .hero-wrap .contact-icons {
    bottom: 140px;
  }
}
@media screen and (max-height: 800px) {
  .contact .hero-img .hero-wrap .contact-icons {
    margin-top: 80px;
  }
}
.contact .hero-img .hero-wrap .main-arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .hero-img .hero-wrap .main-arrow::before {
  content: "Kontaktný formulár";
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .contact .hero-img .hero-wrap .main-arrow {
    bottom: 20px;
  }
}
@media screen and (max-width: 450px) and (min-height: 619px) {
  .contact .hero-img .hero-wrap .main-arrow {
    bottom: 30px;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap .social a:nth-child(2) {
    margin: 34px 0;
  }
}
@media screen and (max-width: 578px) {
  .contact .hero-img .hero-wrap .social {
    right: 25px;
    bottom: 35px;
    left: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: initial;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    margin: auto;
  }
}
@media screen and (max-width: 450px) and (max-height: 600px) {
  .contact .hero-img .hero-wrap {
    height: 100%;
    padding-bottom: 390px;
  }
}
@media screen and (max-width: 450px) {
  .contact .hero-img {
    height: 100%;
    padding-bottom: 10px;
    overflow: hidden;
  }
}
.contact .form {
  margin-bottom: 0;
  position: relative;
}
.contact .form .form-wrap {
  padding-bottom: 70px;
  padding-top: 50px;
}
@media screen and (min-width: 1600px) {
  .contact .form .form-wrap {
    padding: 0 0 174px 0;
    background-position: center -120px;
    background-size: 77%;
  }
}

/*CONTACT SUBPAGE*/
/*REPIARS SUBPAGE*/
.repairs .hero-img {
  background-image: url(assets/img/repairs-hero.jpg);
  height: 100%;
  background-position: top;
}
.repairs .hero-img .hero-wrap {
  overflow: hidden;
  height: 100%;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .repairs .hero-img .hero-wrap h1 {
    width: 525px;
  }
}
@media screen and (max-width: 578px) {
  .repairs .hero-img .hero-wrap h1 {
    width: 405px;
    font-size: 48px;
    letter-spacing: 40px;
  }
}
@media screen and (max-width: 450px) {
  .repairs .hero-img .hero-wrap h1 {
    width: 290px;
    font-size: 38px;
    letter-spacing: 26px;
  }
}
.repairs .hero-img .hero-wrap .main-arrow {
  position: absolute;
  bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.repairs .hero-img .hero-wrap .main-arrow::before {
  content: "Kontakt";
}
.repairs .hero-img .hero-wrap .hero-content {
  margin: auto;
  margin-top: 225px;
}
@media screen and (max-width: 450px) {
  .repairs .hero-img .hero-wrap .hero-content .social {
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .repairs .hero-img .hero-wrap .hero-content .social a:nth-child(2) {
    margin: 0 34px;
  }
}
@media screen and (max-width: 450px) {
  .repairs .hero-img .hero-wrap {
    height: 100%;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 450px) {
  .repairs .hero-img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-container {
    width: 560px;
    margin: auto;
  }
}
@media screen and (max-width: 578px) {
  .repairs .input-container {
    width: 440px;
  }
}
@media screen and (max-width: 450px) {
  .repairs .input-container {
    width: 390px;
  }
}
@media screen and (max-width: 400px) {
  .repairs .input-container {
    width: 300px;
  }
}
.repairs .input-image {
  position: relative;
  height: 240px;
  max-width: 1040px;
  margin: auto;
}
@media screen and (max-width: 578px) {
  .repairs .input-image .mapify-holder {
    pointer-events: none;
  }
}
.repairs .input-image .pulse {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C7AE72;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(199, 174, 114, 0.4);
  animation: pulse 2s infinite;
  z-index: 2;
  transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
}
.repairs .input-image .pulse::before {
  position: absolute;
  pointer-events: none;
  text-align: center;
  top: -25px;
  left: -50px;
  border-radius: 6px;
  padding: 5px;
  font-size: 13px;
  margin: auto;
  background-color: #C7AE72;
  color: #000;
  font-family: museo-sans, sans-serif;
  opacity: 0;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 1.07, 0.4, 0.94);
}
.repairs .input-image .pulse:hover::before {
  opacity: 1;
  transform: translateY(1px);
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
}
.repairs .input-image .pulse:hover {
  animation: none;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(199, 174, 114, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(199, 174, 114, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(199, 174, 114, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(199, 174, 114, 0.6);
    box-shadow: 0 0 0 0 rgba(199, 174, 114, 0.6);
  }
  70% {
    -moz-box-shadow: 0 0 0 15px rgba(199, 174, 114, 0);
    box-shadow: 0 0 0 15px rgba(199, 174, 114, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(199, 174, 114, 0);
    box-shadow: 0 0 0 0 rgba(199, 174, 114, 0);
  }
}
.repairs .input-image .white {
  background: #fff;
}
.repairs .input-image .back-btn {
  display: none;
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  margin: auto;
  height: 20px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: museo-sans, sans-serif;
  color: #C7AE72;
  cursor: pointer;
  font-size: 15px;
  z-index: 1;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.repairs .input-image .back-btn::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -19px;
  color: #C7AE72;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.repairs .input-image .back-btn:hover {
  text-shadow: 0 2px 8px #C7AE72;
}
.repairs .input-image .back-btn:hover::before {
  left: -24px;
  text-shadow: 0 2px 8px #C7AE72;
}
.repairs .input-image .rifle {
  cursor: pointer;
  display: block;
}
.repairs .input-image .rifle .pulse:first-child {
  left: 50px;
  top: 170px;
}
.repairs .input-image .rifle .pulse:first-child::before {
  content: "Pažba";
  left: -15px;
  font-size: 16px;
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:first-child::before {
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle .pulse:first-child {
    left: 30px;
    top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle .pulse:first-child {
    top: 100px;
  }
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:first-child {
    top: 80px;
  }
}
@media screen and (max-width: 450px) {
  .repairs .input-image .rifle .pulse:first-child {
    top: 70px;
  }
}
@media screen and (max-width: 400px) {
  .repairs .input-image .rifle .pulse:first-child {
    top: 40px;
    left: 20px;
  }
}
.repairs .input-image .rifle .pulse:nth-child(2) {
  left: 0;
  right: 0;
  margin: auto;
  top: 70px;
}
.repairs .input-image .rifle .pulse:nth-child(2)::before {
  content: "Telo";
  left: -9px;
  font-size: 16px;
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:nth-child(2)::before {
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle .pulse:nth-child(2) {
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle .pulse:nth-child(2) {
    top: 40px;
  }
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:nth-child(2) {
    top: 30px;
  }
}
@media screen and (max-width: 400px) {
  .repairs .input-image .rifle .pulse:nth-child(2) {
    top: 20px;
  }
}
.repairs .input-image .rifle .pulse:last-child {
  right: 40px;
  top: 40px;
}
.repairs .input-image .rifle .pulse:last-child::before {
  content: "Hlaveň";
  left: -18px;
  font-size: 16px;
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:last-child::before {
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle .pulse:last-child {
    right: 40px;
    top: 30px;
  }
}
@media screen and (max-width: 578px) {
  .repairs .input-image .rifle .pulse:last-child {
    top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .repairs .input-image .rifle .pulse:last-child {
    top: 10px;
    right: 30px;
  }
}
.repairs .input-image .rifle-stock {
  display: none;
}
.repairs .input-image .rifle-stock .pulse::before {
  width: 130px;
}
.repairs .input-image .rifle-stock .pulse:first-child {
  left: 480px;
  top: 180px;
}
.repairs .input-image .rifle-stock .pulse:first-child::before {
  content: "Uchytenie popruhu";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:first-child {
    left: 450px;
    top: 170px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:first-child {
    left: 340px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:first-child {
    left: 240px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(2) {
  right: 400px;
  top: 130px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(2)::before {
  content: "Pištoľová rukoväť";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(2) {
    right: 350px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(2) {
    right: 250px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(2) {
    right: 150px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(3) {
  left: 300px;
  top: 140px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(3)::before {
  content: "Hlavište pažby";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(3)::before {
    left: 0;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(3) {
    left: 170px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(3) {
    left: 70px;
    top: 150px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(4) {
  left: 260px;
  bottom: 30px;
  z-index: 3;
}
.repairs .input-image .rifle-stock .pulse:nth-child(4)::before {
  content: "Pätka";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(4)::before {
    top: -17px;
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(4) {
    left: 220px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(4) {
    left: 110px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(4) {
    left: 20px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(5) {
  left: 260px;
  bottom: 60px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(5)::before {
  content: "Rybynka";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(5)::before {
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(5) {
    left: 220px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(5) {
    left: 110px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(5) {
    left: 20px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(6) {
  left: 270px;
  top: 50px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(6)::before {
  content: "Lícnica";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(6)::before {
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(6) {
    left: 230px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(6) {
    left: 140px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(6) {
    left: 40px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(7) {
  left: 460px;
  top: 50px;
  z-index: 3;
}
.repairs .input-image .rifle-stock .pulse:nth-child(7)::before {
  content: "Zadný nos pažby";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(7) {
    left: 420px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(7) {
    left: 280px;
    top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(7) {
    left: 180px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(8) {
  left: 460px;
  top: 18px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(8)::before {
  content: "Chrbát pažby";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(8) {
    left: 380px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(8) {
    left: 270px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(8) {
    left: 170px;
  }
}
.repairs .input-image .rifle-stock .pulse:nth-child(9) {
  right: 400px;
  top: 10px;
}
.repairs .input-image .rifle-stock .pulse:nth-child(9)::before {
  content: "Krk pažby";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(9) {
    right: 360px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(9) {
    right: 250px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:nth-child(9) {
    right: 160px;
  }
}
.repairs .input-image .rifle-stock .pulse:last-child {
  right: 320px;
  top: 10px;
}
.repairs .input-image .rifle-stock .pulse:last-child::before {
  content: "Predný nos pažby";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-stock .pulse:last-child {
    right: 270px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-stock .pulse:last-child {
    right: 170px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-stock .pulse:last-child {
    right: 70px;
  }
}
.repairs .input-image .rifle-body {
  display: none;
}
.repairs .input-image .rifle-body .pulse::before {
  width: 120px;
}
.repairs .input-image .rifle-body .pulse:first-child {
  left: 360px;
  top: 20px;
}
.repairs .input-image .rifle-body .pulse:first-child::before {
  content: "Hlava záveru";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:first-child {
    left: 310px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:first-child {
    left: 210px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:first-child {
    left: 130px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(2) {
  left: 250px;
  top: 40px;
}
.repairs .input-image .rifle-body .pulse:nth-child(2)::before {
  content: "Záverová páčka";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(2) {
    left: 210px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(2) {
    left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(2) {
    left: 40px;
    top: 20px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(3) {
  left: 200px;
  top: 90px;
  z-index: 3;
}
.repairs .input-image .rifle-body .pulse:nth-child(3)::before {
  content: "Výstražníky";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(3)::before {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(3)::before {
    top: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(3) {
    left: 160px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(3) {
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(3) {
    left: 0px;
    top: 110px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(4) {
  left: 190px;
  top: 120px;
  z-index: 4;
}
.repairs .input-image .rifle-body .pulse:nth-child(4)::before {
  content: "Prepínač na guľu";
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(4)::before {
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(4) {
    left: 150px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(4) {
    left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(4) {
    left: 10px;
    top: 80px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(5) {
  left: 200px;
  top: 60px;
}
.repairs .input-image .rifle-body .pulse:nth-child(5)::before {
  content: "Poistka";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(5) {
    left: 160px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(5) {
    top: 37px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(6) {
  top: 150px;
  left: 260px;
}
.repairs .input-image .rifle-body .pulse:nth-child(6)::before {
  content: "Spúšte";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(6) {
    left: 210px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(6) {
    left: 110px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(6) {
    left: 60px;
    top: 120px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(7) {
  top: 160px;
  left: 300px;
}
.repairs .input-image .rifle-body .pulse:nth-child(7)::before {
  content: "Lúčik";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(7) {
    left: 270px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(7) {
    left: 170px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(7) {
    top: 130px;
    left: 100px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(8) {
  left: 340px;
  top: 50px;
}
.repairs .input-image .rifle-body .pulse:nth-child(8)::before {
  content: "Greenerov čap";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(8) {
    left: 290px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(8) {
    left: 190px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(8) {
    top: 60px;
    left: 50px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(9) {
  left: 390px;
  top: 80px;
}
.repairs .input-image .rifle-body .pulse:nth-child(9)::before {
  content: "Záverové háky";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(9) {
    left: 310px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(9) {
    left: 220px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(9) {
    top: 60px;
    left: 130px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(10) {
  left: 440px;
  top: 80px;
}
.repairs .input-image .rifle-body .pulse:nth-child(10)::before {
  content: "Lôžko záveru";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(10) {
    left: 370px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(10) {
    left: 290px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(10) {
    top: 70px;
    left: 180px;
  }
}
.repairs .input-image .rifle-body .pulse:nth-child(11) {
  right: 410px;
  top: 80px;
}
.repairs .input-image .rifle-body .pulse:nth-child(11)::before {
  content: "Kĺbová os";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-body .pulse:nth-child(11) {
    right: 350px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:nth-child(11) {
    right: 300px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:nth-child(11) {
    top: 60px;
    right: 220px;
  }
}
.repairs .input-image .rifle-body .pulse:last-child {
  right: 210px;
  top: 70px;
}
.repairs .input-image .rifle-body .pulse:last-child::before {
  content: "Predpažbie";
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-body .pulse:last-child {
    right: 140px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-body .pulse:last-child {
    top: 60px;
    right: 70px;
  }
}
.repairs .input-image .rifle-barrel {
  display: none;
}
.repairs .input-image .rifle-barrel .pulse::before {
  width: 120px;
}
.repairs .input-image .rifle-barrel .pulse:first-child {
  right: 0px;
  top: 90px;
  z-index: 3;
}
.repairs .input-image .rifle-barrel .pulse:first-child::before {
  content: "Ústie";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-barrel .pulse:first-child::before {
    left: initial;
    right: 0;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:first-child {
    top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:first-child {
    top: 50px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(2) {
  right: 30px;
  top: 70px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(2)::before {
  content: "Muška";
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(2) {
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(2) {
    right: 20px;
    top: 25px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(3) {
  right: 370px;
  top: 130px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(3)::before {
  content: "Pútko na remeň";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(3) {
    right: 340px;
    top: 120px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(3) {
    right: 260px;
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(3) {
    right: 180px;
    top: 69px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(4) {
  top: 100px;
  right: 230px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(4)::before {
  content: "Hlaveň";
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(4) {
    top: 80px;
    right: 160px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(4) {
    top: 60px;
    right: 100px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(5) {
  left: 320px;
  top: 70px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(5)::before {
  content: "Cieľnik";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(5) {
    left: 300px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(5) {
    left: 230px;
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(5) {
    left: 170px;
    top: 30px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(6) {
  left: 180px;
  top: 70px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(6)::before {
  content: "Plošina";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(6) {
    left: 160px;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(6) {
    left: 120px;
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(6) {
    left: 90px;
    top: 30px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(7) {
  top: 100px;
  z-index: 5;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(7)::before {
  content: "Nábojová komora";
}
@media screen and (max-width: 1200px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(7)::before {
    left: 0;
  }
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(7) {
    top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(7) {
    top: 20px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(8) {
  top: 80px;
  left: 10px;
  z-index: 3;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(8)::before {
  content: "Hlavička tyčinky pre nastavovač cieľnika";
  left: 0;
  width: 250px;
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(8) {
    top: 50px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(8) {
    top: 50px;
    left: 0px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(9) {
  top: 80px;
  left: 50px;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(9)::before {
  content: "Predĺžená plošina hlavní Greenerovho záveru";
  left: 0;
  width: 280px;
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(9) {
    top: 53px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(9) {
    top: 33px;
    left: 40px;
  }
}
.repairs .input-image .rifle-barrel .pulse:nth-child(10) {
  top: 124px;
  z-index: 3;
}
.repairs .input-image .rifle-barrel .pulse:nth-child(10)::before {
  content: "Čapový otvor";
  top: -20px;
  left: 0;
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(10) {
    top: 64px;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:nth-child(10) {
    top: 74px;
    left: 0px;
  }
}
.repairs .input-image .rifle-barrel .pulse:last-child {
  top: 130px;
  left: 40px;
}
.repairs .input-image .rifle-barrel .pulse:last-child::before {
  content: "Zárezy pre záverové kliny";
  width: 160px;
  left: 0;
}
@media screen and (max-width: 992px) {
  .repairs .input-image .rifle-barrel .pulse:last-child {
    top: 90px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .repairs .input-image .rifle-barrel .pulse:last-child {
    top: 60px;
    left: 40px;
  }
}
@media screen and (max-width: 578px) {
  .repairs .input-image {
    height: 100%;
  }
}
.repairs .selected-part {
  position: absolute;
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
}
.repairs .selected-part img {
  position: absolute;
  display: none;
  width: 100%;
  max-width: 530px;
}
.repairs .selected-part img[src*=body] {
  max-width: 670px;
}
.repairs .selected-part img[src*=barrel] {
  width: 100%;
  max-width: initial;
}
.repairs .form .form-wrap {
  padding-top: 0;
  background-image: none;
}
.repairs .form form {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
@media screen and (max-width: 578px) {
  .repairs .form form {
    width: 100%;
  }
}
.repairs .form .form-grid {
  position: relative;
  display: grid;
  grid-template-rows: 52px auto 3fr;
  grid-gap: 10px 15px;
  max-width: 695px;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .repairs .form .form-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    padding: 0 24px;
  }
}
.repairs .form .input-wrap:nth-child(1) {
  grid-row: 1;
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .repairs .form .input-wrap:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }
}
.repairs .form .input-wrap:nth-child(2) {
  grid-row: 1;
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .repairs .form .input-wrap:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
}
.repairs .form .input-wrap:nth-child(3) {
  grid-row: 1;
  grid-column: 3/4;
}
@media screen and (max-width: 768px) {
  .repairs .form .input-wrap:nth-child(3) {
    grid-row: 3;
    grid-column: 1;
  }
}
@media screen and (max-width: 578px) {
  .repairs .form .input-wrap:nth-child(3) {
    display: none;
  }
}
.repairs .form .input-wrap:nth-child(4) {
  grid-row: 2;
  grid-column: 1/4;
}
@media screen and (max-width: 768px) {
  .repairs .form .input-wrap:nth-child(4) {
    grid-row: 4;
    grid-column: 1;
  }
}
.repairs .form button[type=submit] {
  grid-row: 4;
  grid-column: 1/4;
}
@media screen and (max-width: 768px) {
  .repairs .form button[type=submit] {
    grid-row: 5;
    grid-column: 1;
  }
}
.repairs .form select {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #C7AE72;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Playfair Display", serif;
  font-style: italic;
  letter-spacing: 5px;
  box-shadow: 0 14px 20px -12px #C7AE72;
}
.repairs .form select optgroup {
  background-color: #000;
}
.repairs .form select option {
  background-color: #000;
  margin: 5px 0;
}
.repairs .form .individual-select {
  position: relative;
  height: 52px;
  width: 100%;
  padding: 0 25px;
  margin: auto;
}
.repairs .form .individual-select > div {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 578px) {
  .repairs .form .individual-select {
    padding: 0;
  }
}
.repairs .form p {
  opacity: 1;
}
.repairs .form p span {
  opacity: 0.5;
  color: #fff;
}
.repairs .form p a {
  color: #fff;
  opacity: 0.75;
  font-weight: 900;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.repairs .form p a:hover {
  text-shadow: 0 2px 8px #C7AE72;
  color: #C7AE72;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .repairs .form {
    grid-template-rows: repeat(5, auto);
  }
}

/*REPIARS SUBPAGE*/
/*SERVICE SUBPAGE*/
.service {
  margin-bottom: 100px;
}
.service .hero-img {
  background-image: url(assets/img/service-hero.jpg);
}
.service .hero-img .hero-wrap {
  overflow: hidden;
  height: 100%;
  padding-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .service .hero-img .hero-wrap .social {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .service .hero-img .hero-wrap .social {
    display: block;
  }
  .service .hero-img .hero-wrap .social a:nth-child(2) {
    margin: 0 34px;
  }
}
.service .hero-img .hero-wrap .hero-content {
  margin-top: 225px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .service .hero-img h1 {
    width: 480px;
  }
}
@media screen and (max-width: 578px) {
  .service .hero-img h1 {
    font-size: 56px;
    letter-spacing: 40px;
    width: 394px;
  }
}
@media screen and (max-width: 450px) {
  .service .hero-img h1 {
    font-size: 40px;
    letter-spacing: 30px;
    width: 288px;
  }
}
@media screen and (max-width: 450px) {
  .service .hero-img {
    height: 100%;
  }
}
.service .repairs-text {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  text-align: center;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 1px;
  line-height: 25px;
}
.service .service-list div {
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 70px;
}
.service .service-list div img {
  display: inline;
}
@media screen and (max-width: 450px) {
  .service .service-list div img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }
}
.service .service-list div p {
  display: inline-block;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 2px 8px #000000;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 62px;
}
.service .service-list div p::before {
  content: "";
  width: 2px;
  height: 25px;
  background-color: #C7AE72;
  position: absolute;
  left: -31px;
  opacity: 0.5;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 450px) {
  .service .service-list div p::before {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .service .service-list div p {
    font-size: 28px;
    margin-left: 0;
    text-align: center;
  }
}
.service .service-list ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.service .service-list ul li {
  font-family: museo-sans, sans-serif;
  color: #fff;
  letter-spacing: 2px;
  font-size: 21px;
  text-align: left;
  line-height: 35px;
  position: relative;
  margin-left: 170px;
}
.service .service-list ul li::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #C7AE72;
  position: absolute;
  left: -40px;
}
@media screen and (max-width: 578px) {
  .service .service-list ul li {
    margin-left: 80px;
  }
}
@media screen and (max-width: 450px) {
  .service .service-list ul li {
    margin-left: 50px;
    font-size: 15px;
  }
}

/*SERVICE SUBPAGE*/
/*PRODUCTION SUBPAGE*/
.production .hero-img {
  background-image: url(assets/img/production-hero.jpg);
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-size: contain;
  background-position: top;
  height: initial;
}
.production .hero-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140vh;
  top: 0;
  background-image: linear-gradient(0deg, #000 20%, #fff0 100%);
  z-index: -1;
}
.production .hero-img .hero-wrap {
  height: initial;
}
.production .hero-img .hero-content {
  margin-top: 225px;
}
@media screen and (max-width: 768px) {
  .production .hero-img h1 {
    width: 531px;
  }
}
@media screen and (max-width: 578px) {
  .production .hero-img h1 {
    width: 421px;
    font-size: 51px;
    letter-spacing: 40px;
  }
}
@media screen and (max-width: 450px) {
  .production .hero-img h1 {
    width: 289px;
    font-size: 33px;
    letter-spacing: 30px;
  }
}
.production .sections {
  overflow: hidden;
  max-width: 1310px;
  margin: 0 auto;
  margin-top: 200px;
}
@media screen and (min-width: 992px) {
  .production .sections .container {
    width: 100%;
    padding: 10px 90px;
  }
}
@media screen and (max-width: 768px) {
  .production .sections .container {
    width: 100%;
    padding: 0 25px;
  }
}
.production .sections > div {
  background-size: contain;
  height: 100%;
}
.production .sections > div h2 {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div h2 {
    text-align: center;
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .production .sections > div h2 {
    font-size: 26px;
    letter-spacing: 6px;
  }
}
@media screen and (max-width: 578px) {
  .production .sections > div p + p {
    text-align: center !important;
  }
}
@media screen and (max-width: 992px) {
  .production .sections > div {
    background-size: cover;
    height: 100%;
    padding: 30px 0;
  }
}
.production .sections > div:nth-child(odd) {
  background-position: right;
}
.production .sections > div:nth-child(odd) .container .side-title-left {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(odd) .container .side-title-left {
    text-align: center;
  }
}
.production .sections > div:nth-child(odd) .container::before {
  top: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(odd) .container::before {
    top: -80px;
  }
}
.production .sections > div:nth-child(odd) .container > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(odd) .container > div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
@media screen and (max-width: 1200px) {
  .production .sections > div:nth-child(odd) .container > div {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(odd) .container > div {
    width: 100%;
    text-align: center;
  }
}
.production .sections > div:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(90deg, black 45%, transparent 100%);
}
.production .sections > div:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(90deg, transparent 91%, black);
  z-index: 0;
}
.production .sections > div:nth-child(even) {
  background-position: left;
}
.production .sections > div:nth-child(even) .container .side-title-right {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container .side-title-right {
    text-align: center;
  }
}
.production .sections > div:nth-child(even) .container h2 ~ p:first-of-type::before {
  right: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container h2 ~ p:first-of-type::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.production .sections > div:nth-child(even) .container::before {
  top: 0;
}
.production .sections > div:nth-child(even) .container > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container > div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  .production .sections > div:nth-child(even) .container > div {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container > div {
    width: 100%;
    text-align: center;
  }
}
.production .sections > div:nth-child(even) .container > div > p {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container > div > p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .production .sections > div:nth-child(even) .container {
    display: block;
  }
}
.production .sections > div:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(90deg, transparent 30%, black 50%);
}
.production .sections > div:nth-child(even)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(90deg, black 2%, transparent 10%);
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .production .sections > div:nth-child(even) {
    background-position: top;
  }
}
.production .sections > div:nth-child(1) {
  background-image: url(assets/img/production1.png);
}
.production .sections > div:nth-child(2) {
  background-image: url(assets/img/production2.png);
}
.production .sections > div:nth-child(3) {
  background-image: url(assets/img/production3.png);
}
.production .sections .container > div .side-title-left:before, .production .sections .container > div .side-title-right:before {
  display: none;
}
.production .sections .container > div > p:first-of-type {
  margin-top: 64px;
}
.production .sections .container > div .mid-p {
  margin: 25px 0;
}
@media screen and (max-width: 768px) {
  .production .sections .container h2 ~ p:first-of-type::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .production .sections {
    margin-top: 65px;
  }
}

/*PRODUCTION SUBPAGE*/
/*ABOUT US SUBPAGE*/
.about-us .hero-img {
  background-image: url(assets/img/about-us-hero.jpg);
  background-size: contain;
  background-position: top;
  height: initial;
}
.about-us .hero-img .hero-wrap {
  height: initial;
}
@media screen and (max-width: 450px) {
  .about-us .hero-img .hero-wrap h2 {
    font-size: 16px;
  }
}
.about-us .hero-img .hero-wrap .hero-content {
  margin-top: 225px;
}
.about-us .hero-img .hero-wrap .hero-content .main-logo h1 {
  font-size: 60px;
  letter-spacing: 24px;
}
@media screen and (max-width: 992px) {
  .about-us .hero-img .hero-wrap .hero-content .main-logo h1 {
    letter-spacing: 17px;
  }
}
@media screen and (max-width: 768px) {
  .about-us .hero-img .hero-wrap .hero-content .main-logo h1 {
    letter-spacing: 12px;
    font-size: 44px;
  }
}
@media screen and (max-width: 578px) {
  .about-us .hero-img .hero-wrap .hero-content .main-logo h1 {
    letter-spacing: 10px;
    font-size: 33px;
  }
}
@media screen and (max-width: 450px) {
  .about-us .hero-img .hero-wrap .hero-content .main-logo h1 {
    letter-spacing: 5px;
    font-size: 26px;
  }
}
.about-us .hero-img .hero-wrap .hero-content .main-logo + div {
  max-width: initial;
}
.about-us .hero-img .hero-wrap .hero-content .benefits {
  margin-top: 144px;
  top: initial;
}
.about-us .hero-img .hero-wrap .hero-content .benefits .container {
  max-width: 1040px;
}
.about-us .hero-img .hero-wrap .hero-content .benefits .container > div {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 34px;
  padding: 0 135px;
  grid-template-rows: initial;
}
.about-us .hero-img .hero-wrap .hero-content .benefits .container > div > div {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .about-us .hero-img .hero-wrap .hero-content .benefits .container > div {
    grid-template-columns: 200px;
    grid-gap: 34px;
    padding: 0;
  }
}
.about-us .hero-img .hero-wrap .hero-content .benefits p {
  font-family: museo-sans, sans-serif;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 1px;
  font-size: 13px;
  text-align: center;
  line-height: 25px;
  margin-top: 20px;
}
.about-us .hero-img .hero-wrap .hero-content .benefits::before {
  display: none;
}
.about-us .hero-img .hero-wrap .hero-content .sections {
  overflow: initial;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div {
  width: 100%;
  text-align: center;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div p {
  text-align: justify;
  padding: 0;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div div + p {
  font-weight: 900;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .side-title-left {
  text-align: center;
  margin: auto;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .side-title-left::before {
  display: none;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div div {
  margin-bottom: 66px;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div div p {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 100;
  opacity: 0.5;
  line-height: 25px;
  position: relative;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .mid-p {
  margin: 20px 0;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img {
  position: relative;
  margin-top: 80px;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img::before, .about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  right: 0;
  bottom: 0;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img::before {
  box-shadow: inset 0px 10px 10px #000;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img::after {
  box-shadow: inset 0px -10px 10px #000;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container > div .about-us-img img {
  width: 100%;
  margin-right: 0;
}
.about-us .hero-img .hero-wrap .hero-content .sections > div .container h2 {
  font-size: 34px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 12px;
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 16px;
}
@media screen and (max-width: 578px) {
  .about-us .hero-img .hero-wrap .hero-content .sections > div .container {
    overflow: hidden;
  }
}
.about-us .hero-img .hero-wrap .hero-content .sections > div:nth-child(1) {
  background-image: none;
  height: 100%;
}
.about-us .hero-img .hero-wrap .hero-content .sections h2 ~ p:first-of-type::before {
  top: -33px;
  left: 0;
  right: 0;
  margin: auto;
}

/*ABOUT US SUBPAGE*/
/*WEAPONS SUBPAGE*/
.jednotky .hero-img, .dvojaky .hero-img, .kozlice .hero-img {
  background-image: url(assets/img/weapons-hero.jpg);
  height: 100%;
  background-position: top;
  background-size: contain;
}
.jednotky .hero-img .hero-wrap, .dvojaky .hero-img .hero-wrap, .kozlice .hero-img .hero-wrap {
  height: 100%;
}
.jednotky .hero-img .hero-wrap .hero-content, .dvojaky .hero-img .hero-wrap .hero-content, .kozlice .hero-img .hero-wrap .hero-content {
  margin-top: 225px;
}
@media screen and (max-width: 768px) {
  .jednotky .hero-img .hero-wrap h1, .dvojaky .hero-img .hero-wrap h1, .kozlice .hero-img .hero-wrap h1 {
    font-size: 53px;
    letter-spacing: 28px;
  }
}
@media screen and (max-width: 578px) {
  .jednotky .hero-img .hero-wrap h1, .dvojaky .hero-img .hero-wrap h1, .kozlice .hero-img .hero-wrap h1 {
    font-size: 45px;
    letter-spacing: 18px;
    width: 373px;
  }
}
@media screen and (max-width: 450px) {
  .jednotky .hero-img .hero-wrap h1, .dvojaky .hero-img .hero-wrap h1, .kozlice .hero-img .hero-wrap h1 {
    font-size: 35px;
    letter-spacing: 14px;
    width: 297px;
  }
}
@media screen and (max-width: 450px) {
  .jednotky .hero-img .hero-wrap, .dvojaky .hero-img .hero-wrap, .kozlice .hero-img .hero-wrap {
    height: 100%;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 450px) {
  .jednotky .hero-img, .dvojaky .hero-img, .kozlice .hero-img {
    height: 100%;
  }
}
.jednotky .weapon-list, .dvojaky .weapon-list, .kozlice .weapon-list {
  overflow: hidden;
  padding: 150px 0;
}
.jednotky .weapon-list a.btn-main, .dvojaky .weapon-list a.btn-main, .kozlice .weapon-list a.btn-main {
  margin: 0 auto;
  display: block;
}
.jednotky .weapon-list a.btn-main:after, .dvojaky .weapon-list a.btn-main:after, .kozlice .weapon-list a.btn-main:after {
  bottom: 18px;
}
@media screen and (max-width: 450px) {
  .jednotky .weapon-list a.btn-main, .dvojaky .weapon-list a.btn-main, .kozlice .weapon-list a.btn-main {
    padding: 19px 55px;
  }
}
.jednotky .weapon-list .container a.weapon-wrap, .dvojaky .weapon-list .container a.weapon-wrap, .kozlice .weapon-list .container a.weapon-wrap {
  display: block;
  position: relative;
}
.jednotky .weapon-list .container a.weapon-wrap:nth-child(odd)::before, .dvojaky .weapon-list .container a.weapon-wrap:nth-child(odd)::before, .kozlice .weapon-list .container a.weapon-wrap:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  background-image: radial-gradient(at left, #ffffff38 5%, transparent 60%);
  width: 380px;
  height: 660px;
  margin: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .jednotky .weapon-list .container a.weapon-wrap:nth-child(odd)::before, .dvojaky .weapon-list .container a.weapon-wrap:nth-child(odd)::before, .kozlice .weapon-list .container a.weapon-wrap:nth-child(odd)::before {
    left: -30px;
  }
}
.jednotky .weapon-list .container a.weapon-wrap:nth-child(even)::before, .dvojaky .weapon-list .container a.weapon-wrap:nth-child(even)::before, .kozlice .weapon-list .container a.weapon-wrap:nth-child(even)::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -80px;
  background-image: radial-gradient(at right, #ffffff38 5%, transparent 60%);
  width: 380px;
  height: 660px;
  margin: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .jednotky .weapon-list .container a.weapon-wrap:nth-child(even)::before, .dvojaky .weapon-list .container a.weapon-wrap:nth-child(even)::before, .kozlice .weapon-list .container a.weapon-wrap:nth-child(even)::before {
    right: -30px;
  }
}
.jednotky .weapon-list .container a.weapon-wrap:not(:first-child), .dvojaky .weapon-list .container a.weapon-wrap:not(:first-child), .kozlice .weapon-list .container a.weapon-wrap:not(:first-child) {
  padding-top: 15px;
}
.jednotky .weapon-list .container a.weapon-wrap:hover h2, .dvojaky .weapon-list .container a.weapon-wrap:hover h2, .kozlice .weapon-list .container a.weapon-wrap:hover h2 {
  color: #C7AE72;
  text-shadow: 0 2px 8px #C7AE72;
}
.jednotky .weapon-list .weapon, .dvojaky .weapon-list .weapon, .kozlice .weapon-list .weapon {
  max-width: 860px;
  margin: auto;
  position: relative;
  margin-bottom: 100px;
}
.jednotky .weapon-list .weapon img, .dvojaky .weapon-list .weapon img, .kozlice .weapon-list .weapon img {
  width: 100%;
}
.jednotky .weapon-list .weapon .weapon-details, .dvojaky .weapon-list .weapon .weapon-details, .kozlice .weapon-list .weapon .weapon-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.jednotky .weapon-list .weapon .weapon-details p, .dvojaky .weapon-list .weapon .weapon-details p, .kozlice .weapon-list .weapon .weapon-details p {
  text-align: center;
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-weight: 100;
  line-height: 25px;
  position: relative;
  max-width: 400px;
  margin: auto;
  opacity: 1;
  text-transform: initial;
}
.jednotky .weapon-list .weapon .weapon-details h2, .dvojaky .weapon-list .weapon .weapon-details h2, .kozlice .weapon-list .weapon .weapon-details h2 {
  text-align: center;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media screen and (max-width: 578px) {
  .jednotky .weapon-list .weapon .weapon-details h2, .dvojaky .weapon-list .weapon .weapon-details h2, .kozlice .weapon-list .weapon .weapon-details h2 {
    font-size: 29px;
  }
}
.jednotky .weapon-list .weapon .weapon-details h2 ~ p:first-of-type::before, .dvojaky .weapon-list .weapon .weapon-details h2 ~ p:first-of-type::before, .kozlice .weapon-list .weapon .weapon-details h2 ~ p:first-of-type::before {
  display: none;
}
.jednotky .weapon-list .weapon .weapon-details .parameters, .dvojaky .weapon-list .weapon .weapon-details .parameters, .kozlice .weapon-list .weapon .weapon-details .parameters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.jednotky .weapon-list .weapon .weapon-details .parameters span, .dvojaky .weapon-list .weapon .weapon-details .parameters span, .kozlice .weapon-list .weapon .weapon-details .parameters span {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: #fff;
  margin: 0 auto;
  position: relative;
  top: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 60px;
  text-align: center;
  line-height: 35px;
}
.jednotky .weapon-list .weapon .weapon-details .parameters span:first-child::before, .dvojaky .weapon-list .weapon .weapon-details .parameters span:first-child::before, .kozlice .weapon-list .weapon .weapon-details .parameters span:first-child::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 60px;
  height: 60px;
  background-image: url(assets/img/lenght-icon.svg);
}
.jednotky .weapon-list .weapon .weapon-details .parameters span:nth-child(2)::before, .dvojaky .weapon-list .weapon .weapon-details .parameters span:nth-child(2)::before, .kozlice .weapon-list .weapon .weapon-details .parameters span:nth-child(2)::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 60px;
  height: 60px;
  background-image: url(assets/img/caliber-icon.svg);
}
.jednotky .weapon-list .weapon .weapon-details .parameters span:nth-child(3)::before, .dvojaky .weapon-list .weapon .weapon-details .parameters span:nth-child(3)::before, .kozlice .weapon-list .weapon .weapon-details .parameters span:nth-child(3)::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 60px;
  height: 60px;
  background-image: url(assets/img/weight-icon.svg);
}
@media screen and (max-width: 768px) {
  .jednotky .weapon-list .weapon .weapon-details .parameters span, .dvojaky .weapon-list .weapon .weapon-details .parameters span, .kozlice .weapon-list .weapon .weapon-details .parameters span {
    top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .jednotky .weapon-list .weapon .weapon-details, .dvojaky .weapon-list .weapon .weapon-details, .kozlice .weapon-list .weapon .weapon-details {
    grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .jednotky .weapon-list, .dvojaky .weapon-list, .kozlice .weapon-list {
    padding: 30px 0 0;
  }
}
.jednotky .form-wrap, .dvojaky .form-wrap, .kozlice .form-wrap {
  background-position: center -10px;
}

.jednotky .hero-img {
  background-image: url(assets/img/jednotky-hero.jpg);
}

.dvojaky .hero-img {
  background-image: url(assets/img/dvojaky-hero.jpg);
}
@media screen and (max-width: 768px) {
  .dvojaky .hero-img .hero-wrap h1 {
    font-size: 53px;
    letter-spacing: 28px;
  }
}
@media screen and (max-width: 578px) {
  .dvojaky .hero-img .hero-wrap h1 {
    font-size: 45px;
    letter-spacing: 20px;
    width: 373px;
  }
}
@media screen and (max-width: 450px) {
  .dvojaky .hero-img .hero-wrap h1 {
    font-size: 35px;
    width: 297px;
  }
}

.kozlice .hero-img {
  background-image: url(assets/img/kozlice-hero.jpg);
}
@media screen and (max-width: 768px) {
  .kozlice .hero-img .hero-wrap h1 {
    font-size: 66px;
    letter-spacing: 27px;
    width: 450px;
  }
}
@media screen and (max-width: 578px) {
  .kozlice .hero-img .hero-wrap h1 {
    font-size: 60px;
    letter-spacing: 18px;
    width: 373px;
  }
}
@media screen and (max-width: 450px) {
  .kozlice .hero-img .hero-wrap h1 {
    font-size: 40px;
    letter-spacing: 18px;
    width: 287px;
  }
}

/*WEAPON SUBPAGE*/
.weapon-page {
  overflow: hidden;
}
.weapon-page > .container {
  padding: 0;
  position: relative;
}
.weapon-page > .container:before {
  content: "";
  position: absolute;
  top: 100px;
  left: -50px;
  background-image: radial-gradient(at left, #ffffff38 5%, transparent 60%);
  width: 380px;
  height: 660px;
  margin: 0;
  z-index: -1;
}
.weapon-page .weapon-content {
  overflow: hidden;
}
.weapon-page .weapon-content > div:first-child {
  margin-top: 200px;
}
.weapon-page .weapon-content h1 {
  margin: auto;
  font-size: 60px;
  letter-spacing: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .weapon-page .weapon-content h1 {
    letter-spacing: 20px;
  }
}
@media screen and (max-width: 578px) {
  .weapon-page .weapon-content h1 {
    letter-spacing: 17px;
    font-size: 50px;
  }
}
@media screen and (max-width: 578px) {
  .weapon-page .weapon-content h1 {
    letter-spacing: 13px;
    font-size: 32px;
  }
}
.weapon-page .weapon-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  letter-spacing: 8px;
  color: #C7AE72;
  font-style: italic;
  font-weight: 500;
  text-transform: initial;
  text-align: center;
}
.weapon-page .weapon-content .weapon-img {
  position: relative;
}
.weapon-page .weapon-content .weapon-img img {
  width: 100%;
}
.weapon-page .weapon-content .weapon-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}
.weapon-page .weapon-content .weapon-description h3 {
  color: #fff;
  font-family: museo-sans, sans-serif;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  font-weight: 900;
  margin: 0 auto 25px;
}
.weapon-page .weapon-content .weapon-description p {
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  font-family: museo-sans, sans-serif;
  line-height: 25px;
  text-align: justify;
  font-weight: 100;
  max-width: 460px;
  margin: auto;
}
.weapon-page .weapon-content .weapon-description ul {
  color: #fff;
  margin-left: 50px;
}
.weapon-page .weapon-content .weapon-description ul li {
  font-size: 21px;
  letter-spacing: 2px;
  line-height: 35px;
  font-family: museo-sans, sans-serif;
  position: relative;
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 11px;
  background-size: 20px;
  background-image: url(assets/img/arrow-down.svg);
  left: -40px;
  top: 10px;
  transform: rotate(180deg);
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(assets/img/barrel.svg);
  left: -40px;
  top: 7px;
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(assets/img/rifle-caliber.svg);
  left: -40px;
  top: 7px;
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(4)::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(assets/img/sights.svg);
  left: -40px;
  top: 7px;
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(5)::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(assets/img/weapon-base.svg);
  left: -40px;
  top: 7px;
}
.weapon-page .weapon-content .weapon-description ul li:nth-child(even) {
  margin: 15px 0;
}
@media screen and (max-width: 992px) {
  .weapon-page .weapon-content .weapon-description {
    grid-template-columns: 1fr;
    grid-gap: 50px 0;
  }
}

/*WEAPON SUBPAGE*/
/*GENERAL*/
.subpage-text {
  max-width: 700px;
  margin: auto;
  margin-top: 52px;
}
.subpage-text p {
  font-family: museo-sans, sans-serif;
  font-size: 13px;
  text-align: center;
  color: #d2d2d2;
  opacity: 1;
  letter-spacing: 1px;
  line-height: 25px;
}

.clip-text {
  position: relative;
  transition: all 1.5s cubic-bezier(0.14, 0.94, 0.43, 1.02);
}
.clip-text.bottom {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
.clip-text.transform {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
.clip-text.reveal.bottom {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.clip-text.reveal.transform {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.benefits .clip-text {
  transition-duration: 2s;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

/*GENERAL*/

/*# sourceMappingURL=style.css.map */
