*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --transition: cubic-bezier(.65, 0, .2, 1);
}

html {
    background-color: #14073e;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: 100% 203%;
    background-position: center;

    font-family: "Poppins", sans-serif;
    font-style: normal;

    display: flex;
    align-items: center;
    justify-content: center;
}


#page_header {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 5;
}

#logo {
    position: fixed;
    left: 2%;
    top: 2vw;
    width: clamp(50px, 4vw, 100px);
    aspect-ratio: 1 / 0.5904057;
    z-index: 10;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: all 1s var(--transition);
}

#logo.show {
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
}

#toggle_audio {
    position: fixed;
    right: 3%;
    bottom: 3vw;
    font-size: clamp(16px, 1vw, 24px);
    z-index: 10;
    color: #fff;
    translate: 50% -50%;
    rotate: -90deg;
    opacity: 0;
    transition: all 0.5s ease 1s;
}
#toggle_audio.show {
    opacity: 1;
}

#toggle_audio > span {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

#audio_status {
    display: grid;
    grid-auto-rows: 100% 100%;
    transition: all 0.5s ease;
    text-transform: uppercase;
    margin-left: 0.5ch;
}

#audio_status span {
    display: flex;
    align-items: center;
    justify-content: center;
}

#toggle_audio.active #audio_status {
    transform: translateY(-100%);
}


#sfx {
    position: absolute;
    top: -100vw;
    left: -100%;
}



video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

video,
img {
    user-select: none;
    pointer-events: none;
    touch-action: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}



#loader {
    position: absolute;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;

    /* overflow: hidden; */
}
#loader.remove {
    transition-delay: 0.2s;
    opacity: 0;
}

#loading_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: none;
    touch-action: none;
    height: 100%;
    width: 100%;
    background: radial-gradient(199.61% 108.54% at 50% 110.67%, #2F1C75 0%, #732FAF 100%);
    transition: all 0.5s ease;
}

#loader.hide #loading_container {
    opacity: 0;
}


#loading_container p {
    position: absolute;
    top: 40%;
    left: 50%;
    translate: -50% -50%;
    font-size: clamp(25px, 5vw, 40px);
    font-weight: 400;
    color: #fff;
}

#toggle_litemode {
    position: absolute;
    bottom: 2%;
    left: 50%;
    translate: -50% 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    z-index: 5;
}


#intro_into_veem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: clamp(100px, 90%, 1000px);
    opacity: 0;
    transition: all 0.5s var(--transition);
    user-select: none;
    touch-action: none;
    pointer-events: none;
}

#loader.hide #intro_into_veem {
    opacity: 1;
    user-select: auto;
    touch-action: auto;
    pointer-events: auto;
}

#intro_into_veem i {
    font-size: clamp(12px, 1.5vw, 20px);
    color: #fff;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2px;
    translate: 0 -49%;
}

#intro_into_veem h1 {
    font-size: clamp(35px, 5vw, 90px);
    color: #fff;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    line-height: 1;
    max-width: clamp(100px, 15ch, 100%);
}

#intro_into_veem p {
    font-size: clamp(14px, 1vw, 1.1rem);
    color: #fff;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    text-align: center
}

#intro_into_veem .slide-out-text span {
    overflow: visible;
}
#intro_into_veem .slide-out-text span span {
    transition-duration: 1.5s;
}

#enter_scene {
    color: #fff;
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 500;
    cursor: pointer;
    padding: 1.3ch 10ch;
    background: linear-gradient(254deg, #9B61CF 22.93%, #4E37CC 99.66%);    
    border-radius: 2rem;
    border: none;
    margin-top: clamp(10px, 1vw, 32px);
    opacity: 0;
    transform: translateY(50%);
    transition: all 1s var(--transition);
}

#loader.hide #enter_scene {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

#enter_scene.hide {
    opacity: 0;
    transform: translateY(50%);
}




.loader_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    transform-origin: bottom center;
    transition: all 1s var(--transition);
    transform-origin: 50% 70%;
    transform: scale(1.05);
}

