@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  color: inherit;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
  transition: 0s;
  background: #fff;
  color: #333333;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
body.menu-opened {
  overflow: hidden;
}


ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
button,
button:focus,
textarea {
  outline: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button {
  background-color: transparent;
  border: none;
}

a:focus,
a:active {
  color: inherit;
  outline: 0;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

a,
input[type=submit] {
  transition: all 0.3s ease;
  color: inherit;
  cursor: pointer;
}

textarea {
  resize: none;
}

.table-respond {
  overflow: auto;
}

.table-respond td, .table-respond th {
  white-space: nowrap;
}

.btn, .btn:focus, .btn:hover {
  outline: none;
  box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bold, .section-text .wrapper span, header .wrapper .mob-nav ul li a {
  font-family: "Montserrat";
  font-weight: 700;
}

.semi-bold {
  font-family: "Montserrat";
  font-weight: 600;
}

.medium, footer .wrapper .policy, footer .wrapper .contact-elem, .section-main-about .wrapper .logo p, .section-product-info .wrapper .row .product-title, .btn, header .wrapper .socials p, header .wrapper .menu-box .title-header {
  font-family: "Montserrat";
  font-weight: 500;
}

.regular, .default-content .wrapper .content-inner h1,
.default-content .wrapper .content-inner h2,
.default-content .wrapper .content-inner h3,
.default-content .wrapper .content-inner h4,
.default-content .wrapper .content-inner h5,
.default-content .wrapper .content-inner h6, .section-text .wrapper a, .section-text .wrapper .gold-inner, .section-text .wrapper p, .section-contact .wrapper .row .contacts-info .contact .subtitle, .section-contact .wrapper .row .contacts-info .contact .title, .section-page-header .title, .section-product-info .wrapper .info p {
  font-family: "Montserrat";
  font-weight: 400;
}

.light, .breadcrumbs ul span, .breadcrumbs ul a {
  font-family: "Montserrat";
  font-weight: 300;
}

.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.flex {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.flex-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.flex-right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.flex-justify {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.flex-middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  align-self: center;
}

.flex-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.flex-item-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-item-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flex-item-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.breadcrumbs {
  padding: 40px 0 0 0;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 0 0 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.breadcrumbs ul a {
  font-size: 16px;
  color: #aeafae;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .breadcrumbs ul a {
    font-size: 13px;
  }
}
.breadcrumbs ul a:after {
  content: "›";
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin: 0 12px;
}
.breadcrumbs ul a:hover {
  opacity: 0.6;
}
.breadcrumbs ul span {
  font-size: 16px !important;
  color: #fff;
}
@media (max-width: 767px) {
  .breadcrumbs ul span {
    font-size: 13px;
  }
}

.wrapper {
  max-width: 1796px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: #6e6f70;
  position: relative;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}
header.sticky .mob-nav {
  top: 100%;
}
.sticky + .content {
  padding-top: 94px;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
header .wrapper .logo-header {
  padding: 15px 0;
  z-index: 999;
}
header.sticky .wrapper .logo-header {
  padding: 10px 0;
}
header .wrapper .logo-header:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  header .wrapper .logo-header {
    padding: 0;
    position: relative;
    z-index: 5;
  }
  header {
    padding: 15px 0;
  }
}
header .wrapper .logo-header img {
  display: block;
  max-width: 100px;
}
@media (max-width: 767px) {
  header .wrapper .logo-header img {
    max-width: 50px;
    max-height: 40px;
  }
  .sticky + .content {
    padding-top: 70px;
  }
  header.sticky .wrapper .logo-header {
    padding: 0;
  }
  header.sticky {
    padding: 10px 0;
  }
}
header .wrapper .menu-box .title-header {
  margin: 0 0 0 75px;
  color: #fff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
header .wrapper .menu-box .title-header:hover i {
  right: -5px;
  color: red;
}
@media (max-width: 767px) {
  header .wrapper .menu-box .title-header {
    display: none;
  }
}
header .wrapper .menu-box .title-header i {
  color: #f00;
  margin: 0 0 0 15px;
  position: relative;
  right: 0;
  transition: all 0.3s ease;
}
header .wrapper .menu-box .hamburger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 30;
  width: 30px;
  height: 21px;
}
@media (max-width: 767px) {
  header .wrapper .menu-box .hamburger {
    left: 15px;
  }
}
header .wrapper .menu-box .hamburger.is-active .line {
  background-color: transparent;
}
header .wrapper .menu-box .hamburger.is-active .line::before {
  top: 0;
  transform: rotate(45deg);
}
header .wrapper .menu-box .hamburger.is-active .line::after {
  top: 0;
  transform: rotate(-45deg);
}
header .wrapper .menu-box .hamburger.is-active {
  display: block;
}
header .wrapper .line,
header .wrapper .line::after,
header .wrapper .line::before {
  position: absolute;
  width: 23px;
  height: 3px;
  background: #fff;
}
header .wrapper .line {
  top: 50%;
  left: 50%;
  width: 30px;
  transform: translate(-50%, -50%);
}
header .wrapper .line::after {
  content: "";
  top: 12px;
  transition: all 0.3s ease-in-out;
}
header .wrapper .line::before {
  content: "";
  top: -12px;
  transition: all 0.3s ease-in-out;
}
header .wrapper .burger-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
header .wrapper .socials {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  header .wrapper .socials {
    display: none;
  }
}
header .wrapper .socials a {
  color: #fff;
  font-size: 13px;
}
header .wrapper .socials ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
header .wrapper .socials ul li {
  margin: 0 0 0 21px;
}
header .wrapper .socials ul li a i {
  color: #f00;
}
header .wrapper .socials ul li a i:hover {
  color: #000;
  transition: all 0.3s ease;
}

.btn {
  min-height: 71px;
  padding: 0 45px;
  border: 3px solid #f00;
  color: #f00;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}
.btn:hover {
  color: #fff;
  background: #f00;
}
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    border: 2px solid #fff;
    min-height: 51px;
    padding: 0 35px;
  }
}

.section-product-info {
  padding: 160px 0 70px 0;
  background: #ddd;
}
@media (max-width: 767px) {
  .section-product-info {
    padding: 80px 0 45px 0;
  }
}
.section-product-info .wrapper {
  max-width: 1560px;
}
.section-product-info .wrapper .row {
  margin: 0 -11px;
}
.section-product-info .wrapper .row [class*=col-] {
  padding: 0 11px;
  margin: 0 0 80px;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .row [class*=col-] {
    margin: 0 0 20px;
  }
}
.section-product-info .wrapper .row .product-brand {
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  z-index: 9;
  margin: 30px 0 0;
  display: none;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .row .product-brand {
    font-size: 14px;
    margin: 10px 0 0;
  }
}
.section-product-info .wrapper .row .product-title {
  display: flex;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  z-index: 9;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .row .product-title {
    font-size: 20px;
  }
}
.section-product-info .wrapper .row .product-price {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  z-index: 9;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .row .product-price {
    font-size: 12px;
  }
}
.section-product-info .wrapper .row .product-item:hover .product-img:after {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.section-product-info .wrapper .row .product-item:hover .btn-white {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.section-product-info .wrapper .row .product-item .product-img {
  display: block;
  position: relative;
  margin: 0 0 30px;
}
.section-product-info .wrapper .row .product-item .product-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.section-product-info .wrapper .row .product-item .product-img img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 420px;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .row .product-item .product-img img {
    max-height: 250px;
    margin: 0 auto;
  }
}
.section-product-info .wrapper .row .product-item .btn-white {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.section-product-info .wrapper .info {
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .info {
    margin-bottom: 40px;
  }
}
.section-product-info .wrapper .info p {
  font-size: 18px;
  color: #000;
  margin: 0 0 30px;
}
.section-product-info .wrapper .info p:nth-last-child(1) {
  margin: 0 0;
}
@media (max-width: 767px) {
  .section-product-info .wrapper .info p {
    font-size: 13px;
    margin: 0 0 10px;
  }
}

.section-page-header {
  padding: 310px 0 70px 0;
  box-shadow: 0px -250px 200px 0px rgba(0, 0, 0, 0.7) inset;
}
@media (max-width: 767px) {
  .section-page-header {
    padding: 130px 15px 160px;
  }
}
.section-page-header .title {
  font-size: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  line-height: 50px;
  max-width: 900px;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-page-header .title {
    font-size: 30px;
    line-height: 30px;
  }
}

.section-contact {
  padding: 150px 0 144px 0;
  background: #ddd;
}
@media (max-width: 767px) {
  .section-contact {
    padding: 60px 0 0 0;
  }
}
.section-contact .wrapper {
  max-width: 1560px;
}
@media (max-width: 991px) {
  .section-contact .wrapper .row {
    margin: 0 -5px;
  }
  .section-contact .wrapper .row [class*=col-] {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .section-contact .wrapper .row [class*=col-] {
    margin: 0 0 10px;
  }
}
.section-contact .wrapper .row .contacts-info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #55481a;
  padding: 0 48px 0 48px;
  min-height: 160px;
  height: 100%;
}
@media (max-width: 1141px) {
  .section-contact .wrapper .row .contacts-info {
    padding: 0 35px 0 35px;
  }
}
@media (max-width: 991px) {
  .section-contact .wrapper .row .contacts-info {
    padding: 0 15px 0 15px;
  }
}
@media (max-width: 767px) {
  .section-contact .wrapper .row .contacts-info {
    padding: 0 30px 0 30px;
    min-height: 120px;
  }
}
.section-contact .wrapper .row .contacts-info img {
  display: block;
  margin: 0 40px 0 0;
}
@media (max-width: 1141px) {
  .section-contact .wrapper .row .contacts-info img {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 991px) {
  .section-contact .wrapper .row .contacts-info img {
    max-width: 50px;
  }
}
.section-contact .wrapper .row .contacts-info .contact .title {
  font-size: 14px;
  color: #fff;
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .section-contact .wrapper .row .contacts-info .contact .title {
    font-size: 12px;
    margin: 0 0 7px;
  }
}
.section-contact .wrapper .row .contacts-info .contact .subtitle {
  font-size: 18px;
  color: #000;
}
@media (max-width: 991px) {
  .section-contact .wrapper .row .contacts-info .contact .subtitle {
    font-size: 16px;
  }
}

.section-contact-form {
  padding: 0 0 60px 0;
  background: #ddd;
}
@media (max-width: 767px) {
  .section-contact-form {
    padding: 0 0 50px 0;
  }
}
.section-contact-form .wrapper {
  max-width: 1530px;
  background: #141414;
  padding: 50px 15px 60px;
}
@media (max-width: 991px) {
  .section-contact-form .wrapper {
    padding: 50px 15px 60px 15px;
  }
}
@media (max-width: 767px) {
  .section-contact-form .wrapper {
    padding: 30px 15px 20px 15px;
  }
}
.section-contact-form .wrapper form {
  max-width: 1010px;
  margin: 0 auto;
}
.section-contact-form .wrapper form .btn-gold {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  background: #141414;
  border: 3px solid #fff;
  width: 100%;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form .btn-gold {
    font-size: 13px;
  }
}
.section-contact-form .wrapper form .btn-gold:hover {
  color: #7a0505;
  border: 3px solid #f00;
  transition: all 0.4s ease;
}
.section-contact-form .wrapper form textarea {
  width: 100%;
  padding: 30px 0 0 30px;
  min-height: 160px;
  border: 1px solid #8b8b8b;
  background: #141414;
  color: #6e6e6e;
  font-size: 18px;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form textarea {
    margin: 0 0 5px;
    font-size: 13px;
    min-height: 100px;
    padding: 15px 0 0 15px;
  }
}
.section-contact-form .wrapper form textarea:focus {
  border-color: #f00;
  color: #fff;
}
.section-contact-form .wrapper form label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #8b8b8b;
  width: 100%;
  min-height: 70px;
  color: #6e6e6e;
  font-size: 18px;
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form label {
    min-height: 50px;
    font-size: 13px;
    padding: 0 0 0 15px;
    margin: 0 0 10px;
  }
}
.section-contact-form .wrapper form label:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 55px;
  width: 1px;
  height: 35px;
  background-color: #2a2a2a;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form label:after {
    top: 13px;
    height: 25px;
  }
}
.section-contact-form .wrapper form label input {
  display: none;
}
.section-contact-form .wrapper form label svg {
  width: 16px;
  height: 13px;
  margin: 0 20px;
  display: block;
}
.section-contact-form .wrapper form label svg path {
  fill: #f00;
}
.section-contact-form .wrapper form .form-group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 20px;
  position: relative;
}
.section-contact-form .wrapper form .form-group .help-block {
  margin: 5px 0 0;
  color: red;
  font-size: 12px;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form .form-group {
    margin: 0 0 5px;
  }
}
.section-contact-form .wrapper form .form-group i {
  color: #f00;
  display: block;
  position: absolute;
  border-left: 1px solid #2a2a2a;
  padding: 10px 0 10px 20px;
  right: 20px;
  top: 18px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form .form-group i {
    padding: 5px 0 5px 20px;
  }
  .section-contact-form .wrapper form .form-group i {
    top: 11px;
  }
}
.section-contact-form .wrapper form .form-group input {
  padding: 0 0 0 30px;
  background: #141414;
  width: calc(100% - 55px);
  color: #6e6e6e;
  font-size: 18px;
  width: 100%;
  border: 1px solid #8b8b8b;
  min-height: 70px;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form .form-group input {
    min-height: 45px;
    font-size: 13px;
    padding: 0 0 0 15px;
  }
}
.section-contact-form .wrapper form .form-group input:focus {
  border-color: #f00;
  color: #fff;
}
.section-contact-form .wrapper form .form-title {
  font-size: 40px;
  display: flex;
  justify-content: center;
  color: #fff;
  margin: 0 0 45px 0;
}
@media (max-width: 767px) {
  .section-contact-form .wrapper form .form-title {
    font-size: 26px;
    margin: 0 0 20px;
  }
}

.section-contact-map {
  background: #ddd;
  padding: 0 0 145px;
}
@media (max-width: 767px) {
  .section-contact-map {
    padding: 0 0 45px;
  }
}
.section-contact-map .wrapper {
  max-width: 1560px;
}
@media (max-width: 767px) {
  .section-contact-map .wrapper #map {
    height: 300px !important;
  }
}

.section-text {
  background: #ddd;
  padding: 140px 0 70px 0;
}
@media (max-width: 767px) {
  .section-text {
    padding: 45px 0 30px 0;
  }
}
.section-text .wrapper {
  max-width: 1040px;
  margin: 0 auto;
}
.section-text .wrapper p,
.section-text .wrapper p span {
  font-size: 18px !important;
  font-family: "Montserrat" !important;
  color: #000 !important;
  margin: 0 0 30px !important;
  line-height: 29px !important;
  font-weight: 400;
}
.section-text img {
  width: 100% !important;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .section-text .wrapper p,
  .section-text .wrapper p span {
    font-size: 13px !important;
    line-height: 19px !important;
    margin: 0 0 20px;
  }
}
.section-text .wrapper p:nth-last-child(1) {
  margin: 0;
}
.section-text .wrapper span {
  color: #eee;
}
.section-text .wrapper .gold-inner {
  color: #b1965b;
}
.section-text .wrapper a {
  border-bottom: 1px solid #000;
}

.section-text-main {
  background: #ddd;
  padding: 70px 0 0px 0;
}
@media (max-width: 767px) {
  .section-text-main {
    padding: 0;
  }
}
.section-text-main .wrapper {
  max-width: 1560px;
}
.section-text-main .wrapper .row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .section-text-main .wrapper .row [class*=col-]:nth-child(1) {
    order: 2;
  }
  .section-text-main .wrapper .row [class*=col-]:nth-child(2) {
    order: 1;
  }
}
.section-text-main .wrapper .row .text-video {
  position: relative;
}
.section-text-main .wrapper .row .text-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.section-text-main .wrapper .row .text-video img {
  display: block;
  object-fit: cover;
  object-position: center;
}
.section-text-main .wrapper .row .text-video .play-btn {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 20;
}
.section-text-main .wrapper .row .text-video .play-btn img {
  transition: 0.6s;
}
@media (max-width: 767px) {
  .section-text-main .wrapper .row .text-video .play-btn img {
    width: 40px;
  }
}
.section-text-main .wrapper .row .text-video .play-btn img:hover {
  transform: scale(1.2);
}
.section-text-main .wrapper .row p {
  max-width: 515px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 767px) {
  .section-text-main .wrapper .row p {
    margin: 15px 0 0 0;
    font-size: 13px;
  }
}

