/* Myriad Pro - 400 */
@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/myriad-pro.ttf") format("truetype");
}
/* Myriad Pro - 500 */
@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/myriad-pro-semibold.ttf") format("truetype");
}
/* Myriad Pro - 700 */
@font-face {
  font-family: "Myriad Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/myriad-pro-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  src: url(../icons/material-symbols.woff2) format("woff2");
}
.material-symbols {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 40px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 40px;
  }
}
.container.container_small {
  max-width: 1000px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .container.container_small {
    max-width: 860px;
  }
}
@media (max-width: 768px) {
  .container.container_small {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .container.container_small {
    max-width: 400px;
  }
}

.container_small {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container_small {
    max-width: 860px;
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .container_small {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .container_small {
    max-width: 400px;
  }
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

* {
  font-family: "Myriad Pro";
}

.fade_in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade_in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade_in_right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade_in_right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade_in_left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade_in_left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade_in_img_stat {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.fade_in_img_stat.visible {
  opacity: 1;
}

#top_bar {
  padding: 10px 0;
  background-color: rgba(0, 56, 103, 0.85);
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 200;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#top_bar .top_bar_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_bar .top_bar_content .logo_wrapper img {
  width: 200px;
}
@media (max-width: 576px) {
  #top_bar .top_bar_content .title_wrapper {
    display: none;
  }
}
#top_bar .top_bar_content .title_wrapper h2 {
  margin: 0;
  color: #ffffff;
}
#top_bar .top_bar_content .menu_trigger_wrapper #menu_trigger {
  border: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
#top_bar .top_bar_content .menu_trigger_wrapper #menu_trigger:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}
#top_bar.show {
  transform: translateY(0);
}

@-webkit-keyframes swing-in-top-bck {
  0% {
    transform: rotateX(70deg);
    -webkit-transform: rotateX(70deg);
    transform-origin: top;
    -webkit-transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform-origin: top;
    -webkit-transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-bck {
  0% {
    transform: rotateX(70deg);
    -webkit-transform: rotateX(70deg);
    transform-origin: top;
    -webkit-transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform-origin: top;
    -webkit-transform-origin: top;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out-top {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fade-out-top {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    opacity: 0;
  }
}
#intro {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003867;
  z-index: 1;
  transition: opacity 1.5s ease;
}
#intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/intro_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
@media (max-width: 992px) {
  #intro::after {
    background-attachment: scroll;
  }
}
@media (hover: none) and (pointer: coarse) {
  #intro::after {
    background-attachment: scroll;
  }
}
#intro .intro_text {
  position: relative;
  z-index: 2;
  transition: transform 1.5s ease;
  background-color: transparent;
}
@media (max-width: 576px) {
  #intro .intro_text {
    max-width: 80%;
  }
}
#intro .intro_text h1 {
  margin: 0;
  color: white;
  font-size: 3rem;
  opacity: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@media (max-width: 576px) {
  #intro .intro_text h1 {
    font-size: 1.8rem;
  }
}
#intro .intro_text span {
  transition: all 1s ease;
}
#intro.is_showing::before {
  opacity: 0;
}
#intro.is_showing::after {
  opacity: 1;
}
#intro.is_showing .intro_text {
  transform: translateY(200px);
}
#intro.is_done .intro_text h1 {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
#intro.is_done .intro_text span {
  display: inline-block;
  border-radius: 0;
  background-color: rgba(0, 56, 103, 0.6);
  padding: 14px 30px;
  box-sizing: border-box;
}

.intro_entrance {
  opacity: 1;
  -webkit-animation: a_intro_title 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  animation: a_intro_title 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes a_intro_title {
  0% {
    transform: scaleX(2);
    -webkit-transform: scaleX(2);
    filter: blur(4px);
    -webkit-filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    filter: blur(0px);
    -webkit-filter: blur(0px);
    opacity: 1;
  }
}
#banner {
  padding: 60px 0;
  background-color: rgb(0, 82, 122);
}
#banner .banner_titles {
  text-align: center;
}
#banner .banner_titles h2 {
  font-size: 3rem;
}
#banner .banner_titles h3 {
  font-size: 2rem;
}
#banner .banner_titles h3,
#banner .banner_titles h2 {
  color: #ffffff;
}
#banner .splitter hr {
  width: 50%;
  border-bottom: 0;
  border-top: 2px solid #ffffff;
}
#banner .banner_slogan {
  text-align: center;
  color: #ffffff;
  margin: 40px 0 20px;
  font-size: 2rem;
}