#loader.hide .loader_bg {
    transform: scale(1);
}

#loader.remove .loader_bg {
    transform: scale(3);
}


.loader_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*// MOUSE FOLLOWER //*/
#mouse_follower {
    position: absolute;
    scale: 0;
    transition: scale 0.3s var(--transition);

    width: max-content;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100000;
    user-select: none;
    pointer-events: none;
    touch-action: none;
    overflow: hidden;
}

#clip_popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    overflow: visible;
    z-index: -1;
    translate: -50% -50%;
}

#clip_popup svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#clip_popup rect {
    translate: 5% 0%;
}

.animated_clip path {
    animation: clipPathAnimation 2s infinite alternate linear;

}

@keyframes clipPathAnimation {
    0% {
        clip-path: path("M168.471 28.3687C185.714 44.8391 196.78 66.8425 199.353 89.232C202.056 111.493 196.137 134.268 184.427 152.411C172.589 170.683 154.832 184.452 134.501 192.687C114.042 200.922 91.009 203.624 70.2923 197.19C49.5757 190.757 31.1751 175.316 18.179 155.371C5.31144 135.555 -2.15172 111.364 0.55046 87.5592C3.12396 63.883 15.9915 40.7215 34.9067 24.5084C53.8219 8.42403 78.9136 -0.840573 103.233 0.0601525C127.553 0.960878 151.1 11.8983 168.471 28.3687Z");
    }
    25% {
        clip-path: path("M164.284 31.0807C180.961 47.3541 192.258 68.2001 197.234 90.7944C202.076 113.389 200.865 138.001 191.182 160.46C181.498 183.055 163.477 203.497 140.479 212.912C117.481 222.191 89.6416 220.578 65.8368 210.625C41.8975 200.808 21.8584 182.92 10.8302 160.998C-0.0634772 139.211 -1.94634 113.523 1.6849 88.1046C5.31614 62.8204 14.4615 37.6707 32.2142 21.5319C49.9669 5.25857 76.327 -1.86941 100.67 0.416923C125.013 2.83775 147.472 14.8074 164.284 31.0807Z");
    }
    50% {
        clip-path: path("M159.196 31.0941C177.086 46.3427 193.655 63.0322 198.458 82.8434C203.261 102.775 196.297 125.708 185.131 147.56C173.964 169.292 158.716 189.824 137.824 198.949C117.052 208.074 90.7571 205.793 70.5857 194.987C50.5343 184.061 36.4863 164.49 23.3989 143.598C10.3115 122.706 -1.81541 100.373 0.225752 79.2414C2.38698 58.1094 18.7162 38.1781 38.1673 23.2897C57.6183 8.28117 80.1911 -1.68449 101.083 0.236603C121.975 2.15769 141.306 15.8455 159.196 31.0941Z");
    }
    75% {
        clip-path: path("M156.383 36.4706C176.219 54.0178 194.275 72.7094 198.853 94.3256C203.303 116.069 194.275 140.737 180.924 161.844C167.446 182.952 149.644 200.499 128.028 208.891C106.412 217.411 80.9811 216.902 59.6192 208.001C38.1302 199.1 20.7101 181.808 10.7921 161.59C0.874136 141.373 -1.41464 118.358 0.74698 94.3256C2.78144 70.1664 9.5206 45.2442 25.6692 27.0612C41.9449 9.00532 67.6299 -2.18422 91.2806 0.358855C115.058 2.77478 136.547 19.0505 156.383 36.4706Z");
    }
    100% {
        clip-path: path("M155.042 21.5643C173.495 34.5158 190.916 51.3642 197.22 72.3388C203.524 93.428 198.825 118.529 185.988 137.44C173.151 156.237 152.291 168.959 130.858 174.002C109.539 179.046 87.7624 176.524 66.1001 170.106C44.3232 163.687 22.7756 153.486 10.9702 136.179C-0.83514 118.758 -2.89821 94.2303 3.74947 73.9434C10.3972 53.5419 25.7556 37.2666 42.8332 23.9712C59.9109 10.7905 78.5932 0.589726 97.7339 0.0166503C116.875 -0.44181 136.474 8.61279 155.042 21.5643Z");
    }
}


