@font-face {
  font-family: "Noto Serif";
  src: local("Noto Serif Italic"), local("NotoSerif-Italic"), url("/fonts/NotoSerif-Italic.woff2") format("woff2"), url("/fonts/NotoSerif-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Bold"), local("Lato-Bold"), url("/fonts/Lato-Bold.woff2") format("woff2"), url("/fonts/Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Regular"), local("Lato-Regular"), url("/fonts/Lato-Regular.woff2") format("woff2"), url("/fonts/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Italic"), local("Lato-Italic"), url("/fonts/Lato-Italic.woff2") format("woff2"), url("/fonts/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
html, html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
}

main {
  margin: auto;
}

img {
  width: 100%;
  height: auto;
}

h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700 !important;
  font-size: 46px;
  line-height: 48px;
  color: #002E56;
  margin-bottom: 30px;
}

h2 {
  display: flex;
  gap: 15px;
  align-items: center;
  text-transform: normal;
  /* margin-bottom: 30px */
}

h2, h3 {
  color: #0F91CC;
  font-size: 28px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
h2 span, h3 span {
  display: flex;
  width: 10px;
  height: 42px;
  background: #0F91CC;
}

h3 {
  color: #002E56;
  text-transform: uppercase;
}

.subpage h2 {
  font-size: 28px !important;
  margin: 50px 0 16px !important;
}
.subpage h3 {
  font-size: 20px !important;
  margin: 30px 0 16px !important;
}
.subpage ul li:last-of-type {
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: rgba(0, 46, 86, 0.75);
}

ul {
  margin-left: 30px;
}
ul li {
  margin-bottom: 8px;
  color: rgba(0, 46, 86, 0.75);
}

a {
  color: rgba(0, 46, 86, 0.75);
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
a:visited {
  color: rgba(0, 46, 86, 0.75);
}
a:hover {
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}

.golden, i {
  color: #0F91CC;
}

.blue {
  color: #3C6B83;
}

.turquoise {
  color: #528E83;
}

.greyed {
  color: rgba(0, 46, 86, 0.5);
}

.logo-img {
  width: auto;
  height: 24px;
  filter: invert(88%) sepia(0%) saturate(31%) hue-rotate(139deg) brightness(89%) contrast(87%);
}

.width-wrapper {
  width: 100%;
  max-width: 1400px;
  padding: 0 15px;
  margin: auto;
}

.spacing-s {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.spacing-m {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.spacing-l {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.spacing-xl {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.spacing-bottom-0 {
  padding-bottom: 0 !important;
}

.spacing-top-0 {
  padding-top: 0 !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.text-center {
  text-align: center;
}

.text-small {
  text-transform: lowercase;
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
}

.mobile-hidden {
  display: none !important;
}

.mobile-visible {
  display: flex !important;
}

.content {
  position: relative;
  display: none;
  overflow: hidden;
}
.content a {
  font-size: 16px !important;
}

.headline-img-wrapper h2, .headline-img-wrapper h3 {
  margin-bottom: 24px;
}

.txt-wrapper {
  margin: 36px 0;
}
.txt-wrapper h2:last-of-type, .txt-wrapper h3:last-of-type {
  margin: 8px 0 24px;
}

.flex-reversed {
  flex-direction: row-reverse;
}
.flex-reversed.flex-special {
  flex-direction: row;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 30px 0 0;
}
.btn-wrapper .btn-gold:last-of-type {
  /* margin-top: 8px */
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: white !important;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn i {
  margin-left: 15px;
  color: white;
}

.btn-gold {
  background: #0F91CC;
  transition: all ease-in-out 0.2s;
}
.btn-gold:hover {
  background: #002E56;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.btn-ghost {
  outline: 1px solid #002E56;
  outline-offset: -1px;
  color: #002E56 !important;
  background: none;
  margin-top: 8px;
}
.btn-ghost:hover {
  color: white !important;
  outline: 0px solid #002E56;
  background: #002E56;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.btn-middle-grey {
  background: rgba(148, 151, 152, 0.5);
}
.btn-middle-grey:hover {
  color: #002E56 !important;
  background: white;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.btn-grey {
  background: #002e56;
}
.btn-grey:hover {
  color: #002E56 !important;
  background: white;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.mobile-btn-inline {
  display: none;
}

hr.width-wrapper {
  display: flex;
  width: 100%;
  height: 1px;
  background: rgba(0, 46, 86, 0.5);
  border: none;
  margin: 50px auto;
}

iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  outline: none;
}

#hero {
  position: relative;
}

header, footer {
  display: flex;
  background: white;
  color: #002E56;
}

header {
  position: fixed;
  /* this calculates the width of the viewport without the scrollbar */
  width: calc(100vw - (100vw - 100%));
  height: 70px;
  z-index: 10;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
}
header .width-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header i {
  color: white;
  font-size: 32px;
}
header img {
  width: auto;
  height: 36px;
}
header .nav-link, header .nav-link- {
  position: relative;
}
header .nav-link-.collapsible {
  display: flex;
  justify-content: flex-start;
  color: #0F91CC;
  background: none;
  border: none;
  width: auto;
  font-size: 20px;
  margin: -10px 0 30px;
  padding-left: 15px;
}
header .content {
  display: none;
  justify-content: flex-start;
  text-align: start;
  padding: 0 0 0 30px;
}
header .content a:last-of-type {
  margin-bottom: 50px !important;
}
header #dropdown-menu {
  position: relative;
  display: none;
  min-width: 400px;
}
header #dropdown-menu.dropdown-content {
  display: none;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
}
header #dropdown-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px !important;
}
header #dropdown-menu ul li {
  display: block;
  text-align: start;
  word-break: keep-all;
}
header #dropdown-menu ul li:first-of-type {
  font-weight: 700;
  color: #0F91CC;
  margin-bottom: 5px !important;
}
header #dropdown-menu ul li:first-of-type a {
  font-size: 18px !important;
  font-weight: 700 !important;
}
header #dropdown-menu ul li:first-of-type a:hover {
  color: #3C6B83 !important;
}
header #dropdown-menu ul li a {
  color: inherit !important;
  font-size: 16px !important;
  height: auto !important;
  font-weight: 400 !important;
}
header #dropdown-menu ul li a:hover {
  color: #0F91CC !important;
}
header li:first-of-type:hover #dropdown-menu {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  background: white;
  padding: 30px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
