@-webkit-keyframes spin {
  0% {
    transform: translate(-50%, -100%) scale(1.2);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -100%) scale(1);
    opacity: 1;
  }

  ;
}

@keyframes spin2 {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  ;
}

@-webkit-keyframes opa {
  0% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

  ;
}

@keyframes opa {
  0% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0
  }

  ;
}

* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #535d62;
}

:root {
  --bs-color-mainSec-hex: #535d62;
  --bs-color-sec-hex: #f8f8f9;
  --bs-secondary-rgb: #fff8eb;
  --bs-third-rgb: #cccccc;
  --bs-border-color: #6c757d;
  --bs-primary: #1c1b20;
  --bs-primary-rgb: #1c1b20;
  --bs-link-color: #535d62;
  --bs-link-hover-color: #6c757d;
}

.impressum .title {
  font-weight: 700;
  margin-right: .15rem;
}

.contact-info .info * { text-align: center; }
.contact-info .info { display: flex; flex-direction: column; align-items: center; }
.contact-info .info .info-img { background-color: var(--bs-third-rgb); color: var(--bs-color-mainSec-hex); transition: all 0.25s ease-in-out; height:3.75rem; width:3.75rem; padding: 1.25rem; display: flex; align-items: center; justify-content: center;}
.contact-info .info .contact-text a { transition: .25s all ease } 
.contact-info .info .contact-text a:hover { opacity:.75; }
.contact-info .info h5 { margin: 0.75rem 0; }

.card-body {
  color: inherit !important;
}

.card .text-body {
  color: inherit !important;
}

.v-sep {
  height: 1px;
  background-color: #6c757d;
}

#h-logo {
  background-color: transparent;
  transition: 1s all ease;
  transform: scale(1);
}

#h-logo.out {
  background-color: aqua;
  transform: scale(1.5);
}

.why-preference .article {
  height: 140px;
}

.why-preference .article .icon {
  height: 80px;
  min-width: 80px;
}


html,
body {
  margin: 0;
  min-height: 100vh;
}

body.homePage {
  height: 100vh;
}

body.homePage main {
  padding: 65px 55px;
  height: 100%;
}

html,
body {
  margin: 0;
}

body {
  position: relative;
}

header {
  height: 85px;
  width: 100%;
}

.homePage header {
  position: absolute;
}

header * {
  z-index: 10;
}

body:not(.impressum) main {
  display: inline-block;
  z-index: 2;
}
body.impressum { min-height:100vh; display:flex; flex-direction:column; justify-content: space-between;}

footer {
  position: relative;
  width: 100%;
  text-align: end;
  z-index: 99999;
  background-color: #ebebec;
  padding: 1rem 4rem;
}

.homePage footer {
  margin-top: 5rem;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
}

footer #contact-layout .contact-row+.contact-row { margin-left: 1rem; }
footer #contact-layout .contact-row { white-space:nowrap;}
footer #contact-layout .contact-row-wrap { display: flex; flex-direction: row; justify-content: center; align-items: center;}

.f-corp {}
.f-corp, .f-corp * { transition: .35s all ease; font-size: 10px; opacity: .5; }
.f-corp:hover, .f-corp *:hover { opacity: 1; }

a.ikona-link {
  transition: .15s all ease;
}

a.ikona-link:hover {
  color: #FFCF00;
}

