:root {

  /* FONT */
  --font-h1: calc(22px + (64 - 22) * ((100vw - 300px) / (1600 - 300)));
  --font-h2-h6: calc(18px + (32 - 18) * ((100vw - 300px) / (1600 - 300)));

  /* COLOR */
  --color-cta: rgb(250, 155, 46);
  --color-font:  rgb(36, 36, 36);
  --color-bg-main: rgb(255, 255, 255);
  --color-bg-alt: rgb(255, 200, 150);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.space {
  width: 100%;
  height: 3rem;
}

h1 {
  color: #fff;
  font-size: var(--font-h1);
  margin-bottom: 15px;
}

h2, h3, h4, h5, h6 {
  font-size: var(--font-h2-h6);
  margin-bottom: 10px;
}

.list__style__none {
  list-style: none;
}

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.content-box li {
  list-style: none;
  margin-top: 1.5rem;
}

button {
  background-color: transparent;
  border: none;
  color: var(--btn-text-color, white);
}


a {
  text-decoration: none;
  color: #242424;
  font-size: 1rem;
}

.links a:hover {
  color: #FA9B2E;
  border-bottom: solid 0.5px #FA9B2E;
}

/* HEADER */
header {
  z-index: 1;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: box-shadow .1s ease-in-out;
  box-shadow: 0 8px 8px -6px rgba(0, 0, 0, .1);
}

.navbar {
  width: 100%;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  align-items: center;
}

.logo img {
  max-height: 50px;
}

.navbar .links {
  --gap: 2rem;
}

.navbar .toggle_btn {
  color: #242424;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* BUTTONS */

.cta__btn {
  display: block;
  text-align: center;
  background-color: var(--btn-color, #FA9B2E);
  color: var(--btn-text-color,white);
  padding: var(--btn-padding, 1rem 1.5rem);
  border: var(--btn-border, none);
  outline: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.cta__btn button {
  font-size: 1rem;
}

.nav__btn {
  padding: 0.7rem 1.0rem;
  font-size: 0.8rem;
  font-weight: normal;
}

.cta__btn:hover {
  transform: scale(1.05);
  color: var(--btn-text-color,white);
}

.btn__white__border {
  --btn-color: transparent;
  --btn-text-color: white;
  --btn-padding: 0.9rem 1.5rem;
  --btn-border: solid 0.13rem #ffffff;
}

.btn__white__border:hover {
  color: white;
  --btn-color: rgba(255, 255, 255, 0.1);
}

.btn__orange__border {
  --btn-color: transparent;
  --btn-text-color: #FA9B2E;
  --btn-padding: 0.9rem 1.5rem;
  --btn-border: solid 0.13rem #FA9B2E;
}

.btn__orange__border:hover {
  --btn-color: rgba(255, 255, 255, 0.2);
  --btn-text-color: #FA9B2E;
}

button.btn__orange__border {
  --btn-color: transparent;
  --btn-text-color: #FA9B2E;
  --btn-padding: 0.57rem 1.1rem;
  --btn-border: solid 0.13rem #FA9B2E;
}

/* HERO */

.hero {
  margin-top: 60px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.background-img {
  background-image: var(--background-img, url(../img/bg_hero_presentation.png));
}

.img-bg-blue {
  background-image: url("../img/bg_hero_bluegeo.svg");
}

.img-bg-yellow {
  background-image: url("../img/bg_hero_presentation.png");
}

.hero .main-header {
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 60px);
  align-items: center;
  flex-direction: column;
  padding: 2rem 2rem;
}

.hero h1,
.hero p,
.hero video {
  max-width: 100%;
  width: 1200px;
  margin-inline: auto;
}

main .hero .main-header .white-bg {
  background-color: white;
  color: #FA9B2E
}

.hero hr {
  border-bottom: solid 2px #fddfbc;
  max-width: 350px;
}

.hero .player-wrapper {
  width: 100%;
  max-width: 800px;
  }

.hero .main-header .player {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 15px;
  height: 0;
  overflow: hidden;
  margin: auto;
}

.player iframe,  
.player object,  
.player embed {
  position:absolute;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  width:100%;
  height:100%;
}

.hero p {
  color: white;
  font-size: calc(var(--font-h2-h6) - 0.1vh);
  margin-top: 16px;
}

.main-header ul {
  display: flex;
  gap: 2rem;
  margin-top: 16px;
}

section#content {
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  color: #242424;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.container_button {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
}

.content-box_video {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 25px;
  margin-bottom: 50px;
}

.content-box-item {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 15px;
  cursor: pointer;
}

.content-box-flex {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.content-box-img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 50px;
}

.box-click:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);

}
.box-click:active {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
}

.content-box-img img {
  object-fit: cover;
  object-position: right;
  width: 40%;
  height: auto;
}

.img_section {
  max-height: 600px;
}

.revers {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* FOOTER */
footer {
  transition: box-shadow .1s ease-in-out;
  box-shadow: 0 -8px 8px -6px rgba(0, 0, 0, 0.1);
}

.container {
  width: 100%;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.footer__navigation {
  max-width: 1200px;
  width: 100%;
  background-color: #fff;
  margin-inline: auto;
  padding: 50px 0;
  color: #24262b;
}

.footer-col {
  width: 25%;
  padding: 0 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: #24262b;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #FA9B2E;
  height: 1px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul {
  padding-inline-start: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1rem;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: #24262b;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FA9B2E;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #24262b;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #fff;
  background-color: #FA9B2E;
}

.disclaimer {
  padding: 2rem;
  text-align: center;
  background: rgba(250, 155, 46, 0.129);
  background: linear-gradient(360deg, rgba(250, 155, 46, 0.3) 0%, rgba(250,155,46,0) 100%);
}

.disclaimer a {
  font-size: 0.8rem;
  color: #8d8e8f;
}

/* LOGO FLAG */
.flag-container {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 5px;
  padding-left: 12px;
}

.flag {
  width: 18px;
  height: 18px;
  background-color: red;
  margin-right: 5px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cross {
  width: 80%;
  height: 80%;
  position: relative;
}

.cross:before,
.cross:after {
  content: "";
  position: absolute;
  background-color: white;
}

.cross:before {
  width: 20%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.cross:after {
  width: 100%;
  height: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.flag-text {
  font-family: Helvetica, sans-serif;
  font-size: 8.5px;
  line-height: normal;
  color: black;
  text-align: center;
}

.flag-text span {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-align: center;
}

/* BRAND */

div.brand {
  display: flex;
  
  margin-top: 5px;
  margin-left: 12px;
  min-width: auto;
  min-height: auto;
  border: solid 1px #24262b;
  padding-inline: 5px;
  border-radius: 3px;
}

.brand .slogan {
 font-size: 13px;
 font-weight: 700;
 color: #24262b;
}

.brand .name:first-child {
  color: #24262b;
  font-size: 13px;
}

.brand .name:last-child {
  color: red;
  font-size: 13px;
}

.brands {
  display: flex;
}



/* VIDEO PLAYER */

video {
  box-shadow: 0 8px 8px -6px rgba(0, 0, 0, .1);
  z-index: -1;
}

#vid-wrapper {
  display: block;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}

#vid-mute-button {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  max-width: 80%;
  max-height: 80%;

  color: var(--color-cta);
  background-color: transparent;

  cursor:pointer;
  
}

#vid-mute-button i {
  font-size: clamp(0.5rem, 10vw, 15rem);
  animation: blink 1s infinite alternate ease-in-out; /* CSS-Animation für das Blinken */
}

.social-media-wrapper {
  display: flex;
  justify-content: left;
  gap: 25px;
}

.social {
  color: var(--color-cta);
  font-size: 2.5rem;
}

.social:hover  {
  color: #A571C5;
}

 /* CSS-Animation für das Blinken */
 @keyframes blink {
  0% {
      opacity: 1;
      padding: 1.6rem;
      border-width: 1.1rem;
  }
  100% {
      opacity: 0.5;
      scale: 1.2;
  }
}

/* RESPONSIVE DESIGN */
@media(max-width: 992px) {

  .content-box-img {
    flex-wrap: wrap;
  }

  .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    position: absolute;
    top: 44px;
    right: 0;
    left: auto;
    height: 0;
    width: 50%;

    background: rgb(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .links.active {
    height: 240px;
  }

  .content-box-img img {
    width: 100%;
  }

  .navbar .cta__btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }

  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

}

@media(max-width: 576px) {

  .dropdown_menu {
    left: 2rem;
    width: unset;
  }

  .footer-col {
    width: 100%;
  }

  #hero .cta__btn,
  .hero .cta__btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .container_button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .main-header ul {
    display: block;
    width: 100%;
  }

  .main-header li {
    padding-bottom: 1.1rem;
  }

}

@media(max-width: 450px) {
  .links {
    width: 100%;
  }
}

#pic {
  display: none;
}

.grid-container {
  width: 100%;
  height: auto;
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 25px;

  margin-bottom: 50px;
}

.grid-container .content-box-item {
  padding: 0;
}

.card_header {
  display: flex;
  justify-content: center;
  background-color: var(--color-cta);
  background-image: var(--url-img-card, url(../img/bg_hero_bluegeo.svg));
  background-size: cover;
  background-repeat: none;
  padding: 2rem 2rem;

  color: white;
  font-weight: bold;
  font-size: 32px;
}

.card_header_img_products {
  --url-img-card: url(../img/orion-nebula-.jpg);
}

.wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  gap: 1rem;
}

.wrapper > .cta__btn {
  margin-top: auto;
}

.grid-container h6 {
  font-size: 1.2rem;
  margin: 0;
}

.grid-container p {
  font-size: 1.0rem;
  margin:0;
}

audio::-webkit-media-controls-panel {
  background: var(--color-cta);
}
audio {
  width: 100%;
  margin-top: auto;
}

.grid-item {
  display: flex;
  flex-direction: column;
  height: auto;
}

.drop__shadow {
  filter: drop-shadow(rgba(0, 0, 0, 0.16) 0px 1px 4px);
}

/*   Author Christian Geling */
/* geling - digital solutions */
/* dev@geling.ch    