
header {
   
    height: 100vh;
    
    position: relative;
   
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
	
   

}

.mobile-header { display: none; }

#responsiveHeadIMG {
	display: none;
	
}


#headImgDivID {
  perspective: 800px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

/* Flip-Wrapper */
#headImgDivID .flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}

/* Beide Seiten */
.header-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  backface-visibility: hidden;
}

/* Vorderseite (Front) */
.header-img.front {
  transform: rotateY(0deg);
  z-index: 2;
}

/* Rückseite (Back) */
.header-img.back {
  transform: rotateY(180deg);
  z-index: 1;
}

/* Flip bei Hover */
#headImgDivID:hover .flip-inner {
  transform: rotateY(180deg);
  
  border-radius: 50%;
}



.logoFSContainer {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    border: solid 2px var(--accent-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Bild bleibt im Kreis */
}

#logoFS {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Bild wird nicht verzerrt, sondern skaliert */
    border-radius: 50%;  /* optional, falls das Bild selbst eckig ist */
    display: block;
}


.header-img-container {
    position: relative;
    z-index: 10;
    width: 340px; /* Passe ggf. an deine Bildgröße an */
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-bubbles {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.bubble-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: var(--size);
  margin-left: calc(var(--size) / -2);
  margin-top: calc(var(--size) / -2);
  background-color: var(--accent-color, #4fc3f7);
  border-radius: 50%;
  box-shadow: 0px 10px 20px -5px #26394d7b,
              inset 10px -5px 10px -5px #26394d7b,
              inset -10px 10px 20px -10px #ffffffbb;
  animation: orbit-bubble var(--duration) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.85;
}

@keyframes orbit-bubble {
  0%   { transform: rotate(var(--start-angle)) translateX(var(--orbit)) scale(1); }
  50%  { transform: rotate(calc(180deg + var(--start-angle))) translateX(var(--orbit)) scale(1.15); }
  100% { transform: rotate(calc(360deg + var(--start-angle))) translateX(var(--orbit)) scale(1); }
}


.offerButtonHeader {
    width: 30%;
    background-color: var(--accent-color);
    color: #ffffff !important;
    padding: 10px;
    border-radius: 35px;
    font-size: clamp(0.7rem, 0.8vw, 1.5rem);
    position: relative;         /* Wichtig für ::before */
    overflow: hidden;           /* Verhindert, dass ::before übersteht */
}

.offerButtonHeader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 35px;
}




.header-img-container {
    position: relative;
left: -100px;;
	z-index: 10;
   
}
/* Container für das runde Bild */
.headImgDiv {
    z-index: 10;
     perspective: 800px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
    
    padding: 20px;
    box-shadow: 10px 28px 32px -20px var(--accent-color), 
                inset 14px -12px 24px -10px var(--accent-color), 
                inset -23px 23px 23px -18px #ffffffcc;
    border-radius: 50%;
    position: relative;
    animation: fadeIn 5s forwards;
    animation-fill-mode: forwards;
    transition: transform 1s, opacity 1s;
    backdrop-filter: blur(50px);
    overflow: hidden; /* Wichtig: Bild bleibt im Kreis */
   
}

/* Flip-Wrapper */
#headImgDivID .flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}

/* Beide Seiten */
.header-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  backface-visibility: hidden;
}

/* Vorderseite (Front) */
.header-img.front {
  transform: rotateY(0deg);
  z-index: 2;
}

/* Rückseite (Back) */
.header-img.back {
  transform: rotateY(180deg);
  z-index: 1;
}

/* Flip bei Hover */
#headImgDivID:hover .flip-inner {
  transform: rotateY(180deg);
}


#bubbleHeader1 {
  width: 110vw;
	height: 90px;
  position: fixed;
  top: -5px;
  left: -5vw;
  border-radius: 40px;
  background-color: #000000 !important;
    box-shadow: 10px 28px 32px -20px var(--accent-color), inset 14px -12px 24px -10px var(--accent-color);
	
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 13;
  padding-left: 7vw;
  padding-right: 7vw;
  

}