header #burger-menu {
  cursor: pointer;
  height: 27px;
  width: 27px;
  margin: 0;
  overflow: visible;
  position: relative;
  z-index: 20;
  content: "";
}
header #burger-menu span, header #burger-menu span:before, header #burger-menu span:after {
  background: #002E56;
  display: block;
  height: 3px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
  content: "";
}
header #burger-menu span {
  right: 0px;
  top: 13px;
  width: 27px;
  content: "";
}
header #burger-menu span:before {
  left: 0px;
  top: -10px;
  width: 27px;
  content: "";
}
header #burger-menu span:after {
  left: 0px;
  top: 10px;
  width: 27px;
  content: "";
}
header #burger-menu.close span {
  transform: rotate(-45deg);
  top: 13px;
  width: 27px;
}
header #burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 27px;
}
header #burger-menu.close span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}
header #menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 11;
  min-width: 100vw;
  min-height: calc(100vh - 70px);
  position: absolute;
  top: 70px;
  left: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  padding: 50px 0px !important;
  transition: all 0.3s ease-in-out;
  background: rgb(255, 255, 255);
  overflow: scroll;
}
header #menu ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
}
header #menu ul > li > a i {
  position: absolute;
  font-size: 18px;
  bottom: 8px;
  color: #002E56;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all ease-in-out 0.2s;
}
header #menu ul > li > a:hover i {
  color: #0F91CC;
  transition: all ease-in-out 0.2s;
}
header #menu.overlay {
  visibility: visible;
  opacity: 1;
  /* padding-top: 70px */
  background: rgb(255, 255, 255);
}
header #menu ul {
  margin: 0;
}
header #menu ul, header #menu li {
  list-style: none !important;
}
header #menu .mobile-product-nav {
  display: flex;
  min-width: 220px;
  flex-direction: column;
}
header #menu a {
  color: black;
  display: block;
  font-size: 24px;
  margin-bottom: 30px;
  text-decoration: none;
}
header #menu a.btn:first-of-type {
  font-size: 16px;
  margin: 50px 0 15px;
}
header #menu a.btn {
  font-size: 16px;
}
header #header-language-dealer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 15px;
  order: 2;
}
header #language-select {
  width: auto;
  color: #002E56;
  font-size: 18px !important;
  font-weight: 700;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}
header #language-select:focus, header #language-select:active option {
  outline: none;
  border: none;
}
header .flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}

