/* ---------------------------------
# Reset CSS
--------------------------------- */

*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, video, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}


::-webkit-scrollbar {
    border-radius: 8px;
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #000;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(bottom, #1FBCCE 0, #F3A7FF 100%);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: -webkit-linear-gradient(bottom, #1FBCCE 0, #F3A7FF 100%);
}

/* ---------------------------------
# Main
--------------------------------- */
html.animate-intro {
    overflow: hidden;
}
body {
    background-color: #000;
}
#app {
    height: 100svh;
    font-family: "Roboto";
}

.mobile-header,
.mobile-close-menu {
    display: none;
}

#contentsBg {
    position: fixed;
    z-index: -1;
    right: 0;
    top: 0;
    height: 65vmax;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transition: .5s opacity;
}
.menu-item-opened #contentsBg {
    opacity: 1;
}

#intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#dynamics {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none;

    width: 75vw;
    max-width: 880px;
    min-width: 400px;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 50%;
    transition: .5s cubic-bezier(0.63, -0.08, 0.34, 0.98);
}
.menu-item-opened #dynamics {
    left: 7%;
    top: 6%;
    opacity: 0.2;
}
.animate-intro #dynamics {
    z-index: 99;
    animation: animateDynamics 2s cubic-bezier(0.71, 0.01, 0.18, 1.01);
}
@keyframes animateDynamics {
    from {
        transform: translate(-50%, -50%) rotate(60deg) scale(0.4);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) rotate(0) scale(1);
        opacity: 1;
    }
}

#mainLogo {
    position: absolute;
    z-index: 99;
    top: 76px;
    left: 50px;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    cursor: pointer;
    transition: .5s opacity;
}
.menu-item-opened #mainLogo {
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0px -20px 20px 20px #000;
}


/* ---------------------------------
# Menu
--------------------------------- */

