/*
Theme Name:         DV Template
Theme URI:          https://dv.com
Author:             DV team
Author URI:         https://dv.com
Tags:               two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout
Text Domain:        DemoTheme
Domain Path:        /languages/
*/

/* =======================

CSS Style Structure
- Base Style
- Header
    - Navigation
    - Slide
- Footer

=======================*/


/* ==========================================================================
   normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css
   ========================================================================== */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

a {
  text-decoration: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

a,
button,
img,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a:hover,
a:active,
a:focus,
div:hover,
div:active,
div:focus,
input:hover,
input:active,
input:focus,
textarea:hover,
textarea:active,
textarea:focus,
li:hover,
li:active,
li:focus,
button:hover,
button:active,
button:focus,
img:focus {
  outline: 0 !important;
}

/* ==========================================================================
   Base styles
   ========================================================================== */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-weight: 300;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.clear {
  clear: both;
  float: none;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix::after {
  clear: both;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   Header
   ========================================================================== */

/* Main Navigation
   ========================================================================== */



.dv-main-navigation ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  padding-left: 13px;
}

.dv-main-navigation ul li a:before {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  position: absolute;
  content: '';
  left: 0;
  top: 6px;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.main-menu a:hover:before,
.footer-menu a:hover:before {
  transform: translateX(-7px);
  -webkit-transform: translateX(-7px);
}

.dv-main-navigation ul {
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dv-main-navigation>ul>li {
  display: inline-block;
}

.dv-main-navigation ul li {
  position: relative;
  list-style: none;
  letter-spacing: normal;
}

.dv-main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  width: 150px;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.dv-main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

.dv-main-navigation ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* Menu Mobile
------------------------------------------------------- */


.dv-toggle-menu {
  padding: 0 10px;
  overflow: hidden;
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  display: none;
}


.dv-toggle-menu span {
  display: block;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: 100%;
  height: 3px;
  background: #000;
  margin-bottom: 6px;
}

.dv-main-navigation .dv-toggle-menu span {
  background: #fff;
}

.dv-toggle-menu span:last-child {
  margin-bottom: 0;
}

.csstransforms3d .dv-toggle-menu.active span:nth-child(2) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.dv-toggle-menu.active span:nth-child(2) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.dv-toggle-menu.active span:first-child {
  -webkit-transform: rotate(41deg) translate3d(0px, 0, 0);
  transform: rotate(41deg) translate3d(0px, 0, 0);
}

.dv-toggle-menu.active span:last-child {
  -webkit-transform: rotate(-41deg) translate3d(-3px, 0, 0);
  transform: rotate(-41deg) translate3d(-3px, 0, 0);
}

.dv-open-menu-mobile {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  cursor: pointer;
  display: none;
}

.dv-open-menu-mobile::after,
.dv-open-menu-mobile::before {
  content: '';
  display: block;
  width: 12px;
  position: absolute;
  top: 50%;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 999;
}

.dv-open-menu-mobile::before {
  border-right: 1px solid #dddddd;
  height: 12px;
  right: 18px;
  margin-top: -5px;
}

.dv-open-menu-mobile.active::before {
  display: none;
}

.dv-open-menu-mobile::after {
  border-top: 1px solid #dddddd;
  width: 12px;
  right: 13px;
}

/* START: CSS SVG MENU */
.dv-toggle-menu button,
.dv-toggle-menu input[type="button"] {
  border: none;
  border-radius: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 1em 1.5em;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}

.dv-toggle-menu .menu-toggle {
  font-size: 0.875em;
  padding: 0;
}

.dv-toggle-menu .menu-toggle:focus {
  /*outline: thin dotted;*/
  /*outline-offset: -2px;*/
  outline: none;
}

.dv-toggle-menu .icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  position: relative;
  /* Align more nicely with capital letters */
  top: -0.0625em;
}

/* Menu toggle styles. */

.dv-toggle-menu .icon-menu-toggle {
  width: 2em;
  height: 2em;
  top: 0;
}


/* Animate menu icon (lines). */
.dv-toggle-menu .svg-menu-toggle .line {
  opacity: 1;
  transform: rotate(0) translateY(0) translateX(0);
  transform-origin: 1em 1em;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.dv-toggle-menu .svg-menu-toggle .line-1 {
  transform-origin: 1em 2.5em;
}

.dv-toggle-menu .svg-menu-toggle .line-3 {
  transform-origin: 1em 4.5em;
}

.dv-toggle-menu .menu-toggle.opened .svg-menu-toggle .line-1 {
  transform: rotate(45deg) translateY(0) translateX(0);
}

.menu-toggle.opened .svg-menu-toggle .line-2 {
  opacity: 0;
}

.menu-toggle.opened .svg-menu-toggle .line-3 {
  transform: rotate(-45deg) translateY(0em) translateX(0em);
}

/* Text meant only for screen readers. */
.dv-toggle-menu .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.dv-toggle-menu .svg-menu-toggle path {
  fill: #ffffff;
}

/* END: CSS SVG MENU */

/* CSS header */
.logo {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
}

.logo img {
  display: block;
}

.main-header {
  padding: 40px 0;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

section.banner-wrap {
  height: 100vh;
  position: relative;
  max-height: 100vh;
  overflow: hidden;
}

.banner-hero video {
  width: 100%;
  /*height: 100%;
    max-height: 100vh;*/
}

.banner-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg .dv-show-mb {
  display: none;
}

.banner-text-small {
  position: absolute;
  top: 43%;
  width: 100%;
  left: 30px;
  right: 0;
  margin: 0 auto;
  padding: 0 40px;
}

.logo a {
  text-align: center;
}

.banner-text-big h1 {
  font-style: normal;
  font-weight: 600;
  /*    font-size: 140px;*/
  font-size: clamp(40px, 8.75vw, 170px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 00;
  display: flex;
  justify-content: space-between;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.banner-text-small span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}

.banner-text-small span:first-child {
  left: 40px;
  position: absolute;
  bottom: -36px;
}

.banner-hero .container {
  position: relative;
  z-index: 111111;
}

.banner-text-big {
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 40px;
}

.banner-text-big span:nth-child(2) {
  position: relative;
  bottom: 79px;
  display: inline-block;
  padding: 0 29px;
}

.banner-text-big span:first-child {
  position: relative;
  bottom: 159px;
}

.banner-text-small span:nth-child(2) {
  position: absolute;
  left: 41%;
  padding-top: 6%;
}

.banner-text-small span:nth-child(3) {
  position: absolute;
  right: 21%;
  padding-top: 13px;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#dv-loading {
  width: 50.5%;
  position: absolute;
  left: 50%;
  top: 77%;
  transform: translate(-50%, 0);
  z-index: 10;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}

div#dv-progress-text {
  display: flex;
  justify-content: space-between;
}

@keyframes bounce {
  0% {
    transform: translateY(-1px);
  }

  100% {
    transform: translateY(1px);
  }
}

.dv-progress-label span {
  display: inline-block;
  animation: bounce 0.5s ease-in-out infinite alternate-reverse;
}

.dv-progress-label span:nth-child(2) {
  animation-delay: 0.1s;
}

.dv-progress-label span:nth-child(3) {
  animation-delay: 0.2s;
}

.dv-progress-label span:nth-child(4) {
  animation-delay: 0.3s;
}

.dv-progress-label span:nth-child(5) {
  animation-delay: 0.4s;
}

.dv-progress-label span:nth-child(6) {
  animation-delay: 0.5s;
}

#myVideo {
  width: 100%;
  /* transform: scale(0.5); */
  transition: all 1s ease;
  display: block;
}

.dv-main-navigation {
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-bg,
.banner-text-big,
.banner-text-small {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.dv-main-navigation.show,
.banner-bg.show,
.banner-text-big.show,
.banner-text-small.show {
  opacity: 1;
}

.banner-wrap {
  background: #000;
}

.footer-top span {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer-top h2 a {
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1.2;
  color: #FFFFFF;
}

.footer-top h2 {
  margin: 10px 0 0;
}

.main-footer {
  padding: 65px 0 6px;
}

.dv-flex {
  display: flex;
}

.footer-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 66px;
}

.footer-bottom {
  align-items: flex-end;
  justify-content: space-between;
}

.footer-menu li a {
  position: relative;
  padding-left: 13px;
}

.footer-menu li a:before {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  position: absolute;
  content: '';
  left: 0;
  top: 6px;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.footer-top {
  margin-bottom: 126px;
}

.footer-menu {
  padding-bottom: 19px;
}

.bg-black {
  background: #000000;
}

.cta-section {
  padding: 100px 0;
}

.dv-title {
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.cta-left h3 {
  max-width: 577px;
}

.cta-content {
  justify-content: space-between;
  align-items: flex-end;
}

.cta-right p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 41px;
  max-width: 192px;
}

.dv-btn a {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 8px;
}


.dv-btn a:hover svg {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.dv-btn a svg {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.about-section {
  padding: 100px 0;
}

.about-left span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.about-right h3 {
  font-weight: 600;
  font-size: clamp(20px, 2.25vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 38px;
}

.about-right p {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 415px;
  margin-left: auto;
  margin-right: 69px;
  margin-top: 0;
  margin-bottom: 0;
}

.dv-home .about-right p {
  margin: 0;
}

.dv-home .about-left {
  width: 50%;
  padding-left: 160px;
}

.dv-home .about-right {
  width: 50%;
}

.about-right p i {
  font-weight: 700;
}

.dv-home .about-right h3 {
  letter-spacing: -0.02em;
}

.dv-home .about-section .container {
  max-width: 1600px;
}

.about-section .container {
  max-width: 1315px;
}

.about-left {
  padding-left: 18px;
  width: 39%;
}

.about-right {
  width: 61%;
}

/*.dv-img-list a {
    display: inline-block;
    margin-right: 130px;
    flex-shrink: 0;
}*/

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.dv-marquee {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.dv-marquee .dv-img-list {
  display: flex;
}

/*.dv-marquee:hover {
    animation-play-state: paused;
}*/

.gallery-section {
  width: 100%;
  overflow: hidden;
}

.dv-img-list img {
  display: block;
  max-height: 340px;
}

.text-center {
  text-align: center;
}

.choose-your-corner {
  padding: 80px 0 100px;
}

.choose-your-corner .dv-title {
  max-width: 700px;
  margin: 0 auto 40px;
}

.choose-list {
  gap: 40px;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.choose-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  text-align: center;
  padding: 160px 0 40px;
  width: 50%;
  position: relative;
}

.choose-item p {
  font-weight: 600;
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 auto 77px;
  max-width: 318px;
}

.choose-item .dv-btn a {
  padding: 12px 28px;
  font-size: 16px;
  line-height: 19px;
  max-width: 159px;
  margin: 0 auto;
  opacity: 0;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.choose-item:hover .dv-btn a {
  opacity: 1;
}

.dv-inner {
  position: relative;
  z-index: 1;
}

.cultural-item .dv-inner {
  padding-left: 14px;
}

.choose-item:after {
  transition: all .5s ease;
  content: '';
  position: absolute;
  left: -1px;
  right: 0;
  top: -1px;
  bottom: 0;
  background: #121212;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.choose-item:hover:after {
  opacity: 0;
}

.dv-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 702px;
  /*    max-width: 1600px;*/
  margin: 0 auto;
}

.dv-grid-item {
  display: flex;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 23px 40px 40px;
  border-right: none;
}

.dv-grid-item:nth-child(n+2):nth-child(-n+4) {
  border-bottom: none;
}

.img-column {
  grid-row: 1 / span 2;
  padding: 0;
}

.img-column .dv-hide-mb {
  width: 100%;
}

.dv-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dv-headline {
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.dv-subheadline {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.subtext {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.dv-grid-item .dv-flex {
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.outcome-section {
  padding: 80px 0 140px;
}

.outcome-section .ownership-title {
  max-width: 660px;
  margin-bottom: 252px;
}

.ownership-content>span {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 41px;
  max-width: 390px;
}

.ownership-content p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  max-width: 349px;
  margin: 0;
}

.dv-grid-bottom {
  align-items: flex-end;
}

.dv-grid-hype .dv-headline {
  margin-bottom: 162px;
}

.banner-hero {
  max-height: 100vh;
  height: 100%;
}

.ownership-section .container {
  /*    max-width: 100%;*/
  margin: 0 auto;
}

.main-header .container {
  max-width: 100%;
}

.dv-grid-item:last-child {
  padding-bottom: 27px;
}

.dv-grid-item:last-child .dv-headline {
  line-height: 1;
}

.beyond-section .ownership-title h3 {
  font-weight: 600;
  font-size: clamp(40px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.text-right {
  text-align: right;
}

.beyond-section {
  padding: 97px 0 80px;
}

.beyond-section .ownership-content p {
  max-width: 424px;
  margin-bottom: 40px;
}

.beyond-section .ownership-title {
  margin-bottom: 210px;
}

.cultural-section {
  padding: 80px 0 40px;
}

.cultural-list {
  flex-wrap: wrap;
  gap: 20px;
}

.cultural-item {
  width: calc(50% - 10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 40px;
}

.cultural-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  position: relative;
  left: -16px;
}

.cultural-item h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: -2px 0 25px;
}

.cultural-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin: 0;
  max-width: 230px;
}

.dv-bg-dark {
  background: #121212;
}

.cultural-section .dv-title {
  max-width: 832px;
  margin-bottom: 61px;
}

.membership-title {
  max-width: 600px;
}

.membership-section {
  padding: 60px 0 79px;
}

.membership-section .membership-title span.dv-subtitle {
  display: block;
  margin-bottom: 18px;
}

.dv-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cultural-section .dv-title {
  max-width: 832px;
  margin-bottom: 61px;
}

.membership-title {
  max-width: 600px;
  margin-bottom: 61px;
}

.dv-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.membership-list {
  gap: 21px;
}

.membership-item {
  width: calc((100% - 21px)/3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 39px 40px 39px;
  background: #121212;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.membership-item .dv-price {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 16px 0 212px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.membership-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  max-width: 237px;
}

.membership-item .dv-bottom-content {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.membership-item:hover {
  background: #ffffff;
}

.membership-item:hover .dv-subtitle,
.membership-item:hover .dv-price,
.membership-item:hover p {
  color: #000000;
}

.membership-item:hover .dv-bottom-content {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.membership-item h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  max-width: 236px;
  margin: 0 0 39px;
}

.membership-founders .membership-item {
  width: 100%;
  background: #ffffff;
  padding-bottom: 59px;
}

.membership-founders .dv-price,
.membership-founders p {
  color: #000;
}

.membership-founders .dv-price {
  margin: 20px 0 111px;
  font-size: 48px;
}

.membership-founders .membership-item .dv-bottom-content {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.membership-founders p {
  max-width: 236px;
}

.membership-founders {
  justify-content: space-between;
  margin-bottom: 20px;
}

.membership-founders .dv-title {
  margin-top: 19px;
}

#myVideo {
  position: absolute;
  width: 400px;
  height: 540px;
  aspect-ratio: 400/540;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  max-width: 90%;
  object-fit: cover;
  /* right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh; */
}

.dv-show-mb,
.os-img-mb {
  display: none;
}

.beyond-section .text-right {
  text-align: left;
}

.dv-homeV2 .about-right h3 {
  display: none;
}

.dv-homeV2 .about-right p {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 726px;
}

.dv-homeV2 .banner-text-big h1 {
  font-size: clamp(40px, 6.88vw, 110px);
  line-height: 1.2;
}

.dv-homeV2 .banner-text-small {
  display: none;
}

.dv-banner-des {
  position: absolute;
  left: 45px;
  bottom: 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 318px;
  opacity: 0;
  transition: all.5s ease;
  -webkit-transition: all.5s ease;
}

.dv-banner-des.show {
  opacity: 1;
}

.dv-wwd-home .dv-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding-bottom: 39px;
  padding-top: 40px;
}

.dv-wwd-home ul {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dv-wwd-home li {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
  padding: 39px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .5s ease;
}

.dv-wwd-home li a {
  color: #fff;
  transition: all .5s ease;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
}

.dv-wwd-home li:hover {
  background: #fff;
}

.dv-wwd-home li:hover a,
.dv-wwd-home li:hover {
  color: #000;
}

.dv-wwd-home li a span {
  display: block;
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #535353;
}

.dv-wwd-home li p {
  width: 50%;
  margin: 0;
}

.dv-is-not .dv-subtitle {
  margin: 0 0 39px;
}

.dv-is-not {
  padding: 120px 0;
}

.dv-is-not-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
}

.dv-is-not-list li {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #F9F9F9;
  border-right: 1px solid #2A2A2A;
  width: 25%;
  list-style: none;
  text-align: center;
  padding: 42px 20px 43px;
  max-width: 300px;
}

.dv-is-not-list li:nth-child(2) {
  border-left: 1px solid #2A2A2A;
}

.dv-visibility {
  overflow: hidden;
  position: relative;
}

.dv-visibility .swiper-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-visibility .subtitle {
  position: absolute;
  top: 90px;
  font-weight: 600;
}

.dv-visibility .dv-main-title {
  font-size: 80px;
  margin: 0 0 23px;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
}

.dv-visibility-content {
  text-align: center;
}

.dv-visibility .dv-des {
  font-size: 16px;
  font-weight: 600;
  max-width: 240px;
  margin: 0 auto;
  color: rgba(86, 86, 86, 0.6);
  line-height: 19px;
}

.dv-visibility .dv-des br {
  display: block;
  margin-bottom: 30px;
  width: 30px;
}

.dv-visibility .slide1 {
  background-position: center right !important;
}

.dv-visibility .slide2 {
  background-size: cover !important;
}

.dv-visibility .slide2 {
  background-size: cover !important;
}

.dv-visibility .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
}

.dv-visibility .swiper-pagination span {
  width: calc(100%/3);
  border-radius: 0;
  margin: 0 !important;
  height: 4px;
  background: #000000;
}

.dv-visibility .swiper-pagination .swiper-pagination-bullet.is-filled {
  background: #000;
  opacity: 1;
}

.dv-who-for-content {
  max-width: 50%;
  margin-right: 0;
  margin-left: auto;
  background: #F9F9F9;
  padding: 40px 60px;
  width: 100%;
}

.dv-who-for-content .subtitle {
  margin: 0 0 70px;
  text-transform: uppercase;
  font-weight: 600;
}

.dv-who-for-content .dv-des {
  font-size: 32px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  max-width: 661px;
}

.dv-who-for-content .dv-des b {
  font-weight: 600;
}

.dv-who-for {
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.dv-who-for:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  width: 1px;
}

.dv-visibility .dv-line1 {
  position: absolute;
  background: #E6E6E6;
  height: 1px;
  width: 100%;
  top: 29px;
  z-index: 2;
}

.dv-visibility .dv-line2 {
  position: absolute;
  background: #E6E6E6;
  height: 100%;
  width: 1px;
  top: 0;
  left: 30px;
  z-index: 2;
}

.dv-visibility .dv-line3 {
  position: absolute;
  background: #E6E6E6;
  height: 100%;
  width: 1px;
  top: 0;
  right: 30px;
  z-index: 2;
}

.dv-footer-copyright,
.dv-footer-text,
.page-template-homeV2 .footer-bottom {
  display: none;
}

.page-template-homeV2 .dv-footer-copyright {
  display: block;
}

.page-template-homeV2 .dv-footer-text {
  display: flex;
  justify-content: space-between;
  margin-top: 162px;
}

.dv-footer-text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  max-width: 304px;
}

.dv-footer-text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  max-width: 320px;
  margin-bottom: 7px;
}

.page-template-homeV2 .main-footer {
  background: url(../images/bg-ft3.png) no-repeat center/cover, #f9f9f9 !important;
  padding: 150px 0 0;
}

.page-template-homeV2 .dv-wrap-main-navigation {
  display: none;
}

.page-template-homeV2 .footer-top span {
  color: #000;
  font-size: 16px;
}

.page-template-homeV2 .footer-top h2 a {
  color: #121212;
  font-size: clamp(40px, 8.25vw, 132px);
}

.dv-footer-copyright {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #323232;
}

.page-template-homeV2 .footer-top {
  margin-bottom: 0px;
}

.slide0 .dv-des1 {
  margin-bottom: 20px;
}

.dv-visibility-content {
  padding: 0 20px;
}

.slide1 .dv-visibility-content,
.slide2 .dv-visibility-content {
  display: flex;
  flex-direction: column;
}

.slide1 .dv-visibility-content .dv-des1 {
  order: 0;
}

.slide1 .dv-visibility-content .dv-main-title {
  order: 1;
}

.slide1 .dv-visibility-content .dv-des2 {
  order: 2;
}

.slide2 .dv-visibility-content .dv-main-title {
  order: 2;
  max-width: 1205px;
}

.dv-homeV2 .ownership-content>span {
  display: none;
}

.dv-homeV2 .ownership-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #F9F9F9;
  font-family: 'Neue Haas Grotesk Display Pro';
}

.dv-homeV2 .outcome-des2 {
  margin-top: 40px;
}

.dv-homeV2 .outcome-section {
  padding: 0px 0 100px;
}

.dv-homeV2 .outcome-section .ownership-title {
  margin-bottom: 193px;
}

.dv-visibility-image {
  display: none;
}

.page-template-homeV2 .dv-main-navigation {
  display: none !important;
}

.swiper-section {
  min-height: 100vh;
}

.swiper-section.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body.lock-scroll {
  overflow: hidden;
}

.dv-home-team {
  padding: 0 30px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #FCFCFC;
}

.dv-home-team .dv-inner {
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  display: flex;
}

.dv-team-title {
  width: 50%;
}

.dv-team-list {
  width: 50%;
  display: flex;
}

.dv-team-title h3 {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 340px;
  margin: 0 auto;
  padding-top: 59px;
}

.dv-team-list {
  flex-wrap: wrap;
  border-left: 1px solid #E6E6E6;
  border-bottom: none;
}

.dv-team-item {
  width: 50%;
  padding: 60px;
}

.dv-team-item h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1875;
  color: #121212;
  margin: 0 0 16px;
}

.dv-team-item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.dv-team-item:first-child {
  border-bottom: 1px solid #E6E6E6;
  width: 100%;
  padding-top: 120px;
}

.dv-team-item:nth-child(2) {
  border-right: 1px solid #E6E6E6;
}

.pv-section {
  position: sticky;
  top: 0;
}

.pv-section-placeholder {
  display: flex;
  flex-direction: column;
}

.pv-section-placeholder-it {
  height: 300vh;
}

.pv-section:not(.is-sticky) {
  pointer-events: none;
  touch-action: none;
}

/* End main navigation
-------------------------------------------------------------------------- */
/* =============================== RESPONSIVE =============================*/
@media screen and (min-width: 1700px) {
  .page-template-homeV2 .main-footer {
    /* 		background-position: 50% 30% !important; */
    background-size: contain !important;
  }
}


@media screen and (max-width: 1820px) {
  .dv-homeV2 .banner-text-big h1 {
    font-size: clamp(40px, 5.88vw, 110px);
    white-space: nowrap;
  }

}

@media screen and (max-width: 1600px) {
  .outcome-section {
    background-position: 100% 50% !important;
  }

  .banner-text-small {
    max-width: 1540px;
    left: 0;
  }

  .banner-text-big {
    max-width: 1600px;
  }
}

@media screen and (max-width: 1599px) {
  .beyond-section {
    height: 100vh;
  }
}

@media screen and (max-width: 1500px) {
  .banner-hero video {
    width: max-content;
    height: 100%;
  }
}

@media screen and (max-width: 1440px) {
  .dv-grid-item {
    padding: 23px 30px 40px;
  }

  .img-column {
    padding: 0;
  }

  .subtext br {
    display: none;
  }

  .dv-home .about-left {
    padding-left: 10vw;
  }

  .membership-item .dv-price {
    margin-bottom: 13.25vw;
  }
}

@media screen and (max-width: 1199px) {
  .choose-item {
    padding: 10vw 0 40px;
  }

  .choose-item p {
    margin-bottom: 4.81vw;
  }

  .outcome-section {
    background-size: contain !important;
  }

  .dv-grid-hype .dv-headline {
    margin-bottom: 10.13vw;
  }

  .dv-grid-item {
    padding: 23px 25px 40px;
  }

  .img-column {
    padding: 0;
  }

  .banner-text-big span:nth-child(2) {
    padding: 0 0;
  }

  .dv-home .about-left {
    padding-left: 0;
  }

  .outcome-section .ownership-title {
    margin-bottom: 15.75vw;
  }

  .cultural-item h4 {
    font-size: 25px;
  }

  .membership-item .dv-price {
    font-size: 30px;
  }

  .dv-is-not-list li {
    font-size: 20px;
  }

  .dv-who-for-content {
    padding: 30px 40px;
  }

  .dv-who-for-content .dv-des {
    font-size: 28px;
  }

  .dv-team-title h3 {
    font-size: 50px;
  }

  .dv-team-item:first-child {
    padding-top: 80px;
  }

  .dv-team-item {
    padding: 40px 30px;
  }

  .dv-team-item h4 {
    font-size: 24px;
  }

  .page-template-homeV2 .dv-footer-text {
    margin-top: 90px;
  }
}

@media screen and (max-width: 1023px) {
  .dv-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .img-column {
    grid-row: auto;
    height: 100%;
  }

  .img-column img {
    width: 100%;
  }

  .dv-home .about-left,
  .about-left {
    width: 30%;
  }

  .dv-home .about-right,
  .about-right {
    width: 70%;
  }

  .dv-home .about-right h3 {
    margin-bottom: 25px;
  }

  .cta-section {
    padding: 59px 0 60px;
  }

  .choose-list {
    gap: 20px;
  }

  .outcome-section {
    padding: 40px 0 80px;
  }

  .outcome-section .ownership-title {
    margin-bottom: 50px;
  }

  .dv-grid-item .dv-show-mb {
    display: block;
    width: 100%;
  }

  .dv-grid-item .dv-hide-mb,
  .dv-grid-hidden {
    display: none;
  }

  .membership-item .dv-price {
    font-size: 26px;
  }

  .membership-item {
    padding: 30px 20px;
  }

  .cultural-item {
    padding: 26px 20px 29px;
  }

  .cultural-item h4 {
    font-size: 20px;
    margin-top: -7px;
    margin-bottom: 35px;
  }

  .membership-title {
    margin-bottom: 30px;
  }

  .beyond-section .ownership-title {
    margin-bottom: 13.13vw;
  }

  .beyond-section {
    height: max-content;
  }

  .about-left {
    padding-left: 0;
  }

  .membership-item h5 {
    font-size: 18px;
  }

  .dv-grid-container {
    position: relative;
    padding-left: 50%;
  }

  .dv-grid-item.img-column {
    position: absolute;
    width: 50%;
    padding: 0;
  }

  .dv-subheadline,
  .subtext {
    display: none;
  }

  .dv-show-mb .dv-subheadline,
  .dv-show-mb .subtext {
    display: block;
    position: absolute;
  }

  .dv-grid-item {
    padding: 156px 20px 9px;
  }

  .dv-grid-subtext {
    display: none;
  }

  .dv-grid-press {
    padding-top: 167px;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .dv-grid-item:last-child {
    padding-top: 131px;
    padding-bottom: 17px;
  }

  .dv-show-mb .dv-subheadline {
    font-size: 16px;
    top: 20px;
    padding: 0 20px;
  }

  .dv-show-mb .subtext {
    padding: 0 8px 0 20px;
    bottom: 20px;
  }

  .img-column:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    height: 100%;
  }

  .dv-banner-des {
    bottom: 26px;
  }

  .dv-wwd-home li a span {
    width: 20%;
  }

  .dv-is-not-list li {
    padding: 15px 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dv-is-not-list {
    align-items: stretch;
  }

  .dv-who-for-content {
    max-width: 80%;
  }

  .dv-who-for {
    min-height: 550px;
  }

  .dv-who-for-content .subtitle {
    margin-bottom: 40px;
  }

  .dv-who-for-content .dv-des {
    font-size: 23px;
  }

  .page-template-homeV2 .dv-footer-text {
    margin-top: 80px;
  }

  .dv-visibility .swiper-slide {
    min-height: 60vh;
  }

  .dv-visibility .swiper-slide.slide0 {
    background-position: left center !important;
    background-size: contain !important;
  }

  .dv-visibility .swiper-slide.slide1 {
    background-size: contain !important;
  }

  .slide2 .dv-visibility-content .dv-main-title {
    max-width: 75%;
    margin: 0 auto;
  }

  .dv-visibility .subtitle {
    top: 40px;
  }

  .dv-team-title h3 {
    font-size: 38px;
    padding-left: 20px;
  }

  .dv-team-title {
    width: 37%;
  }

  .dv-team-list {
    width: 63%;
  }

  .dv-team-item {
    padding: 30px 20px;
  }

  .page-template-homeV2 .main-footer {
    padding-top: 100px;
  }

  .page-template-homeV2 .dv-footer-text {
    margin-top: 35px;
  }

  .dv-home-team {
    padding: 0 26px;
  }

}


@media (min-width: 768px) {
  .dv-main-navigation {
    display: block !important;
  }
}

@media (max-width:767px) {
  img.action-menu.open-menu {
    width: 16px;
  }

  .membership-item {
    background: #ffffff;
  }

  .membership-item .dv-subtitle,
  .membership-item .dv-price,
  .membership-item p {
    color: #000000;
  }

  .membership-item .dv-bottom-content {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }

  .banner-bg .dv-show-mb {
    display: none;
  }

  .banner-bg .dv-hide-mb {
    display: block;
  }

  .banner-bg img {
    object-position: 78%;
  }

  .banner-bg {
    top: 15px;
  }

  .banner-hero,
  .banner-wrap {
    height: calc(100vh - env(safe-area-inset-bottom));
  }

  .dv-main-navigation ul {
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 9px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .dv-main-navigation ul li {
    padding: 0;
  }

  .dv-main-navigation {
    position: absolute;
    /*        height: 100vh;*/
    width: 100%;
    max-width: 100%;
    z-index: 10;
    overflow: hidden;
    left: 0;
    padding-top: 0;
    top: 0;
    background: #000;
    /*        transform: translateX(-100%);*/
    /*        -webkit-transform: translateX(-100%);*/
    display: none;
    padding: 98px 0 20px;
  }

  .dv-toggle-menu .close-menu {
    display: none;
  }

  .dv-toggle-menu.active .open-menu {
    display: none;
  }

  .dv-toggle-menu.active .close-menu {
    display: block;
  }

  .dv-toggle-menu {}

  .dv-toggle-menu .action-menu {
    margin-left: auto;
  }

  .dv-wrap-main-navigation {
    text-align: right;
  }

  .dv-main-navigation.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  .dv-main-navigation ul li {
    display: block;
    width: 50%;
  }

  .dv-main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transition: all 0s ease;
    -webkit-transition: all 0s ease;
  }

  .dv-toggle-menu {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    z-index: 111;
    position: relative;
  }

  .dv-toggle-menu.active path {
    fill: #fff;
  }

  .dv-open-menu-mobile {
    display: block;
  }

  .dv-home .about-left,
  .about-left {
    width: 100%;
    margin-bottom: 23px;
  }

  .dv-home .about-right,
  .about-right {
    width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .about-section .container {
    flex-direction: column;
  }

  .dv-home .about-right h3 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .about-right p {
    max-width: 100%;
  }

  .about-right p br {
    display: none;
  }

  .choose-item {
    padding: 72px 0 55px;
    width: 100%;
  }

  .choose-list {
    padding: 0 20px;
    flex-direction: column;
    gap: 9px;
  }

  .dv-grid-hype .dv-headline {
    margin-bottom: 0;
  }

  .dv-grid-item,
  .dv-grid-item:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-column {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-content {
    flex-direction: column;
  }

  .cta-left h3 {
    max-width: 290px;
    margin-bottom: 39px;
  }

  .cta-left h3 br {
    display: none;
  }

  .cta-right,
  .cta-left {
    width: 100%;
  }

  .cta-right p {
    max-width: 192px;
    margin-bottom: 41px;
    margin-left: auto;
  }

  .footer-top {
    margin-bottom: 211px;
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;
  }

  .footer-menu li {
    width: 50%;
    text-align: center;
  }


  .dv-btn a {
    font-size: 16px;
  }

  .choose-your-corner {
    padding-bottom: 60px;
    padding-top: 79px;
  }

  .os-img-mb {
    display: block;
    margin-bottom: 20px;
  }

  .outcome-section {
    /* background: #121212 !important; */
    padding-top: 0;
    padding-bottom: 131px;
    background-size: 100% !important;
  }

  .outcome-section .ownership-title {
    margin-bottom: 337px;
  }

  .ownership-title .dv-title br,
  .ownership-content>span br {
    display: none;
  }

  .outcome-section .ownership-content>span br {
    display: block;
  }

  .outcome-section .dv-title {
    max-width: 315px;
  }


  .ownership-content p {
    max-width: 290px;
  }

  .ownership-content>span {
    margin-bottom: 25px;
    max-width: 266px;
  }

  .footer-top span {
    font-size: 16px;
    display: none;
  }

  .cultural-item {
    width: 100%;
  }

  .cultural-section .dv-title {
    margin-bottom: 24px;
  }

  .membership-item {
    width: 100%;
    padding-bottom: 29px;
  }

  .membership-list {
    gap: 10px;
    flex-wrap: wrap;
  }

  .membership-item .dv-price {
    font-size: 40px;
    margin-bottom: 48px;
  }

  .ownership-content>span {}

  .cultural-section {
    padding-top: 59px;
    padding-bottom: 19px;
  }

  .beyond-section {
    padding: 40px 0 21px;
  }

  .about-right p {
    margin-right: 0;
  }

  .about-right h3 {
    margin-bottom: 20px;
  }

  .membership-section {
    padding: 40px 0 60px;
  }

  .membership-founders {
    flex-wrap: wrap;
  }

  .membership-founders .membership-list {
    flex-wrap: wrap;
    width: 100%;
  }

  .membership-item h5 {
    margin-bottom: 20px;
  }

  .membership-item .dv-bottom-content {
    padding-top: 20px;
  }

  .membership-founders .membership-item {
    padding-bottom: 28px;
  }

  .membership-founders .dv-price {
    margin-top: 0;
  }

  .dv-img-list img {
    height: 300px;
    max-width: 240px;
    object-fit: cover;
  }

  .logo img {
    width: 150px;
  }

  .main-header {
    padding: 35px 0;
  }

  .dv-main-navigation ul li a {
    /* color: #000000; */
    padding: 10px 0 10px 13px;
    display: inline-block;
  }

  .banner-text-big,
  .banner-text-small {
    padding: 0 20px;
  }

  .banner-text-big h1 {
    font-size: 64px;
    flex-direction: column;
    line-height: 1.04;
  }

  .banner-text-big span:nth-child(2),
  .banner-text-big span:first-child {
    position: static;
  }

  .dv-homeV2 .banner-text-big {
    bottom: 124px;
  }

  .banner-text-small span:first-child {
    left: unset;
    right: 20px;
    position: absolute;
    top: 8%;
  }

  .banner-text-small span:nth-child(3) {
    right: unset;
    left: 20px;
    bottom: 23%;
  }

  .banner-text-small span:nth-child(2) {
    left: unset;
    right: 20px;
    bottom: 7%;
  }

  .banner-text-small {
    top: 10%;
    height: 50%;
  }

  .about-left span {
    font-size: 14px;
  }

  .about-section {
    padding: 57px 0 59px;
  }

  .choose-your-corner .dv-title {
    max-width: 290px;
    font-size: 36px;
    margin-bottom: 25px;
  }

  .choose-your-corner .dv-title br {
    display: none;
  }

  .choose-item p {
    margin-bottom: 16px;
  }

  .choose-item-1 {
    padding: 64px 0 63px;
  }

  .outcome-section .dv-title br {
    display: none;
  }

  .outcome-section .ownership-title {
    max-width: 350px;
  }

  .main-footer {
    padding: 30px 0 0;
  }

  .main-footer .container {
    padding: 0;
  }

  .footer-menu {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 19px;
    margin-top: -4px;
    position: relative;
    background: 35% 0 !important;
  }

  .footer-menu:after {
    width: 1px;
    height: 100%;
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
  }

  .cta-right .dv-btn a {
    width: 100%;
    padding: 10px 28px 9px;
  }

  .beyond-section .ownership-title .text-right {
    margin-top: 10px;
  }

  .beyond-section .ownership-title {
    margin-bottom: 288px;
  }

  .beyond-section .ownership-content>span {
    max-width: 100%;
  }

  .beyond-section .ownership-content>span br {
    display: block;
  }

  .beyond-section .ownership-content p {
    max-width: 390px;
    margin-bottom: 32px;
  }

  .ownership-content .dv-btn a {
    width: 100%;
    padding: 10px 28px 9px;
  }

  .cultural-list {
    gap: 10px;
  }

  .membership-section .membership-title span.dv-subtitle {
    font-size: 14px;
    margin-bottom: 23px;
  }

  .membership-title {
    margin-bottom: 24px;
  }

  .membership-founders .membership-item .dv-price {
    margin-bottom: 134px;
  }

  .membership-founders .membership-item h5 {
    max-width: 100%;
  }

  .membership-founders-wrap {
    padding-bottom: 40px;
  }

  .logo {
    z-index: 11;
  }

  .dv-main-navigation ul li a:before {
    top: 16px;
  }

  .dv-main-navigation ul:before {
    content: '';
    position: absolute;
    left: 50%;
    background: rgba(255, 255, 255, 0.15);
    width: 1px;
    height: 58px;
    top: 99px;
  }

  .choose-item:after {
    display: none;
  }

  .choose-item .dv-btn a {
    opacity: 1;
  }

  .dv-marquee .dv-img-list.dv-hide-mb {
    display: none;
  }

  .dv-marquee .dv-img-list.dv-show-mb {
    display: flex;
  }

  .wow {
    animation-duration: 0.5s !important;
  }

  .dv-banner-des {
    bottom: 40px;
    left: 20px;
  }

  .dv-homeV2 .banner-text-big h1 span {
    font-size: 64px;
    line-height: 1.05;
  }


  .dv-homeV2 .about-right p {
    font-size: 20px;
  }

  .dv-wwd-home .dv-title {
    padding-top: 21px;
    padding-bottom: 24px;
  }

  .dv-wwd-home li p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    padding-left: 14px;
    width: 100%;
    padding-top: 35px;
  }

  .dv-wwd-home li {
    padding: 14px 0;
    margin-bottom: 16px;
  }

  .dv-wwd-home li a span {
    width: max-content;
  }

  .dv-wwd-home li {
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 16px 16px 20px;
  }

  .dv-wwd-home li:last-child {
    margin-bottom: 0;
  }

  .dv-wwd-home ul {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none;
    border: none;
  }

  .dv-is-not {}

  .ownership-section .container {
    padding-top: 140px;
  }

  .dv-homeV2 .outcome-section .dv-title {
    max-width: 307px;
  }

  .outcome-section .dv-title {
    max-width: 307px;
  }

  .dv-homeV2 .ownership-content p {
    font-size: 16px;
    max-width: 240px;
  }

  .dv-homeV2 .outcome-section .ownership-title {
    margin-bottom: 306px;
  }

  .dv-homeV2 .outcome-des2 {
    margin-top: 18px;
  }

  .dv-homeV2 .outcome-section {
    padding-bottom: 59px;
  }

  .dv-visibility-image {
    display: block;
  }

  .dv-visibility .swiper-slide {
    background: transparent !important;
    display: flex;
    flex-direction: column;
  }

  .dv-visibility-content {
    padding-top: 300px;
  }

  .dv-visibility-image img {
    display: block;
    max-height: 328px;
  }

  .dv-visibility .dv-line1,
  .dv-visibility .dv-line2,
  .dv-visibility .dv-line3 {
    display: none;
  }

  .dv-visibility {
    background: #fbfbfb;
  }

  .slide2 .dv-visibility-content .dv-main-title {
    font-size: 40px;
    max-width: 100%;
    line-height: 1.1;
  }

  .slide2 .dv-visibility-content {
    padding-top: 273px;
  }

  .slide2 .dv-des2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .slide2 .dv-visibility-content .dv-main-title {
    font-size: 40px;
    max-width: 100%;
    line-height: 1.1;
  }

  .slide2 .dv-visibility-content {
    padding-top: 273px;
  }

  .slide2 .dv-des2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .dv-who-for {
    min-height: 850px;
  }

  .dv-who-for-content {
    max-width: calc(100% - 20px);
    padding: 40px 30px 30px;
  }

  .dv-who-for-content .subtitle {
    margin-bottom: 21px;
  }

  .dv-who-for-content .dv-des {
    font-size: 20px;
  }

  .page-template-homeV2 .dv-footer-text {
    flex-direction: column;
    margin-top: 273px;
    margin-bottom: 13px;
  }

  .dv-footer-text p {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .page-template-homeV2 .footer-top span {
    display: block;
  }

  .page-template-homeV2 .main-footer {
    padding-top: 60px;
  }

  .page-template-homeV2 .dv-footer-copyright {
    text-align: center;
  }

  .page-template-homeV2 .footer-top h2 {
    text-align: center;
  }

  .page-template-homeV2 .dv-footer-copyright {
    padding-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid #E6E6E6;
    margin-top: 39px;
    width: calc(100% + 80px);
    margin: 0 -40px;
  }

  .page-template-homeV2 .main-footer {
    background: #f9f9f9 !important;
  }

  .page-template-homeV2 .main-footer {
    border-top: 1px solid #E6E6E6;
  }

  .page-template-homeV2 .footer-top span {
    border-bottom: 1px solid #E6E6E6;
    width: calc(100% + 80px);
    margin: 0 -40px;
    padding: 0 40px 16px;
  }

  .page-template-homeV2 .footer-top h2 {
    width: calc(100% + 80px);
    margin: 0 -40px;
    padding: 40px 20px 39px;
    border-top: 1px solid #E6E6E6;
  }

  .page-template-homeV2 .main-footer {
    position: relative;
    overflow: hidden;
  }

  .page-template-homeV2 .main-footer:before {
    position: absolute;
    width: 1px;
    height: 100%;
    left: 20px;
    top: 0;
    bottom: 0;
    background: #E6E6E6;
    content: '';
  }

  .page-template-homeV2 .main-footer:after {
    position: absolute;
    width: 1px;
    height: 100%;
    right: 20px;
    top: 0;
    bottom: 0;
    background: #E6E6E6;
    content: '';
  }

  .page-template-homeV2 .main-footer .container {
    padding: 0 20px;
  }

  .dv-who-for:before {
    display: none;
  }

  .dv-wwd-home li a {
    flex-direction: column;
    padding: 0;
  }

  .dv-is-not {
    padding: 84px 0 40px;
  }

  .dv-is-not-list {
    flex-direction: column;
    /* 		border-bottom: none; */
    padding: 0 40px;
  }

  .dv-is-not-list li {
    width: 100%;
    font-size: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.1)
  }

  .dv-is-not-list li:nth-child(5) {
    border-bottom: none;
  }

  .dv-who-for {
    background-position: 33% 30% !important;
  }

  .dv-is-not-list span.dv-empty {
    display: none;
  }

  .page-template-homeV2 .ownership-section .container {
    padding-top: 61px;
  }

  .dv-is-not .dv-subtitle {
    text-align: center;
  }

  .dv-team-title {
    width: 100%;
    border-top: 1px solid #e6e6e6;
  }

  .dv-team-list {
    width: 100%;
  }

  .dv-home-team .dv-inner {
    flex-wrap: wrap;
  }

  .dv-home-team {
    border: none;
    padding: 0;
  }

  .dv-home-team .dv-inner {
    border: none;
  }

  .dv-team-item:first-child {
    border-left: none;
  }

  .dv-team-list {
    border-left: none;
  }

  .dv-team-title h3 {
    padding-left: 0;
    max-width: 255px;
    margin-left: 0;
    padding: 44px 0 43px 40px;
  }

  .dv-team-item {
    padding: 40px 0 38px 40px;
  }

  .dv-team-item:first-child {
    padding-top: 70px;
  }

  .dv-team-item:last-child {
    width: 44%;
  }

  .dv-team-item:nth-child(2) {
    width: 56%;
  }

  .dv-team-item h4 {
    margin-bottom: 14px;
  }

}