@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;padding: 0;box-sizing: border-box;
}
html{
    font-family: "Montserrat", sans-serif;
    font-size: 0.625rem;
    height: 100%;
    overflow: hidden;
}
body{
    font-size: 1.6rem;
    background-color: #fcf8ed;

}

/*BASE SITE CSS ENDING*/

/*NAV*/

nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
  
    transition: 0.3s all;
    transition-delay: 0.1s;
    padding: 0px 80px 0px 80px;
    height: 120px;
}
nav a {
    display: flex;
    justify-content: center;
    align-items: center;
}
nav.active {
    background-color: #0c264c;
    z-index: 4999;
    .burger-btn {
        .line1, .line2, .line3 {
            background-color: white;
        }
    }
}
nav.active .burger-btn .line1, .line2, .line3 {
    background-color: white;
}
.burger-btn {
    z-index: 4999;
    position: relative;
    cursor: pointer;
    
    
    
   
}
.line1, .line2, .line3 {
    width: 30px;
    height: 3px;
    background-color: #0c264c;
    margin: 5px;
    transition: 0.4s;

}

.line1.active {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #fff;

}
.line2.active {

   transform: translateX(-50px);
   opacity: 0;
   background-color: #fff;
    

}
.line3.active {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #fff;

}
nav a {
    height: 100px;
}
.upper-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}
.upper-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}
.logo {
    height: 100px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo img {
    height: 70%;
    width: auto;
    object-fit: cover;
    transition: 0.3s all;
}

.logo img.filtered {
    filter: brightness(0) invert(1);
}

.burger-menu {
   display: grid;
   grid-template-rows: repeat(auto-fit, 1fr);
   grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    list-style: none;
    width: 100%;
    position: absolute;
    top: -100%;
    opacity: 0;
    min-height: 30dvh;
    transition: 0.5s all;
    padding-top: 50px;
    padding-bottom: 50px;
    max-height: calc(100dvh - 100px);
    padding-left: 50px;
    padding-right: 50px;
    overflow-y: auto; /* Enables scrolling */
    z-index: 4999;
 
}

.burger-menu::-webkit-scrollbar {
    width: 5px;
    border-radius: 091201px;
}
.burger-menu::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 091201px;
    width: 50px;
}

.burger-menu .menu-item {
    display: flex;
    flex-direction: column;
    

    gap: 20px; 
}
.burger-menu .menu-item p {
    font-size: 3rem;
    font-weight: 500;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.burger-menu .menu-item .sub-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
   
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;

}
.burger-menu .menu-item .sub-menu li a, .burger-menu .menu-item li  {
    font-size: 2rem;
    font-weight: 600;
    gap: 10px;
    display: flex;
    cursor: pointer;
    width: 100%;
 
}


.burger-menu .menu-item.open .sub-menu {
    max-height: 100%;
    opacity: 1;
}

.burger-menu .menu-item p ion-icon {
    transition: 0.3s all;
    transform: rotate(0deg);
    
}

.burger-menu .menu-item.open p ion-icon {
    transform: rotate(180deg);
}


.burger-menu.active {
    opacity: 100%;
top: calc(100px);

background-color: #0c264c;

}
.burger-menu a, li {
    text-decoration: none;
    color: white;
    
    font-weight: 500;
    transition: 0.3s;
}
.menu-item .sub-menu .multiple-video-list p {
    font-size: 2rem;
    font-weight: 600;
    gap: 10px;
    display: flex;
    color: white;
    cursor: pointer;
    width: 100%;
}
.multiple-video-list {
    display: flex;
    flex-direction: column;
    position: relative;
    
}
.multiple-videos-selection {
    max-height: 0;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    gap: 10px;
    padding-bottom: 10px;
   
  
    
}
.menu-item .multiple-videos-selection li {
    font-size: 1.5rem;
    font-weight: 500;
}
.burger-menu .menu-item .multiple-video-list p ion-icon {
    display: flex;
    transition: 0.3s all;
    transform: rotate(0deg);
}
.menu-item .multiple-video-list.open p ion-icon {
    transform: rotate(180deg);
}

.multiple-video-list.open .multiple-videos-selection {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    opacity: 1;
    transition: 0.3s;
    padding-left: 10px;
}

.container-main {
    height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    overflow: hidden;
}

.model-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.original-site-btn {
    position: absolute;
    right: 80px;
    font-size: 5rem;
    bottom: 80px;
    color: #0c264c;
    cursor: pointer;
    min-height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;

}
.original-site-btn img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.video-modal {
    position: absolute;
    width: 100%;
    height: 100dvh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000a5;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-modal video {
    width: 80%;
    height: auto;
    border-radius: 1.5rem;

}
.video-modal.active {
    display: none;
}
.close-modal-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 5rem;
    color: black;
    cursor: pointer;
    z-index: 98;
}