#mouse_follower.shown {
    scale: 1;
}


#mouse_follower>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(254deg, #9B61CF 22.93%, #4E37CC 99.66%);
    width: 100%;
    height: 100%;
    padding: 20px;
}

#mouse_follower.highlight_section>div:first-of-type {
    background: #fff;
}

#mouse_follower.highlight_section #target_action {
    color: #9B61CF;
}

#target_action {
    font-size: clamp(14px, 1vw, 20px);
    color: #fff;
    font-weight: 500;
    text-align: center;
    max-width: 11ch;
}



#images_loading_progress {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 7px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: -1;

    display: flex;
    align-items: center;
    justify-content: center;
}


#images_loading_progress svg {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 0.5;
}

#images_loading_progress circle {
    fill: none;
    stroke: #fff;
    stroke-width: 13px;
    stroke-dasharray: 441;
    stroke-dashoffset: 441;
    transition: stroke-dashoffset 0.3s linear;
}



main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    max-height: 100vh;
    margin: auto;
    z-index: 3;
    background-color: #14073e;
}

/*// MAIN SECTIONS //*/
.main_sections {
    position: absolute;
    left: 50%;
    height: 100%;
    aspect-ratio: 1 / 0.3857142857142857;
    transform: translateX(-50%);
    opacity: 0;

    pointer-events: none;
    touch-action: none;
    user-select: none;
}

.main_sections.active {
    pointer-events: auto;
    touch-action: auto;
    user-select: auto;
}

#Home {
    opacity: 1;
    z-index: 10;
}


#services {
    z-index: 5;
}

#solutions {
    z-index: 4;
}

#sectors {
    z-index: 3;
}

#contact {
    z-index: 2;
}


.main_sections>div:not(.subsection) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

#main_intro {
    z-index: 2;
    /* transition: all 500ms ease; */
}


/*/ MAIN SCENE /*/

#main_video {
    position: relative;
}

#main_video button,
#services_main_video button,
#solutions_main_video button,
#contact_main_video button {
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 3%;
    border-radius: 50%;
}


#night_mode  {
    position: absolute;
    left: 50%;
    height: 100%;
    aspect-ratio: 1 / 0.3857142857142857;
    transform: translateX(-50%);
    opacity: 0;

    pointer-events: none;
    touch-action: none;
    user-select: none;
}

#night_mode.active {
    opacity: 1;
    pointer-events: auto;
    touch-action: auto;
    user-select: auto;
}
#night_outro {
    opacity: 0;
}

#night_mode video {
    position: absolute;
}

#main_video #trigger_night {
    position: absolute;
    top: 19.5%;
    width: 2%;
    aspect-ratio: 1 / 1;
    right: 36.3%;
    border-radius: 50%;
}

#close_night {
    position: absolute;
    top: 19.5%;
    width: 2%;
    aspect-ratio: 1 / 1;
    right: 37.25%;
    border-radius: 50%;
}


/* Directly chosen Buttons */
#trigger_vision {
    position: absolute;
    top: 40%;
    left: 56.2%;
}


#trigger_mission {
    top: 63%;
    left: 33.1%;
}


#trigger_values {
    top: 50.5%;
    left: 41%;
}

#trigger_about {
    top: 38%;
    left: 48.8%;
}

#trigger_services {
    position: absolute;
    top: 52%;
    right: 35%;
    aspect-ratio: 1 / 0.8;
}


#close_vision,
#close_mission,
#close_values {
    position: absolute;
    top: 24%;
    left: 23%;
    width: 7%;
    aspect-ratio: 1 / 1;
}

#close_about {
    position: absolute;
    top: 24%;
    left: 22.7%;
    width: 7%;
    aspect-ratio: 1 / 1;
}