#header-trigger {
  height: 1px;
  width: 100%;
  margin-top: 80vh; /* Positioniert den Trigger-Punkt */
}

#bubbleHeader1.visibleHeader {
 display: flex;
  pointer-events: auto;
}

.icon {
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  /* Farbfilter  */
      filter: brightness(0) invert(1);
 
  transition: transform 0.3s ease;
  z-index: 14;
  user-select: all;
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}

.headerIconLink:nth-child(2) .icon {
  width: auto;
  border-radius: 5px;
}

.headerIconLink:nth-child(3) .icon {
  border-radius: 10px;
}


.icon:hover {
  opacity: 1;
  transform: translateY(-5px);

}


.mainofferbutton {
    width: 80%;
    background-color: var(--accent-color);
    height: 50px;
    color: #ffffff !important;
    position: relative;
    bottom: 0px;
    right: 0px;
    margin-top: 50px;
    margin-bottom: 0px;
    border-radius: 35px;
    border: transparent;
    font-size: clamp(1rem, 0.8vw, 1.3rem);
    margin-left: 10%;
    margin-right: 10%;
    transition: all 1.5s ease;
    font-weight: 600 !important;
    font-family: "Bungee Hairline", serif !important;
    box-shadow: 0px 10px 20px -10px #26394d7b, inset 15px 0px 20px -10px #26394d7b, inset -15px 30px 30px -40px #ffffffbb;
    overflow: hidden; /* <-- Das sorgt dafür, dass ::before nicht übersteht */
}

.mainofferbutton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 35px; /* Optional: passt die Rundung an den Button an */
}


.orbit-img-container {
  display: none;
}




#customParagraph1 {
      font-size: clamp(0.8rem, 1vw, 1.7rem);
      text-align: center;
}

#customParagraph2 {
       text-align: center;
}








.header-text-container {
    width: 100vw;
    height: auto;
    margin-top: 10vh;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
}

.header-text{
	margin-left:50px;
  border-radius: 40px;
  box-shadow: 10px 28px 32px -20px var(--accent-color), 
                inset 14px -12px 24px -10px var(--accent-color), 
                inset -23px 23px 23px -18px #ffffffcc;
    z-index: 10;
  
  padding: 60px 100px 50px 50px;
  animation: fadeIn 5s forwards;  /* Animation wird 1 Sekunde lang ausgeführt */
    animation-fill-mode: forwards;
 
    backdrop-filter: blur(8px); /* Macht alles dahinter unscharf */
    font-family: "Bungee Hairline", serif !important;
}



header p {
    color: #f0eff2;
    font-size: clamp(1.5rem, 3vw, 2rem);
}



nav {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 500px;
    width: fit-content;
    position: relative;
    top: -25px;
    left: -35px;
  
}

.navigation-div{
  animation: fadeIn 5s forwards;
  animation-fill-mode: forwards;
  transition: transform 1s, opacity 1s;
}


.navigation-div button {
	box-sizing: border-box;
    z-index: 10;
    padding: 17px;
   margin-top: 20px;
   margin-bottom: 20px;
    color: #f0eff2;

    white-space: nowrap;
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
	font-weight: bold;

  border-radius: 30px;
  box-shadow: 4px 12px 18px -12px var(--accent-color, #4949c9), 
            inset 8px -6px 12px -6px var(--accent-color, #4949c9), 
            inset -12px 12px 12px -10px #ffffff88;
  width: 350px;

    font-family: "Bungee Hairline", serif !important;
}

.navigation-div button:hover {
	  box-shadow:  0px 0px 4px 3px #D0D0D0, 
		inset 0px 3px 10px 3px #2b2d2b;
        border-color: #D0D0D0;
		background-color:  var(--accent-color);
}


#navButtonOne {
    animation-delay: 0.5s;  /* Verzögerung der ersten Überschrift */
    position: relative;
    left: -70px;
	 
	 
    
}

#navButtonTwo {
    animation-delay: 1s; /* Verzögerung der zweiten Überschrift */

     position: sticky;
    top: 130px;
    z-index: 3001;
    /* left: -35px;  // Entfernen, da sticky nur top/right/bottom/left für den sticky-Bereich nutzt */
	
	
}


