/* ------------------------------------------------------------------------- */
/* APPEARANCE FOR ALL PAGES
1. GENERAL
  1.1 Headline
  1.2 Spacing
  1.3 Frames
  1.4 Misc
2. PRELOADER
3. CURSOR
4. HEADER - NAVIGATION
5. FORM
6. BACK TO TOP
7. FOOTER
8. QUERIES  
/* ------------------------------------------------------------------------- */


@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,700&family=Outfit:wght@100..900&display=swap');


/* ------------------------------------------------------------------------- */
/* GENERAL
/* ------------------------------------------------------------------------- */
:root {
  --main-color: #EE7203;
  --main-color-light: #eb8e3c;
  --secondary-color: #1571F8;
  --gray-color: #EEE;
  --white: #FFF;
  --green: #67c100;
  --black: #272728;
  --text: #333;
  --text-neutral: #446287;
  --text-dark: #18181a;
  --coupling-grau: #4a4a49;

  --color-dark: #262322;
  --color-light-green: #3DDC97;
  --border-color: #747474;

  /* FONT SIZE */
  --fs-hero: 9rem;
  --fs-h1: 3.7rem;
  --fs-h2: 3.5rem;
  --fs-headline-1: 7rem;
  --fs-headline-2: 8rem;
  --fs-lead: 3rem;
  --fs-p: 1.2rem;
  --fs-labels: 1.5rem;
  --fs-badge: .8rem;
  --fs-weight-light: 400;
  --fs-weight-bold: 600;

  /* FONT */
  --font-nunito: "Nunito", sans-serif;
  --font-radio: "Outfit", sans-serif;

  /* SPACINGS */
  --line-height: 1.1;
  --margin-0: 0;
  --margin-lr: 0 3rem;
  --margin-lr-big: 0 5rem;
  --margin-lr-large: 0 10rem;
  --margin-tb: 2rem 0;
  --margin-large: 4rem 0;
  --margin-extra: 7rem 0;
  --padding-tb: 2rem 0;
  --padding-button: 0.75rem 1.5rem;
  --padding-default: 1em;
  --border-radius: 2rem;
  --border-radius-round: 50%;
  --menu-padding: 2em;
}

.container {
  display: flex !important;
  flex-direction: column !important;
}

.layout-flex {
  display: flex;
  align-items: center;
}

.frame {
  clear: both;
}

body {
  background-color: var(--white);
  transition: all .5s ease-in-out;
  scrollbar-width: thin;
  overflow-x: hidden;
}

/*To give the track a yellowish color*/
::-webkit-scrollbar-track {
  background: transparent;
}

/*Shrinking the scrollbar*/
::-webkit-scrollbar {
  width: 10px;
}

/*Removing the horizontal scrollbar*/
::-webkit-scrollbar:horizontal {
  display: none;
}

/*Giving the thumb a gradient*/
::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 20px;
}

.ce-textpic.ce-right .image {
  float: right;
}

.frame-type-header {
  display: inline-flex;
}

.ce-textpic.ce-right .image-embed-item {
  margin: 0 !important;
}

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

.midnightInner { 
  inset: initial !important;
}

/* ------------------------------------------------------------------------- */
/* GENERAL - HEADLINE ALIGNMENT
/* ------------------------------------------------------------------------- */
.ce-headline-left {
  text-align: left;
}

.ce-headline-right {
  text-align: right;
}

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


/* ------------------------------------------------------------------------- */
/* GENERAL - SPACING
/* ------------------------------------------------------------------------- */
.frame-space-before-extra-small {
  padding-top: 1rem;
}

.frame-space-before-small {
  padding-top: 2rem;
}

.frame-space-before-medium {
  padding-top: 3rem;
}

.frame-space-before-large {
  padding-top: 4rem;
}

.frame-space-before-extra-large {
  padding-top: 5rem;
}

.frame-space-after-extra-small {
  padding-bottom: 1rem;
}

.frame-space-after-small {
  padding-bottom: 2rem;
}

.frame-space-after-medium {
  padding-bottom: 3rem;
}

.frame-space-after-large {
  padding-bottom: 4rem;
}

.frame-space-after-extra-large {
  padding-bottom: 5rem;
}


/* ------------------------------------------------------------------------- */
/* GENERAL - FRAMES
/* ------------------------------------------------------------------------- */
.frame-primary-color {
  background-color: var(--main-color);
  color: var(--text-dark);
}