.loader {
  height: 100%;
  width: 100%;
  z-index: 9999;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader::before {
  content: "";
  background-image: url(../images/logo-icon.png);
  width: 215px;
  height: 169.7728px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  z-index: 5;
  opacity: 0.5;
  -webkit-animation: spin 2s linear forwards;
  animation: spin 2s linear forwards;
  position: absolute;
  top: 50%;
  left: 50%;  
}

.loader::after {
  content: "";
  height: 100%;
  width: 100%;
  background: #fbfbfc;
  position: absolute;
  display: inline-block;
  -webkit-animation: opa 2s linear forwards;
  animation: opa 2s linear forwards;
  top: 0;
  left: 0;
}

.loader.open,
.loader.open::before,
.loader.open::after {
  animation: none !important;
  -webkit-animation: none !important;
  display: none;
}

.principles .card-text {
  transition: all .35s ease;
  overflow: hidden;
  height: 105px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.principles .card.open .card-text {
  height: fit-content;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}

.principles .card .card-count {
  width: 5rem;
  margin-top: 0.765rem;
  margin-right: .75rem;
  height: 2px;
}

.principles .card .card-count::after {
  content: '';
  height: 1px;
  width: 100%;
  background-color: #1c1b20;
  margin-left: .5rem;
}

.counter-wrap{
  counter-reset: cardCount;
}

.card-count::before {
  counter-increment: cardCount;
  content: "0" counter(cardCount) "";
}

.principles .card-extend {
  background-color: transparent;
  z-index: 3;
  transition: .35s all ease;
  height: 32px;
  border-radius: 50%;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principles .card-extend:before { content: "\F279"; font-family: "bootstrap-icons"; font-size: 28px; }
.principles .card-extend.click:before { content: "\F27C";}
.principles .card-extend:hover { box-shadow: 0 0.1rem .25rem rgba(0, 0, 0, 1); }

main section.home-welcome {
  height: calc(100vh - 114px);
  width: 100%;
}

main section .color-sec {
  width: 100%;
  height: 100%;
  background-color: var(--bs-color-sec-hex);
}

body.homePage main section.home-welcome .color-sec {
  background-color: var(--bs-color-mainSec-hex);
}

nav .nav-menu {
  position: absolute;
  height: 100%;
  transform: translate(-95%, -50%);
  transition: .5s all ease;
  top: 50%;
  background-color: white;
}

nav .nav-menu ul.nav-lang {
  margin-top: 1rem;
}

nav .nav-menu ul.nav-lang li+li {
  margin-top: 0;
  margin-left: 1rem;
}

nav .nav-menu li {}

nav .nav-menu li+li {
  margin-top: 1rem;
}

nav .nav-menu li a {}

nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav .nav-item .nav-link {
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid transparent;
}

nav .nav-item .nav-link:hover {
  border-bottom: 2px solid rgb(83 93 98 / 50%);
}

body.homePage .motto {
  display: flex;flex-direction: row; width: fit-content; position: absolute;
  left: 50%; bottom: 6rem; transform: translate(-50%, -50%); }
.motto .motto-item { position: relative; }
.motto h4 {  font-size: 1.5rem; width: max-content; font-weight: 500 !important;  letter-spacing: 0.1rem; color: white;}

nav .nav-item .nav-link:active,
nav .nav-item .nav-link.active { border-bottom: 2px solid; }
nav .nav-menu+.motto::before { content: ""; height: 105%; border-left: 1px solid #1c1b20; margin: 0 .75rem; }

.nav-pills .nav-link {
  border-left: 1px solid transparent;
  padding: 1.25rem 0;
  border-radius: 0;
  text-align: start;
  padding-left: .75rem;
}

.nav-pills .nav-link+.nav-link {
  border-top: 1px solid #1c1b20;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  border-left: 4px solid #1c1b20;
  background-color: transparent;
  color: #1c1b20;
}

.sidebar-menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
}

.sidebar-menu .three-lines {
    position: absolute;
    left: 5.5rem;
    top: 7.5rem;
    transform: translateY(-50%);
    transition: .35s all ease;
}

.three-lines.click.one {
  pointer-events: none;
}

 .sidebar-menu .three-lines.click,
 .sidebar-menu .three-lines.click.reverse {
  z-index: 999;
  left: 8rem;
  top: 2.5rem;
}

body:not(.homePage) .sidebar-menu .three-lines {
  opacity: 0;
  top: 2.5rem;
  left: -2rem;
}

body:not(.homePage) .sidebar-menu .three-lines.click {
  opacity: 1;
  left: 8rem;
}

body:not(.homePage) ul.socials {
  right: 2.5rem;
}

section.about .content-text * { font-weight: 400 !important; font-size: 15px ;}

.sidebar-menu {}

.three-lines {
  display: inline-flex;
  flex-direction: column;
}

.three-lines .line {
  width: 1.75rem;
  height: .1rem;
  background-color: #6c757d;
  display: inline-block;
  margin: .2rem 0;
  position: relative;
  transition: .25s all ease;
}

.homePage .three-lines .line {
  background-color: white;
}
.homePage .three-lines.reverse .line {
  background-color: #6c757d;
}

 .homePage .three-lines.reverse{
  left: 6.75rem;
  top: 5.5rem;
}

.three-lines .line:nth-child(even) {
  left: 0;
}

.three-lines .line:nth-child(odd) {
  right: 0;
}

.three-lines:hover .line:nth-child(even) {
  left: .25rem;
}

.three-lines:hover .line:nth-child(odd) {
  right: .25rem;
}

.homePage .three-lines.click { transform: translateY(-1rem); }

.three-lines.click { z-index: 9999; }

.three-lines.click+.nav-menu,
.nav-menu.open {
  transform: translate(0, -50%);
  width: 157px;
  background-color: white;
  padding-left: 1.4rem;
}

.three-lines.click .line {
  background-color: #1c1b20;
  z-index: 9999;
}

.three-lines.click .line:nth-child(1) {
  transform: translate(5px, -5px);
  rotate: 135deg;
}

.three-lines.click .line:nth-child(2) {
  width: 0;
  transform: scale(0);
  display: none;
}

.three-lines.click .line:nth-child(3) {
  transform: rotate(45deg);
}

ul.socials {
  position: fixed;
  top: 50%;
  right: 5.5rem;
  display: flex;
  flex-direction: column;
  text-align: end;
  z-index: 3;
  transform: translateY(-50%);
}

ul.socials li {}

ul.socials li * {
  font-size: 20px;
  font-weight: 900;
}

ul.socials li a {}

ul.socials li a span {
  width: 0;
  overflow: hidden;
  transition: .35s all;
  display: inline-flex;
}

ul.socials li a span::after {
  content: "";
  padding-right: .5rem;
  border-right: 2px solid #1c1b20;
}

ul.socials li:hover a#instagram span {
  width: 5.95rem;
}

ul.socials li:hover a#twitter span {
  width: 3.6rem;
}

ul.socials li:hover a#github span {
  width: 5rem;
}