#navButtonFour {
    animation-delay: 1.5s;
    position: sticky;
    top: 0;
    z-index: 3001;
    /* left: -35px;  // Entfernen, da sticky nur top/right/bottom/left für den sticky-Bereich nutzt */
}


#navButtonFive {
    animation-delay: 2s;  /* Verzögerung der fünften Überschrift */
    position: relative;
    left: -70px;
	 


}

.navigation-div-header {
	display: flex;
	position: relative;
	top: 0px;

	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	z-index: 3002;
	height: 70px;
	width: 100%;

}

.navigation-div-header button {
	
	background-color: transparent;
	border: none;
	color: #FFFFFF;
	box-shadow: none;
	    font-size: clamp(0.7rem, 0.8vw, 1.5rem);
		font-weight: 400;
		border: 2px solid var(--accent-color);
		border-radius: 25px;
		padding: 10px;
		
		margin-left: 1%;
		margin-right: 1%;
		
	
}


.navigation-div-header button:hover {
	

	
	background-color: var(--accent-color);
		
	
	
}

.header-scroll-button-parent {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: var(--accent-color);
  padding: 8px;
  border-radius: 50%;
    box-shadow: 10px 28px 32px -20px var(--accent-color), inset 14px -12px 24px -10px var(--accent-color), inset -23px 23px 23px -18px #ffffffcc;
 animation-delay: 1.5s;

    
}

#header-scroll-button {
  width: 65px;
  height: 65px;
  background-color: var(--accent-color);
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  animation: appear 0.5s ease-in-out forwards;
  padding: 10px;
  box-shadow: 0px 20px 20px -10px #26394d7b, inset 30px -10px 20px -10px #26394d7b, inset -25px 30px 30px -35px #ffffffbb;

}



#header-scroll-button:hover {
    background-color: #000000;
    color: #FFFFFF;
	
}



.rainbowContainer {
       position: absolute;
    bottom: -20px;
    right: -135px;
    z-index: -5;
    height: 350px;
    width: 200px;
}

.rainbowLine{
    z-index: -2;
    animation: fadeIn 8s; 
  
    
  
}


.redOne{
    position: absolute;
    top: 15px;
    left: -110px;
    width: 5px;
    height: 200px;
    background-color: black;
    z-index: -5;
    
}

.redTwo{
    position: absolute;
    top: 15px;
    left: -110px;
    width: 35px;
    height: 5px;
    background-color: black;
    z-index: -5;
}


.orangeOne{
    position: absolute;
    top: 120px;
    left: -85px;
    width: 5px;
    height: 100px;
    background-color: black;
    z-index: -5;
}

.orangeTwo{
    position: absolute;
    top: 120px;
    left: -85px;
    width: 50px;
    height: 5px;
    background-color: black;
    z-index: -5;
}



.yellowTwo{
    position: absolute;
    top: 225px;
    left: -55px;
    width: 50px;
    height: 5px;
    background-color: black;
}



.blueOne{
    position: absolute;
    top: 290px;
    left: -85px;
    width: 5px;
    height: 50px;
    background-color: black;
}

.blueTwo{
    position: absolute;
    top: 335px;
    left: -85px;
    width: 50px;
    height: 5px;
    background-color: black;
}

.purpleOne{
    position: absolute;
    top: 330px;
    left: -110px;
    width: 5px;
    height: 130px;
    background-color: black;
}

.purpleTwo{
    position: absolute;
    top: 455px;
    left: -110px;
    width: 35px;
    height: 5px;
    background-color: black;
}




.contact-symbol-div {

    height: 42px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: ab
   

   
    


}