.frame-secondary-color {
  background-color: var(--secondary-color);
  color: var(--text);
}

.frame-neutral {
  background-color: var(--gray-color);
  color: var(--text-neutral);
}

.frame-bordertop {
  border-top: 1px solid var(--coupling-grau);
}

.frame-borderbottom {
  border-bottom: 1px solid var(--coupling-grau);
}

.frame-borderall {
  border: 1px solid var(--coupling-grau);
}

.frame-gradient {
  background: linear-gradient(90deg, rgba(41, 171, 223, 1) 47%, rgba(30, 151, 200, 1) 91%);
}

.frame-hover:hover {
  background: var(--secondary-color);
}

.frame-card {
  background: var(--primary-color);
  border: #FFF;
  box-shadow: 1px 1px 1px var(--gray-color);
}

/* ------------------------------------------------------------------------- */
/* GENERAL - RTE
/* ------------------------------------------------------------------------- */
.text-quote {
  font-size: var(--fs-lead);
}

.btn {
  border-radius: 0;
}

.btn.btn-dark:hover {
  background: var(--secondary-color);
  transition: all .5s ease;
}

.btn.btn-custom {
  background: var(--main-color);
  color: #FFF;
  padding: var(--padding-button);
  border-radius: var(--border-radius);
  transition: all .5s ease;
}

.btn.btn-dark {
  border-radius: var(--border-radius);
  padding: var(--padding-button);
  transition: all .5s ease;
}

.btn.btn-custom:hover {
  background: var(--main-color-light);
  transition: all .5s ease;
}

/* ------------------------------------------------------------------------- */
/* GENERAL - MISC
/* ------------------------------------------------------------------------- */

.text-lead {
  font-weight: 100;
  font-size: 2.4rem;
  text-align: right;
  display: block;
  line-height: 1.3;
  font-family: var(--font-radio);
}

.badge-border {
  border: 1px solid var(--main-color);
  padding: 0.3rem .7rem;
  border-radius: var(--border-radius);
  display: inline;
  font-size: var(--fs-badge);
}

/* ------------------------------------------------------------------------- */
/* MEDIA QUERY - VARIABLES
/* ------------------------------------------------------------------------- */
@media(min-width: 2560px) {
  :root {
    --fs-lead: 5rem;
    --fs-h1: 5rem;
    --fs-h2: 4rem;
    --fs-p: 1.7rem;
  }
}

@media(min-width: 1601px) {
  :root {
    --margin-lr: 0 5rem;
    --margin-lr-big: 0 10rem;
    --fs-labels: 1.2rem;
    --margin-tb: 3rem 0;
    --margin-lr-large: 0 10rem;
  }
}

@media(min-width: 1378px) and (max-width: 1600px) {
  :root {
    --fs-p: 1.1rem;
    --line-height: 1em;
    --margin-lr-large: 0 5rem;
  }
}

@media(min-width: 1180px) and (max-width: 1377px) {
  :root {
    --margin-lr-large: 0 4rem;
  }
}

@media(width: 1024px) {
  :root {
    --margin-lr-large: 0 2rem;
  }
}

@media(min-width: 768px) and (max-width: 1179px) {
  :root {
    --fs-hero: 6rem;
    --fs-h1: 3.5rem;
    --fa-h2: 2.5rem;
    --fs-headline-1: 5rem;
    --fs-headline-2: 6rem;
    --fs-lead: 2rem;
    --fs-p: 1.1rem;
    --border-radius: 2rem;

    --margin-tb: 3rem 0;
    --margin-lr-large: 0 2rem;
  }
}

@media(min-width: 592px) and (max-width: 767px) {
  :root {
    --fs-hero: 4.5rem;
    --fs-h1: 3rem;
    --fa-h2: 2rem;
    --fs-headline-1: 4.5rem;
    --fs-headline-2: 5.5rem;
    --fs-lead: 1.8rem;
    --fs-labels: 1.2rem;
    --fs-p: 1.1rem;
    --border-radius: 2rem;

    --margin-tb: 3rem 0;
    --margin-lr-large: 0 1rem;
  }
}

