@import "./styles/reset.css";
@import "./styles/fonts.css";
@import "./styles/section-html.css";
@import "./styles/section-contact.css";
@import "./styles/section-form.css";
@import "./styles/section-pricing.css";
@import "./styles/section-photo.css";
@import "./styles/section-gallery.css";
/* This needs to be after all section definitions */
@import "./styles/section-layout.css"; 
@import "./styles/responsive-sizing.css";

/**
 * WARNING! ONLINE THE MINIFIED VERSION IS USED! DON'T FORGET TO UPDATE THAT FILE
 * -> No clue where that file is located.
 */

/**
 * GENERAL
 */

body {
  color: #474747;
  font-family: lato, sans-serif;
  font-weight: 300;
  font-size: 16pt;
  line-height: 1.65em;
  background: #f7f7f7
    url("https://demo.optios.net/website/assets/css/images/bg01.png");
}

/**
 * THEMES
 */

html {
  --color-background-first: #ffffff;
  --color-background-second: #f7f7f7;
  --color-primary: #ffffff;
  --color-secondary: rgba(27, 27, 27, 0.75);
  --color-feedback-title: #859391;
  --color-feedback-paragraph: #050505;
  --color-feedback-paragraph-fallback: #050505;
  --color-black-font: #000000;
  --color-white-font: #ffffff;
  --color-success: #69d321;
  --color-warning: #fbb03b;
  --color-error: #d24444;
  --color-info: #0090ff;
  --color-info-hover: #70befa;
  --color-destructive: #d24444;
  --color-danger: #d24444;
  --color-link: #0090ff;

  /*Custom*/

  /*Pricing*/
  --pricing-container-max-width: 1024px;
  --pricing-header-border-bottom: none;
  --pricing-header-margin-left: 0;
}

.container {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.buttons-container {
  display: flex;
  justify-content: flex-end;
}

.action-buttons-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  max-width: 100%;
}

@media (max-width: 768px) {
  .action-buttons-wrapper {
    justify-content: center;
    gap: 8px;
  }
}

