:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

/* Tenant 1 (Vogt) theme */
.tenant1 {
  --brandPrimary: #0070C0;
  --brandPrimaryHover: #00548d;
  --logoImg: url("/images/vogt/logo.png");
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
body {
  background-color: var(--background) !important;
  color: var(--text) !important;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  overflow-y: scroll;
}
@media (min-width: 1200px) {
  body .container {
    max-width: 1400px;
  }
}
body span, body label, body p, body div {
  font-size: 16px;
}
body a {
  color: var(--brandPrimary);
  text-decoration: none;
}
body h1 {
  font-size: 45px;
  font-weight: bold;
}
body .bordered-background {
  -webkit-box-shadow: 0 0 23px var(--box-shadow);
  -moz-box-shadow: 0 0 23px var(--box-shadow);
  box-shadow: 0 0 23px var(--box-shadow);
  border-radius: 15px;
  background-color: white;
}
body .main-navigation-container {
  width: auto;
  height: 80px;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 76px;
}

.horizontal-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vertical-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container .header-content-mobile {
  display: none;
}
.container .header-content-mobile .menu-content {
  display: none;
}
.container .header-content-mobile .menu-content.active {
  display: block;
}
.container .header-content {
  height: 100px;
  margin: 0 0 70px;
  align-items: center;
  padding-top: 30px;
}
.container .header-content .nav-links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .header-content .nav-links-container a {
  color: var(--text);
}
.container .header-content .nav-links-container a:hover {
  text-decoration: none;
}
.container .header-content .nav-links-container img {
  width: 27px;
  height: 18px;
}
.container .header-content .nav-links-container span {
  font-size: 18px;
}
.container .header-content .logo-container {
  text-align: center;
}
.container .header-content .logo-container img {
  width: 256px;
  height: 70px;
}
.container .header-content .additional-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.container .header-content .additional-container .button-container {
  min-width: 24px;
  min-height: 24px;
}
.container .header-content .additional-container .select-container {
  min-width: 53px;
  min-height: 19px;
}
.container .header-content .additional-container img {
  cursor: pointer;
}
.container .header-content .additional-container .border {
  margin: 0 25px;
  border: 1px solid var(--border-grey);
  height: 17px;
}
@media screen and (max-width: 991px) {
  .container .header-content {
    display: none;
  }
  .container .header-content-mobile {
    display: block;
    height: fit-content;
    margin: 0 0 70px;
    padding-top: 30px;
  }
}

.main-navigation {
  height: 100px;
  margin-bottom: 40px;
}
.main-navigation .nav-wrapper {
  height: 35px;
}
.main-navigation .main-navigation-item {
  height: fit-content;
  padding: 0 20px;
}
.main-navigation .main-navigation-item.active .label {
  border-bottom: 5px solid;
  font-weight: 600;
  color: var(--brandPrimary);
}
.main-navigation .main-navigation-item .label {
  color: var(--text);
  font-size: 20px;
  text-decoration: none;
}
.main-navigation .divider {
  width: 100%;
  max-width: 400px;
  margin-top: 24px;
}

.quality-service-container {
  margin-bottom: 150px;
}
.quality-service-container h1 {
  margin-bottom: 80px;
}
.quality-service-container img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
}
@media (max-width: 1200px) {
  .quality-service-container {
    margin-top: 50px;
  }
  .quality-service-container h1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .quality-service-container img {
    display: none;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.book-online-presets-container {
  margin-bottom: 100px;
  text-align: center;
}
.book-online-presets-container h1 {
  margin-bottom: 40px;
  font-size: 50px;
}
.book-online-presets-container .presets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 48px;
  row-gap: 48px;
}
.book-online-presets-container .product-tile {
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 0 9px var(--box-shadow);
  padding: 50px;
  text-align: center;
}
.book-online-presets-container .product-tile:hover {
  cursor: pointer;
  -webkit-box-shadow: 5px 5px 28px var(--box-shadow);
  -moz-box-shadow: 5px 5px 28px var(--box-shadow);
  box-shadow: 5px 5px 28px var(--box-shadow);
}
.book-online-presets-container .product-tile .wgt-add-to-cart-layout {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.book-online-presets-container .product-tile .wgt-add-to-cart-layout img {
  margin-bottom: 20px;
}
.book-online-presets-container .product-tile .wgt-add-to-cart-layout .title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}
.book-online-presets-container .product-tile .wgt-add-to-cart-layout .price-info .price, .book-online-presets-container .product-tile .wgt-add-to-cart-layout .price-info span {
  font-size: 30px;
  font-weight: bold;
  color: var(--brandPrimary);
}
.book-online-presets-container .product-tile .wgt-add-to-cart-layout .price-info .description {
  font-size: 16px;
  color: var(--grey);
}
@media (max-width: 1200px) {
  .book-online-presets-container .presets-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 28px;
  }
  .book-online-presets-container .product-tile {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .book-online-presets-container .presets-grid {
    grid-template-columns: 1fr;
  }
  .book-online-presets-container .product-tile .wgt-add-to-cart-layout img {
    width: 40px;
    height: 40px;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.reviews-container h1 {
  font-size: 50px;
  text-align: center;
}
.reviews-container .description {
  font-size: 30px;
  font-weight: 300;
  color: var(--border-grey);
  text-align: center;
  margin-bottom: 70px;
}
.reviews-container .data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 100px;
  row-gap: 50px;
}
.reviews-container .data-grid .review {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 0 80px var(--box-shadow);
  padding: 25px;
}
.reviews-container .data-grid .review p {
  font-size: 14px;
  margin-bottom: 0;
}
.reviews-container .data-grid .review .rating {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}
.reviews-container .data-grid .review .rating img {
  margin-right: 10px;
}
.reviews-container .data-grid .review .comment {
  font-weight: 300;
  color: var(--comment);
  margin-bottom: 16px;
}
.reviews-container .data-grid .review .city {
  font-style: italic;
}
@media (max-width: 1200px) {
  .reviews-container .description {
    margin-bottom: 30px;
  }
  .reviews-container .data-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 25px;
  }
}
@media (max-width: 991px) {
  .reviews-container .data-grid {
    grid-template-columns: 1fr;
  }
}

.parcel-shipping-container {
  position: relative;
}
.parcel-shipping-container .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--brandPrimary) 50%, white 50%);
  z-index: -1;
}
.parcel-shipping-container .content {
  background-color: var(--brandPrimary);
  margin: 200px 0;
  border-radius: 0 50px 50px 0;
  justify-content: space-between;
}
.parcel-shipping-container .content h1, .parcel-shipping-container .content h3 {
  color: white;
}
.parcel-shipping-container .content .package-content {
  max-width: 60%;
  padding: 80px 15px 80px 0;
}
.parcel-shipping-container .content .package-content .main-title, .parcel-shipping-container .content .package-content .subtitle {
  font-size: 70px;
}
.parcel-shipping-container .content .package-content .subtitle {
  font-weight: lighter;
}
.parcel-shipping-container .content .package-content .description {
  font-size: 20px;
  font-weight: lighter;
  margin-top: 14px;
  margin-bottom: 70px;
}
.parcel-shipping-container .content .delivery-slides-wrapper {
  position: relative;
}
@media (max-width: 1200px) {
  .parcel-shipping-container .content {
    flex-direction: column-reverse;
    align-items: flex-end;
    margin: 100px 0;
  }
  .parcel-shipping-container .content .package-content {
    max-width: 100%;
    padding: 40px 15px 40px 0;
  }
  .parcel-shipping-container .content .package-content .main-title, .parcel-shipping-container .content .package-content .subtitle {
    font-size: 30px;
  }
  .parcel-shipping-container .content .package-content .description {
    font-size: 18px;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.main-navigation {
  height: 100px;
  margin-bottom: 40px;
}
.main-navigation .nav-wrapper {
  height: 35px;
}
.main-navigation .main-navigation-item {
  height: fit-content;
  padding: 0 20px;
}
.main-navigation .main-navigation-item.active .label {
  border-bottom: 5px solid;
  font-weight: 600;
  color: var(--brandPrimary);
}
.main-navigation .main-navigation-item .label {
  color: var(--text);
  font-size: 20px;
  text-decoration: none;
}
.main-navigation .divider {
  width: 100%;
  max-width: 400px;
  margin-top: 24px;
}

.mini-product-grid-container {
  margin-top: 200px;
}
.mini-product-grid-container .description {
  margin-bottom: 100px;
}
.mini-product-grid-container .products-grid {
  display: none;
}
.mini-product-grid-container .products-grid.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 10px;
}
.mini-product-grid-container .products-grid > .product-data:nth-child(4n-3), .mini-product-grid-container .products-grid > .product-data:nth-child(4n-2) {
  background: var(--background);
}
.mini-product-grid-container .products-grid .product-data {
  padding: 10px 20px;
  border-radius: 40px;
}
.mini-product-grid-container .products-grid .product-data span, .mini-product-grid-container .products-grid .product-data a {
  color: var(--grey2);
  font-size: 20px;
}
.mini-product-grid-container .products-grid .product-data a {
  color: var(--brandPrimary);
  text-decoration: underline;
  font-weight: bold;
  text-align: end;
}
@media (max-width: 1200px) {
  .mini-product-grid-container {
    margin-top: 100px;
  }
  .mini-product-grid-container .products-grid {
    margin: 0 20px;
  }
  .mini-product-grid-container .products-grid.active {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 25px;
  }
  .mini-product-grid-container .products-grid > .product-data:nth-child(odd) {
    background: var(--background);
  }
  .mini-product-grid-container .products-grid > .product-data:nth-child(even) {
    background: none;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.main-footer {
  padding: 200px 0 70px 0;
  background-image: url("/images/main/png/footer-background.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
}
.main-footer h3 {
  font-size: 20px;
  color: var(--grey2);
}
.main-footer a {
  color: var(--text);
}
.main-footer .riding-text span {
  color: var(--brandPrimary);
}
.main-footer .payment-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.main-footer .information-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.main-footer .information-links a:not(:last-child) {
  margin-bottom: 10px;
}
.main-footer .magazin {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.main-footer .magazin .how-works-text {
  font-weight: bold;
  cursor: pointer;
}
.main-footer .magazin .separator {
  width: 1px;
  height: 20px;
  background-color: var(--separator);
  margin: 0 15px;
}
.main-footer .separator {
  width: 100%;
  height: 1px;
  background-color: var(--separator);
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.41;
}
.main-footer .telephone {
  text-decoration: none;
  color: var(--dark-blue);
}
.main-footer .telephone:hover {
  text-decoration: underline;
}
.main-footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.main-footer .opening-time span {
  font-size: 14px;
  font-weight: lighter;
}
.main-footer .new-jobs-image {
  max-width: 164px;
  max-height: 164px;
}
.main-footer .social-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
}
.main-footer .social-grid img {
  cursor: pointer;
}
@media (max-width: 991px) {
  .main-footer {
    margin-top: 100px;
    padding: 50px 0 70px 0;
    background-image: none;
    background-color: var(--background);
  }
  .main-footer h3 {
    margin: 20px 0;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.license-footer {
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: var(--grey2);
  padding: 20px 0;
}
.license-footer span {
  color: white;
}
.license-footer .right-side {
  text-align: end;
}
.license-footer .right-side a:not(:last-child) {
  margin-right: 47px;
}

@media (max-width: 992px) {
  .license-footer .row {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .license-footer .row .right-side {
    margin-bottom: 15px;
  }
  .license-footer .row .left-side, .license-footer .row .right-side {
    text-align: start;
  }
}
@media (max-width: 576px) {
  .license-footer {
    padding: 15px 0;
  }
}
body {
  background-color: white !important;
}

.learn-more-link {
  width: fit-content;
  display: block;
  background-color: var(--brandPrimary);
  border-radius: 30px;
  padding: 10px 30px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-right: 30px;
}
.learn-more-link:hover {
  color: white;
}

.blue-text {
  color: var(--brandPrimary);
  font-size: 20px;
  margin-bottom: 10px;
}

.main-entry-container .background-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url("/images/main/png/landing-backdrop.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.main-entry-container .entry-content {
  height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.main-entry-container .entry-content h1 {
  font-size: 50px;
}
.main-entry-container .entry-content .description {
  color: var(--grey2);
  font-size: 18px;
  padding: 25px 0;
}
.main-entry-container .entry-content .underline {
  width: 20%;
  height: 12px;
  background-color: var(--brandPrimary);
}
.main-entry-container .entry-content .buttons-container {
  display: flex;
}
.main-entry-container .entry-content .scroll-down-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 8%;
  left: 50%;
}
.main-entry-container .entry-content .scroll-down-wrapper img {
  margin-bottom: 18px;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.main-entry-container .entry-content .scroll-down-wrapper p {
  font-size: 18px;
}
@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

.second-entry-container {
  position: relative;
  margin-bottom: 150px;
}
.second-entry-container .background-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60vh;
  z-index: -1;
  background-image: url("/images/main/png/landing-backdrop-2.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 50% 100%;
}
.second-entry-container .second-entry-content h1 {
  font-size: 50px;
  margin-bottom: 26px;
}
.second-entry-container .second-entry-content .description {
  font-size: 18px;
  margin-bottom: 12px;
}
.second-entry-container .second-entry-content img {
  width: 100%;
  max-width: 500px;
  max-height: 600px;
}

.book-online-presets-container {
  margin-bottom: 120px;
}

@media (max-width: 1200px) {
  .main-entry-container {
    margin: 50px 0 150px 0;
  }
  .main-entry-container .background-image {
    opacity: 0.4;
    background-position: top;
  }
  .main-entry-container .entry-content {
    height: fit-content;
    justify-content: flex-start;
  }
  .main-entry-container .entry-content .scroll-down-wrapper {
    display: none;
  }
  .main-entry-container .entry-content .buttons-container .learn-more-link {
    margin-right: 10px;
  }
  .second-entry-container .background-image {
    display: none;
  }
}

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