@media(max-width: 592px) {
  :root {
    --fs-hero: 4rem;
    --fs-h1: 2.5rem;
    --fa-h2: 2rem;
    --fs-headline-1: 4rem;
    --fs-headline-2: 4rem;
    --fs-lead: 1.8rem;
    --fs-labels: 1rem;
    --fs-p: 1rem;
    --fs-badge: 0.5rem;

    --line-height: 1em;
    --margin-lr: 0 1rem;
    --margin-lr-big: 0 1rem;
    --margin-lr-large: 0rem;
    --padding-tb: 3em 0;
  }
}


/* ------------------------------------------------------------------------- */
/* PRELOADER
/* ------------------------------------------------------------------------- */
.mark,
mark {
  padding: .1875em .1875em 0;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.bar-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bar {
  width: 10px;
  height: 50px;
  background: linear-gradient(45deg, #D952CB, #FF8D27);
  border-radius: 5px;
  animation: bounce 1.2s infinite ease-in-out;
}

.bar:nth-child(1) {
  animation-delay: 0s;
}

.bar:nth-child(2) {
  animation-delay: 0.2s;
}

.bar:nth-child(3) {
  animation-delay: 0.4s;
}

.bar:nth-child(4) {
  animation-delay: 0.6s;
}

.bar:nth-child(5) {
  animation-delay: 0.8s;
}

/* ------------------------------------------------------------------------- */
/* HIDE INIT CONTENT
/* ------------------------------------------------------------------------- */
#preloaded-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}


/* ------------------------------------------------------------------------- */
/* ANIMATIONES - PRELOADER
/* ------------------------------------------------------------------------- */
@keyframes bounce {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(2);
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  filter: opacity(0.1);
  z-index: -1;
}


/* ------------------------------------------------------------------------- */
/* FONTS - MARKER
/* ------------------------------------------------------------------------- */
.hx {
  background: none;
  color: var(--color-highlight-start);
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.hx-4 {
  --color-highlight-end: var(--green);
  --color-highlight-end-alt: var(--main-color);
  padding: 0;
}

.hx-5 {
  display: inline-flex;
  --after-scale: 1;
  --color-bg-highlight: var(--main-color);
  --color-highlight-start: var(--white);
}

.hx-5::after {
  content: '';
  left: -2.5%;
  top: 10%;
  bottom: -7.5%;
  position: absolute;
  z-index: -1;
  width: 105%;
  transform: scale3D(var(--after-scale), var(--after-scale), var(--after-scale));
  background: var(--color-bg-highlight);
  border-radius: 2rem;
}


/* ------------------------------------------------------------------------- */
/* FONTS 
/* ------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3 {
  font-family: var(--font-radio);
}

.h3 {
  font-size: var(--fs-lead);
}

p,
a,
li,
.text-link {
  font-family: var(--font-radio);
  text-decoration: none;
  position: relative;
}

.text-warning {
  color: var(--main-color) !important;
}

p {
  font-size: var(--fs-p);
  font-family: var(--font-radio);
}


.frame-type-header h2 {
  font-size: var(--fs-lead);
  width: min-content;
}

.frame-type-header h2::after {
  content: "";
  background: var(--main-color);
  width: auto;
  display: block;
  height: 12px;
  margin-top: -20px;
  border-radius: 1rem;
}


/* ------------------------------------------------------------------------- */
/* SPACING
/* ------------------------------------------------------------------------- */
.padding-tb {
  padding: var(--padding-tb);
}

.margin-lr {
  margin: var(--margin-lr);
}

.margin-lr-big {
  margin: var(--margin-lr-big);
}

.margin-lr-large {
  margin: var(--margin-lr-large);
}


/* ------------------------------------------------------------------------- */
/* BUTTONS
/* ------------------------------------------------------------------------- */
.btn.btn-primary {
  border: 2px solid var(--border-color);
  background: #2d2d2d;
  border-radius: 1em;
  padding: var(--padding-button);
  max-width: fit-content;
  transition: all .5s ease-in-out;
  color: var(--white);
  font-weight: bold;
}

.btn.btn-primary:hover {
  color: var(--black);
  background-color: var(--white);
  transition: all .5s ease-in-out;
}

/* ------------------------------------------------------------------------- */
/* CURSOR - FOLLOWER
/* ------------------------------------------------------------------------- */
.follower {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center;
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.follower__content {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 400;
  height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  transform-origin: center;
}

.follower__inner__bottom {
  position: absolute;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  opacity: 1;
  transform-origin: center;
}

.follower__inner__top {
  position: absolute;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  opacity: 0;
  transform-origin: center;
}


body:not(:hover) {
  .follower {
    display: none;
  }
}

@media (prefers-reduced-motion) {
  .follower {
    display: none;
  }
}



/* ------------------------------------------------------------------------- */
/* MIDNIGHT - NAVIGATION COLOR CHANGE
/* ------------------------------------------------------------------------- */
/*midnight.js*/
.midnightHeader.default {
  filter: invert(1);
}

.midnightHeader.filter-off {
  filter: invert(1);
}

.midnightHeader.filter-black {
  filter: invert(0);
}

.midnightHeader.filter-white {
  filter: invert(1);
}

/* ------------------------------------------------------------------------- */
/* HEADER - NAVIGATION
/* ------------------------------------------------------------------------- */
.contact_button .menu-button {
  background: var(--main-color);
  padding: 1rem 2rem;
  color: var(--white);
  transition: all .4s ease-in-out;
}

.contact_button .menu-button:hover {
  background: var(--black);
  transition: all .4s ease-in-out;
}

.osmo-ui {
  pointer-events: none;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  overflow-x: hidden;
  padding: 1rem 0;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1500;

  transition: all .5s ease-in-out;
}

.osmo-ui .btn-primary {
  background: var(--white);
  color: var(--main-color);
  border: none;
  margin-right: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  overflow: hidden;
  position: relative;
}

#navigation {
  background: transparent;
}

.nav {
  z-index: 100;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 0%;
}

.overlay {
  z-index: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

#navigation.shrink {
  transition: all .5s ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
}

#navigation.shrink .nav-logo-row img {
  width: 70%;
  margin-top: 0.1rem;
  transition: all .5s ease-in-out;
}

#navigation.shrink #contact-button {
  padding: 0.75rem 0rem;
  filter: invert(1);
  transition: all .5s ease;
}

#navigation.shrink #contact-button:hover {
  background: #ffdaa1;
  filter: invert(0);
  transition: all .5s ease;
}