.action-button-base {
  font-size: 12px; /* Replace with actual value of theme.sizes.xsmall */
  font-family: 'YourPrimaryFont', sans-serif; /* Replace with theme.fonts.primary */
  border: 1px solid #999999; /* Replace with theme.colors.secondary */
  border-radius: 20px;
  background: transparent;
  color: #333333; /* Replace with theme.colors.feedbackTitle */
  padding: 8px 14px;
  display: flex;
  align-items: center;
  height: 42px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.action-button-base:hover {
  border-color: #999999; /* Replace with theme.colors.secondary */
  color: #999999; /* Replace with theme.colors.secondary */
}

.action-button-icon {
  font-size: 0.9em;
  flex-shrink: 0;
  margin-right: 6px;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0.15))
    ),
    url(https://demo.optios.net/website/assets/css/images/bg01.png);
  background-image: -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.15)
    ),
    url(https://demo.optios.net/website/assets/css/images/bg01.png);
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)),
    url(https://demo.optios.net/website/assets/css/images/bg01.png);
  background-color: #0090ff;
  border-radius: 5px;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 0 1.5em;
  line-height: 2.75em;
  min-width: 9em;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ql-align-right {
  text-align: right;
}

.ql-align-left {
  text-align: left;
}

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

.ql-align-justify {
  text-align: justify;
}

@-webkit-keyframes spinning {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinning {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.spinner .spinner-wrapper {
  position: relative;
  width: 77.1429px;
  height: 77.1429px;
  -webkit-animation: 0.6s linear 0s infinite normal forwards running spinning;
  animation: 0.6s linear 0s infinite normal forwards running spinning;
}

.spinner .spinner-dot {
  width: 8.57143px;
  height: 8.57143px;
  background-color: #0090ff;
  opacity: 0.8;
  position: absolute;
  top: 25.7143px;
  border-radius: 100%;
  -webkit-animation: 0.6s linear 0s infinite normal forwards running spinning;
  animation: 0.6s linear 0s infinite normal forwards running spinning;
}

.spinner .spinner-border {
  width: 60px;
  height: 60px;
  opacity: 0.1;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 100%;
  border-width: 8.57143px;
  border-style: solid;
  border-color: #0090ff;
  -o-border-image: initial;
  border-image: initial;
}

/**
 * TYPOGRAPHY
 */
h2,
.ql-size-huge {
  font-size: 1.75em;
  letter-spacing: -0.025em;
  color: inherit;
  font-weight: 600;
  line-height: 1.75em;
  margin-bottom: 1em;
}

h2 em {
  font-style: normal;
  font-weight: 300;
}

h3,
.ql-size-large {
  font-size: 1.2em;
  letter-spacing: -0.025em;
  color: inherit;
  font-weight: 600;
  line-height: 1.75em;
  margin-bottom: 1em;
}

a {
  border-bottom-color: rgba(71, 71, 71, 0.25);
  -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  color: #0090ff;
  text-decoration: none;
  border-bottom: dotted 1px;
}

a:hover {
  color: #0090ff;
  border-bottom-color: transparent;
}

/**
 * SECTIONS
 */

.banner {
  background-image: url(https://demo.optios.net/website/images/doormat.jpg);
  background-position: center center !important;
  background-size: cover !important;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  height: 28em;
  position: relative;
  text-align: center;
  justify-content: flex-start;
}

.banner .video-outer {
  height: 28em;
  overflow: hidden;
  position: relative;
}

.banner .video-outer .video-inner {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .video-outer .video-inner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  width: 100%;
  background-color: black;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 600px) {
  .banner {
    height: 18em !important;
  }
}

.banner .logo {
  margin: 0 auto;
  flex-grow: 1;
  align-items: center;
  display: flex;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 0.75em;
}

.logo-img {
  padding: 16px;
}

.logo-txt {
  font-weight: 600;
  line-height: 1;
}

.banner .logo img {
  max-height: 200px;
  max-width: 90%;
}

.banner .logo h1 {
  color: #fff;
  font-size: 2em;
  margin: 0 1em;
  text-shadow: 1px 1px 1px #333;
  line-height: 1em;
}

.banner header {
  width: 100%;
  background: #212121;
  background: rgba(27, 27, 27, 0.75);
  color: #fff;
  padding: 1.5em 0;
}

.banner header h2 {
  display: inline-block;
  margin: 0;
  font-size: 1.25em;
  vertical-align: middle;
}

.banner header h2 em {
  opacity: 0.75;
}

.banner header .button {
  vertical-align: middle;
  margin: 1em;
}

.text-and-images {
  background: #fff;
  padding: 5em 0 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-and-images .text-and-images-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text-and-image {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 500px;
  min-width: 320px;
  padding: 1em;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.text-and-image i {
  text-align: center;
  cursor: default;
  background-color: #4caf50;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.15))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15)
  );
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
  color: #fff;
  border-radius: 100%;
  display: inline-block;
  width: 5em;
  height: 5em;
  line-height: 5em;
  -webkit-box-shadow: 0 0 0 7px white, 0 0 0 8px #e0e0e0;
  box-shadow: 0 0 0 7px white, 0 0 0 8px #e0e0e0;
  margin: 0 0 2em 0;
}

.text-and-image i::before {
  font-size: 1.8em;
}

.section-inline {
  padding: 5em 0 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-flow: row wrap;
  flex-grow: 0;
  align-items: normal;
  justify-content: space-around;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .section-wrapper {
    justify-content: space-between;
    font-size: 0.75em;
  }
}

.section-inline .section-inline-inner,
.section-pricing-wrapper {
  padding: 24px 0;
  width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-inline .section-inline-inner > section {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 320px;
  padding: 1em;
  -ms-flex-preferred-size: 0;
  /*flex-basis: 0;*/
}

.footer {
  text-align: center;
  font-size: 0.9em;
  color: #999;
  margin: 2em 0;
}

.powered-by {
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 0.75em;
}

.powered-by a {
  color: #999;
  border-bottom-color: rgba(71, 71, 71, 0.25);
}

.powered-by a:hover {
  color: #0090ff;
}

.footer-wrapper {
  padding: 24px 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  border-left: solid 1px #e0e0e0;
  padding: 0 1em;
  display: inline-block;
}

.footer ul li:first-child {
  border-left: none;
}

.footer a {
  border-bottom-color: rgba(71, 71, 71, 0.25);
  color: #999;
}

.footer a:hover {
  color: #0090ff;
}

.footer .social {
  font-size: 2em;
  padding: 2em 0;
}

.footer .social li {
  border-left: none;
  padding: 0 0.5em;
}

.footer .social li a {
  text-decoration: none;
  border: 0;
}

.footer .social li a span {
  display: none;
}

.footer .social li a:hover {
  color: black;
}

@keyframes animateLeft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

.slide-animate-left {
  position: relative;
  animation: animateleft 0.4s;
}

@keyframes animateRight {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.slide-animate-right {
  position: relative;
  animation: animateRight 0.4s;
}

.slider-container {
  display: flex;
  background: #ffffff;
  width: 16em;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.slider-header {
  font-weight: bold;
  line-height: 1.2em;
  height: 1.2em;
}

.slider-sub {
  line-height: 1.2em;
  height: 1.2em;
  font-style: italic;
  font-size: 0.8em;
}

.slider-text {
  padding: 8px;
  font-size: 1.2em;
  white-space: normal;
}

.feedbacks-wrapper {
  display: none;
}

.carousel-slide-container {
  display: flex;
  background: #ffffff;
  width: 16em;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

.carousel-wrapper {
  margin: 3em 0;
  text-align: center;
}

.carousel-main-header {
  font-size: 2em;
  font-family: Quicksand, sans-serif;
  color: var(--color-feedback-title);
  font-weight: 700;
  padding: 1em 0 3em 0;
}

.carousel-container {
  overflow-x: clip;
  position: relative;
  text-align: center;
  height: 220px;
  margin: auto;
  margin-bottom: 2em;
}

.carousel-header {
  font-size: 1.2em;
  font-family: Lato, sans-serif;
  color: var(--color-black-font);
  font-weight: 300;
}

.carousel-paragraph {
  font-size: 1em;
  font-family: Lato, sans-serif;
  color: var(--color-black-font);
  font-style: italic;
}

.carousel-underline {
  width: 80px;
  background-color: var(--color-black-font);
  height: 2px;
  border: none;
  margin: 8px auto;
}

.feedback {
  background-color: white;
}

.feedback .feedback-container {
  width: 1400px;
  margin: 0 auto;
}

.feedback iframe {
  width: 100%;
}



/** Buttons **/
.section-buttons {
  margin: 0 auto;
}

.section-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

@media only screen and (max-width: 768px) {
  .section-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
  }
}

.section-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 16px;
  justify-content: center;
}

.section-button-link {
  position: relative;
  background-color: #ededed;
  text-align: center;
  width: 200px;
  color: #889290;
  padding: 12px 24px;
  margin: 8px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.section-button-link:hover {
  background-color: rgba(237, 237, 237, 0.5);
  color: #889290;
}



/* Employee */

.employee-card-wrapper {
  display: flex;
  justify-content: center;
  padding: 16px;
  flex-wrap: wrap;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid lightgray;
  border-radius: 8px;
  margin: 10px;
  background: #ffffff;
  width: 456px;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
    0 1px 5px 0 rgb(0 0 0 / 20%);
}

@media only screen and (max-width: 768px) {
  .card-wrapper {
    width: 100%;
  }
}

.card-employee-image-wrapper {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 8px 8px 0 0;
  background: #dbdbdb;
}

.card-employee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-employee-text-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.card-employee-text-container {
  text-align: center;
}

.card-employee-name {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
  padding: 0 16px;
}

.card-hr {
  width: 80px;
  background-color: #dbdbdb;
  height: 1px;
  border: none;
}

.card-employee-description {
  line-height: 1.5;
  font-weight: 300 !important;
  text-align: center;
  min-height: 150px;
  overflow: auto;
  padding: 16px;
  width: 100%;
}

/**
* Navigation
*/

.navigation-new {
  display: flex;
}

.navigation,
.navigation-new {
  background-color: var(--color-primary);
  min-height: 5em;
}

.navigation-new .navigation-list-new {
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.navigation-items-wrapper,
.navigation-items-wrapper-short {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  height: fit-content;
  justify-content: flex-start;
}

.navigation-items-wrapper-short {
  margin: 0 auto;
  gap: 0;
}

.has-collapsible.collapsed .subnavigation-items-wrapper {
  display: flex;
}

@media only screen and (min-width: 981px) {
  .has-collapsible.collapsed.forced .subnavigation-items-wrapper {
    display: none;
  }
}

.subnavigation-items-wrapper {
  width: 100%;
  display: none;
  margin-left: 16px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
}

a.subnav-button {
  padding: 0 0 0 24px;
}

a.subnav-button .arrow {
  width: 4px;
  height: 1.25rem;
  display: inline-block;
  position: relative;
  right: 6px;
}

a.subnav-button .arrow span {
  top: 0.5rem;
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #232323;
  display: inline-block;
  transition: all 0.2s ease;
  border-radius: 25px;
}

a.subnav-button .arrow span:first-of-type {
  left: 0;
  transform: rotate(45deg);
}

a.subnav-button .arrow span:last-of-type {
  right: 0;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 980px) {
  .navigation-title.collapsed a.subnav-button .arrow span:first-of-type {
    transform: rotate(-45deg);
  }

  .navigation-title.collapsed a.subnav-button .arrow span:last-of-type {
    transform: rotate(45deg);
  }
}

@media only screen and (min-width: 981px) {
  .has-collapsible.navigation-title {
    padding-right: 16px;
  }

  .has-collapsible a.subnav-button {
    position: absolute;
    top: 15px;
    right: 0;
    padding: 0;
  }

  .has-collapsible:hover a.subnav-button .arrow span:first-of-type {
    transform: rotate(-45deg);
  }

  .has-collapsible:hover a.subnav-button .arrow span:last-of-type {
    transform: rotate(45deg);
  }

  .has-collapsible a.subnav-button .arrow span {
    height: 1px;
  }

  .subnavigation-items-wrapper {
    width: auto;
    z-index: 2;
    padding: 0 16px;
    position: absolute;
    top: 50px;
    left: 0;
    margin-left: 0;
    background-color: #ffffff;
    box-sizing: content-box;
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
  }

  .subnavigation-items-wrapper:before {
    content: "";
    position: absolute;
    left: 8px;
    display: block;
    width: 0;
    height: 0;
    border-color: #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom-width: 7px;
    border-bottom-style: solid;
    top: -7px;
  }

  .navigation .navigation-list .subnavigation-items-wrapper {
    top: 60px;
  }
}

@media only screen and (min-width: 1351px) {
  .subnavigation-items-wrapper {
    left: 16px;
  }
}

@media only screen and (min-width: 1250px) {
  .navigation-items-wrapper {
    margin: 0 auto;
  }

  .navigation-items-wrapper-short {
    align-items: center;
  }
}

@media only screen and (max-width: 1650px) {
  .navigation-items-wrapper-short {
    font-size: 0.8em;
    line-height: 3;
  }
}

@media only screen and (max-width: 1500px) {
  .navigation-items-wrapper-short {
    font-size: 0.8em;
    line-height: 4;
  }
}

@media only screen and (max-width: 1400px) {
  .navigation-items-wrapper-short {
    font-size: 0.75em;
    line-height: 4;
  }
}

@media only screen and (max-width: 980px) {
  /* Mobile Nav break */
  .navigation-new .navigation-list-new,
  .navigation-items-wrapper,
  .navigation-items-wrapper-short {
    justify-content: normal;
    flex-direction: column;
    gap: 0;
  }

  .navigation-list-new {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    height: 100vh;
    padding: 5em 1em 0 2.6em;
    background: #ededed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-transform: translateX(0);
    text-align: left;
    top: 1px;
    left: -12px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }
}

.navigation-inner-new {
  margin: 0 auto;
  position: relative;
  background-color: var(--color-primary);
  width: 90%;
  display: flex;
  line-height: 2.6;
  padding: 32px 16px;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 980px) {
  .navigation-inner-new {
    margin: 0;
  }
}

.navigation-inner-new li a:active {
  color: #000000;
}

.navigation-inner {
  margin: 0 auto;
  position: relative;
  background-color: var(--color-background-first);
  padding: 1.5em;
  max-width: 100%;
}

.navigation .navigation-list {
  list-style: none;
}

.navigation .navigation-list li {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 3;
  position: relative;
}

.navigation .navigation-list li a {
  color: var(--color-feedback-title);
  border-bottom: none;
  padding: 1em;
}

@media only screen and (max-width: 980px) {
  .navigation .navigation-list li a {
    padding: 0;
  }

  .submenu-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}

.navigation-title {
  color: var(--color-feedback-title);
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

.navigation-title a {
  margin: 0;
  padding: 0 1.5em;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1350px) {
  .navigation-title a {
    margin: 0;
    padding: 0 0.5em;
  }
}

@media only screen and (max-width: 980px) {
  .navigation-title a {
    margin: 0;
    padding: 0;
    height: auto;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 981px) {
  .has-collapsible:hover .subnavigation-items-wrapper {
    display: flex !important;
  }
}

/*.navigation-title a:hover,*/
.navigation-title.active > a {
  font-weight: 700;
}

@media only screen and (min-width: 981px) {
  .navigation-title.active > a {
    font-weight: 300;
    color: var(--color-secondary);
  }
}

.navigation-link {
  color: var(--color-feedback-title);
  border-bottom: none;
  font-family: Lato, sans-serif;
  font-size: 0.8em;
  text-transform: var(--navigation-link-text-transform);
  text-decoration: none;
}

@media only screen and (max-width: 980px) {
  .navigation-link {
    flex-grow: 1;
  }
}

@media only screen and (min-width: 1400px) {
  .navigation-link {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 1350px) {
  .navigation-link {
    font-size: 0.75em;
  }
}

@media only screen and (max-width: 1100px) {
  .navigation-link {
    font-size: 0.75em;
  }
}

.navigation-link:hover,
.navigation-title.active {
  color: var(--color-secondary);
}

.navigation .navigation-list li a {
  font-size: 0.8em;
  padding: 16px;
}

.navigation .navigation-list li.active a {
  background: #e3e3e3;
}

.navigation .navigation-list li a:hover {
  color: #000000;
  border-bottom: 1px solid grey;
}

.navigation .navigation-list li.has-collapsible a:hover {
  border-bottom: 0;
}

.checkbox {
  display: none;
}

@media only screen and (max-width: 980px) {
  #menuToggle {
    display: block;
    position: relative;
    z-index: 3;
    margin: 0.9em 0;
    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
  }

  #menuToggle a:hover {
    border-bottom: none;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
  }

  #menuToggle span.hamburger {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #cdcdcd;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle span.hamburger:first-child {
    transform-origin: 0 0;
  }

  #menuToggle span.hamburger:nth-last-child(2) {
    transform-origin: 0 100%;
  }

  #menuToggle input:checked ~ span.hamburger.firstLine {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }

  #menuToggle input:checked ~ span.hamburger.secondLine {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span.hamburger.thirdLine {
    transform: rotate(-45deg) translate(0, -1px);
    background: #232323;
  }

  #menu {
    align-items: center;
    position: fixed;
    max-width: 305px;
    margin: 0;
    height: 100vh;
    overflow-y: scroll;
    padding: 5em 2em 1em 2.5em;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu::-webkit-scrollbar {
    display: none;
  }

  #menu li {
    padding: 16px 6px;
    font-size: 0.9em;
  }

  #menuToggle input:checked ~ div#menu {
    transform: none;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
}

/**
 * Language selection OLD
 */

.language-nav {
  margin: 1em 1em 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 1px #999;
  box-shadow: 0 0 0 1px #999;
  cursor: pointer;
}

@media only screen and (max-width: 980px) {
  .language-nav {
    margin: 1em 1em 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .language-nav {
    width: 43%;
  }
}

.language-nav ul {
  margin: 0;
  padding: 0;
}

.language-nav ul li {
  display: none;
  padding: 0.2em 0.5em 0.2em 0.5em;
  min-width: 10em;
}

.language-nav ul a {
  border: 0;
}

.language-nav ul a img {
  vertical-align: text-bottom;
  margin-right: 0.5em;
}

.language-nav:hover li,
.language-nav li.active {
  display: block;
}

/**
 * Language selection NEW
 */

.language-nav-new {
  position: relative;
  display: inline-block;
  z-index: 50;
  width: 70px;
  font-size: 14px;
}

.language-nav-new ul {
  position: absolute;
  top: -21px;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 70px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #999;
}

.language-nav-new ul li {
  display: none;
}
.language-nav-new ul li.active {
  display: block;
}

.language-nav-new:hover ul li {
  display: block;
}

.language-nav-new ul a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.35em 0.6em;
  text-decoration: none;
  color: inherit;
  border: 0;
}
.language-nav-new ul a img {
  vertical-align: text-bottom;
  margin-right: 0;
}

.buttons-wrapper {
  position: fixed;
  width: 300px;
  top: 40px;
  right: 40px;
  align-items: center;
  z-index: 40;
}

.giftcard-buttons {
  border: none;
  margin: auto;
  padding: 1em 1em;
  opacity: 1;
  display: flex;
  justify-content: flex-end;
}

.giftcard-buttons a {
  border-bottom: none;
}

.giftcard-buttons a .giftcard-button {
  padding: 1em;
  opacity: 0.6;
  background-color: #fff;
  display: flex;
}

.giftcard-button i {
  text-align: center;
  background-color: #4caf50;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.15))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15)
  );
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
  color: #fff;
  border-radius: 100%;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  cursor: pointer;
}

.giftcard-button p {
  margin-left: 1em;
}

/**
 * MOBILE PORTRAIT
 */
@media screen and (max-width: 480px) {
  .giftcard-buttons {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    flex-direction: column;
    padding: 0;
  }

  .giftcard-buttons a .giftcard-button {
    text-align: center;
    opacity: 1;
  }
}

.slider-header {
  font-size: 1.2em;
  font-family: Lato, sans-serif;
  color: var(--color-black-font);
  font-weight: 300;
}

.slider-paragraph {
  font-size: 1em;
  font-family: Lato, sans-serif;
  color: var(--color-black-font);
  font-style: italic;
}

.slider-underline {
  width: 80px;
  background-color: var(--color-black-font);
  height: 2px;
  border: none;
  margin: 8px auto;
}
.slider .slide {
  transform: translate(105%, -10%);
  width: 32%;
  height: 100%;
  right: 0;
  bottom: 16px;
  justify-content: center;
  position: absolute;
  left: 100%;
  text-align: center;
  animation: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s left;
  animation-fill-mode: forwards;
}

.slide-old {
  width: 150px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}

@media only screen and (max-width: 600px) {
  .loader {
    transform: translate(-20px, 50px);
  }

  .slider .slide {
    font-size: 0.75em;
    padding: 26px 0;
    width: 250px;
    transform: translate(64px, 10px);
  }
}

.dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-black-font);
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
}

.active-dot,
.dot:hover {
  background-color: var(--color-secondary);
  cursor: pointer;
}

@keyframes leftNext {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}

@keyframes leftCurr {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}

@keyframes rightNext {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}

@keyframes rightCurr {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}