.pop-up-introduction {
    position: absolute;
    background-color: #0c264c;
    color: #fcf8ed;
    left:  0px;
    bottom: 0px;
    transition: all 0.2s;
    border-radius: 1.5rem;
    overflow: hidden;


    display: none; /* Hidden for now */
 
    

}
.pop-up-introduction.inactive {
    bottom: 80px;
    left: 80px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;

    display: none; /* Hidden for now */

    
}

.pop-up-introduction.inactive .pop-up-thumb, .pop-up-introduction.inactive .pop-up-text, .pop-up-introduction.inactive .close-pop-up-btn  {
   display: none;
}


.pop-up-introduction.active {
    width: 450px;
    height: 450px;
    border-radius: 1.5rem;
    left: 80px;
    bottom: 80px;
    z-index: 4997;
    
}
.re-open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;



    display: none; /* Hidden for now */
    
}
.pop-up-introduction.active .question-mark, .pop-up-introduction.active .re-open {
    display: none;
}
.question-mark {
    pointer-events: none;
    color: #fcf8ed;
}
.pop-up-thumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   background-color: #fcf8ed;
    gap: 2rem;
    padding: 1rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    height: 35%;
    border: 10px solid #0c264c;
}
.pop-up-thumb img {
    height: 100%;
    width: auto;
    object-fit: cover;
}
.pop-up-introduction h1 {
    font-size: 2.5rem;
    font-weight: 500;
   
}
.pop-up-text {
    height: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    flex-wrap: nowrap;
    min-width: 100%;
}
.pop-up-text p {
    margin-top: 2rem;
}

.pop-up-btn {
    margin-top: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.pop-up-btn ion-icon {
    font-size: 6rem;
}
.play-btn {
    color: #fcf8ed;
    font-size: 4rem;
    cursor: pointer;

}
.close-pop-up-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    color: #0c264c;
    cursor: pointer;
    z-index: 98;
}

 


.model-a {
    position: absolute;
    overflow: hidden;
}

.model-a div {
    opacity: .8;
    transition: opacity .5s;
}

.model-a:hover div {
    opacity: 1;
    transform: translateZ(0px);
}  

.middleCircle{
    width: 15vmin;
    height: 15vmin;
    border-radius: 100%;
    z-index: 1000;
    cursor: pointer;
}

.middleCircle-div{
    width: 100%;
    height: 100%;
    background-image: url("../assets/middle_logo.png");
    background-size: cover;
    background-position: center;
}

.whiteCircle2{
    width: 20vmin;
    height: 20vmin;
    background-color: #fcf8ed;
    border-radius: 100%;
    z-index: 999;
    cursor: auto;
    pointer-events: none;
}

.whiteCircle2 > div{
    pointer-events: none;
}

.innerCircle{
    width: 35vmin;
    height: 35vmin;
    border-radius: 100%;
    z-index: 998;
    cursor: pointer;
    clip-path: circle(50% at 50% 50%);
}

.innerCircle-div{
    width: 100%;
    height: 100%;
    background-color: #081A35;
}

.whiteCircle{
    width: 40vmin;
    height: 40vmin;
    background-color: #fcf8ed;
    border-radius: 100%;
    z-index: 997;
    cursor: auto;
    pointer-events: none;
}

.whiteCircle > div{
    pointer-events: none;
}