.default-content {
  background: #ddd;
  padding: 20px 0 130px 0;
  display: flex;
  overflow: hidden;
}
@media (max-width: 767px) {
  .default-content {
    padding: 0px 0 45px 0;
  }
}
.default-content .wrapper .backquote {
  overflow: hidden;
  display: block;
  position: relative;
  padding: 50px 0 0;
}
.default-content .wrapper .backquote:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  background: url(../img/brackets.png);
  width: 64px;
  height: 56px;
}
.default-content .wrapper .backquote:after {
  content: "";
  position: absolute;
  top: 55px;
  left: 90px;
  background: #f00;
  width: 100%;
  height: 3px;
}
.default-content .wrapper .backquote .title {
  padding: 45px 0 0 0;
  font-size: 27px;
  color: #000;
  max-width: 1270px;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  .default-content .wrapper .backquote .title {
    font-size: 15px;
    margin: 0 0 10px;
  }
}
.default-content .wrapper .backquote .subtitle {
  font-size: 14px;
  color: #000;
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .default-content .wrapper .backquote .subtitle {
    font-size: 10px;
    margin: 0 0 40px;
  }
}
.default-content .wrapper .content-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.default-content .wrapper .content-inner h1,
.default-content .wrapper .content-inner h2,
.default-content .wrapper .content-inner h3,
.default-content .wrapper .content-inner h4,
.default-content .wrapper .content-inner h5,
.default-content .wrapper .content-inner h6 {
  color: #000;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h1,
.default-content .wrapper .content-inner h2,
.default-content .wrapper .content-inner h3,
.default-content .wrapper .content-inner h4,
.default-content .wrapper .content-inner h5,
.default-content .wrapper .content-inner h6 {
    margin: 0 0 20px;
  }
}
.default-content .wrapper .content-inner h1 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h1 {
    font-size: 30px;
  }
}
.default-content .wrapper .content-inner h2 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h2 {
    font-size: 25px;
  }
}
.default-content .wrapper .content-inner h3 {
  font-size: 25px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h3 {
    font-size: 20px;
  }
}
.default-content .wrapper .content-inner h4 {
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h4 {
    font-size: 18px;
  }
}
.default-content .wrapper .content-inner h5 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h5 {
    font-size: 18px;
  }
}
.default-content .wrapper .content-inner h6 {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner h6 {
    font-size: 15px;
  }
}
.default-content .wrapper .content-inner ol {
  margin: 0 0 115px 0;
  list-style: none;
  counter-reset: my-awesome-counter;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner ol {
    margin: 0 0 50px 0;
  }
}
.default-content .wrapper .content-inner ol li {
  font-size: 18px;
  counter-increment: my-awesome-counter;
  color: #000;
  margin: 0 0 20px;
  padding: 0 0 0 50px;
  position: relative;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner ol li {
    font-size: 13px;
    margin: 0 0 10px;
  }
}
.default-content .wrapper .content-inner ol li:nth-last-child(1) {
  margin: 0;
}
.default-content .wrapper .content-inner ol li:before {
  content: "0" counter(my-awesome-counter) ".";
  font-size: 18px;
  color: #f00;
  position: absolute;
  top: 0;
  left: 0;
}
.default-content .wrapper .content-inner ul {
  margin: 0 0 65px 15px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner ul {
    margin: 0 0 50px 15px;
  }
}
.default-content .wrapper .content-inner ul li {
  position: relative;
  font-size: 18px;
  color: #000;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
@media (max-width: 767px) {
  .default-content .wrapper .content-inner ul li {
    font-size: 13px;
    margin: 0 0 10px;
  }
}
.default-content .wrapper .content-inner ul li:nth-last-child(1) {
  margin: 0;
}
.default-content .wrapper .content-inner ul li:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: #f00;
  transform: translate(-50%, 50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.section-main {
  position: relative;
}
.section-main .section__sliderNav {
  position: absolute;
  left: 63px;
  bottom: 71px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .section-main .section__sliderNav {
    left: 15px;
    bottom: 35px;
  }
}
.section-main .section__sliderNav .section__sliderNav--arrows .prev {
  transform: rotate(180deg);
  margin: 0 17px 0 0;
}
.section-main .section__sliderNav .section__sliderNav--arrows .prev img {
  display: block;
}
.section-main .section__sliderNav .section__sliderNav--arrows .prev img:hover {
  filter: none;
}
.section-main .section__sliderNav .section__sliderNav--arrows .next img {
  display: block;
}
.section-main .section__sliderNav .section__sliderNav--arrows .next img:hover {
  filter: none;
}
.section-main .section__sliderNav .section__sliderNav--arrows button {
  padding: 0;
}
.section-main .section__sliderNav .section__sliderNav--arrows button img {
  filter: brightness(0) invert(1);
}
.section-main .section__sliderNav .section__sliderNav--slides {
  margin: 0 110px 0 0;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
}
.section-main .section__sliderNav .section__sliderNav--slides:after {
  content: "";
  position: absolute;
  width: 81px;
  height: 1px;
  top: 25px;
  left: 105px;
  background: #fff;
}
.section-main .section__sliderNav .section__sliderNav--slides .from {
  font-size: 36px;
  color: #fff;
  margin: 0 10px 0 0;
}
.section-main .section__sliderNav .section__sliderNav--slides span {
  color: #fff;
  font-size: 36px;
  margin: 0 5px 0 0;
}
.section-main .section__sliderNav .section__sliderNav--slides .to {
  color: #ddd;
  font-size: 18px;
}
.section-main .slider-default .slider-item {
  position: relative;
  min-height: calc(100vh - 125px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 71px;
}
.section-main .slider-default .slider-item:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.65));
}
@media (max-width: 767px) {
  .section-main .slider-default .slider-item {
    padding: 150px 15px 160px;
  }
}
.section-main .slider-default .slider-item p {
  color: #fff;
  font-size: 40px;
  margin: 0 0 55px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .section-main .slider-default .slider-item p {
    font-size: 30px;
    margin: 0 0 63px;
  }
}
.section-main .slider-default .slider-item .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  width: 220px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .section-main .slider-default .slider-item .btn-white {
    width: 100%;
  }
}
.section-main .play-btn {
  position: absolute;
  right: 60px;
  bottom: 72px;
}
@media (max-width: 767px) {
  .section-main .play-btn {
    right: 15px;
    bottom: 35px;
  }
}
.section-main .play-btn img {
  transition: 0.6s;
}
@media (max-width: 767px) {
  .section-main .play-btn img {
    width: 40px;
  }
}
.section-main .play-btn img:hover {
  transform: scale(1.2);
}
.section-main.inner .slider-item {
  padding-bottom: 95px;
}
@media (max-width: 767px) {
  .section-main.inner .slider-item {
    padding: 130px 15px 160px;
  }
}
.section-main.inner .slider-item p {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .section-main.inner .slider-item p {
    margin: 0 0 10px;
  }
}
.section-main.inner .slider-item span {
  font-size: 25px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .section-main.inner .slider-item span {
    font-size: 18px;
  }
}
.section-main.text .slider-item {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .section-main.text .slider-item {
    padding: 130px 15px 160px;
  }
}
.section-main.text .slider-item p {
  margin: 0;
}

