@charset "UTF-8";
/* Fonts ------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap");
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Inter-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
}
:root {
  --text-color: #fff;
  --bg-color: #000;
  --secondary-bg-color: rgba(0, 0, 0, .1);
  --font-primary: Inter, sans-serif;
  --font-secondary: Inter, sans-serif;
  --hero-opacity: 100;
  --font-size-base: 14px;
  --line-height-base: 1.7;
  --font-size-xl-max: 140;
  --font-size-xl-min: 50;
  --font-size-xl: calc(var(--font-size-xl-min) * 1px + (var(--font-size-xl-max) - var(--font-size-xl-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h1-max: 78;
  --font-size-h1-min: 50;
  --font-size-h1: calc(var(--font-size-h1-min) * 1px + (var(--font-size-h1-max) - var(--font-size-h1-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h2-max: 58;
  --font-size-h2-min: 40;
  --font-size-h2: calc(var(--font-size-h2-min) * 1px + (var(--font-size-h2-max) - var(--font-size-h2-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h3-max: 44;
  --font-size-h3-min: 30;
  --font-size-h3: calc(var(--font-size-h3-min) * 1px + (var(--font-size-h3-max) - var(--font-size-h3-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h4-max: 32;
  --font-size-h4-min: 24;
  --font-size-h4: calc(var(--font-size-h4-min) * 1px + (var(--font-size-h4-max) - var(--font-size-h4-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h5-max: 24;
  --font-size-h5-min: 18;
  --font-size-h5: calc(var(--font-size-h5-min) * 1px + (var(--font-size-h5-max) - var(--font-size-h5-min)) * ((100vw - 320px) / (1440 - 320)));
  --font-size-h6-max: 18;
  --font-size-h6-min: 14;
  --font-size-h6: calc(var(--font-size-h6-min) * 1px + (var(--font-size-h6-max) - var(--font-size-h6-min)) * ((100vw - 320px) / (1440 - 320)));
}

.font-size-x2 {
  font-size: var(--font-size-h3);
}

.font-size-h4 {
  font-size: var(--font-size-h4);
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-primary);
}

.transition-fade {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  /* outline: none; */
}

a:focus,
a:active {
  /* outline: none; */
}

html,
body {
  height: 100%;
  min-width: 320px;
  /* overflow: hidden; */
}

body {
  font-size: 14px;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Inter";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
}

.page {
  height: 100%;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 35px 4vw;
  z-index: 2;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}
.header.hidden {
  opacity: 0;
  pointer-events: none;
}
.header .logo {
  position: relative;
  z-index: 999;
  width: calc(200px + 40 * (100vw - 320px) / 1600);
}
.header .logo img {
  width: calc(200px + 40 * (100vw - 320px) / 1600);
}
.header .menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: calc(15px + 5 * (100vw - 900px) / 1600);
  z-index: 999;
}
.header-nav {
  margin-top: 6px;
}
.header-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav .menu-item {
  position: relative;
  margin-left: 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-nav .menu .current-menu-item > a::after,
.header-nav .menu .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  margin-top: 2px;
  background-color: #fff;
  -webkit-transition: right 0.3s ease-out, left 0.3s ease-out;
  transition: right 0.3s ease-out, left 0.3s ease-out;
}
.header-nav .menu .current-menu-item > a:hover::after,
.header-nav .menu .current_page_item > a:hover::after {
  right: 100%;
  left: 0;
}
.header-nav .menu a {
  position: relative;
  text-decoration: none;
}
.header-nav .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  margin-top: 2px;
  background-color: #fff;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.header-nav .menu a:hover::after {
  right: 0;
}
.header-nav .sub-menu {
  display: none;
}
.header-nav .menu li:hover > .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: transparent;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.header-nav .menu .sub-menu li {
  padding-top: 10px;
  margin-left: 0;
}
.header-nav .my-custom-opacity:hover ~ .my-custom-opacity {
  opacity: 0.5;
}
.header-nav .previous-item {
  opacity: 0.5;
}
.header .social-nav {
  margin-left: 40px;
}
.header .social-nav svg {
  fill: #fff;
}
.header .social-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .burger-menu {
  display: none;
}
.header .burger-menu.active .burger-menu__line:first-child {
  -webkit-transform: rotate(45deg) translate(3px, 3px);
      -ms-transform: rotate(45deg) translate(3px, 3px);
          transform: rotate(45deg) translate(3px, 3px);
}
.header .burger-menu.active .burger-menu__line:last-child {
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
      -ms-transform: rotate(-45deg) translate(2px, -2px);
          transform: rotate(-45deg) translate(2px, -2px);
}
@media (max-width: 960px) {
  .header .header {
    padding: 10px 1vw;
  }
  .header .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-top: calc(15px + 70 * (100vw - 900px) / 1600);
  }
  .header .burger-menu.active {
    width: 20px;
    height: 15px;
  }
  .header .burger-menu__line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 4px;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    z-index: 999;
  }
  .header .menu-wrap {
    position: fixed;
    top: 0;
    margin-top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px 30px 30px 30px;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .header .menu-wrap.show {
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header .menu-wrap.show .header-nav .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .menu-wrap.show .header-nav .menu-item {
    margin-left: 0;
  }
  .header .menu-wrap.show .header-nav .menu .my-custom-opacity {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: 15px;
  }
  .header .menu-wrap.show .social-nav {
    margin-left: 0;
  }
  .header .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
  }
  .header .sub-menu li.menu-item {
    font-size: 30px;
    margin-right: 20px;
    position: relative;
  }
  .header .sub-menu li.menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    margin-top: 2px;
    background-color: #fff;
  }
}

.container-contacts {
  padding: 0 5vw;
}
.container-contacts.container {
  max-width: 100%;
}

