:root {
    --font-size-h1: 2rem;
    --font-size-h2: 6rem;
    --font-size-h3: 3rem;
    --font-size-h4: 2rem;
    --style-h4: italic;
    --font-size-p: 1.5rem;
    --font-size-nav-a: 20px;
    --font-size-btn: 500;
    --font-size-btn-text: 
    --font-family-text-p: italic;
    --padding-btn: 2rem 4rem;
    --clr-text-primary: #000;
    --clr-text-secondary: #000;
    --clr-text-btn: hsl(56, 100%, 50%);
    --clr-bg-btn: transparent;
    --clr-br-btn: 4px solid hsl(56, 100%, 50%); 
    --clr-bg-small-section: #ffff;
    --clr-bg-website: #FFFFF0;
    --clr-bg-section: rgba(249, 198, 26, 0.88);
    /*--clr-bg-website: background: #000000;  
    background: -webkit-linear-gradient(to right, #434343, #000000);  
    background: linear-gradient(to right, #434343, #000000); */
           /*#435969;*/
    --clr-icon: #feca01;
    --clr-nav-item-main: #ffff;
    --row-gap: 4rem;
    --p1-ct-h2: uppercase;
  }
  
  
  
  *::before,
  *::after {
      box-sizing: border-box;
  }

  

  html {
    scroll-behavior: smooth; 
}
  
  body {
      font-family: 'Roboto Mono', 'sans-serif';
      margin: 0;
      color: #000;
      background-color: var(--clr-bg-website);
  }

  .top-title h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
    color: var(--clr-text-primary);
    margin-inline: auto;
    text-transform: uppercase;
    font-size: 20px;
   
  }

 img {
    max-width: 380px;                      /* max-width: 100%;
    height: auto;*/
    height: auto;
    box-sizing: border-box;
    transform-origin: 50% 65%;
    transition: transform 5s, filter 3s ease-in;
    
 } 

 img:hover {
    transform: scale(1.1);
 }

  .section {
    background: var(--clr-bg-section);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    border: 2px solid yellow;
    padding-left: 30px;
    padding-right: 30px;
    text-align: justify;
  }

  .image {
    flex-basis: 70%;
  }

  /*DARK MODE FOR TOGGLE SWITCH*/

.dark-mode {
  background: linear-gradient(to right, #434343, #000000);
  color: #fff;
}

  /*SWITCH BUTTON*/

#btn-2 {
  width: unset;
  height: unset;
  border: 2px dotted #000;
  background: linear-gradient(110deg, #fdcd3b 60%, #fcff4bee 60%);
  width: 50px;
  position: fixed;
  height: 50px;
  margin-right: 1rem;
  bottom: 12vh;
  right: 0;
  border-radius: 80%;
  transition: background-color 2s, color 2s;
  box-shadow: 0 0 5px #FFFF00,
  0 0 20px rgb(255 255 0 / 0.8),
  0 0 35px rgb(255 255 0 / 0.7),
  0 0 50px rgb(255 255 0 / 0.6);
  
}

#btn-2:hover {
  background-color: orange;
  transform: rotateZ(360deg);
  transition: background-color 2s, color 2s, transform 2s;
  box-shadow: 0 0 5px #FFFF00,
  0 0 20px rgba(0, 217, 255, 0.8),
  0 0 35px rgb(0, 217, 255,  0.7),
  0 0 50px rgb(0, 217, 255,  0.6);
  
}

#btn-2:active {
  background-color: red;
  color: white;
  border-radius: 15px;
}

/*SWITCH BUTTON END*/


  /*NAVIGATING BUTTON*/

  .btn-box-bigbox {
    /*display: flex;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-transform: unset;
    justify-content: space-between;
    margin-inline: auto;
  }

  .btn-box {
    display: flex;
    flex-direction: column;
    width: 100px;
    height: auto;
    margin-inline: auto;
    
  }

  #rollarrowleft, #rollarrowup, #rollarrowright {
    width: fit-content;
  }

  button {
    background-color:orange;
    color: black;
    padding: 10px;
    border: 3px solid black;
    font-size: 12px;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.3s linear;
  }

  button a {
    text-decoration: none;
    color: #000;
  }

  button:hover {
    background-color:yellow;
    color: black;
    transform: scale(1.2);
    border-radius: 14px;;

  }

  
  .text {
    font-size: 20px;
   
  }


  .section h1, h2, p::not(footer) {
    color: #000;
   
  }
  footer {
    color: #fff;
  }

  ul {
    color: #000;
  }

  /*FLOATING AND SHOW BUTTONS*/

  .floating-btn {
    position: fixed;
    bottom: 3.5vh;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 100;
    background-color: yellow;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, hsla(0,0%,0%,0.5));
    cursor: pointer;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  
  .show-btn {
    display: block;
  }
  

  
  .layout-help {
      width: 1140px;
      max-width: 80%;
      height: 100%;
      display: grid;
      place-content: center;
      margin-inline: auto;
      padding-block: 3rem;
  }
  
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background-color: transparent;
      z-index: 100;
      margin-inline: auto;
      background-color: #000;
    
     
  }

  /*SCROLLBAR*/