/*/ SERVICES SECTION /*/
#trigger_home {
    position: absolute;
    top: 42.8%;
    left: 26.5%;
    width: 4%;
    aspect-ratio: 1 / 0.8;
}
#trigger_solutions {
    position: absolute;
    top: 38.5%;
    right: 29.6%;
    width: 4%;
    aspect-ratio: 1 / 0.8;
}


#trigger_vr {
    top: 45%;
    left: 40.2%;
    width: 5%;
    border-radius: 50%;
}

#trigger_ar {
    top: 32%;
    left: 46.2%;
    width: 5%;
    border-radius: 50%;
}

#trigger_research {
    top: 19%;
    left: 35.1%;
    width: 6%;
    border-radius: 50%;
}

#trigger_3d {
    top: 38%;
    right: 34.5%;
    width: 4% !important;
    border-radius: 50%;
}

#trigger_anamorphic {
    top: 42%;
    right: 48.2%;
    width: 4%;
    border-radius: 50%;
}

#trigger_ai {
    top: 31%;
    right: 43.6%;
    width: 5%;
    border-radius: 50%;
}

#trigger_directional_audio {
    top: 48%;
    left: 31.1%;
    width: 5%;
    border-radius: 50%;
}

#trigger_filters {
    bottom: 30%;
    right: 34.9%;
    width: 5%;
    border-radius: 50%;
}

#trigger_expSubsectionbtns {
    top: 32%;
    left: 49.7%;
    width: 5%;
    border-radius: 50%;
}

#trigger_expSubsectionbtns img {
    width: 100%;
    aspect-ratio: 1 / 1;
    scale: 0;
    transition: all 0.5s var(--transition);
}

#trigger_expSubsectionbtns.showX img {
    scale: 1;
}


#trigger_holofans {
    top: 21%;
    left: 44.7%;
    width: 5%;
    border-radius: 50%;
}
#trigger_hologram {
    top: 14%;
    left: 47.7%;
    width: 5%;
    border-radius: 50%;
}
#trigger_walls {
    top: 14%;
    left: 51.7%;
    width: 5%;
    border-radius: 50%;
}
#trigger_mapping {
    top: 21%;
    left: 54.7%;
    width: 5%;
    border-radius: 50%;
}

.exp_subs {
    scale: 0;
    transition: all 0.5s var(--transition);
}

.exp_subs.show {
    scale: 1;
    animation: hover 2s linear infinite;
}

.exp_subs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.triggerer:not(.exp_subs, #trigger_expSubsectionbtns).minimize {
    scale: 0.5;
}

@keyframes hover {
    0% {
        translate: 0 0;
    }
    25% {
        translate: 0 5%;
    }
    50% {
        translate: 0 0%;
    }
    75% {
        translate: 0 -5%;
    }
    100% {
        translate: 0 0%;
    }
}


#close_AR,
#close_VR,
#close_research,
#close_3D,
#close_anamorphic,
#close_ai,
#close_directional_audio,
#close_filters,
#close_holofans,
#close_hologram,
#close_walls,
#close_mapping {
    position: absolute;
    top: 8.5%;
    left: 14%;
    width: 3.5%;
    aspect-ratio: 1 / 1;
}



.service_info_card,
.solution_info_card,
.sector_info_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: absolute;

    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%); */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.5px);
    -webkit-backdrop-filter: blur(9.5px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;

    scale: 0;
    transition: all 0.5s var(--transition);
    background: linear-gradient(180deg, #7C39A0 0%, rgba(123, 89, 189, 0.10) 100%);
}


.service_info_card {
    bottom: 2vw;
    left: 2%;
}
.solution_info_card {
    top: 2vw;
    right: 2%;
    transform-origin: right;
}

.sector_info_card {
    top: 50%;
    right: 2%;
    translate: 0 -50%;
    transform-origin: right;
}

.service_info_card.show,
.solution_info_card.show,
.sector_info_card.show {
    scale: 1;
}


.service_info_card header,
.service_info_card > div,
.solution_info_card header,
.solution_info_card > div,
.sector_info_card header,
.sector_info_card > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: flex-start;
    padding: clamp(20px, 2.5vw, 50px);
    border-radius: 1rem;
}