.contact-symbol-div img{
    
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

#mailIcon {
    position: relative;
    top: 5px;
}

.contact-symbol-div a {
  
    
    padding: 5px;
}





a {
    box-sizing: border-box;
    color:  #e2e6e0;
    text-decoration: none;
    width: auto; 
 



}












@keyframes fadeIn {
    0% {
        opacity: 0;
        
    }
    100% {
        opacity: 1;
       
    }

}





.contactSymbol {
    transition: transform 0.3s ease; /* Füge die Transition hinzu */


}
.contactSymbol img{
  
    width: 32px;
    height: 32px;

}

.contactSymbol:hover {
    transform: translateY(-5px);  /* Leicht nach unten verschoben */
}



#MailIMG {
 position: relative;
 left: 5px;
 top: 6px;
}

  /* Navbar Styling */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    

    padding: 20px;
    opacity: 0.85;
    transition: opacity 0.5s ease;
    z-index: 20;
    display: none;
    justify-content: space-around ;
    box-shadow: none !important;


  }


  .mobileNavBarButton{

    border-color: rgba(255, 255, 255, 0.34);
	

  }



  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
  }

  .navbar.visible {
    opacity: 1;
  }



  


/* Burger-Menü-Button */
.burger-menu {
    background: none;
    border: none;
    font-size: 30px;
   
    cursor: pointer;
    z-index: 10;
    box-shadow: none !important;
   
  }

 
  
  /* Dropdown-Menü */
  .navbarChild {
   
    flex-direction: column;
    background: #2d2c2f;
    position: absolute;
    top: 25px;
    backdrop-filter: blur(30px);
    right: 0px;
    padding: 5px;
    border-radius: 25px;
    
    display: none;
    flex-direction: column;
    margin-top: 50px;
	width: 250px;
    box-shadow: none !important;
   
  }
  
  .navbarChild button {
    background: none;

    border-left: none;
    border-right: none ;
    border-bottom: none ;
border-top: solid 1px;
       font-size: clamp(0.8rem, 0.8vw, 1.2rem);
    color: white;

    
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 10;
    padding: 17px;
    
    color: #f0eff2;
    white-space: nowrap;
    
    font-weight: bold;
    background-color: #2d2c2f;
    border-radius: 10px;
    box-shadow: rgb(38, 57, 77) 0px 20px 20px -10px;
    margin: 7px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    font-family: "Bungee Hairline", serif !important;
  }
  

 
  
  /* Dropdown sichtbar machen */
  .navbarChild.active {
    display: flex;
  }

  .navbar_symbols {
    position: relative;
    left: -40px;
  }

.specialHeading {
    font-weight: 900;
	text-decoration: none;
  margin-bottom: 0px !important;
	
}

  .functional_bar{
    width: 250px;
    border-radius: 25px;
    height: 65px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 0;
    position: fixed;
    top:25px;
    right: 50px;
    display: flex;
    justify-content: space-evenly;
    z-index: 25;
    align-items: center;
    backdrop-filter: blur(30px);
  transition: opacity 0.5s ease-in-out; /* Weiches Einblenden */
	--background-opacity: 1 !important;
    
  }

  .navbar_symbols {
    transition: opacity 0.5s ease;
  }

  .functional_bar:hover {
    opacity: 1 !important;
  }
  
  #menuImg {
	  width: 100%;
	  height: 100%;
  }

  .burger-menue-nav-buttons {
    opacity: 0;
    display: flex;
    justify-content: center;
padding: 5px;
border-radius: 50%;

    transition: opacity 0.5s ease; /* Übergang für die Opazität */
	width: auto;
	height: auto;
	
	
    
  }