main {
  min-height: calc(100vh - 60px);
  padding-top: 70px;
}
main .disturb-dealer {
  background: #002E56;
  padding: 30px 0;
}
main .disturb-dealer div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
main .disturb-dealer div p {
  padding: 0;
  margin: 0;
  color: white;
}
main .disturb-dealer div .btn.btn-gold:hover {
  background: white;
  color: #002E56 !important;
}
main #products #products-hint {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 46, 86, 0.1);
}
main #products #products-hint i {
  font-size: 44px;
  color: #002E56;
  margin-right: 30px;
}
main .img-wrapper {
  display: flex;
  flex-direction: column;
}
main .img-wrapper .img-right-mobile {
  display: block;
  margin-top: 30px;
}
main .img-wrapper .img-right-desktop {
  display: none;
}
main .swiper {
  position: relative;
  display: flex;
  width: 100%;
  height: 40vh;
}
main .swiper .swiper-slide {
  background: grey;
}
main .swiper .swiper-button-next:after, main .swiper .swiper-rtl .swiper-button-prev:after, main .swiper .swiper-button-prev:after, main .swiper .swiper-rtl .swiper-button-next:after {
  color: white !important;
}
main .swiper .slide-info-wrapper {
  position: absolute;
  max-width: 75vw;
  bottom: 30px;
  padding: 15px;
  background: rgba(0, 46, 86, 0.5);
}
main .swiper .slide-info-wrapper h3 {
  color: white;
}
main .swiper .slide-info-wrapper .btn-wrapper {
  margin: 0;
}
main .swiper .btn:hover {
  background: white;
  color: #002E56 !important;
  transition: all ease-in-out 0.2s;
}
main .swiper .btn:hover i {
  color: #002E56 !important;
}
main .swiper div[class*=slide-] {
  background-position: center center;
  background-size: cover;
}
main .swiper .slide-1 {
  background: url(/images/slider/cb-professional-CB-Outdoor-Kitchen-Grillwagen-Monolith.webp);
}
main .swiper .slide-2 {
  background: url(/images/slider/cb-professional-Plancha-slider.webp);
}
main .swiper .slide-3 {
  background: url(/images/slider/cb-professional-neocube-o-slider.webp);
}
main .swiper .slide-4 {
  background: url(/images/slider/cb-professional-Tische-slider.webp);
}
main .swiper .slide-5 {
  background: url(/images/slider/cb-professional-Pflanztroege-slider.webp);
}
main .swiper .slide-6 {
  background: url(/images/slider/cb-professional-HEAzs-slider.webp);
}
main .swiper .slide-7 {
  background: url(/images/slider/cb-professional-Sichtschutz-slider.webp);
}
main#privacy-wrapper {
  -webkit-hyphens: auto;
          hyphens: auto;
}

footer {
  background: #002E56;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer p, footer a {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin: 0;
}
footer p:visited, footer a:visited {
  color: rgba(255, 255, 255, 0.75);
}
footer p:first-of-type {
  margin-bottom: 8px;
}

form {
  max-width: 750px;
  margin: auto;
}
form .flex-inputs {
  display: flex;
  gap: 15px;
}
form .flex-inputs .field {
  width: 100%;
  display: flex;
  flex-direction: column;
}
form .flex-inputs .field input {
  display: flex;
  padding: 10px 10px;
}
form ::-moz-placeholder {
  font-style: italic;
}
form ::placeholder {
  font-style: italic;
}
form .message {
  width: 100%;
  display: flex;
  flex-direction: column;
}
form label {
  font-size: 12px !important;
  margin-bottom: 4px;
}
form textarea {
  font-family: "Lato", sans-serif;
  padding: 10px 10px;
}
form .button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
form .button-area .btn {
  border: none !important;
  outline: none !important;
}
form#passwordForm {
  margin: 0;
}
form#passwordForm .field {
  /* width: auto */
}
form#passwordForm button {
  margin-top: 15px;
}

.my-body-noscroll-class {
  overflow: hidden;
}