ul.socials li+li {
  margin-top: 1rem;
}

.scroll-down-i {
  position: absolute;
  right: 0.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
}

.scroll-down-i * {
  color: white;
  text-transform: capitalize;
}

.scroll-down-i i {
  font-size: 30px;
  transform: rotate(180deg);
  display: inline-block;
}

.cover-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -100%);
}

.cover-icon img {
  width: 215px;
  height: 169.7728px;
}

.cover-font {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, 7%);
  height: 4rem;
  margin-top: 2.5rem;
}

.cover-font img {
  height: 100%;
}

.page-img {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  height: 40rem;
  width: 40rem;
  background-color: #fbfbfc;
}

.page-img img {
  height: 50%;
  width: auto;
}

section.milestones-sec {}

section.milestones-sec .milestones-wrap:before {
  content: '';
  position: absolute;
  height: 100%;
  top: 0px;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 2px;
  background-color: #6c757d;
}

section.milestones-sec .milestones-wrap {
  width: 100%;
  height: fit-content;
  margin: auto;
  position: relative;
}
.milestones .milestone:nth-child(odd) {
  align-self:flex-end ;
}

.milestones {
  width: calc(100% - 80px);
  max-width: 800px;
  margin: auto;
  position: relative;
  left: -5px;
}

.milestones .milestone+.milestone {
  margin-top: -60px;
}

.milestones .milestone .date {
  font-size: 32px;
  margin-bottom: 12px;
  position: relative;
}

.milestones .three-dots {}

.milestones-sec .three-dots .dot {
  height: 4px;
  width: 4px;
  background-color: #6c757d;
}

.milestones-sec .three-dots .dot+.dot {
  margin-top: .5rem;
}

.milestones .milestone .date:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid #6c757d;
  background-color: white;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: -53px;
  z-index: 998;
}

.milestones .milestone .date.big:before {
  width: 24px;
  height: 24px;
  transform: translate(8px, -50%);
}

.milestones .milestone .body {
  color: #aaa;
}