::-webkit-scrollbar{
  width: 15px;
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: yellow;
  border-radius: 10px;
  border: 1px solid black;
}

::-webkit-scrollbar-thumb:active {
  background: orangered;
}

  
  .header-logo {
      width: 90%;
      
  }

  /*LIGHTBOX*/

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0); 
  color: #000;
  z-index: 10;
  font-size: 20px;
}

.l-box-card {
  width: 60%; /*70%*/
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 0 10px black;
  background-color: #000;
  color: unset;
  transform: scale(0);
  transition: all 0.8s ease;
  transform: translateY(-1500);
  border: 3px solid  #fdcd3b;
  
}

.lightbox:target {
  transform: scale(1); 
}

.lightbox:target .l-box-card {
  transform: scale(1);
}

.lightboxbtn {
  background-color: #fdcd3b;
  color: #000;
  width: fit-content;
  text-decoration: none;
  border: 2px solid #000;
  text-transform: uppercase;
  padding: 10px;
  font-size: 20px;
  font-style: bold;
  transition: all 0.3s linear;
}

.lightboxbtn:hover {
  background-color: #000;
  color: #fdcd3b;
  transform: scale(1.3);
}

#impul {
  list-style: none;
  color: #fff;
}

 #impressum, #GDPR, #cookie {
  list-style: none;
  line-height: 2rem;
  font-size: 14px;
  color: #fff;
}

/*LIGHTBOX CSS*/

  /*NAVBAR*/
  
  nav {
      display: flex; 
      width: min(90%, 1200px);
      height: inherit;
      align-items: center; 
      justify-content: space-between; 
      color: white;
    
     
      
  }
  
  nav ul {
      display: flex; 
      gap: 2rem;
      width: 100%;
      justify-content: space-between;
      list-style: none;
      text-transform: uppercase;
  }
  
  
  
  
  .nav-item a {
      color: var(--clr-nav-item-main);
      list-style: none;
      text-transform: uppercase;
      font-size: 20px;
      text-decoration: none;
      margin: .5em .8em;
      padding: 10px;
      line-height: 50px;
      position: relative;
  
  }
  
  .nav-item {
    position: relative;
    list-style: none;
    
    
  }

nav a::before,
nav a::after {
  content: '';
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all .35s ease;
  opacity: 0;
}

nav a::before {
  content: '';
  right: 0;
  top: 0;
  border-top: 3px solid #ffed4b;
  border-right: 3px solid #fdcd3b;
  transform: translate(-100%, 50%); /*-100%, 50%*/
}

nav a:after {
  content: '';
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #fdcd3b;
  border-left: 3px solid #ffed4b;
  transform: translate(100%, -50%);  /*100%, -50%*/
}

nav a:hover:before,
nav a:hover:after{
  transform: translate(0,0);
  opacity: 1;
}

nav a:hover {
	color: yellow;
}

/*Arrow*/

#rollarrow {
  margin-left: 1.5rem;
}

/*MOBILE MENU*/
 
  .mobile-menu {
      display: none;
  }
  
  
  .mobile-menu {
      display: flex;
      width: 100%; 
      height: calc(100vh - 80px);
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: black;
      transform: translate(-100%);
      transition: all 0.4s ease;
    }
  
    .mobile-menu-on {
      display: flex; 
      transform: translate(0);
    }
  
    .m-menu {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      text-align: center;
      font-size: 1.4rem;
    }

    .m-menu .nav-item a {
      line-height: 2;
      font-size: 26px;
    }
  
     /*hamburger icon*/
    
     .hamburger {
      display: none;
      position: fixed;
      width: 50px;
      height: 50px;
      border: none;
      background-color: transparent;
      margin-left: 2rem;
    }
  
    .hamburger:hover {
      border: 6px solid;
      border-color: yellow;
      width: 50px;
      left: 0;
      transform: scale(1.2);
    }
      .hamburger:hover .line.line-1 {
        /*display: none;*/
        transform: rotate(45deg) translateY(7.5px);
        background-color: yellow;
        
      }
      
      .hamburger:hover .line.line-2 {
        display: none;
        
      }
      
      .hamburger:hover .line.line-3 {
        /*display: none;*/
        transform: rotate(-45deg) translateY(-7.5px);
        background-color: yellow;
        
        
      }
      
      .line {
      transition: all .4s ease;
      width: 40px;
      height: 5px;
      background-color: white;
      margin-block: 5px;
      border-radius: 10px;
    }

    /*FOOTER STYLE*/