.section.bg_main {
  background-color: #003867;
}
.section.bg_accent {
  background-color: rgb(0, 82, 122);
}
.section.image_text {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
}
@media (max-width: 768px) {
  .section.image_text {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .section.image_text {
    grid-template-columns: 1fr;
  }
}
.section.image_text .section_image {
  line-height: 0;
}
@media (max-width: 992px) {
  .section.image_text .section_image {
    padding: 10%;
  }
}
@media (max-width: 768px) {
  .section.image_text .section_image {
    padding: 10% 10% 0 10%;
  }
}
.section.image_text .section_image img {
  width: 100%;
}
@media (max-width: 992px) {
  .section.image_text .section_image img {
    border-radius: 8px;
  }
}
.section.image_text .section_text {
  color: #ffffff;
  padding: 40px 20% 40px 60px;
}
@media (max-width: 992px) {
  .section.image_text .section_text {
    padding: 40px 10% 40px 60px;
  }
}
@media (max-width: 768px) {
  .section.image_text .section_text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section.image_text .section_text {
    padding: 40px;
  }
}
.section.image_text .section_text h2 {
  font-size: 2rem;
  text-transform: uppercase;
}
.section.image_text .section_text p {
  font-size: 1.4rem;
}
.section.text_image {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
}
@media (max-width: 768px) {
  .section.text_image {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .section.text_image {
    grid-template-columns: 1fr;
  }
}
.section.text_image .section_image {
  order: 2;
  line-height: 0;
}
@media (max-width: 992px) {
  .section.text_image .section_image {
    padding: 10%;
  }
}
@media (max-width: 768px) {
  .section.text_image .section_image {
    padding: 10% 10% 0 10%;
  }
}
.section.text_image .section_image img {
  width: 100%;
}
@media (max-width: 768px) {
  .section.text_image .section_image img {
    border-radius: 8px;
  }
}
@media (max-width: 768px) {
  .section.text_image .section_image {
    order: 1;
  }
}
.section.text_image .section_text {
  order: 1;
  text-align: right;
  color: #ffffff;
  padding: 40px 60px 40px 20%;
}
@media (max-width: 768px) {
  .section.text_image .section_text {
    order: 2;
    padding: 40px;
    text-align: center;
  }
}
.section.text_image .section_text h2 {
  font-size: 2rem;
  text-transform: uppercase;
}
.section.text_image .section_text p {
  font-size: 1.4rem;
}

#p_statement {
  position: relative;
  height: 80vh;
  background-color: #003867;
}
#p_statement::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/blaupunkt_ring_statement.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
@media (max-width: 992px) {
  #p_statement::after {
    background-attachment: scroll;
  }
}
@media (hover: none) and (pointer: coarse) {
  #p_statement::after {
    background-attachment: scroll;
  }
}
#p_statement .p_text_block {
  position: relative;
  transform: translateZ(0);
  color: #ffffff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 10;
  display: inline-block;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 576px) {
  #p_statement .p_text_block {
    max-width: 90%;
    box-sizing: border-box;
  }
}
#p_statement h3 {
  text-transform: uppercase;
  font-size: 2.4rem;
  margin: 0;
}
#p_statement p {
  font-size: 1.4rem;
}

#ring_data {
  background-color: #003867;
}
#ring_data .data_items {
  padding: 60px;
  color: #ffffff;
}
@media (max-width: 576px) {
  #ring_data .data_items {
    padding: 20px 20px 60px 20px;
  }
}
#ring_data .data_items .grid_container {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 576px) {
  #ring_data .data_items .grid_container {
    grid-template-columns: 1fr;
  }
}
#ring_data .data_items .grid_item {
  display: grid;
  grid-gap: 20px;
}
#ring_data .data_items .data_items_title {
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  #ring_data .data_items .data_items_title h2 {
    font-size: 1.7rem;
  }
}
#ring_data .data_items .data_item {
  display: grid;
  grid-template-columns: minmax(200px, auto) 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  #ring_data .data_items .data_item {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 576px) {
  #ring_data .data_items .data_item {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
#ring_data .data_items .data_item .data_title {
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 576px) {
  #ring_data .data_items .data_item .data_title {
    padding: 6px 12px;
    border-radius: 6px;
    line-height: 1;
  }
}
#ring_data .data_items .data_item .data_value {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
}