.contact-form-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-top: 100px;
}
.contact-form-custom-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-form-custom-inputs p {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
@media (max-width: 576px) {
  .contact-form-custom-inputs p {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.contact-form-custom-inputs select {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form-custom-inputs select:focus, .contact-form-custom-inputs select:active {
  outline: none;
}
.contact-form-custom-inputs select option {
  background: #000;
}
.contact-form-custom button, .contact-form-custom input[type=button], .contact-form-custom input[type=submit] {
  cursor: pointer;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.contact-form-custom button, .contact-form-custom input, .contact-form-custom select, .contact-form-custom textarea {
  max-width: 100%;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.contact-form-custom input[type=text], .contact-form-custom input[type=email], .contact-form-custom input[type=tel], .contact-form-custom textarea {
  padding: 10px 0;
  width: 100%;
  color: #fff;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  background: none;
  -webkit-transition: border 0.5s ease;
  transition: border 0.5s ease;
}
.contact-form-custom input[type=text]:focus, .contact-form-custom input[type=email]:focus, .contact-form-custom input[type=tel]:focus, .contact-form-custom textarea:focus {
  outline: none;
}

.swiper {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-slide video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-slide h2 {
  padding-left: calc(90px + 200 * (100vw - 320px) / 1600);
  position: absolute;
  font-size: var(--font-size-xl);
  font-weight: 700;
  width: 100vw;
}
.swiper-slide-next h2 {
  -webkit-transform: translate3d(-20%, 0px, 0px);
          transform: translate3d(-20%, 0px, 0px);
}
.swiper-slide-next h2 a {
  color: transparent;
  -webkit-text-stroke: 2px white;
}

.page-title {
  text-align: center;
  font-size: 48px;
  padding: 50px 0;
}

.width-text-works {
  max-width: 900px;
  margin: 0 auto;
}

.works-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 815px) {
  .works-wrap {
    grid-template-columns: 1fr;
  }
}
.works .work-item video {
  max-width: 100%;
}
.works .work-item.hidden {
  max-height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: visibility 0.3s ease;
  transition: visibility 0.3s ease;
  position: absolute;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
}
.works .work-item.show {
  max-height: 457px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
}
.works .work-title {
  margin-top: 20px;
}
.works .work-title h4 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.works .work-title h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  margin-top: 2px;
  background-color: #fff;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.works .work-title h4:hover::after {
  right: 0;
}
.works .learn-more-btn {
  position: relative;
  text-decoration: none;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
.works .learn-more-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 40px;
  bottom: -5px;
  height: 2px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 2px; /* Відступ зверху */
  background-color: #fff;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.works .learn-more-btn:hover::after {
  width: 100%;
}

.full-screen-text {
  font-size: calc(30px + 23 * (100vw - 320px) / 1600);
  font-weight: 700;
  font-family: "Montserrat";
  line-height: 120%;
  height: 100vh;
  position: relative;
  top: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: calc(0px + 220 * (100vw - 320px) / 1600);
  margin-right: calc(0px + 100 * (100vw - 620px) / 1600);
}
.full-screen-text-second {
  font-size: calc(30px + 23 * (100vw - 320px) / 1600);
  font-weight: 700;
  font-family: "Montserrat";
  line-height: 120%;
  height: 100vh;
  position: relative;
  top: 84px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: calc(0px + 200 * (100vw - 320px) / 1600);
  margin-right: calc(0px + 100 * (100vw - 620px) / 1600);
  max-width: 1100px;
}

.mb {
  margin-bottom: 200px !important;
}

.about-l {
  left: calc(0px + 300 * (100vw - 320px) / 1600);
}

.about-text-large {
  font-size: calc(30px + 20 * (100vw - 320px) / 1600);
}

.about-text-small {
  font-size: calc(10px + 4 * (100vw - 320px) / 1600);
}

.page .full-screen {
  position: absolute;
}

footer {
  padding: 35px 4vw;
  position: relative;
  z-index: 1;
}
footer.footer-contacts {
  padding: 35px 5vw;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  background-color: rgb(0, 0, 0);
}

.video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.center-text {
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  font-weight: 900;
}

.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: calc(16px + 6 * (100vw - 320px) / 1120);
  font-weight: 600;
}
.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.style-link-wpb-contacts a, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.style-link-wpb-contacts a {
  font-size: calc(16px + 6 * (100vw - 320px) / 1120);
  font-weight: 600;
  max-width: 100%;
  text-align: left;
}
.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.underline a, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.underline a {
  text-decoration: underline;
}
.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.underline a:hover, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.underline a:hover {
  text-decoration: none;
}
.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.email a, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb.email a {
  font-size: calc(32px + 10 * (100vw - 320px) / 1120);
}
.container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb a, .container-contacts .wpb_wrapper > .vc_btn3-container.style-link-wpb a {
  padding: 0 0 2px 0;
}
.container-contacts .wpb_wrapper > .wpb_text_column.contacts-text-bold {
  font-size: 22px;
  font-weight: 600;
}

.block-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-404-big {
  font-size: 172px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .block-404-big {
    font-size: 140px;
  }
}

body.light {
  color: #000;
  background-color: #fff;
}
body.light .header-nav .current-menu-item > a::after,
body.light .header-nav .current_page_item > a::after {
  background-color: #000;
}
body.light .header-nav a::after {
  background-color: #000;
}
body.light .header-nav .sub-menu li.menu-item a::after {
  background-color: #000;
}
body.light .social-nav svg {
  fill: #000;
}
@media (max-width: 960px) {
  body.light .burger-menu__line {
    background-color: #000;
  }
  body.light .menu-wrap {
    background-color: #fff;
  }
}/*# sourceMappingURL=custom-dd.css.map */