footer {
  width: 100%;
  background-color: #000;
  padding-block: 4rem;
  color: white;
}

.footer-container {
  width: min(90%, 1200px);
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: 2rem;
  font-size: 20px;
}

.footer-container nav ul {
  flex-direction: column;
}

.footer-container nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
}

.footer-container nav ul li a:hover {
  color: yellow;
}

.footer-top {
  width: 100%;
  display: flex;
  gap: 2rem;
  text-align: justify,
  
}



.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  
}

/*POLICIES LINKS*/

.policies {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  gap: 2rem;
}

.policies a {
  color: yellow;
  font-size: 16px;
  line-height: 2rem;
  text-decoration: none;
}

.policies a:hover {
 color: orangered;
}

/*social media icons*/

.social-media-icons {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.sm-container {
display: flex;
justify-content: center;
gap: 2rem;
padding:1rem;
border: 1px black;
}

.sm-container a {
  text-decoration: none;
}

.fa {
border-radius: 50%;
font-size: 20px;
}

.fa-instagram {
background: #125688; /*#125688*/
color: #fff;     /*white*/
padding: 1rem;

}

.fa-skype {
  background: #00aff0;
  color: white;
  padding: 1rem;
  }

.fa-facebook {
background: #4267B2; /*4267B2*/
color: #fff;   /*white*/
padding: 1rem;
}

.fa-linkedin {
background: #3B5998; /*#3B5998*/
color: #fff;  /*white*/
padding: 1rem;
}

.sm-icon {
   transition: all 0.3s linear;
}

.sm-icon:hover {
   transform: scale(1.2);

}

.fa:hover {
  background-color: #fdcd3b;
  color: #fff;
}

/*CSS FOR ANIMATIONS TO ACTIVATE*/
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}


  
/*MEDIA QUERIES*/
  
    /*1024px*/
  
     @media (max-width: 1200px) {

      nav {
        margin-top: -1rem;
      }

      .hamburger {
        display: block;
        /*margin-top: -3rem;*/
      }
  
      .desktop-menu {
        display: none;
      }
  
      .layout-help {
        width: 100%;
        height: 100%;
      }
  
  
    }
  
    @media (max-width: 1024px) {

      nav {
        margin-top: -2.5rem;
      }

      #btn-2 {
        bottom: 16vh;
      }

      
  
  
    }
    #preloader {
      background: #000 url(assets/svg_files/Spinner-1s-391px.gif) no-repeat center center;
      background-size: 15%;
      height: 100vh;
      width: 100%;
      position: fixed;
      z-index: 100;
      filter: initial;
    }
  
    
  
    @media (max-width: 700px) {
      .section {
        display: flex;
        flex-direction: column;
      }
    }

    @media (max-width: 500px) {
      .policies {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        margin-inline: auto;
      }
    }

    @media (max-width: 390px) {

      .section {
        display: flex;
        flex-direction: column;
      }

      img {
        max-width: 100%;
      }


      .btn-box-bigbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-transform: unset;
        
      }

      .top-title h1 {
        font-size: 16px;
      }
    }

    @media (max-width: 360px) {
      #btn-2 {
        bottom: 14vh;
      }
    }

    /*ANIMATIONS*/

    /*PUFF IN HORIZONTALLY FOR IMAGES*/

    .puff-in-hor {
	-webkit-animation: puff-in-hor 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        
          
  animation: puff-in-hor 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-1-27 10:30:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation puff-in-hor
 * ----------------------------------------
 */
@-webkit-keyframes puff-in-hor {
  0% {
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-hor {
  0% {
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

/*FADE IN FOR TEXTS*/

.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-1-27 12:9:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
 @-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

  