.milestones .milestone p {
  line-height: 1.4em;
}

.milestones .milestone {
  width: calc(50% - 20px);
  padding: 20px;
  clear: both;
  text-align: right;
}

.milestones .milestone:nth-child(odd) {
  text-align: left;
  float: right;
}

.milestones .milestone:nth-child(odd) .date {}

.milestones .milestone:nth-child(odd) .date.big:before {
  left: -39px;
}

.milestones .milestone:nth-child(odd) .date:before {
  left: -43px;
}

.milestones .milestone:nth-child(odd) .date.big:before {
  transform: translate(-8px, -50%);
}

.milestones .milestone:last-child {
  padding-bottom: 0;
}

.services {}

.services ol {}

.services ol * {
  position: relative;
}

.services ol>li {}

.services ol .card {
  height: 190px;
}

.services ol .card .card-body>li>ul {}

.services ol .card .card-body>li>ul>li {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 38px;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
}

.services ol .card .card-body>li>ul>li::before {
  position: relative;
  content: "";
  background: url(../images/logo-icon.png);
  min-width: 1.75rem;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1rem;
  margin-bottom: 0.15rem;
}

.cd-horizontal-timeline {
  position: relative;
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-timeline.loaded {
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 110px;
  width: 100%;
  margin: 0 auto;
}
.cd-horizontal-timeline .events {
  position: absolute; z-index: 1; left: 0; top: 50px; height: 0; background: #6c757d;
  -webkit-transition: -webkit-transform 0.4s; -moz-transition: -moz-transform 0.4s; transition: transform 0.4s; width: 100%; }
  .cd-horizontal-timeline .events::before{ content: ""; height: 2px; width: 90%; background-color: #6c757d; display: inline-block; transform: translateX(-50%); position: absolute; left: 50%;}
.cd-horizontal-timeline .events ol {
  width: 100%;
  padding: 0;
  display: flex;
}
.cd-horizontal-timeline .events ol li {
  width: calc(100% / 9);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}
.cd-horizontal-timeline .events ol * {
  font-weight: 500;
  font-size: 14px;
  color: #6c757d;
}
.cd-horizontal-timeline .events span {
  position: relative;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1rem;
  padding-top: 1.5rem;

  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-horizontal-timeline .events span::after {
  content: "\F285";
  justify-content: flex-end;
  font-family: "bootstrap-icons";
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -16px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 2px solid #6c757d;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  -webkit-text-stroke: 1.5px;
  padding-left: 0.05rem;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #6c757d;
  border-color: #6c757d;
}
.cd-horizontal-timeline .events li:first-child span::after {
  -webkit-text-stroke: 0px;
  content: "\F64D";
  color: white ;
  background-color: #6c757d;
}
.cd-horizontal-timeline .events li:last-child span::after {
  -webkit-text-stroke: 0px;
  content: "\F633";
  color: white ;
  background-color: #6c757d;
}
@media only screen and (min-width: 768px) {

  .cd-horizontal-timeline .events-content em {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
	.homePage .three-lines.reverse {
    left: 2rem;
    top: 2rem;
}

  .cd-horizontal-timeline.loaded {
    margin: 0;
  }

  .cd-horizontal-timeline .timeline {
    width: 100%;
  }

  .cd-horizontal-timeline ol,
  .cd-horizontal-timeline ul {
    padding: 0;
    margin: 0;
  }

  .cd-horizontal-timeline .events-content h4 {
    font-size: 16px;
  }

  .cd-horizontal-timeline .events-content {
    margin: 0;
  }

}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }

  body {
    color: black;
    background: white;
  }
}


@media only screen and (max-width: 1200px) { .f-corp { top: 70%; } }

@media only screen and (max-width: 600px) {
  header { height:100px; }
  header .h-logo { margin: auto ; }
  header > nav {  align-items: center !important; flex-direction: column; padding: .75rem 0; }
  header > nav > nav .motto { display: none; height: 0 !important; opacity: 0; }
  body:not(.homePage) .sidebar-menu .three-lines { left: unset; right: 1rem; top: 2rem;}
  /* body:not(.homePage) .three-lines.click+.nav-menu { transform: translate(-100%, -50%); } */
	
	.homePage header.scroll {height: 55px; position: fixed !important; background-color: white; z-index:999; }

  .why-preference .article { height: max-content; }
  .why-preference .article * { text-align: start; }
  .why-preference .article-wrap+.article-wrap { margin-top: 1.5rem; }

  footer { padding: 1rem; }
  footer #contact-layout .contact-row { white-space:unset; text-align: start; }
  footer #contact-layout .contact-row-wrap { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;}
  footer #contact-layout .contact-row+.contact-row { margin-left: 0; }
  footer { position: relative; }
  
  .f-corp { top: 80%; }

  .cd-horizontal-timeline .timeline { overflow-x: auto; overflow-y: hidden; }
  .cd-horizontal-timeline.loaded:before {  content: ""; display: inline-block; height: 100%; width: 3.5rem; position: absolute; opacity: 1; left: 0;  top: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(0%,rgba(123,123,123,0)), color-stop(100%,rgb(254, 255, 255))) !important; z-index: 2; }


  .cd-horizontal-timeline::after { content: ""; height: 100%; width: 3.5rem; position: absolute; opacity: 1; right: 0;  top: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(123,123,123,0)), color-stop(100%,rgb(254, 255, 255))); z-index: 2;}
  .cd-horizontal-timeline .timeline, .cd-horizontal-timeline .timeline .events-wrapper, .cd-horizontal-timeline .timeline .events-wrapper .events { width: 100%; }
  .cd-horizontal-timeline .events::before { width: 300% !important; }
  .cd-horizontal-timeline .events ol li { min-width: 7rem !important; margin: 0 .25rem;}
  
  .services ol .card { height: fit-content; }
  .services ol .card .card-body>li>ul>li::before { margin-right: .25rem; }

  .logo-font img { width: 90px !important; }

  .contact-info .info { flex-direction: row; align-items: start; }
  .contact-info .info .info-img { margin-right: .5rem;}
  .contact-info .contact-text * { text-align: start !important; }
  .contact-info .contact-text h5 { margin-top: 0 !important; }
  .contact-info .contact-text p { margin-bottom: 2rem !important; }

  nav {
    display: flex !important;
    flex-direction: row!important;
  }

  .principles-sec .principle+.principle {
    margin-top: 1.25rem;
  }

  .principles-sec .principle h5 {
    margin-bottom: .75rem !important;
  }

  .milestones-sec .title {
    width: 75% !important;
  }

  .milestones-sec .milestones {
    width: 100% !important;
    padding: .5rem;
  }

  section.about .logo-font img {
    width: 40%;
  }

  section.about .content-text {
    width: 95% !important;
  }

  ul.socials li * {
    font-size: 16px;
  }

  ul.socials {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    top: unset;
    flex-direction: column;
    text-align: end;
    z-index: 3;
    transform: none;
    z-index: 9999;
  }

  ul.socials li+li {
    margin-top: .25rem;
  }

  body.homePage {
    padding: 0 !important;
  }

  body.homePage main {
    width: 100% !important;
    padding: 2rem !important;
    left: 0 !important;
  }

  .cover-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .cover-icon img {
    height: 82.2626px;
    width: 104.1772px;
  }

  .cover-font {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, 147%);
    height: 30px;
    margin-top: 1rem;
  }

  .loader::before { height: 82.2626px; width: 104.1772px;  transform: translate(-50%, -50%); 
    -webkit-animation: spin2 2s linear forwards;
    animation: spin2 2s linear forwards;}
  .loader::after { display: inline-block; top: 0; left: 0; }
  .loader{ left:0; top:0; height: 100%; position: absolute; transform: unset; overflow: hidden;}

  .sidebar-menu .three-lines {
    position: absolute;
    left: 3.5rem;
    top: 4.5rem;
}

  body.homePage .motto .nav-item {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.homePage .motto .nav-item a {
    font-size: 14px !important;
  }

  body.homePage .motto {
    flex-direction: column !important;
    text-align: center !important;
  }

  body.homePage .motto {
    bottom: 6rem;
  }
}