#navigation.shrink .menu-button:hover {
  background: #ffdaa1;
  transition: all .5s ease;
}

#navigation #contact-button::before {
  content: '';
  background-image: url(/fileadmin/user_upload/Assets/Email.png);
  background-size: contain;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  transform: translateX(0);
  left: -60px;
  transition: all .5s ease;
}

#navigation.shrink #contact-button::before {
  transition: all .5s ease;
  transform: translateX(-50%);
  left: 50%;
}

#navigation #contact-button span {
  transition: all .5s ease;
  transform: translateX(0);
}

#navigation.shrink #contact-button span {
  transition: all .5s ease;
  transform: translateX(100px);
}

.offcanvas.offcanvas-bottom .offcanvas-body {
  overflow: hidden;
}

.header {
  z-index: 110;
  inset: 0% 0% auto;
}

.nav-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-logo-row {
  pointer-events: auto;
  justify-content: space-between;
  align-items: center;
  width: 13em;
  display: flex;
  position: relative !important;
}

.nav-logo-row img {
  width: 85%;
  transition: all .5s ease-in-out;
}

.nav-logo__wordmark {
  width: 4em;
}

.nav-logo__icon {
  width: 1.5em;
  height: 1.5em;
}

.nav-row__right {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  pointer-events: auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.inline-link__p {
  margin-bottom: 0;
}

.cloneable {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  z-index: 1000;
}

.menu {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 30em;
  height: 100%;
  margin-left: auto;
  position: relative;
  overflow: auto;
}


/* ------------------------------------------------------------------------- */
/* HEADER - NAVIGATION - SLIDING COLORS
/* ------------------------------------------------------------------------- */
.bg-panel.first {
  background-color: var(--main-color-light);
}

.bg-panel.second {
  background-color: var(--main-color);
}

/* ------------------------------------------------------------------------- */
/* HEADER - NAVIGATION - OPEN MENU
/* ------------------------------------------------------------------------- */

.menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
  overflow-x: hidden;
}