.service_info_card header,
.solution_info_card header,
.sector_info_card header {
    padding-bottom: 0;
}

.service_info_card header h3,
.solution_info_card h4,
.sector_info_card h5 {
    color: #FFF;
    font-size: clamp(20px, 2vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    max-width: 12ch;
}




.service_info_card p,
.solution_info_card p,
.solution_info_card > div > span,
.sector_info_card p {
    font-family: Poppins;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    max-width: 25ch;
}


.service_info_card a,
.solution_info_card a{
    color: #2b2b2b;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1.2ch 7ch;
    border-radius: 5rem;
    background-color: #EAEAEA;
}

.service_info_card a,
.solution_info_card a,
.solution_info_card > div > span {
    margin-top: 16px;
}


.sector_benefits {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 12px;
    margin-bottom: 5vw;
}

.applicable_services {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.applicable_services ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
}
.applicable_services ul::-webkit-scrollbar {
    display: none;
}

.applicable_services ul li {
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    justify-items: center;
    width: 50px;
    aspect-ratio: 1 / 1;
    background-color: #52217d;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.applicable_services ul li img {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

/*/// SOLUTIONS SECTION ///*/

#trigger_return_services {
    position: absolute;
    top: 39%;
    left: 26.9%;
    width: 4%;
    aspect-ratio: 1 / 0.8;
}

#trigger_sectors {
    position: absolute;
    top: 37.8%;
    right: 35.6%;
    width: 4%;
    aspect-ratio: 1 / 0.8;
}


#trigger_pixicamel {
    bottom: 34%;
    left: 32.5%;
    border-radius: 50%;
}
#trigger_immersa {
    top: 22%;
    left: 50%;
    border-radius: 50%;
}
#trigger_mrkba {
    bottom: 23.5%;
    left: 56%;
    border-radius: 50%;
}
#trigger_vdiner {
    bottom: 26.5%;
    left: 40%;
    border-radius: 50%;
}
#trigger_vcommerce {
    bottom: 40%;
    left: 38%;
    border-radius: 50%;
}
#trigger_vminds {
    bottom: 47%;
    left: 44%;
    border-radius: 50%;
}
#trigger_double_edge {
    bottom: 39.5%;
    left: 45.3%;
    border-radius: 50%;
}



#close_pixicamel,
#close_immersa,
#close_mrkba,
#close_vdiner,
#close_vcommerce,
#close_vminds,
#close_double_edge {
    position: absolute;
    top: 19.5%;
    left: 21%;
    width: 3.5%;
    aspect-ratio: 1 / 1;
}



.solution_metrics {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10vw;
    margin-bottom: 16px;
}

.solution_metrics p:first-of-type {
    font-size: 2rem;
    line-height: 1;
}
.solution_metrics p:first-of-type span {
    font-size: 1.4vw;
    font-weight: 500;
}


/*// SECTORS SECTION //*/

#trigger_return_solutions {
    position: absolute;
    bottom: 32%;
    left: 16.5%;
    width: 3%;
    aspect-ratio: 1 / 0.8;
}

#trigger_contact {
    bottom: 36.5%;
    right: 24.7%;
    width: 3%;
}


#sectors_main_video {
    position: relative;
}

#sectors_main_video button {
    position: absolute;
}


#trigger_culture {
    top: 49%;
    left: 28%;
    width: 4%;
    border-radius: 50%;
}

#trigger_education {
    top: 38%;
    right: 35%;
    width: 4%;
    border-radius: 50%;
}

#trigger_entertainment {
    top: 27%;
    right: 48%;
    width: 4%;
    border-radius: 50%;
}