.section-main-about {
  background: #fff;
}
.section-main-about .wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  border-left: 1px solid #aaa;
  position: relative;
  border-right: 1px solid #aaa;
}
.section-main-about .wrapper .row {
  position: relative;
}
.section-main-about .wrapper .row:before {
  content: '';
  left: -1.5px;
  width: 3px;
  height: 125px;
  background: red;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-main-about .wrapper:before {
  content: '';
  right: -1.5px;
  width: 3px;
  height: 60px;
  background: red;
  position: absolute;
  top: -30px;
}
.section-main-about .wrapper:after {
  content: '';
  right: -1.5px;
  width: 3px;
  height: 60px;
  background: red;
  position: absolute;
  bottom: -30px;
  z-index: 4;
}
@media (max-width: 991px) {
  .section-main-about {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .section-main-about .wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-main-about .wrapper {
  max-width: 1235px;
}
.section-main-about .wrapper .logo {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.section-main-about .wrapper .logo span img {
  display: block;
}
@media (max-width: 767px) {
  .section-main-about .wrapper .logo span img {
    max-width: 215px;
  }
}
.section-main-about .wrapper .logo p {
  font-size: 40px;
  color: #000;
  margin: 0 0 30px;
}
.section-main-about .wrapper .main-text {
  max-width: 950px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section-main-about .wrapper .main-text {
    margin: 0;
  }
  .section-main-about .wrapper .logo p {
    font-size: 20px;
    margin: 0 0 15px;
    text-align: left;
  }
}
.section-main-about .wrapper .main-text p {
  font-size: 18px;
  margin: 0 0 30px;
  line-height: 29px;
  text-align: center;
  color: #aaa;
}
.section-main-about .play-btn {
  margin: 85px auto 0;
  display: table;
  position: relative;
}
.section-main-about .play-btn img {
  position: relative;
  z-index: 2;
}
.section-main-about .play-btn:after {
  content: 'AJD Stairs';
  font-size: 200px;
  line-height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #000;
  opacity: .1;
  white-space: nowrap;
  z-index: 0;
}
@media (max-width: 767px) {
  .section-main-about .wrapper .main-text p {
    font-size: 14px;
    line-height: 19px;
    margin: 0 0 15px;
  }
  .section-main-about .play-btn:after {
    font-size: 95px;
    line-height: 95px;
  }
  .section-main-about .play-btn {
    margin: 35px auto 0;
  }
  .section-main-about .play-btn img {
    max-width: 40px;
  }
}
.section-main-about .wrapper .main-text p:nth-last-child(1) {
  margin: 0;
}

.section-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  background: transparent !important;
}
/*.section-gallery:nth-child(even):after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.89);
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}
.section-gallery:nth-child(odd):after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.89);
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}*/
.section-gallery:nth-child(even) {
  justify-content: flex-start;
}
.section-gallery:nth-child(odd) {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .section-gallery {
    flex-wrap: wrap;
  }
}
.section-gallery .gallery-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.89);
  min-height: 850px;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item {
    width: 100%;
    order: 2;
    background: #030303 !important;
  }
}
.section-gallery .gallery-item.w-images {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  background: transparent;
  z-index: 0;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item.w-images {
    order: 1 !important;
  }
}
.section-gallery .gallery-item.w-images .slider-item img {
  width: 100%;
  height: 850px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1141px) {
  .section-gallery .gallery-item.w-images .slider-item img {
    height: 650px;
  }
  .section-gallery .gallery-item {
    min-height: 650px;
  }
}
@media (max-width: 767px) {
  .section-gallery .gallery-item.w-images .slider-item img {
    height: 320px;
  }
  .section-gallery .gallery-item {
    min-height: initial;
  }
  .section-gallery .gallery-item.w-images {
    min-height: 320px;
    z-index: 2;
    position: relative;
  }
}
.section-gallery .gallery-item.w-images .section__sliderNav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-gallery:nth-child(odd) .gallery-item.w-images .section__sliderNav {
  left: 0;
  right: auto;
}
.section-gallery .gallery-item.w-images .section__sliderNav img {
  filter: grayscale(1);
  opacity: 0.6;
}
.section-gallery .gallery-item.w-images .section__sliderNav--arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  min-width: 174px;
  background: #fff;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item.w-images .section__sliderNav--arrows {
    min-width: 150px;
    min-height: 60px;
  }
}
.section-gallery .gallery-item.w-images .section__sliderNav--arrows p {
  font-size: 30px;
  margin: 0 16px;
  color: #ddd;
}
.section-gallery .gallery-item.w-images .section__sliderNav--arrows .prev img {
  transform: rotate(-180deg);
}
.section-gallery .gallery-item.w-images .section__sliderNav--arrows button:hover img {
  filter: none;
}
.section-gallery .gallery-item .gallery-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 15px;
  z-index: 3;
  position: relative;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item .gallery-content {
    padding: 40px 15px 60px;
    max-width: 100%;
  }
}
.section-gallery .gallery-item .gallery-content .title {
  font-size: 40px;
  color: #ffffff;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item .gallery-content .title {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
.section-gallery .gallery-item .gallery-content .descr {
  margin: 0 0 45px;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item .gallery-content .descr {
    margin: 0 0 25px;
  }
}
.section-gallery .gallery-item .gallery-content .descr p {
  font-style: 16px;
  color: #a7aaaa;
  line-height: 25px;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item .gallery-content .descr p {
    font-size: 13px;
  }
}
.section-gallery .gallery-item .gallery-content .descr p:nth-last-child(1) {
  margin: 0;
}
@media (max-width: 767px) {
  .section-gallery .gallery-item .gallery-content .btn {
    min-width: 100%;
  }
}

.section-inner-gallery {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 15px 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ddd;
}
@media (max-width: 767px) {
  .section-inner-gallery {
    flex-wrap: wrap;
    padding: 40px 15px;
  }
}
.section-inner-gallery .gallery-slider {
  display: block;
  max-width: 650px;
}
.section-inner-gallery .gallery-img {
  width: 100%;
}
.section-inner-gallery .gallery-img img {
  display: block;
  height: 650px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}
@media (max-width: 1430px) {
  .section-inner-gallery .gallery-slider {
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .section-inner-gallery .gallery-slider {
    max-width: 100%;
    width: 100%;
    height: 320px;
    margin: 0 0 35px;
    overflow: hidden;
  }
}
.section-inner-gallery .gallery-text {
  max-width: 850px;
  padding: 0 0 0 135px;
}
@media (max-width: 1430px) {
  .section-inner-gallery .gallery-text {
    padding: 0 0 0 70px;
  }
}
.section-inner-gallery .gallery-text p {
  font-size: 18px;
  color: #000;
  line-height: 28px;
}
@media (max-width: 1141px) {
  .section-inner-gallery .gallery-text {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .section-inner-gallery .gallery-text {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .section-inner-gallery .gallery-text p {
    font-size: 13px;
    line-height: 19px;
  }
}
.section-inner-gallery .section__sliderNav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 60px 0 0;
}
@media (max-width: 767px) {
  .section-inner-gallery .section__sliderNav {
    margin: 30px 0 0;
  }
}
.section-inner-gallery .section__sliderNav--arrows .prev {
  transform: rotate(180deg);
  margin: 0 17px 0 0;
}
.section-inner-gallery .section__sliderNav--arrows .prev img {
  display: block;
}
.section-inner-gallery .section__sliderNav--arrows .prev img:hover {
  filter: none;
}
.section-inner-gallery .section__sliderNav--arrows .next img {
  display: block;
}
.section-inner-gallery .section__sliderNav--arrows .next img:hover {
  filter: none;
}
.section-inner-gallery .section__sliderNav--arrows button {
  padding: 0;
}
.section-inner-gallery .section__sliderNav--arrows button img {
  filter: brightness(0) invert(1);
}
.section-inner-gallery .section__sliderNav--slides {
  margin: 0 110px 0 0;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
}
.section-inner-gallery .section__sliderNav--slides:after {
  content: "";
  position: absolute;
  width: 81px;
  height: 1px;
  top: 25px;
  left: 105px;
  background: #000;
}
.section-inner-gallery .section__sliderNav--slides .from {
  font-size: 36px;
  color: #fff;
  margin: 0 10px 0 0;
}
.section-inner-gallery .section__sliderNav--slides span {
  color: #fff;
  font-size: 36px;
  margin: 0 5px 0 0;
}
.section-inner-gallery .section__sliderNav--slides .to {
  color: #000;
  font-size: 18px;
}

.content {
  background: #ddd;
}

.mob-nav {
  position: absolute;
  left: 0;
  top: 100%;
  transition: all 0.3s ease;
  max-width: 100%;
  background: #6e6f70;
  overflow: auto;
  height: calc(100vh - 103px);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex-direction: column;
  width: 100%;
  z-index: 5;
  padding: 40px 0 0;
}
.mob-nav .mob-contacts {
  border-top: 1px solid #f00;
  width: 100%;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .mob-nav .mob-contacts {
    padding: 15px;
  }
}
.mob-nav .mob-contacts .mob-phone,
.mob-nav .mob-contacts .mob-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .mob-nav .mob-contacts .mob-phone,
  .mob-nav .mob-contacts .mob-mail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.mob-nav .mob-contacts .mob-phone:hover,
.mob-nav .mob-contacts .mob-mail:hover {
  color: #f00;
  transition: all 0.3s ease;
}
.mob-nav .mob-contacts .mob-phone span,
.mob-nav .mob-contacts .mob-mail span {
  margin: 0 15px 0 0;
}
.mob-nav .mob-contacts .mob-socials {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mob-nav .mob-contacts .mob-socials li {
  margin: 0 20px 0 0;
}
.mob-nav .mob-contacts .mob-socials li a i {
  color: #f00;
  font-size: 25px;
  display: block;
}
.mob-nav .mob-contacts .mob-socials li a i:hover {
  color: #fff;
  transition: all 0.3s ease;
}
.mob-nav::-webkit-scrollbar {
  background: #ddd;
  border-radius: 2px;
  width: 3px;
}
.mob-nav::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 2px;
  width: 3px;
}
.mob-nav::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 2px;
  width: 3px;
}
.mob-nav.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mob-nav ol {
  counter-reset: counter;
}
.mob-nav ol li {
  margin: 0 0 50px;
  width: 100%;
}
.mob-nav ol li a:before {
  content: "0" counter(counter);
  counter-increment: counter; 
  font-size: 18px;
  color: #f00;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mob-nav ol li a {
  font-size: 30px;
  color: #fff;
  width: 100%;
  display: block;
  padding: 0 15px;
  text-align: left;
  position: relative;
  padding: 0 0 0 100px;
  right: 0;
}
.mob-nav ol li a:hover {
  color: #f00;
}
.mob-nav ol li a:after {
  content: '';
  width: 0;
  height: 1px;
  background: #808080;
  right: calc(100% - 120px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.mob-nav ol li a:hover {
  padding: 0 0 0 130px;
}
.mob-nav ol li a:hover:after {
  width: 89px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-height: 750px) {
  .mob-nav {
    justify-content: flex-start;
  }
}
.mob-nav .socials {
  display: none;
}
@media screen and (max-width: 767px) {
  .mob-nav .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
    padding: 25px 0;
    width: 100%;
    border-top: 1px solid #131414;
  }
  .mob-nav .socials ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mob-nav .socials i {
    font-size: 15px;
    color: #f00;
  }
  .mob-nav .socials li {
    margin: 0 25px;
  }
  .mob-nav {
    padding: 25px 0 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: calc(100vh - 66px);
  }
  .mob-nav ol li {
    padding: 0 15px;
    margin: 0 0 20px;
  }
  .mob-nav ol li a  {
    font-size: 20px;
    padding: 0 0 0 40px;
  }
  .mob-nav ol li a:before {
    font-size: 14px;
  }
  .mob-nav ol li a:hover {
    padding: 0 0 0 50px;
  }
  .mob-nav ol li a:after {
    right: calc(100% - 45px);
  }
  .mob-nav ol li a:hover:after {
    width: 20px;
  }
}
footer {
  background: #fff;
  position: relative;
  padding: 75px 0;
}
@media (max-width: 991px) {
  footer {
    padding: 75px 0 50px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0;
    border-top: 1px solid #202121;
  }
}
footer .wrapper {
  max-width: 1720px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .wrapper .footer-logo img {
  filter: brightness(1) invert(1);
  max-width: 75px;
}
footer .wrapper .contact-elems {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 125px);
}
@media (max-width: 1430px) {
  footer .wrapper .contact-elems {
    width: 100%;
    margin: 10px 0 0;
  }
}
@media (max-width: 991px) {
  footer .wrapper .contact-elems {
    flex-wrap: wrap;
  }
}
footer .wrapper .contact-elem {
  color: #000;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  padding: 0 0 0 25px;
}
@media (max-width: 991px) {
  footer .wrapper .contact-elem {
    width: 50%;
    margin: 0 0 25px;
  }
}
@media (max-width: 767px) {
  footer .wrapper .contact-elem {
    width: 100%;
  }
}
footer .wrapper .contact-elem i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #f00;
}
@media screen and (max-width: 1100px) {
  footer .wrapper .contact-elem {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  footer .wrapper .contact-elem {
    font-size: 12px;
  }
}
footer .wrapper .contact-elem p {
  letter-spacing: 1.6px;
}
footer .wrapper .contact-elem a:hover {
  opacity: 0.7;
}
footer .wrapper .policy {
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  footer .wrapper .policy {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  footer .wrapper .policy {
    font-size: 12px;
    text-transform: none;
  }
}
footer .wrapper .policy a {
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  color: #000;
}
footer .wrapper .policy a i {
  transition: all 0.3s ease;
  right: 0;
  color: #f00;
  position: relative;
}
footer .wrapper .policy a:hover i {
  right: -3px;
  color: #cb8b3e;
}
footer .wrapper img {
  display: block;
}
@media (max-width: 991px) {
  footer .footer-logo {
    margin: 0 auto 15px;
  }
}
.carousel:not(.slick-initialized) .slick-slide {
  display:none
}
.carousel:not(.slick-initialized) .slick-slide:nth-child(1){
  display:block
}
.section-news {
  padding: 120px 0 100px;
}
.section-news .wrapper {
  max-width: 1560px;
}
.section-news .news-item {
  margin: 0 0 30px;
}
.section-news .news-item img {
  eight: 390px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.section-news .news-item .news-img {
  display: table;
  margin: 0 0 15px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.section-news .news-item .news-img .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}
.section-news .news-item .news-img:After {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.section-news .news-item:hover .news-img:after {
  opacity: 1;
  visibility: visible;
}
.section-news .news-item:hover .btn {
  opacity: 1;
  visibility: visible;
}
.section-news .news-item:hover .news-img img {
  transform: scale(1.1);
}
.section-news .news-item p.date {
  color: #f00;
  margin: 0 0 15px;
  font-family: "Montserrat";
  font-weight: 500;
}
.section-news .news-item .news-title {
  font-size: 20px;
  color: #fff;
  display: block;
  margin: 0 0 25px;
  font-family: "Montserrat";
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section-news .news-item .description {
  font-size: 18px;
  color: #000;
  margin: 0 0 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.section-news .news-item .btn {
  max-width: 220px;
}
.slick-slide {
  outline: none;
}
@media (max-width:  767px) {
  .section-news {
    padding: 50px 0 20px;
  }
  .section-news .news-item .news-title {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .section-news .news-item .description {
    font-size: 14px;
    margin: 0 0 15px;
  }
  .section-news .news-item img {
    max-height: 280px;
  }
  .section-news .news-item .news-img {
    margin: 0 0 15px;
  }
}
.modal .modal-dialog {
  max-width: 700px;
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 0;
}

.modal .close {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  z-index: 3;
}

.cookies {
  background-color: #6e6f70;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 18px rgba(0,0,0,.2);
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

.cookies .cookie-left {
  width: calc(100% - 500px);
  padding: 0 60px 0 0;
}

.cookies .cookie-left .title {
  font-size: 24px;
  color: #000;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 0 0 15px;
}

.cookies .buttons {
  max-width: 500px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.cookies .cookie-left span {
  font-size: 16px;
  line-height: 25px;
  color: #000;
}

.cookies .btn:hover {
  color: #7a0505;
  border: 3px solid #f00;
  transition: all 0.4s ease;
}

.cookies .settings {
  font-size: 18px;
  color: #000;
  text-decoration: underline;
}

.cookies .settings:hover {
  text-decoration: none;
}

.cookie-modal .modal-head {
  height: 50px;
  padding: 10px 30px 10px;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.cookie-modal .modal-body {
  padding: 20px 30px;
  border-bottom: 1px solid #e9e9e9;
  max-height: 300px;
  overflow-y: auto;
}

.cookie-modal .modal-body .title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
}

.cookie-modal .modal-body .description {
  font-size: 16px;
  margin: 0 0 10px;
  line-height: 20px;
}

.btn-black {
  min-height: 35px;
  min-width: 120px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  background: transparent;
  border: 1px solid #ddd;
}

.cookie-modal .modal-body .js-allow {
  margin: 0 0 20px;
}

.btn-black:hover {
  background: #ddd;
  color: #fff;
}

.cookie-modal .modal-body .collapse-title {
  border-bottom: 1px solid #d8d8d8;
  min-height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: bold;
}

.cookie-modal .modal-body .collapse-title span {
  color: #3860be;
}

.cookie-modal .plus-minus {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
}

.cookie-modal .plus-minus span:nth-child(1) {
  height: 10px;
  width: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ddd;
  transform: translate(-50%, -50%);
}

.cookie-modal .left-side {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.cookie-modal .plus-minus span:nth-child(2) {
  width: 10px;
  height: 2px;
  position: absolute;
  left: 50%;
  background: #ddd;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cookie-modal .collapse-title .plus-minus span:nth-child(1) {
  background: transparent;
}

.cookie-modal .left-side.collapsed .plus-minus span:nth-child(1) {
  background: #ddd;
}

.cookie-modal .left-side {
  width: calc(100% - 120px);
}

.cookie-modal .left-side.collapsed {
  border-bottom: 1px solid transparent;
}

.cookie-modal .manage-item {
  border: 1px solid #d8d8d8;
}

.cookie-modal .manage-item .collapsing p,
.cookie-modal .manage-item .collapse p {
  padding: 10px 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #f00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.form-product-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
}

.form-product-heading p,
.form-product-heading span {
  color: #fff;
  margin: 0 5px;
  font-size: 18px;
  display: inline-flex;
}

.form-product-heading p {
  font-weight: 700;
}

.success {
  font-size: 18px;
  text-align: center;
  display: block;
  color: green;
  margin: 25px 0 0;
}

.error-404 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 30px 0;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.error-404 .error-404-text .title {
  font-size: 20rem;
  color: #333;
  font-weight: 700;
  line-height: 1;
}
.error-404 .error-404-text .subtitle {
  font-size: 2.8125rem;
  font-weight: 600;
}
.error-404 .error-404-text .descr {
  font-size: 1.5625rem;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}
.error-404 .btn.btn-white {
  margin-top: 30px;
  border-color: #ddd;
  color: #ddd;
}
.error-404 .btn.btn-white:hover {
  color: #FFF;
  background: #ddd;
}
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.pagination ul li {
  margin: 0 2.5px;
}
.pagination ul li a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #000;
}
.pagination ul li a:hover,
.pagination ul li.current a {
  background: #000;
  color: #fff;
}
.pagination ul li.disabled {
  pointer-events: none;
  opacity: 0.7;
}
.phone-btn {
  position: fixed;
  right: 50px;
  bottom: 90px;
  z-index: 9;
  width: 50px;
  height: 50px;
  border: 2px solid #B40708;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-btn:hover {
  background: #B40708;
}
.phone-btn:hover i {
  color: #fff;
}
.phone-btn i {
  color: #B40708;
}
@media (max-width: 767px) {
  .error-404 {
    min-height: calc(100vh - 180px);
  }
  .error-404 .error-404-text .title {
    font-size: 15rem;
    text-align: center;
    width: 100%;
  }
  .error-404 .error-404-text .subtitle {
    font-size: 2.1125rem;
    text-align: center;
  }
  .error-404 .error-404-text .descr {
    text-align: center;
  }
  .error-404 .btn.btn-white {
    margin: 30px auto 0;
  }
  .pagination ul li a {
    width: 25px;
    font-size: 14px;
  }
  .phone-btn {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 30px;
    z-index: 5;
  }
}
@media (max-width: 575px) {
  .error-404 {
    min-height: calc(100vh - 180px);
  }
  .error-404 .error-404-text .title {
    font-size: 9rem;
  }
  .error-404 .error-404-text .subtitle {
    font-size: 1.9rem;
  }
  .error-404 .error-404-text .descr {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  .cookies {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
  }
  .cookies .cookie-left {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
  }
  .cookies .cookie-left .title {
    font-size: 18px;
  }
  .cookies .cookie-left span {
    font-size: 14px;
  }
  .cookies .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cookies .settings {
    font-size: 16px;
    margin: 0 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .cookie-modal .modal-body .title {
    font-size: 16px;
  }
  .cookie-modal .modal-body .description {
    font-size: 14px;
  }
  .cookie-modal .btn-black {
    margin: 5px 0;
    min-width: 100%;
  }
  .cookie-modal .modal-body {
    padding: 10px 5px;
  }
  .cookie-modal .left-side,
  .cookie-modal .left-side.collapsed {
    font-size: 12px;
  }
  .cookie-modal .modal-body .collapse-title span {
    font-size: 10px;
  }
  .cookie-modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
  }
}

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