.menu-inner {
  z-index: 1;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

.bg-panel {
  z-index: 0;
  background-color: var(--gray-color);
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
  position: absolute;
  inset: 0%;
}

.menu-list {
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-left: 2em;
  list-style: none;
  display: flex;
}

.menu-list-item {
  position: relative;
}

.menu-link {
  padding-top: 1.35em;
  padding-bottom: 0;
  padding-left: 1em;
  grid-column-gap: .75em;
  grid-row-gap: 0.15em;
  width: 100%;
  text-decoration: none;
  display: flex;
  color: var(--main-color);
}

.menu-link-heading {
  z-index: 1;
  text-transform: uppercase;
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: .75;
  transition: transform .55s cubic-bezier(.65, .05, 0, 1);
  position: relative;
}

.eyebrow {
  z-index: 1;
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: var(--fs-weight-light);
  font-family: var(--font-radio);
  position: relative;
}

.menu-link-bg {
  z-index: 0;
  background-color: var(--gray-color);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.65, .05, 0, 1);
  position: absolute;
  inset: 0%;
  transform: scale3d(1, 0, 1);
}

.menu-details {
  padding-left: 3em;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.socials-row {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  display: flex;
}

.menu-button {
  grid-column-gap: .625em;
  grid-row-gap: .625em;
  background-color: var(--white);
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0.75rem 1.3rem;
  display: flex;
  border: none;
  border-radius: 1rem;
}

.menu-button-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

.menu-button-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 1.225em;
  display: flex;
  overflow: hidden;
}

.icon-wrap {
  transition: transform .4s cubic-bezier(.65, .05, 0, 1);
}

.navbar-nav .dropdown-menu {
  position: relative !important;
  background: transparent;
  border: none;
  transform: none !important;
  transition: all .5s ease-in-out;
}

/* ------------------------------------------------------------------------- */
/* HEADER - NAVIGATION - HOVER
/* ------------------------------------------------------------------------- */
@media (hover:hover) {

  /* Menu toggle button*/
  .menu-button:hover .icon-wrap {
    transform: rotate(90deg);
  }

  .menu-link:hover {
    color: var(--black);
  }

  .navbar-nav .menu-list-item:hover .dropdown-menu {
    transition: all .5s ease-in-out;
  }

  /* Menu Smaller Links */
  .text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--main-color);
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s ease-in-out;
  }

  .text-link:hover::after {
    transform-origin: left center;
    transform: scale(1, 1);
  }
}

/* ------------------------------------------------------------------------- */
/* FORM - OFFCANVAS
/* ------------------------------------------------------------------------- */
.offcanvas.offcanvas-end.show {
  z-index: 2000;
}

.offcanvas-body {
  padding-top: 3rem;
}

.offcanvas-body .headline_text {
  font-size: 1.8rem;
}

/* Formular */
form {
  margin: var(--margin-tb);
  width: 100%;
  margin: 3rem auto;
}

form .form-group {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: var(--padding-default);
}

form .form-group .input {
  display: inline-flex;
  align-items: center;
}

