html {
  scroll-behavior: smooth;
  background: #000;
}

body.no-scroll {
  overflow: hidden;
}

.main.no-scroll {
  overflow: hidden;
}

.page-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  color: #ffffff;
}

@font-face {
  font-family: "Cygnito Mono";
  src: url("../fonts/Cygnito-Mono.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Editorial New";
  src: url("../fonts/EditorialNew-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Cygnito Mono";
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}

.text-bg {
  color: #000;
  background: #fff;
  display: inline-block !important;
  width: auto;
  line-height: 90%;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  border: none;
  cursor: pointer;
}

body,
html {
  width: 100%;
  height: 100%;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
}

.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
  background: none;
}

.clearfix {
  clear: both;
}

.row {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 15px;
  margin: auto;
}

.container-full {
  width: 100%;
  max-width: 1500px;
  padding: 0 40px;
  margin: auto;
}

.container-text {
  width: 100%;
  max-width: 850px;
  padding: 0 20px;
  margin: auto;
}

.row-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.indent {
  padding: 100px 0;
}

.indent-sm {
  padding: 60px 0;
}

.indent-top {
  padding-top: 100px;
}

.indent-bottom {
  padding-bottom: 100px;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .container-full {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .row-grid-4,
  .row-grid-3,
  .row-grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
  }
  .row-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .indent {
    padding: 60px 0;
  }
  .indent-top {
    padding-top: 60px;
  }
  .indent-bottom {
    padding-bottom: 60px;
  }
}
.btn-arrow {
  color: #fff !important;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.hero-video {
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -3;
}
.hero-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  margin: auto;
  padding: 0 20px;
}
.hero-info img {
  max-height: 190px;
  max-width: 250px;
}
.hero-info .item-left,
.hero-info .item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
}
.hero-info .item-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.hero-info .item-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.hero .so-main-flex {
  cursor: pointer;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
}
.hero .so-on, .hero .so-off {
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 16px;
}
.hero .so-on:before, .hero .so-off:before {
  content: "";
  width: 100%;
  height: 85%;
  background-color: #fff;
  left: 0;
  top: -3px;
  opacity: 0;
  position: absolute;
  z-index: -1;
  padding-top: 2px;
}
.hero .so-on.active, .hero .so-off.active {
  color: #000;
}
.hero .so-on.active:before, .hero .so-off.active:before {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .hero .so-main-flex {
    display: none;
  }
  .hero-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-info .item-center {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero-info .item-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .hero-info .item-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .hero-info .item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-info .item-center img {
    max-height: 115px;
    max-width: 100px;
  }
  .hero-info {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding-bottom: 80px;
    gap: 60px;
  }
}
.gallery {
  padding-top: 50px;
}
.gallery-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 34px;
}
.gallery-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 40px;
}
.gallery-row.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.gallery-row.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-row.start-end {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gallery-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) / 3);
          flex: 0 0 calc((100% - 80px) / 3);
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item.wide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) / 3 * 2 + 40px);
          flex: 0 0 calc((100% - 80px) / 3 * 2 + 40px);
}
.gallery-item.shift-top {
  margin-top: -15%;
}

@media screen and (max-width: 1023px) {
  .gallery-row {
    gap: 20px;
    margin-bottom: 20px;
  }
  .gallery-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
  }
  .gallery-item.wide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3 * 2 + 40px);
            flex: 0 0 calc((100% - 40px) / 3 * 2 + 40px);
  }
  .gallery-item.shift-top {
    margin-top: -10%;
  }
}
@media screen and (max-width: 767px) {
  .gallery-title {
    display: none;
  }
  .gallery-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .gallery-row.end {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-row.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-row.start-end {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .gallery-item.wide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .gallery-item.shift-top {
    margin-top: 0;
  }
}
.contacts {
  padding: 145px 0;
}
.contacts .row {
  text-align: center;
}
.contacts .title {
  font-family: "Editorial New";
  font-size: 85px;
  line-height: 110%;
}
.contacts-info {
  display: inline-block;
  text-align: left;
}
.contacts-info a,
.contacts-info p {
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.contacts-info .text {
  margin-top: 20px;
  padding-left: 140px;
}
.contacts-info a {
  text-decoration: underline;
}
.contacts .text-group02 {
  margin-top: 85px;
  margin-bottom: 20px;
}
.contacts .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts .item span {
  min-width: 110px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .contacts {
    padding: 80px 0;
  }
  .contacts .desc {
    display: none !important;
  }
  .contacts-info {
    text-align: center;
  }
  .contacts-info .text {
    padding-left: 0;
    text-align: left;
    display: inline-block;
  }
  .contacts .text-group02 {
    margin-top: 60px;
  }
}