#trigger_health {
    bottom: 26%;
    right: 41%;
    width: 4%;
    border-radius: 50%;
}

#trigger_industrial {
    bottom: 45%;
    right: 25%;
    width: 4%;
    border-radius: 50%;
}

#trigger_real_estate {
    bottom: 54%;
    right: 46%;
    width: 4%;
    border-radius: 50%;
}

#trigger_retail {
    top: 32%;
    left: 41%;
    width: 4%;
    border-radius: 50%;
}

#trigger_tourism {
    top: 52%;
    right: 37%;
    width: 4%;
    border-radius: 50%;
}

#trigger_upskilling {
    bottom: 43.5%;
    left: 43%;
    width: 4%;
    border-radius: 50%;
}


#close_culture,
#close_education,
#close_entertainment,
#close_health,
#close_industrial,
#close_real_estate,
#close_retail,
#close_tourism,
#close_upskilling {
    position: absolute;
    top: 5.5%;
    right: 1.5%;
    width: 4.5%;
    aspect-ratio: 1 / 1;
}


/*// CONTACT US SECTION //*/

#trigger_return_sectors {
    top: 37%;
    left: 34.5%;
    width: 4.5%;
    aspect-ratio: 1 / 1
}

#linkedin_link {
    position: absolute;
    top: 43%;
    right: 49%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

#insta_link {
    position: absolute;
    top: 34%;
    right: 49.15%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

#tiktok_link {
    position: absolute;
    top: 34%;
    right: 45.15%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
#youtube_link {
    position: absolute;
    top: 25%;
    right: 45.15%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
#x_link {
    position: absolute;
    top: 25%;
    right: 49.15%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}


#email_link {
    position: absolute;
    bottom: 30.5%;
    right: 49.8%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

#trigger_form {
    position: absolute;
    bottom: 49.5%;
    right: 45.3%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

#contact #trigger_return_home {
    position: absolute;
    top: 13%;
    right: 45.15%;
    width: 3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}


/*// CONTACT FORM //*/





/* Common between each subsections */
.close_subsection {
    position: relative;
    border-radius: 5px;
}

.close_subsection:focus {
    outline: none;
}


.subsection {
    position: absolute;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 50%;
    translate: -50% 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transform: translateY(100vh);
    transition: backdrop-filter 0.5s ease;
}

.canvas_wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    height: 100%;
    aspect-ratio: 1.777 / 1;
}

.subsection.shown {
    transform: translateY(0);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.subsection.shown {
    transform: translateY(0);
}

.sequenceImages {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.sequenceImages.lite {
    transform: translate(-50%, 100%);
    transition: all 0.5s var(--transition);
}
.sequenceImages.lite.shown {
    transform: translate(-50%, -50%);
}

#u-values .sequenceImages {
    width: 92%;
}

.subsection_p {
    position: absolute;
    z-index: 33333333;
    color: #fff;
    top: 50%;
    left: 32%;
    width: 41ch;
    font-size: clamp(11px, 0.9vw, 40px);
    rotate: -2deg;
    text-shadow: -2px 1px 0px #694d0042;
    transform: rotateY(5deg);
}

/* Slide out text common styles */
.slide-out-text>span {
    display: -webkit-inline-flex;
    display: inline-flex;
    /* overflow: hidden; */
}

.slide-out-text>span span {
    display: inline-block;
    opacity: 0;
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -o-transition: transform 0.5s var(--transition),
        opacity 0.8s var(--transition);
    -moz-transition: transform 0.5s var(--transition),
        opacity 0.8s var(--transition);
    -webkit-transition: transform 0.5s var(--transition),
        opacity 0.8s var(--transition);
    transition: transform 0.5s var(--transition),
        opacity 0.8s var(--transition);
}

.slide-out-text.fade-in>span span {
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}




/*/ PULSE EFFECT ON MAIN VIDEO BUTTONS /*/
.section_main_scene button::before,
.section_main_scene button::after,
.section_main_scene a::before,
.section_main_scene a::after,
#night_mode button::before,
#night_mode button::after  {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 67.28%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0;
}