form .form-label {
  margin: 0 1em 0 0;
  font-size: 1.1rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select {
  width: 21vw;
  min-width: 300px;
  border: none !important;
  border-bottom: 1.5px solid var(--coupling-grau) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--white) !important;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form select:focus {
  border: none !important;
  border-bottom: 1.5px solid var(--main-color) !important;
  border-radius: 0 !important;
  box-shadow: none;
  background: transparent !important;
}

.form-check {
  padding-left: 0;
}

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

form .form-navigation .btn.btn-primary {
  background: var(--main-color);
  color: var(--white);
}

form input::placeholder {
  color: var(--white)
}

form .inputs-list .form-check {
  margin: 0 1em;
}

form .inputs-list .form-group {
  padding-bottom: 0;
}

form .form-group .add-on {
  margin-top: 1em;
}

/* ------------------------------------------------------------------------- */
/* BACK TO TOP
/* ------------------------------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 34%;
  right: 4%;
  padding: 4px 15px;
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-round);
  display: none;
  transition: opacity 0.3s;
  width: 80px;
  height: 80px;
  transition: all .5s ease-in-out;
  z-index: 1000;
}

#backToTop:hover {
  background-color: var(--main-color);
  transition: all .5s ease-in-out;
}

#backToTop img {
  width: 60%;
}


/* ------------------------------------------------------------------------- */
/* FOOTER
/* ------------------------------------------------------------------------- */
footer {
  background: var(--black);
  color: var(--white);
  padding: var(--padding-tb);
  position: relative;
}

footer .row {
  display: flex;
  align-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

footer .logo {
  width: 12%;
  margin-bottom: 2%;
}

footer p {
  margin-bottom: var(--margin-0);
  font-size: 1rem;
}

footer a {
  color: var(--white);
  line-height: var(--line-height);
  font-size: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
  flex-direction: column;
}

footer .nav-item:hover a {
  text-decoration: none;
}

footer li {
  margin-right: 2%;
  transition: all .5s ease-in-out;
}

footer li:hover a {
  color: var(--main-color);
  transition: all .5s ease-in-out;
}

footer .contacts img {
  width: 5%;
  margin-right: 2%;
}

footer .social-media img {
  margin-right: 2%;
  width: 6%;
  margin-top: 2rem;
}

/* ------------------------------------------------------------------------- */
/* MEDIA QUERY - < 400
/* ------------------------------------------------------------------------- */
@media(max-width: 400px) {
  #backToTop {
    right: 10%;
  }

  .osmo-ui {
    padding: 1.4em;
  }

  .osmo-ui .margin-lr {
    margin: 0;
  }

  .osmo-ui .btn-primary {
    padding: 0.5rem 1.2rem;
  }

  .nav-logo-row img {
    width: 54%;
  }

  .menu-button {
    padding: 0.6em;
  }

  footer .logo {
    width: 45%;
    margin-bottom: 5%;
  }

  .frame-space-after-extra-large {
    padding-bottom: 0rem;
  }
  .frame-space-before-extra-large {
    padding-top: 0rem;
  }
}

/* ------------------------------------------------------------------------- */
/* MEDIA QUERY - < 592
/* ------------------------------------------------------------------------- */
@media(max-width: 592px) {
  .osmo-ui .btn-primary {
    padding: 0.5rem 1.2rem;
  }

  .menu-link-heading {
    line-height: 1.05;
  }

  .text-lead {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-top: 1rem;
  }

  .frame-type-header h2::after {
    height: 8px;
    margin-top: -10px;
  }

  #backToTop {
    width: 70px;
    height: 70px;
    background-color: var(--green);
  }

  footer .logo {
    width: 50%;
  }

  footer .margin-b {
    margin-bottom: 6%;
  }

  .frame-space-after-extra-large {
    padding-bottom: 1rem;
  }
  .frame-space-before-extra-large {
    padding-top: 1rem;
  }
}

/* ------------------------------------------------------------------------- */
/* MEDIA QUERY - < 767
/* ------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .osmo-ui {
    position: absolute;
  }

  .nav-logo-row {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    width: auto;
  }

  .nav-logo-row img {
    width: 62%;
    filter: invert(1);
  }

  .nav-row__right {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .cloneable-title {
    pointer-events: none;
    width: calc(100% - 5.25em);
    padding-left: 1em;
    position: absolute;
    overflow: hidden;
  }

  .cloneable-title__nr,
  .cloneable-title__h1 {
    font-size: .875em;
  }

  .clone-in-webflow {
    justify-content: flex-end;
    width: 100%;
    margin-right: 0;
    padding-left: .75em;
  }

  .clone-in-webflow__p {
    display: none;
  }

  .cloneable-title__gradient,
  .osmo-ui__bg {
    display: block;
  }

  .menu {
    width: 100%;
  }

  .menu-inner {
    justify-content: center;
  }

  .bg-panel {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .socials-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .p-large.text-link {
    font-size: var(--fs-p);
  }

  .frame-space-after-extra-large {
    padding-bottom: 2rem;
  }
  .frame-space-before-extra-large {
    padding-top: 2rem;
  }
}

/* ------------------------------------------------------------------------- */
/* MEDIA QUERY - < 1180
/* ------------------------------------------------------------------------- */
@media(min-width: 768px) and (max-width: 1180px) {
  .osmo-ui {
    margin-bottom: 2em;
  }

  .frame-type-header h2::after {
    height: 8px;
    margin-top: -14px;
  }

  .text-lead {
    line-height: 1.1;
    font-size: 1.8rem;
  }

  .frame-space-before-extra-large {
    padding-top: 2rem;
  }

  .frame-space-after-extra-large {
    padding-bottom: 2em;
  }
}

@media(min-width: 2560px) {
  .menu {
    width: 46em;
  }

  .menu-button-text {
    height: 2.425em;
  }
}

@media(min-width: 2000px) {
  .btn.btn-primary {
    font-size: 1.2em;
    padding: .75em 1.4em;
  }

}