.app_screens {
  padding: 80px 0;
  background-color: #003867;
}
.app_screens.bg_accent {
  background-color: rgb(0, 82, 122);
}
.app_screens .app_screen_item {
  display: grid;
}
.app_screens .app_screen_item.app_screen_right {
  grid-template-columns: 1fr auto;
  grid-gap: 200px;
  align-items: center;
}
@media (max-width: 992px) {
  .app_screens .app_screen_item.app_screen_right {
    grid-gap: 100px;
  }
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_right {
    grid-gap: 60px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .app_screens .app_screen_item.app_screen_right {
    grid-gap: 40px;
    grid-template-columns: 1fr;
  }
}
.app_screens .app_screen_item.app_screen_right .text {
  order: 1;
  text-align: right;
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_right .text {
    order: 2;
    text-align: center;
  }
}
.app_screens .app_screen_item.app_screen_right .screen {
  order: 2;
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_right .screen {
    order: 1;
    text-align: center;
  }
}
.app_screens .app_screen_item.app_screen_left {
  grid-template-columns: auto 1fr;
  grid-gap: 200px;
  align-items: center;
}
@media (max-width: 992px) {
  .app_screens .app_screen_item.app_screen_left {
    grid-gap: 100px;
  }
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_left {
    grid-gap: 60px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .app_screens .app_screen_item.app_screen_left {
    grid-gap: 40px;
    grid-template-columns: 1fr;
  }
}
.app_screens .app_screen_item.app_screen_left .text {
  text-align: left;
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_left .text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .app_screens .app_screen_item.app_screen_left .screen {
    text-align: center;
  }
}
.app_screens .app_screen_item .screen img {
  width: 200px;
}
.app_screens .app_screen_item .text {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.4;
}
.app_screens .splitter hr {
  margin: 40px 0;
  border-top: 2px solid #ffffff;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.section_imprint {
  padding: 60px 0;
  background-color: #003867;
}
.section_imprint h2 {
  color: #ffffff;
}
.section_imprint .imprint_content {
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-gap: 40px;
}
.section_imprint .imprint_content div:nth-child(1), .section_imprint .imprint_content div:nth-child(2) {
  grid-column: auto;
}
.section_imprint .imprint_content div:nth-child(3) {
  grid-column: auto;
}
@media (max-width: 992px) {
  .section_imprint .imprint_content {
    grid-template-columns: 1fr 1fr;
  }
  .section_imprint .imprint_content div:nth-child(1), .section_imprint .imprint_content div:nth-child(2) {
    grid-column: span 1;
  }
  .section_imprint .imprint_content div:nth-child(3) {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .section_imprint .imprint_content {
    grid-template-columns: 1fr;
  }
  .section_imprint .imprint_content div:nth-child(1), .section_imprint .imprint_content div:nth-child(2) {
    grid-column: auto;
  }
  .section_imprint .imprint_content div:nth-child(3) {
    grid-column: auto;
  }
}
.section_imprint .imprint_content a {
  color: #7497b6;
}

#offcanvas_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.05s linear;
  display: none;
}
#offcanvas_overlay.show {
  opacity: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
}

.offcanvas {
  position: fixed;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  outline: 0;
  z-index: 1100;
  width: 400px;
  bottom: 0;
  top: 0;
  right: 0;
  box-shadow: 2px 0 12px -2px #001b31;
  background-color: #003867;
  visibility: hidden;
  transition: transform 0.05s ease-in-out;
  transform: translateX(120%);
}
.offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}
@media (max-width: 576px) {
  .offcanvas {
    width: 100%;
    margin: 0;
    border: 0;
  }
}
.offcanvas .offcanvas_header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 20px;
  align-items: center;
  padding: 20px 20px 10px 20px;
}
.offcanvas .offcanvas_header .offcanvas_title {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}
.offcanvas .offcanvas_header .offcanvas_title.with_icon {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
}
.offcanvas .offcanvas_header #offcanvas_close {
  transition: none;
  border: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.offcanvas .offcanvas_header #offcanvas_close:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}
.offcanvas .offcanvas_splitter hr {
  margin: 20px 0;
  border-top: 2px solid #ffffff;
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
}
.offcanvas .offcanvas_body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 20px;
}
.offcanvas .offcanvas_body .menu_items .menu_item {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}
.offcanvas .offcanvas_body .menu_items .menu_item:last-of-type {
  margin-bottom: 0;
}
.offcanvas .offcanvas_body .menu_items .menu_item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.offcanvas .offcanvas_body .menu_items .menu_item:active {
  background-color: rgba(255, 255, 255, 0.1);
}

/*# sourceMappingURL=main.css.map */