.burger-menue-nav-buttons.visible {
    opacity: 1; /* Sichtbar */
    pointer-events: auto; /* Interaktionen erlaubt */
  }

  .visible {
    opacity: 1; /* Sichtbar */
    pointer-events: auto; /* Interaktionen erlaubt */
  }

  .burger-menue-nav-buttons.visible:hover {
    opacity: 1; /* Sichtbar */
    pointer-events: auto; /* Interaktionen erlaubt */
  }


  #functional_bar_nav_button_right{
    position: absolute;
    right: 0px;
 
    background-color: rgb(73, 73, 201) !important;
    color: #ffffff !important;
    border-radius: 25px;
    padding: 10px;
    font-size: clamp(0.5rem, 1.2vw, 1.2rem);
    width: auto;
    margin-left: 1%;
    margin-right: 1%;
   
    border: solid 4px transparent;
  
    font-weight: 900;
   
  }

  #functional_bar_nav_button_right:hover {
    background-color: #000000 !important;
    color: solid 3px #131313 !important;
    border-color: var(--accent-color) !important;
   
   
  }

 /* From Uiverse.io by RiccardoRapelli */ 
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  
}

.switch #toggle-switch {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2196f3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 0;
  overflow: hidden;
}

.sun-moon {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: yellow;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#toggle-switch:checked + .slider {
  background-color: black;
}

#toggle-switch:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

#toggle-switch:checked + .slider .sun-moon {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: white;
  -webkit-animation: rotate-center 0.6s ease-in-out both;
  animation: rotate-center 0.6s ease-in-out both;
}

.moon-dot {
  opacity: 0;
  transition: 0.4s;
  fill: gray;
}

#toggle-switch:checked + .slider .sun-moon .moon-dot {
  opacity: 1;
}

.slider.round {
  border-radius: 34px;
}

.slider.round .sun-moon {
  border-radius: 50%;
}

#moon-dot-1 {
  left: 10px;
  top: 3px;
  position: absolute;
  width: 6px;
  height: 6px;
  z-index: 4;
}

#moon-dot-2 {
  left: 2px;
  top: 10px;
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 4;
}

#moon-dot-3 {
  left: 16px;
  top: 18px;
  position: absolute;
  width: 3px;
  height: 3px;
  z-index: 4;
}

#light-ray-1 {
  left: -8px;
  top: -8px;
  position: absolute;
  width: 43px;
  height: 43px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-2 {
  left: -50%;
  top: -50%;
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-3 {
  left: -18px;
  top: -18px;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

.cloud-light {
  position: absolute;
  fill: #eee;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.cloud-dark {
  position: absolute;
  fill: #ccc;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

#cloud-1 {
  left: 30px;
  top: 15px;
  width: 40px;
}

#cloud-2 {
  left: 44px;
  top: 10px;
  width: 20px;
}

#cloud-3 {
  left: 18px;
  top: 24px;
  width: 30px;
}

#cloud-4 {
  left: 36px;
  top: 18px;
  width: 40px;
}

#cloud-5 {
  left: 48px;
  top: 14px;
  width: 20px;
}

#cloud-6 {
  left: 22px;
  top: 26px;
  width: 30px;
}

@keyframes cloud-move {
  0% {
    transform: translateX(0px);
  }

  40% {
    transform: translateX(4px);
  }

  80% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0px);
  }
}

.stars {
  transform: translateY(-32px);
  opacity: 0;
  transition: 0.4s;
}

.star {
  fill: white;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  animation-name: star-twinkle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

#toggle-switch:checked + .slider .stars {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

#star-1 {
  width: 20px;
  top: 2px;
  left: 3px;
  animation-delay: 0.3s;
}

#star-2 {
  width: 6px;
  top: 16px;
  left: 3px;
}

#star-3 {
  width: 12px;
  top: 20px;
  left: 10px;
  animation-delay: 0.6s;
}

#star-4 {
  width: 18px;
  top: 0px;
  left: 18px;
  animation-delay: 1.3s;
}

@keyframes star-twinkle {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}









#header-scroll-button-img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}





@keyframes appear {
    from{
        opacity: 0;
        scale: 0.5;
    }

    t0{
        opacity: 1;
        scale: 1;
    }
}