/* Tablet */
@media all and (min-width: 768px) and (max-width: 980px) {
  .flex-special {
    flex-direction: column;
  }
  .btn-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  .btn-wrapper .btn {
    width: auto;
    /* margin-right: 15px */
    padding: 15px 30px;
  }
  .btn-wrapper .btn-ghost {
    margin: 0;
  }
  .btn-wrapper .btn-gold:last-of-type {
    margin-top: 0px;
  }
  main .disturb-dealer div {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  main .hide-desktop {
    display: none !important;
  }
}
/* Desktop */
@media all and (min-width: 981px) {
  h1 {
    font-size: 76px;
    line-height: 78px;
    color: #002E56;
    margin-bottom: 30px;
  }
  h2, h3 {
    font-size: 32px;
  }
  p {
    margin-bottom: 16px;
    color: rgba(0, 46, 86, 0.75);
  }
  .mobile-hidden {
    display: flex !important;
  }
  .mobile-visible {
    display: none !important;
  }
  .subpage.download h2 {
    margin-top: 0 !important;
  }
  .logo-img {
    width: auto;
    height: 24px;
    filter: invert(88%) sepia(0%) saturate(31%) hue-rotate(139deg) brightness(89%) contrast(87%);
  }
  .width-wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    margin: auto;
  }
  .flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flex-wrapper > div {
    width: 45.83334%;
  }
  .headline-img-wrapper h2, .headline-img-wrapper h3 {
    margin-bottom: 24px;
  }
  .txt-wrapper {
    margin: 36px 0;
  }
  .txt-wrapper h2:last-of-type, .txt-wrapper h3:last-of-type {
    margin: 8px 0 24px;
  }
  .btn-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  .btn-wrapper .btn {
    /* margin-right: 15px */
  }
  .btn-wrapper .btn-gold:last-of-type {
    margin-top: 0px;
  }
  .btn {
    width: auto;
    height: auto;
    font-size: 16px;
    padding: 15px 30px;
    transition: all ease-in-out 0.2s;
  }
  .btn-gold {
    background: #0F91CC;
    transition: all ease-in-out 0.2s;
  }
  .btn-gold:hover {
    background: #002E56;
    transition: all ease-in-out 0.2s;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
  }
  .btn-ghost {
    outline: 1px solid #002E56;
    outline-offset: -1px;
    margin-top: 0;
    color: #002E56 !important;
    background: none;
    transition: all ease-in-out 0.2s;
  }
  .btn-ghost:hover {
    color: white !important;
    outline: 0px solid #002E56;
    background: #002E56;
    transition: all ease-in-out 0.2s;
    text-decoration: none;
  }
  .mobile-btn-inline {
    display: flex;
  }
  .hide-desktop {
    display: none !important;
  }
  #hero img {
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header, footer {
    display: flex;
    color: #002E56;
  }
  header {
    position: fixed;
    /* this calculates the width of the viewport without the scrollbar */
    width: calc(100vw - (100vw - 100%));
    height: 70px;
    z-index: 10;
  }
  header li:first-of-type:hover #dropdown-menu {
    display: flex;
  }
  header .width-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  header .width-wrapper .btn-gold {
    color: white;
    background: #0F91CC !important;
  }
  header .width-wrapper .btn-gold:hover {
    background: #002E56 !important;
    color: white;
    transition: all ease-in-out 0.2s;
  }
  header .width-wrapper #burger-menu {
    display: none;
  }
  header .width-wrapper #menu {
    display: flex;
    visibility: visible;
    opacity: 1;
    min-width: auto;
    min-height: 70px;
    position: relative;
    background: none;
    top: 0;
    overflow: visible;
    padding: 0 !important;
  }
  header .width-wrapper #menu.overlay {
    padding-top: 0 !important;
  }
  header .width-wrapper #menu ul {
    display: flex;
    visibility: visible;
    opacity: 1;
    gap: 30px;
    list-style-type: none !important;
  }
  header .width-wrapper #menu ul li {
    list-style-type: none !important;
    font-size: 16px !important;
    margin: 0;
  }
  header .width-wrapper #menu ul li a {
    margin: 0;
    color: #002E56;
    font-weight: 700;
    font-size: 18px;
    transition: all ease-in-out 0.2s;
  }
  header .width-wrapper #menu ul li a:hover {
    color: #0F91CC;
    transition: all ease-in-out 0.2s;
  }
  header .width-wrapper #menu ul a.btn {
    display: none;
  }
  header .width-wrapper #menu ul > li > a {
    height: 70px;
  }
  header #header-language-dealer-wrapper {
    order: 0;
  }
  header i {
    color: white;
    font-size: 32px;
  }
  header img {
    width: auto;
    height: 36px;
  }
  main {
    padding-top: 70px;
  }
  main .swiper {
    height: 65vh;
  }
  main .disturb-dealer div {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  main .img-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  main .img-wrapper img, main .img-wrapper picture {
    align-self: flex-start;
  }
  main .img-wrapper img:first-of-type {
    margin-top: 30px;
    width: 58.33%;
  }
  main .img-wrapper #img-right-wrapper {
    display: flex;
    width: 33.33%;
    margin-top: 70px;
  }
  main .img-wrapper #img-right-wrapper .img-right-mobile {
    display: none;
  }
  main .img-wrapper #img-right-wrapper .img-right-desktop {
    display: block;
  }
  main #about-us h1 span {
    color: #528E83;
  }
  main #about-us #cb-group-logo {
    width: auto;
    height: 44px;
    margin-top: 24px;
  }
  main #about-us #logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }
  main #consulting {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  main #consulting .txt-wrapper {
    width: 66.66%;
  }
  main #consulting .txt-wrapper .btn-wrapper .btn {
    margin: auto;
  }
  main #consulting p {
    color: rgba(255, 255, 255, 0.75);
  }
  main .swiper-1, main .swiper-2, main .swiper-3 {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
  }
  main .grid-wrapper {
    grid-template: auto/repeat(6, 1fr);
  }
  footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  footer p, footer a {
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 0;
  }
  .my-body-noscroll-class {
    overflow: hidden;
  }
  form#passwordForm .field {
    width: auto;
    min-width: 300px;
  }
}/*# sourceMappingURL=style.css.map */