.main-navi {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navi .menu-item {
    width: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    user-select: none;
    z-index: 2;
    cursor: pointer;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: .5s cubic-bezier(0.61, 0.26, 0.45, 0.78);
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(1) {
    top: 0;
    left: calc((50% - 100px) - 45vmin );
    scale: 1;
    animation-name: animateMenuItem1;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(2) {
    top: 2vmin;
    right: calc((50% - 100px) - 40vmin );
    scale: 1;
    animation-name: animateMenuItem2;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(3) {
    top: calc((50% - 100px));
    right: calc((50% - 100px) - 60vmin );
    animation-name: animateMenuItem3;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(4) {
    top: calc(100% - 200px - 2vmin);
    right: calc((50% - 100px) - 50vmin );
    animation-name: animateMenuItem4;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(5) {
    top: calc(100% - 160px);
    left: calc((50% - 100px) - 35vmin );
    animation-name: animateMenuItem5;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(6) {
    top: calc(100% - 200px - 18vmin);
    left: calc((50% - 100px) - 60vmin );
    animation-name: animateMenuItem6;
}
html:not(.animate-intro) .main-navi .menu-item:nth-child(7) {
    top: calc((50% - 100px) - 10vmin );
    left: calc((50% - 100px) - 65vmin );
    animation-name: animateMenuItem7; 
}

@keyframes animateMenuItem1 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(4px, 8px); }
    20%  { transform: translate(-2px, -4px); }
    30%  { transform: translate(4px, 4px); }
    40%  { transform: translate(-6px, 8px); }
    50%  { transform: translate(0px, 0px); }
    60%  { transform: translate(6px, 4px); }
    70%  { transform: translate(0px, 8px); }
    80%  { transform: translate(12px, -8px); }
    90%  { transform: translate(6px, 4px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem2 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(-6px, -4px); }
    20%  { transform: translate(6px, 3px); }
    30%  { transform: translate(-4px, -4px); }
    40%  { transform: translate(4px, 4px); }
    50%  { transform: translate(8px, -4px); }
    60%  { transform: translate(0px, 4px); }
    70%  { transform: translate(-4px, 8px); }
    80%  { transform: translate(2px, -2px); }
    90%  { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem3 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(4px, 8px); }
    20%  { transform: translate(-2px, -4px); }
    30%  { transform: translate(4px, 4px); }
    40%  { transform: translate(-6px, 8px); }
    50%  { transform: translate(0px, 0px); }
    60%  { transform: translate(6px, 4px); }
    70%  { transform: translate(0px, 8px); }
    80%  { transform: translate(12px, -8px); }
    90%  { transform: translate(6px, 4px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem4 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(4px, 8px); }
    20%  { transform: translate(-2px, -4px); }
    30%  { transform: translate(4px, 4px); }
    40%  { transform: translate(-6px, 8px); }
    50%  { transform: translate(0px, 0px); }
    60%  { transform: translate(6px, 4px); }
    70%  { transform: translate(0px, 8px); }
    80%  { transform: translate(12px, -8px); }
    90%  { transform: translate(6px, 4px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem5 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(-6px, -4px); }
    20%  { transform: translate(6px, 3px); }
    30%  { transform: translate(-4px, -4px); }
    40%  { transform: translate(4px, 4px); }
    50%  { transform: translate(8px, -4px); }
    60%  { transform: translate(0px, 4px); }
    70%  { transform: translate(-4px, 8px); }
    80%  { transform: translate(2px, -2px); }
    90%  { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem6 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(4px, 8px); }
    20%  { transform: translate(-2px, -4px); }
    30%  { transform: translate(4px, 4px); }
    40%  { transform: translate(-6px, 8px); }
    50%  { transform: translate(0px, 0px); }
    60%  { transform: translate(6px, 4px); }
    70%  { transform: translate(0px, 8px); }
    80%  { transform: translate(12px, -8px); }
    90%  { transform: translate(6px, 4px); }
    100% { transform: translate(0, 0); }
}

@keyframes animateMenuItem7 {
    0%   { transform: translate(0, 0); }
    10%  { transform: translate(-6px, -4px); }
    20%  { transform: translate(6px, 3px); }
    30%  { transform: translate(-4px, -4px); }
    40%  { transform: translate(4px, 4px); }
    50%  { transform: translate(8px, -4px); }
    60%  { transform: translate(0px, 4px); }
    70%  { transform: translate(-4px, 8px); }
    80%  { transform: translate(2px, -2px); }
    90%  { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}



/* Animate on load if menu item not selected */
.animate-intro .main-navi .menu-item {
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    scale: 0;
    opacity: 0;
}
.animate-intro .main-navi .menu-item:nth-child(1) {
    animation-name: animateMenuItemOnLoad1;
    animation-delay: 0.3s;
}
.animate-intro .main-navi .menu-item:nth-child(2) {
    animation-name: animateMenuItemOnLoad2;
    animation-delay: 0.6s;
}
.animate-intro .main-navi .menu-item:nth-child(3) {
    animation-name: animateMenuItemOnLoad3;
    animation-delay: 0.9s;
}
.animate-intro .main-navi .menu-item:nth-child(4) {
    animation-name: animateMenuItemOnLoad4;
    animation-delay: 1.2s;
}
.animate-intro .main-navi .menu-item:nth-child(5) {
    animation-name: animateMenuItemOnLoad5;
    animation-delay: 1.5s;
}
.animate-intro .main-navi .menu-item:nth-child(6) {
    animation-name: animateMenuItemOnLoad6;
    animation-delay: 1.8s;
}
.animate-intro .main-navi .menu-item:nth-child(7) {
    animation-name: animateMenuItemOnLoad7; 
    animation-delay: 2.1s;
}

@keyframes animateMenuItemOnLoad1 {
    0% { 
        top: 50%;
        left: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {        
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: 0;
        left: calc((50% - 100px) - 45vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad2 {
    0% { 
        top: 50%;
        right: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {        
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: 2vmin;
        right: calc((50% - 100px) - 40vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad3 {
    0% { 
        top: 50%;
        right: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {        
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: calc((50% - 100px));
        right: calc((50% - 100px) - 60vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad4 {
    0% { 
        top: 50%;
        right: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: calc(100% - 200px - 2vmin);
        right: calc((50% - 100px) - 50vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad5 {
    0% { 
        top: 50%;
        left: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {        
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: calc(100% - 160px);
        left: calc((50% - 100px) - 35vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad6 {
    0% { 
        top: 50%;
        left: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {        
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: calc(100% - 200px - 18vmin);
        left: calc((50% - 100px) - 60vmin );
        opacity: 1;
        scale: 1;
    }
}

@keyframes animateMenuItemOnLoad7 {
    0% { 
        top: 50%;
        left: 50%;
        opacity: 0;
        scale: 0;
    }
    40% {         
        opacity: 0;
        scale: 0;
    }
    100% { 
        top: calc((50% - 100px) - 10vmin );
        left: calc((50% - 100px) - 65vmin );
        opacity: 1;
        scale: 1;
    }
}





/* Menu item active state */
.menu-item-opened:not(.active-menu-item-1) .menu-item:nth-child(1) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-2) .menu-item:nth-child(2) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-3) .menu-item:nth-child(3) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-4) .menu-item:nth-child(4) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-5) .menu-item:nth-child(5) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-6) .menu-item:nth-child(6) {
    animation-play-state: paused;
    opacity: 0.7;
}
.menu-item-opened:not(.active-menu-item-7) .menu-item:nth-child(7) {
    animation-play-state: paused;
    opacity: 0.7;
}

html:not(.animate-intro):not(.menu-item-opened) .menu-items .menu-item:hover {
    animation-play-state: paused;
}

.menu-item-opened .menu-item:nth-child(1) { /* DG Bylder */
    left: 20px !important;
    top: calc(14vh + 10vmin) !important;
}
.menu-item-opened .menu-item:nth-child(7) { /* Platform */
    left: 160px !important;
    top: 14vh !important;
}
.menu-item-opened .menu-item:nth-child(5) { /* Mobile App */
    left: 160px !important;
    top: calc(14vh + 20vmin) !important;
}
.menu-item-opened .menu-item:nth-child(6) { /* Affiliate */
    left: 30px !important;
    top: calc(14vh + 32vmin) !important;
}
.menu-item-opened .menu-item:nth-child(3) {  /* Retail */
    right: calc(100% - 360px) !important;
    top: calc(14vh + 42vmin) !important;
}
.menu-item-opened .menu-item:nth-child(2) {  /* CRM */
    right: calc(100% - 200px) !important;
    top: calc(14vh + 52vmin) !important;
}
.menu-item-opened .menu-item:nth-child(4) {  /* Centrivo Connect */
    right: calc(100% - 360px) !important;
    top: calc(14vh + 62vmin) !important;
}


@media screen and (max-height: 840px) {
    .menu-item-opened #dynamics {
        left: 80px;
        top: -30px;
    }
    .menu-item-opened #mainLogo {
        width: 120px;
        top: 30px;
        left: 30px;
    }

    .menu-item-opened .menu-item:nth-child(1) { /* DG Bylder */
        left: 0px !important;
        top: 160px !important;
    }
    .menu-item-opened .menu-item:nth-child(7) { /* Platform */
        left: 120px !important;
        top: 100px !important;
    }
    .menu-item-opened .menu-item:nth-child(5) { /* Mobile App */
        left: 120px !important;
        top: 220px !important;
    }
    .menu-item-opened .menu-item:nth-child(6) { /* Affiliate */
        left: 0px !important;
        top: 260px !important;
    }
    .menu-item-opened .menu-item:nth-child(3) {  /* Retail */
        right: calc(100% - 330px) !important;
        top: 320px !important;
    }
    .menu-item-opened .menu-item:nth-child(2) {  /* CRM */
        right: calc(100% - 200px) !important;
        top: 380px !important;
    }
    .menu-item-opened .menu-item:nth-child(4) {  /* Centrivo Connect */
        right: calc(100% - 320px) !important;
        top: 440px !important;
    }
}


.main-navi .menu-item .menu-item-inner {
    position: relative;
}
.main-navi .menu-item .menu-item-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 120%;
    white-space: nowrap;
    font-weight: 600;
    font-size: calc( 22px + ( 32 - 22 ) * ( 100vmin - 320px ) / ( 1080 - 320 ) );
    line-height: calc( 26px + ( 40 - 26 ) * ( 100vmin - 320px ) / ( 1080 - 320 ) );
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background-color: #000;
    padding: 6px 20px;
    transition: .3s ease-in-out all;
}
.main-navi .menu-item .menu-item-cryst {
    max-width: 25vmin;
    max-height: 25vmin;
    margin: 0 auto;
    transition: .3s ease-in-out all;
}
.menu-item-opened .menu-item .menu-item-name {
    font-size: calc( 14px + ( 24 - 14 ) * ( 100vmin - 320px ) / ( 1080 - 320 ) );
    line-height: calc( 20px + ( 26 - 20 ) * ( 100vmin - 320px ) / ( 1080 - 320 ) );

    padding: 0 20px;
}
.menu-item-opened .menu-item .menu-item-cryst {
    max-height: 18vh;
    min-height: 60px;
}

.menu-item-opened .menu-item:nth-child(1) .menu-item-cryst { /* DG Bylder */
    max-height: 12vh;
}
.menu-item-opened .menu-item:nth-child(7) .menu-item-cryst { /* Platform */
    max-height: 15vh;
}
.menu-item-opened .menu-item:nth-child(5) .menu-item-cryst { /* Mobile App */
    max-height: 9vh;
}
.menu-item-opened .menu-item:nth-child(6) .menu-item-cryst { /* Affiliate */
    max-height: 16vh;
}
.menu-item-opened .menu-item:nth-child(3) .menu-item-cryst {  /* Retail */
    max-height: 14vh;
}
.menu-item-opened .menu-item:nth-child(2) .menu-item-cryst {  /* CRM */
    max-height: 18vh;
}
.menu-item-opened .menu-item:nth-child(4) .menu-item-cryst {  /* Centrivo Connect */
    max-height: 16vh;
}


/* ---------------------------------
# Contents
--------------------------------- */

#contents {
    position: absolute;
    top: 12vh;
    left: 35vw;
    height: calc(100% - 12vh - 10vh);
    width: calc(100% - 35vw - 110px);
}
.content-item {
    display: flex;
    flex-direction: column;
    height: 0;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: 2s opacity;
}

.menu-item-opened.active-menu-item-1 .content-item[data-menu-id="1"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-2 .content-item[data-menu-id="2"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-3 .content-item[data-menu-id="3"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-4 .content-item[data-menu-id="4"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-5 .content-item[data-menu-id="5"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-6 .content-item[data-menu-id="6"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu-item-opened.active-menu-item-7 .content-item[data-menu-id="7"] {
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.content-item .content-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 24px;
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 36px;
    padding-right: 40px;
}
.content-item .content-heading span {
    background: -webkit-linear-gradient(left, #1FBCCE 0, #F3A7FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.content-item .content-heading .video-control {
    cursor: pointer;
}
.content-heading .video-control.stop,
.content-item.video-visible .video-control.play {
    display: none;
}
.content-item.video-visible .video-control.stop {
    display: block;
}
.content-item .content-video-wrapper {
    height: 0;
    opacity: 0;
    overflow-y: auto;
    padding-right: 40px;
}
.content-item .content-video-wrapper video {
    border-radius: 16px;
    width: 100%;
}
.content-item.video-visible .content-video-wrapper {
    height: auto;
    opacity: 1;
}
.content-item.video-visible .content-inner-wrapper {
    display: none;
}


.content-item .content-inner-wrapper {
    padding-right: 40px;
    overflow-y: auto;
}
.content-item .content-description {
    font-size: 16px;
    line-height: 22px;
    color: #C2C6CB;
    margin-bottom: 60px;
}
.content-item .content-features {
    display: flex;
    flex-wrap: wrap;
    gap: 66px 4%;
}
.content-item .content-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
}
.content-features .feature-item .feature-icon-wrapper {
    position: relative;
    width: 132px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 56px;
    background: linear-gradient(180deg, #000 0%, #191919 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 161, 179, 0.50);
}
.content-features .feature-item .feature-icon-wrapper:before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(180deg, #00A1B3, #84009A);
    border-radius: 56px;
    z-index: -1;
}
.content-features .feature-item .feature-name {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 16px;
}
.content-features .feature-item .feature-info {
    font-size: 14px;
    line-height: 20px;
    color: #C2C6CB;
    text-align: center;
}



/* Mobile and Tablet media queries */
@media screen and (max-width: 991px) {
    #app {
        overflow-x: hidden;
    }
    #mainLogo {
        height: 28px;
        left: 24px;
        top: 24px;
        object-position: left;
    }
    .menu-item-opened #mainLogo {
        opacity: 1;
    }
    .menu-item-opened #dynamics {
        top: 0;
        left: 50%;
    }
    .mobile-header {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 20px 16px;
    }

    .mobile-header .menu-toggle-btn {
        display: inline-block;
        padding: 4px 8px;
        cursor: pointer;
    }
    .mobile-header .menu-toggle {
        position: relative;
        z-index: 99;
        display: inline-block;
        width: 24px;
        height: 18px;
    }
    .mobile-header .menu-toggle:before, .mobile-header .menu-toggle:after, .mobile-header .menu-toggle span:before {
        content: '';
        position: absolute;
        left: 0;
        display: inline-block;
        height: 2px;
        width: 100%;
        background-color: #fff;
        border-radius: 3px;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
    }
    .mobile-header .menu-toggle:before {
        top: 0;
    }
    .mobile-header .menu-toggle span:before {
        top: 8px;
    }
    .mobile-header .menu-toggle:after {
        bottom: 0;
    }


    /* Mobile menu Close button */
    .mobile-close-menu {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    .mobile-close-btn {
        position: relative;
        display: inline-block;
        width: 100%;
        height: 100%;
    }
    .mobile-close-btn:before,
    .mobile-close-btn:after {
        content: "";
        position: absolute;
        height: 2px;
        width: 24px;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .mobile-close-btn::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .mobile-close-btn:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .main-navi {
        position: absolute;
        top: 0;
        bottom: 0;
        right: -100%;
        padding: 70px 28px;
        background-color: #000;
        background-image: url(../images/MobileMenuBg.png);
        background-position: center;
        background-size: 75vh;
        background-repeat: no-repeat;
        transition: .5s all ease-in-out;
        z-index: 100;
    }
    .mobile-menu-opened .main-navi {
        right: 0;
    }
    .main-navi .menu-item {
        position: static;
        animation: none !important;
        scale: 1 !important;
        opacity: 1 !important;
        width: auto;
        max-width: auto;
        margin-bottom: 42px;
        justify-content: flex-start;
    }
    .menu-item-inner {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .main-navi .menu-item .menu-item-cryst {
        width: 40px;
        max-height: unset;
        min-height: unset;
    }
    .main-navi .menu-item .menu-item-name {
        position: static;
        min-width: unset;
        font-size: 16px;
        line-height: 20px;
        background-color: transparent;
        transform: none;
    }


    #contents {
        width: calc(100% - 48px);
        left: 24px;
        top: 110px;
        padding: 0 0 30px;
        height: auto;
    }
    .content-item .content-heading {
        padding: 0;
        font-size: 32px;
        line-height: 36px;
    }
    .content-item .content-heading .video-control {
        width: 36px;
        object-fit: contain;
    }
    .content-item .content-inner-wrapper,
    .content-item.video-visible .content-video-wrapper {
        padding: 0;
    }
    .content-item .content-features .feature-item {
        width: 48%;
    }
    .content-features .feature-item .feature-icon-wrapper {
        width: 90px;
        height: 90px;
    }
    .content-features .feature-item .feature-name {
        font-size: 16px;
        line-height: 18px;
    }
}