.section_main_scene.shown button::before,
.section_main_scene.shown button::after,
.section_main_scene.shown a::before,
.section_main_scene.shown a::after,
.close_subsection:hover::before,
.close_subsection:hover::after,
.close_subsection:focus::before,
.close_subsection:focus::after,
#night_mode button::before,
#night_mode button::after {
    animation: pulse 2s ease-out infinite;
}

.section_main_scene.shown button::after,
.section_main_scene.shown a::after,
.close_subsection:hover::after,
.close_subsection:focus::after,
#night_mode button::after  {
    animation-delay: 1s;
}


.section_main_scene button::before,
.section_main_scene a::before,
.close_subsection::before,
#night_mode button::before{
    width: 70%;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section_main_scene button::after,
.section_main_scene a::after,
.close_subsection::after,
#night_mode button::after {
    width: 100%;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.subsection_img {
    height: 100%;
    aspect-ratio: 1.777 / 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 100%) scale(0);
    transition: all 0.5s var(--transition);
    opacity: 0;
    z-index: -1;
}

.subsection_img.shown {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


@keyframes pulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}


@media screen and (orientation: landscape){
    #portrait_notice {
        display: none;
    }

    main,
    #loader {
        overflow: hidden;
        height: 100%;
        width: 100%;
    }
}

@media screen and (orientation: portrait) {
    #portrait_notice {
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        height: 100dvh;
        background-color: rgba(4, 4, 4, 0.9);
        z-index: 1000000;
        opacity: 0;
        transition: all 0.7s ease;
    }
    #portrait_notice.show {
        opacity: 1;
    }
    #portrait_notice.hide {
        opacity: 0;
    }


    #portrait_notice > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    #portrait_notice svg {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    #portrait_notice p {
        font-size: 16px;
        color: #fff;
        width: 80%;
        text-align: center;
    }

    #portrait_notice_btn {
        width: 80%;
        padding: 1.5ch 0;
        border: 2px solid #fff;
        border-radius: 6rem;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 30px;
    }



    main,
    #loader {
        position: absolute;
        left: 0;
        top: -100dvw;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);

        -webkit-transform-origin: bottom left;
        -moz-transform-origin: bottom left;
        transform-origin: bottom left;
        width: 100dvh;
        height: 100dvw;
        object-fit: cover;

        overflow: hidden;
    }

    .loader_bg {
        height: 100dvw;
        width: 100dvh;
    }

    #close_vision {
        top: 14%;
        left: 17%;
    }

    .subsection {
        width: 100vh;
        width: 100dvh;
    }

    #logo {
        top: 2vw;
        left: unset;
        right: 2vw;
        rotate: 90deg;
        translate: 0 90%;
    }

    #toggle_audio {
        left: 0;
        bottom: 0%;
        font-size: 16px;
        right: unset;
        rotate: 0deg;
    }
}

@media screen and (max-width: 900px) {
    #Home .subsection_img.shown {
        height: 140%;
    }
    #u-values .subsection_img {
        height: 130%;
    }

    #Home .subsection_p {
        top: 50%;
        left: 26%;
        width: 34ch;
    }
    #close_vision, #close_mission, #close_values {
        position: absolute;
        top: 19%;
        left: 12%;
        width: 9%;
        aspect-ratio: 1 / 1;
    }
    #close_about {
        top: 14%;
        left: 12.7%;
        width: 8%;
    }
    
    .service_info_card a,
    .solution_info_card a {
        display: none;
    }

    .section_main_scene button::before, 
    .section_main_scene button::after, 
    .section_main_scene a::before, 
    .section_main_scene a::after, 
    #night_mode button::before, 
    #night_mode button::after {
        background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 33.28%, rgba(255, 255, 255, 0.7) 100%);
    }

}

@media (pointer: coarse) and (hover: none) {
    #mouse_follower {
        display: none;
    }
}