@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');

:root {
    --cta: #177d88;
    --purple-light: #ae66b5;
    --purle-dark: #401343;
}

body {
    margin: 0 !important;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html,
body {
    overscroll-behavior: none;
    min-height: 100vh;
}

html {
    overflow: overlay;
}
/* output */
*::-webkit-scrollbar-thumb {
    background-color: var(--cta);
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-corner {
    background-color: transparent;
}

*::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

* {
    -ms-overflow-style: auto;
    scrollbar-color: var(--cta) transparent;
    scrollbar-width: thin;
}

.hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#CybotCookiebotDialog, #CookiebotWidget {
  font-family: "Lato" !important;
}

/* HEADER WRAPPER */
.dv-header-wrapper * {
    color: inherit;
    --toggle-right-spacing: 23rem;
    --cta-box-right-spacing: 14rem;
    --left-spacing: 15rem;
    --top-spacing: 8rem;
    --cta-box-min-width: 400px;
}

.dv-header-wrapper {
    width: 100vw;
    font-size: 18px;
    background: transparent linear-gradient(250deg, #412243 0%, #59265c 72%, #712d71 100%) 0% 0% no-repeat padding-box;
    /* box-shadow: 0px 0px 25px #2b1d34f8; */
    min-height: 100vh;
    color: white;
    font-family: 'Lato', sans-serif;
}

    .dv-header-wrapper *::selection {
        background-color: var(--purle-dark);
        color: var(--purple-light);
    }

    .dv-header-wrapper:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
        /* background: url('https://media.giphy.com/media/3q3SUqPnxZGQpMNcjc/giphy-downsized.gif')
		bottom center / 100% 50% no-repeat; */
        /* mix-blend-mode: lighten; */
        background: linear-gradient( 233deg, rgba(255, 255, 255, 0) 45%, #ffffff 50%, rgba(255, 255, 255, 0) 55% );
        opacity: 0.1;
        background-size: 400% 400%;
        pointer-events: none;
    }
/* MODAL NAV */
.dv-header__modal-nav {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    overflow: hidden;
    position: fixed;
    background-color: var(--purle-dark);
    z-index: 99;
    top: 16rem;
    right: 14rem;
    transform: translateX(4rem);
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: calc(100vh - 16rem);
    overscroll-behavior: contain;
    overflow-y: auto;
}

.dv-header__modal-nav__sidebar {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.dv-header__modal-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
    display: block;
    pointer-events: none;
    backdrop-filter: blur(5px);
    opacity: 0;
    /* transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); */
}

.dv-header__modal-nav--open {
    pointer-events: all;
    opacity: 1;
    transform: scale(1);
}

    .dv-header__modal-nav--open + .dv-header__modal-nav-overlay {
        opacity: 1;
    }

.dv-header__modal-nav__main {
    display: flex;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.dv-header__modal-nav__group {
    display: flex;
    flex-direction: column;
}

.dv-header__modal-nav__group--end {
    justify-content: flex-end;
    text-align: right;
}

.dv-header__modal-nav__sidebar .dv-header__modal-nav__group {
    margin-bottom: 1rem;
}

.dv-header__modal-nav__item {
    text-decoration: none;
    padding: 0.25rem;
    position: relative;
    color: #ceb0d1;
    /* border-top: 1px dotted rgba(255, 255, 255, 0.2); */
}

.dv-header__modal-nav__item--lg {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-left: 0;
    padding: 1rem 0;
}

.dv-header__modal-nav hr {
    background-color: 2px solid rgb(255, 255, 255);
    border: none;
    opacity: 0.3;
    height: 2px;
    margin: 0.25rem 0;
}

.dv-header__modal-nav__item--cta {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-left: 0;
    padding: 1rem 0;
    text-align: center;
    border: 2px solid var(--purple-light);
    padding: 1rem 1.5rem;
    width: max-content;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dv-header__modal-nav__main .dv-header__modal-nav__item {
    padding: 2rem;
    border-color: #9d43a2;
    border-width: 3px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.dv-header__modal-nav__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background-color: white;
    opacity: 1;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transform-origin: center right;
    border-radius: 0.4rem;
    transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dv-header__modal-nav__item:hover:before {
    opacity: 0.1;
}

.dv-header__modal-nav__sidebar .dv-header__modal-nav__item:hover:before {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.01);
}

/* NAV */
.dv-header__nav {
    position: absolute;
    top: 8.2rem;
    right: 42rem;
    z-index: 2;
    display: flex;
}

.dv-header__nav__item {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0px 0px 15px black, 0px 0px 5px black;
    overflow: hidden;
    position: relative;
    padding: 0.8rem 1.25rem;
    border: 5px solid transparent;
    border-radius: 0.6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dv-header__modal-nav__item__icon {
    height: 2rem;
}

.dv-header__nav__item * {
    position: relative;
    z-index: 1;
}

.dv-header__nav__item:before,
.dv-header__nav__item:after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.dv-header__nav__item:before {
    background-color: var(--purle-dark);
    inset: 0px;
}

.dv-header__nav__item::after {
    inset: 0px -8px;
    background: repeating-linear-gradient( -45deg, white, transparent 4px, transparent 5px, white 6px );
    animation: 0.5s linear 0s infinite normal none running anim;
    z-index: 0;
    opacity: 0;
}

.dv-header__nav__item:hover:before {
    opacity: 1;
}

.dv-header__nav__item:hover:after {
    opacity: 0.2;
}

.dv-header__nav__item--current:before {
    opacity: 1;
}

@keyframes anim {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(8px);
    }
}
/* -webkit-animation: AnimationName 15s ease infinite forwards;
	-moz-animation: AnimationName 15s ease infinite forwards;
	animation: AnimationName 15s ease infinite forwards;
}

@-webkit-keyframes AnimationName {
	0% {
		background-position: 100% 9%;
	}
	100% {
		background-position: 0% 92%;
	}
}
@-moz-keyframes AnimationName {
	0% {
		background-position: 100% 9%;
	}
	100% {
		background-position: 0% 92%;
	}
}
@keyframes AnimationName {
	0% {
		background-position: 100% 9%;
	}
	100% {
		background-position: 0% 92%;
	}
} */
/* HEADER */
.dv-header {
    /* overflow-x: hidden;
	overflow-y: visible; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: calc(100vh - 20vh);
    min-height: 800px;
    position: relative;
    max-width: 2560px;
    margin: auto;
}
/* HEADER - OVERLAY */
.dv-header__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(./images/dv_header__overlay.svg);
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    border-radius: 0% 0% 70% 0% / 0% 0% 25% 0%;
    box-shadow: inset 0px 0px 150px black;
}
/* HEADER - BG */
.dv-header__bg {
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 100%;
    border-radius: 0% 0% 70% 0% / 0% 0% 25% 0%;
    overflow: hidden;
    opacity: 0.8;
    pointer-events: none;
}

.dv-header__bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: dv-smooth-scale-header-bg 25s infinite alternate;
}

@keyframes dv-smooth-scale-header-bg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}
/* HEADER - TEXT */
.dv-header__text {
    position: absolute;
    bottom: 13rem;
    left: var(--left-spacing);
    z-index: 2;
    font-weight: 300;
}

    .dv-header__text h1 {
        font-weight: 300;
        font-size: 5rem;
        line-height: 1.1;
        color: inherit;
        font-family: inherit;
    }

        .dv-header__text h1 strong {
            font-weight: 700;
        }

/* HEADER - TOGGLE */
.dv-header__toggle {
    border-radius: 0.3rem;
    position: absolute;
    top: var(--top-spacing);
    right: var(--toggle-right-spacing);
    z-index: 99;
    -webkit-appearance: none;
    outline: 0;
    border: 0;
    padding: 1.5rem 2rem;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 25px rgba(43, 29, 52, 0.97);
    background: transparent linear-gradient(302deg, #5e2e60 0%, #662a69 46%, #9d43a2 100%) 0% 0% no-repeat padding-box;
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
}

    .dv-header__toggle:hover {
        cursor: pointer;
        filter: brightness(120%);
    }

.dv-header__toggle__icon {
    width: 4rem;
    height: 2rem;
    transform: scale(0.8);
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 30%;
}

    .dv-header__toggle__icon span {
        background-color: white;
        height: 100%;
        border-radius: 1rem;
        width: 100%;
        display: block;
        box-shadow: -1rem 0px 0px black;
        transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

.dv-header__toggle:hover .dv-header__toggle__icon span {
    transform: translateX(-1rem);
    box-shadow: 0 0px 0px black;
}

    .dv-header__toggle:hover .dv-header__toggle__icon span:nth-child(2) {
        box-shadow: 1rem 0px 0px black;
    }
/* .dv-header__toggle--active .dv-header__toggle__icon span:nth-child(1) {
	transform: rotate(45deg);
	box-shadow: none;
	transform-origin: top left;
	transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dv-header__toggle--active .dv-header__toggle__icon span:nth-child(2) {
	transform: scaleX(0);
	transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dv-header__toggle--active .dv-header__toggle__icon span:nth-child(3) {
	transform: rotate(-45deg) translate(-0.6rem, 0.5rem);
	box-shadow: none;
	transform-origin: bottom left;
	transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
} */
.dv-header__cta-box {
    font-size: 1.3rem;
    background: transparent linear-gradient(323deg, #5e2e60 0%, #662a69 46%, #9d43a2 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 25px #2b1d34f8;
    padding: 1.4rem 2rem;
    position: absolute;
    bottom: 0;
    right: var(--cta-box-right-spacing);
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: var(--cta-box-min-width); 
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 404px;
    box-sizing: border-box;

}

.dv-header__cta-box__close {
    background-color: #4a214d;
    padding: 1rem;
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: 0;
    right: 0;
    display: grid;
    place-content: center;
    border-bottom-left-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
}

.dv-header__cta-box__close__icon {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 15;
}

.dv-header__cta-box__close:hover {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    filter: brightness(120%);
}

.dv-header__cta-box--hidden {
    transform: translateX(100%);
    right: 0 !important;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: overflowvisible 0s linear forwards 0.3s;
}

@keyframes overflowvisible {
    100% {
        overflow: visible;
    }
}

.dv-header__cta-box--hidden .dv-header__cta-box__close {
    filter: invert(1) hue-rotate(180deg);
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    border-top-left-radius: 0.5rem;
    animation: moveiconbox 0.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

@keyframes moveiconbox {
    100% {
        right: 100%;
    }
}

.dv-header__cta-box--hidden .dv-header__cta-box__close__icon__left {
    opacity: 0;
}

.dv-header__cta-box .dv-btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    box-sizing: border-box;
    
}

.dv-header__cta-box > * {
    margin: 0;
    margin-bottom: 0.5rem;
}

.dv-header__cta-box--scroll-hide {
    transform: translateX(200%);
    pointer-events: none;
    opacity: 0;
}

/* HEADER - BOTTOM MENU */
.dv-header-bottom-menu {
    padding: 4rem 6rem;
    max-width: 2560px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    font-size: 1.3em;
    position: relative;
    z-index: 2;
}

.dv-header-bottom-menu__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.dv-header-bottom-menu__logo {
}

.dv-header-bottom-menu__cta {
  /*  margin-left: 4rem;*/
    text-decoration:none;
}

/* UTILITY / UI */
.dv-small-divider {
    margin: auto 1rem;
    height: 1px;
    border: none;
    background-color: currentColor;
    width: 3rem;
    opacity: 0.3;
}

.dv-text-muted {
    color: #ceb0d1;
}

.dv-header-wrapper a.dv-text-muted:hover,
.dv-header-wrapper .dv-text-muted a:hover {
    color: white;
}

.dv-btn {
    padding: 1rem 1.5rem;
    -webkit-appearance: none;
    outline: 0;
    border: 0;
    border-radius: 0.8rem;
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1em;
    font-weight: normal;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 0px 10px 15px rgba(43, 29, 52, 0.3);
    display: grid;
}

    .dv-btn > *:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .dv-btn > *:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .dv-btn:hover {
        cursor: pointer;
        filter: brightness(120%) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
    }

.dv-btn-primary {
    background-color: var(--cta);
    color: white;
}

.dv-header-bottom-menu__slogan {
    font-family: inherit;
    font-weight: normal;
    margin: 0;
    text-align: center;
}

.dv-header-bottom-menu__bottom-right {
    display: grid;
    place-content: center;
    text-align: center;
    gap: 3rem;
}

.dv-w-100 {
    width: 100% !important;
    display: block;
}

.dv-header__logo {
    position: absolute;
    top: 2rem;
    left: 4rem;
    z-index: 99;
    display: none;
}
.dv-header__logo {
    animation: fade-in-el 1s ease-in-out forwards;
}
.dv-header__bg {
    animation: fade-in-el 2s ease-in-out forwards;
    opacity:0;
}
@keyframes fade-in-el {
    100% {
        opacity:1;
    }
}

/* RESPONSIVE */
@media (max-width: 1800px) {
    .dv-header__toggle,
    .dv-header__cta-box {
        right: 8rem;
    }

    .dv-header__modal-nav {
        right: 7rem;
    }

    .dv-header__nav {
        right: 25rem;
    }

    .dv-header__text {
        left: 8rem;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .dv-header-bottom-menu__content {
        max-width: 80%;
        margin: auto;
    }

    .dv-header-bottom-menu__cta {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .dv-header__bg {
        opacity: 0.6;
    }
}

@media (max-width: 1200px) {
    .dv-header__nav {
        display: none;
    }

    .dv-header__toggle {
        top: 3rem;
        right: 4rem;
        position: fixed;
    }

    .dv-header__modal-nav {
        right: 4rem;
    }

    .dv-header__cta-box {
        right: 2rem;
        bottom: 2rem;
        position: fixed;
    }

    .dv-header {
        min-height: 60vh;
        height: 500px;
    }

    .dv-header__text {
        left: 0;
        padding: 5rem;
        bottom: 3rem;
    }

    .dv-header-bottom-menu {
        padding: 2rem;
        display: flex;
    }

    .dv-header-bottom-menu__bottom-right {
        grid-column: 1;
        grid-row: 1;
    }

    .dv-header-bottom-menu__slogan {
        grid-column: 2;
        grid-row: 1;
    }

    .dv-header-bottom-menu__logo {
        display: none;
    }

    .dv-header__logo {
        display: block;
    }
}

@media (max-width: 1000px) {
    .dv-header__text h1 {
        font-size: 4rem;
    }
}

@media (max-width: 800px) {
    .dv-header-bottom-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
        text-align: left;
    }

    .dv-header-bottom-menu__cta {
        margin-right: 0;
    }

    .dv-header-bottom-menu__bottom-right {
        margin-right: auto;
        margin-left: 2rem;
        gap: 0;
    }

    .dv-header-bottom-menu__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 700px) {
    .dv-header__modal-nav {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        bottom: auto;
        top: 10rem;
        box-shadow: 0px 0px 25px var(--purple-light);
    }

    .dv-header__modal-nav__main {
        overflow: hidden;
    }

    .dv-header__modal-nav__sidebar
    .dv-header__modal-nav__item:not(.dv-header__modal-nav__item--cta) {
        padding: 0.5rem;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    }

    .dv-header__modal-nav__main .dv-header__modal-nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--purle-dark);
        box-shadow: 30px 10px 30px rgba(0, 0, 0, 0.2);
    }

    .dv-header__modal-nav__sidebar {
        display: flex;
        flex-direction: column;
    }

    .dv-header__text h1 {
        font-size: 2.5rem;
    }

    .dv-header__text {
        padding: 3rem;
    }
.dv-header {
    min-height:55vh;
    height:max-content;
   padding-bottom:3rem;
}
.dv-header-bottom-menu__content p {
    font-size:1.1rem;
}
    .dv-header__toggle__label {
        display: none;
    }
    .dv-header__cta-box {
        min-width:auto;
        width:90%;
    }

    .dv-header__toggle {
      top: 1rem;
      right: 1rem;
      padding:1rem;
      transform: scale(0.9);
      transform-origin: top right;
    }

    .dv-header__logo {
        top: 1rem;
       left: 2rem;
        width: 30vw;
    }

    .dv-header-bottom-menu__content {
        margin-top: -60px;
        display: grid;
        grid-template-columns: 2fr 1fr 2fr;
        justify-content: space-around;
        row-gap: 2rem;
    }

        .dv-header-bottom-menu__content > * {
            margin: auto;
            grid-row: 2;
        }

    .dv-header-bottom-menu__slogan {
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        margin-top: 1rem;
        width: 100%;
    }

    .dv-header-bottom-menu__cta {
        grid-row: 1;
   /*     grid-column: 1 / span 3;*/
        margin: auto;
   /*     width: 80%;*/
    }

    .dv-header-bottom-menu__bottom-right {
        margin: auto;
        text-align: center;
        width: 100%;
        display: flex;
    }

    .dv-header__cta-box:not(.dv-header__cta-box--hidden) {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