.pie {
    position: relative;
    width: 55vmin; 
    height: 55vmin;
    z-index: 996;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate(-50%, -50%);
    clip-path: circle(50% at 50% 50%);
  }
  
  .slice {
    width: 27.5vmin;
    height: 32.5vmin;
  }

  .slice1 {
    transform: skewY(155deg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 995;

  }

  .slice1-div{
    width: 100%;
    height: 100%;
    background-color: #143D7B;
  }

  .slice2 {
    transform: skewY(-155deg);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 994;
  }

  .slice2-div{
    width: 100%;
    height: 100%;
    background-color: #0C264C;
  }

  .slice3 {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 993;
  }

  .slice3-div{
    width: 100%;
    height: 100%;
    background-color: #11346A;
  }


  .menu-item p ion-icon {
    display: none;
    
}

.whiteCircle3{
    width: 60vmin;
    height: 60vmin;
    background-color: #fcf8ed;
    border-radius: 100%;
    z-index: 992;
    cursor: auto;
    pointer-events: none;
}

.whiteCircle3 > div{
    pointer-events: none;
}

.pieChart2{
    width: 75vmin !important; 
    height: 75vmin !important;
    z-index: 991;
    cursor: pointer;
    position: absolute;
    top: 49.5%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    border-radius: 100%;

    transform: translate(-50%, -50%);
   
    
}

.whiteCircle4{
    width: 80vmin;
    height: 80vmin;
    background-color: #fcf8ed;
    border-radius: 100%;
    z-index: 990;
    pointer-events: none;
    cursor: default;
}

.pieChart3{
    width: 95vmin !important; 
    height: 95vmin !important;
    
    cursor: pointer;
    position: absolute;
    top: 49.5%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    background-color: #fcf8ed;
    transform: translate(-50%, -50%);
    border-radius: 100%;
   
    
}

.custom-tooltip {
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    position: absolute;
    background: #fcf8ed;
    min-width: fit-content;
    width: 190px;
    height: 190px;

    border-radius: 50%;
    text-align: center;
    pointer-events: none;
    z-index: 10000;
    display: none;
    transform: translate(-50%, -120%);
   font-size: 16px;
   padding: 25px;
   line-height: 1;
    word-wrap: break-word;
}

.custom-tooltip p:nth-child(1) {
    font-weight: 600;
    font-size: 16px;
}
.custom-tooltip p:nth-child(2) {
    font-weight: 500;
}


.modalVideo {
    position: absolute; /* Stay in place */
    z-index: 50000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: #000000a5;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  /* Modal Content/Box */
.modalVideoContent {
    width: 60%; 
  }
  
  /* The Close Button */
  .modalVideoClose {
    color: white;
    float: right;
    font-size: 35px;
    font-weight: bold;
  }
  
  .modalVideoClose:hover,
  .modalVideoClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .modalVideoContent video{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hidden{
    display: none;
  }

/*Tablet*/
@media screen and (max-width: 1024px) {
    .modalVideoContent {
        width: 100%;
    }

    .modalVideoContent video{
        width: 100%;
    }

   .pop-up-introduction.active {
    width: 100%;
    height: 70vh;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: 10px 10px 162px 200px rgba(0,0,0,0.17);
-moz-box-shadow: 10px 10px 162px 200px rgba(0,0,0,0.17);
box-shadow: 10px 10px 162px 200px rgba(0,0,0,0.17);
    z-index: 5000;
   }
   .video-modal img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
   }

  .pop-up-introduction.inactive {
    left: 30px;

    bottom: 30px;
    height: 50px;
    width: 50px;
  }
  .original-site-btn {
    right: 30px;
    bottom: 30px;
    font-size: 6rem;
    
  }
 
  .logo {
    height: 60px;
   
  }
  .logo img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }
  nav {
    padding: 0px 30px 0px 30px;
  }
  .upper-left {
    top: 0px;
    left: 0px;
    width: 100px;
    height: 60px;
    padding: 50px 0px 0px 30px;
  }
    .upper-right {
        top: 0px;
        right: 0px;
        width: 100px;
        height: 60px;
        padding: 50px 30px 0px 0px;
    }
}


/*Mobile*/
@media screen and (max-width: 800px) {
    .custom-tooltip{
        display: none;
    }
    nav {
        height: 100px;
    }

    .burger-menu {
        top: -100%;
        height: calc(100dvh - 100px);
        overflow-y: scroll;
        padding: 50px 15px 50px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .burger-menu .menu-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .burger-menu .menu-item p {
        font-size: 2.5rem;
        font-weight: 500;
        color: #999999;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .burger-menu .menu-item .sub-menu {
        max-height: 0;
        overflow: hidden;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-left: 10px;
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
        opacity: 0;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
    .burger-menu .menu-item .sub-menu li a, .burger-menu .menu-item li {
        font-size: 1.8rem;
        font-weight: 600;
    }
    .menu-item .multiple-videos-selection li {
        font-size: 1.5rem;
        font-weight: 500;
    }
    .burger-menu .menu-item.open .sub-menu {
        max-height: 500px; /* Juster denne værdi efter behov */
        opacity: 1;
    }
    .burger-menu .menu-item p ion-icon {
        display: block;
        transition: 0.3s all;
        transform: rotate(0deg);
    }
    .burger-menu .menu-item.open p ion-icon {
        transform: rotate(180deg);
    }
    .burger-menu.active {
        top: 100px;
        width: 100%;
    }
    .custom-tooltip {
        display: none;
    }

}

/*Tablet*/
@media screen and (max-width: 1024px) {
    .custom-tooltip {
        display: none;
    }
}





@media (max-width: 600px) {
    .burger-menu {
        grid-template-columns: 1fr; /* Kun 1 kolonne på små skærme */
    }
}


