/*
|--------------------------------------------------------------------------
| Colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Media Queries
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Space
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Transitions
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Paths
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Functions
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Behavior
|--------------------------------------------------------------------------
*/
html {
  scroll-behavior: smooth;
  position: relative;
  min-height: 100%;
  scroll-padding-top: 10rem;
}
/* Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #d58700;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #bc7700;
}
p:empty {
  display: none;
}
img {
  max-width: 100%;
}
/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}
/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
*/
:root {
  font-size: 16px;
}
@media (min-width: 992px) {
  :root {
    font-size: 18px;
  }
}
body {
  font-family: rubik, sans-serif;
  color: #000000;
}
a {
  color: #d58700;
  /* transition: @transition-default; */

  text-decoration: none;
  font-weight: 500;
}
a:hover {
  color: #bc7700;
}
strong {
  font-weight: 500;
  font-style: normal;
}
h1 {
  font-weight: 400;
  color: #d58700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Taviraj', serif;
}
@media (min-width: 992px) {
  h1 {
    font-size: 57px;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 86px;
    margin-bottom: 3rem;
  }
}
h2 {
  font-weight: 400;
  color: #d58700;
  font-family: 'Taviraj', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 37px;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 57px;
    margin-bottom: 3rem;
  }
}
h3 {
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  /* @media @extra-large-up {
		font-size: 37px;
	} */

}
@media (min-width: 992px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1600px) {
  h3 {
    font-size: 24px;
  }
}
h4 {
  font-weight: 600;
  color: #d58700;
  margin-bottom: 1rem;
  font-size: 1rem;
}
hr {
  background-color: #bababa;
  height: 2px !important;
  border-radius: 2px;
}
.vr {
  background-color: #bababa;
  width: 2px !important;
  border-radius: 2px;
}
p {
  margin-bottom: 1rem;
}
small,
.small {
  font-size: smaller;
}
big,
.big {
  font-size: 20px;
}
@media (min-width: 992px) {
  big,
  .big {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  big,
  .big {
    font-size: 37px;
  }
}
.w-30 {
  width: 30%!important;
}
.w-40 {
  width: 40%!important;
}
/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/
header {
  background-color: transparent;
  transition: all 0.35s ease;
  max-height: 100vh;
  overflow-y: auto;
}
@media (min-width: 992px) {
  header {
    max-height: none;
    overflow-y: visible;
  }
}
header .logo-neg {
  display: none;
}
header .navbar-brand img {
  max-width: 20vw;
}
header.headroom--not-top .navbar-brand img {
  max-height: 50px;
}
header.has-banner:not(.show-nav) .logo-neg {
  display: block;
}
header.has-banner:not(.show-nav) .logo-pos {
  display: none;
}
header.has-banner:not(.show-nav) .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}
header.has-banner:not(.show-nav) .navbar .navbar-nav .nav-item .nav-link.active {
  color: #d58700;
}
header.has-banner:not(.show-nav).headroom--not-top {
  background-color: #ffffff;
}
header.has-banner:not(.show-nav).headroom--not-top .logo-neg {
  display: none;
}
header.has-banner:not(.show-nav).headroom--not-top .logo-pos {
  display: block;
}
header.has-banner:not(.show-nav).headroom--not-top .navbar .navbar-nav .nav-item .nav-link,
header.has-banner:not(.show-nav) .navbar-collapse .nav-link {
  color: #000000;
}
header.has-banner:not(.show-nav).headroom--not-top .navbar .navbar-nav .nav-item .nav-link.active,
header.has-banner:not(.show-nav) .navbar-collapse .nav-link.active {
  color: #d58700;
}
header .navbar .navbar-brand img {
  height: auto;
  transition: all 0.35s ease;
}
@media (min-width: 992px) {
  header .navbar .navbar-brand img {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  header .navbar .navbar-brand img {
    max-width: none;
  }
}
header .navbar .navbar-nav {
  font-family: 'Taviraj', serif;
}
header .navbar .navbar-nav .nav-item {
  text-align: right;
}
@media (min-width: 992px) {
  header .navbar .navbar-nav .nav-item {
    text-align: left;
  }
}
@media (min-width: 1600px) {
  header .navbar .navbar-nav .nav-item {
    margin-right: 1rem;
  }
  header .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-weight: 400;
  transition: all 0.35s ease;
  font-size: 20px;
}
@media (min-width: 1200px) {
  header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 37px;
    margin-right: 1.5rem;
  }
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #bc7700;
}
header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #d58700;
}
header .navbar .navbar-nav .nav-item .nav-link.active:hover {
  color: #bc7700;
}
header .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}
header .dropdown .dropdown-menu {
  border-radius: 0;
  background-color: #d58700;
  border-color: #d58700;
  margin: 0;
  padding: 0;
  min-width: 100%;
}
header .dropdown .dropdown-item {
  color: #ffffff;
  font-weight: 500;
  text-align: right;
  white-space: break-spaces;
  line-height: 1.2;
}
@media (min-width: 992px) {
  header .dropdown .dropdown-item {
    text-align: left;
  }
}
header .dropdown .dropdown-item:focus,
header .dropdown .dropdown-item:hover {
  background-color: transparent;
  color: #404040;
}
header .dropdown .dropdown-item.active,
header .dropdown .dropdown-item:active {
  background-color: #ffffff;
  color: #d58700;
}
header .dropdown .dropdown-item.active:focus,
header .dropdown .dropdown-item:active:focus,
header .dropdown .dropdown-item.active:hover,
header .dropdown .dropdown-item:active:hover {
  color: #bc7700;
}
header.show-nav,
header.headroom--unpinned {
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.bottom-bar a {
  font-weight: 400;
  color: inherit;
}
.bottom-bar a:hover {
  color: #d58700;
}
.bottom-bar a.siteby {
  color: #adadad;
}
.bottom-bar a.siteby:hover {
  color: #000000;
}
.bottom-bar .hstack {
  flex-direction: column;
}
@media (min-width: 576px) {
  .bottom-bar .hstack {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  
}
.img-fit {
  object-fit: cover;
  object-position: center center;
}
.img-fit-left-top {
  object-fit: cover;
  object-position: left top;
}
.img-fit-right-top {
  object-fit: cover;
  object-position: left top;
}
.min-height-full-hd {
  min-height: 56.25vw;
}
@media (min-width: 768px) {
  .container-md-fluid {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .text-white-lg {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  .extra-space {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.main-content {
  padding-top: 6rem;
}
@media (min-width: 576px) {
  .main-content {
    padding-top: 8rem;
  }
}
@media (min-width: 768px) {
  .main-content {
    padding-top: 12rem;
  }
}
#banner + .main-content {
  padding-top: 2rem;
}
@media (min-width: 992px) {
  #banner + .main-content {
    padding-top: 4rem;
  }
}
/* Hintergrund rundumel */
body {
  position: relative;
}
body .egloff-bg {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('/static/art/egloff-advisory/bg_round.svg');
  width: 60vw;
  height: 60vw;
  background-size: 140% 140%;
  background-position: bottom left;
  z-index: 1;
}
@media (min-width: 992px) {
  body .egloff-bg {
    width: 35vw;
    height: 35vw;
  }
}
body.has-banner .egloff-bg {
  width: 35vw;
  height: 35vw;
}
body header.headroom--top {
  position: absolute;
  top: 0;
}
body #banner,
body header {
  z-index: 0;
}
body .container {
  z-index: 2;
  position: relative;
}
/*
|--------------------------------------------------------------------------
| Navbar Toggler (hamburger)
|--------------------------------------------------------------------------
*/
.hamburger {
  outline: none !important;
  padding: 0 !important;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  line-height: 0;
}
.hamburger:hover {
  opacity: .85;
}
.hamburger[aria-expanded="true"]:hover {
  opacity: .85;
}
.hamburger[aria-expanded="true"] .hamburger-inner,
.hamburger[aria-expanded="true"] .hamburger-inner::before,
.hamburger[aria-expanded="true"] .hamburger-inner::after {
  background-color: #d58700;
}
.hamburger-box {
  width: 45px;
  height: 45px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 45px;
  height: 3px;
  background-color: #d58700;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
.hamburger-spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger-spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-spin[aria-expanded="true"] .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger-spin[aria-expanded="true"] .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger-spin[aria-expanded="true"] .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
|--------------------------------------------------------------------------
| Bootstrap
|--------------------------------------------------------------------------
*/
/* buttons-block workaround */
.buttons-block a {
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.btn-primary,
.buttons-block a {
  background-color: #d58700;
  border-color: #bc7700;
  border-radius: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.btn.btn-primary:hover,
.buttons-block a:hover,
.btn.btn-primary:not(:disabled):active,
.buttons-block a:not(:disabled):active {
  background-color: #bc7700;
}
.btn.btn-secondary {
  border-radius: 0;
}
.btn.btn-link {
  color: #d58700;
  text-decoration: none;
  font-weight: 700;
}
.btn.btn-link:hover {
  color: #bc7700;
}
@media (min-width: 992px) {
  .carousel-caption {
    left: auto;
    right: 0;
    color: #ffffff;
    padding: 1rem 1.5rem 1rem 2rem;
    max-width: 60vw;
    text-align: right;
  }
  .carousel-caption p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .carousel-caption {
    margin-top: 0.5rem;
    position: relative;
    text-align: left;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    right: 0;
    left: 0;
    color: inherit;
  }
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-image: url('/static/art/egloff-advisory/arrow.svg');
  height: 50px;
  width: 18px;
}
@media (min-width: 992px) {
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 100px;
    width: 36px;
  }
}
.carousel-control-next-icon {
  transform: scaleX(-1);
}
/*
|--------------------------------------------------------------------------
| Formulare
|--------------------------------------------------------------------------
*/
.form-control,
.form-select,
.form-check-input[type=checkbox] {
  border-radius: 0;
}
/*
|--------------------------------------------------------------------------
| Gallerie fancybox
|--------------------------------------------------------------------------
*/
[data-fancybox] figure {
  cursor: pointer;
}
/*
|--------------------------------------------------------------------------
| video embed
|--------------------------------------------------------------------------
*/
.video-container {
  overflow: hidden;
  /* 16:9 aspect ratio */

  padding-top: 56.25%;
  position: relative;
}
.video-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/*
|--------------------------------------------------------------------------
| Hero Sections
|--------------------------------------------------------------------------
*/
@media (min-width: 1600px) {
  .section-split {
    min-height: 500px;
  }
}
.section-split img {
  border: 1px solid #bababa;
}
/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/
.card {
  border-radius: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.card .logo-image {
  position: relative;
  padding-top: 62.5%;
}
@media (max-width: 767.98px) {
  .card .logo-image {
    padding-top: 180px;
  }
}
.card .logo-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100% - 20px);
  max-width: calc(100% - 20px);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card {
    font-size: 0.9rem;
  }
  .card h3 {
    font-size: inherit;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .card {
    font-size: 1rem;
  }
  .card h3 {
    font-size: inherit;
  }
}
/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/
footer {
  position: relative;
  background: #000000;
  padding: 1rem 0;
  color: #ffffff;
  font-size: 18px;
}
@media (min-width: 1700px) {
  footer {
    padding: 2.5rem 0;
    font-size: 20px;
    background-image: url('/static/art/egloff-advisory/footer_bg.jpg');
    background-size: cover;
    background-position: center right;
  }
}
@media (min-width: 1600px) {
  footer {
    font-size: 24px;
  }
}
footer h2 {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  footer h2 {
    font-size: 54px;
    margin-bottom: 1rem;
  }
}
footer a {
  color: #ffffff;
}
footer .linkedin-link img {
  max-width: 15vw;
}
footer .footer-logo {
  position: absolute;
  right: 15px;
  top: 1.5rem;
  z-index: 3;
  display: block;
}
footer .footer-logo img {
  max-height: 50px;
}
@media (min-width: 768px) {
  footer .footer-logo img {
    max-height: 80px;
  }
}
@media (min-width: 1700px) {
  footer .footer-logo img {
    max-height: 100px;
  }
}
@media (min-width: 992px) {
  footer .footer-logo {
    top: 2.5rem;
  }
}
@media (min-width: 1700px) {
  footer .footer-logo {
    right: auto;
    left: 15px;
    top: 4rem;
  }
}
/*
|--------------------------------------------------------------------------
| Egloff Referenzen Logos
|--------------------------------------------------------------------------
*/
.references img {
  height: 100px;
}
@media (min-width: 768px) {
  .references img {
    height: 150px;
  }
}
@media (min-width: 992px) {
  .references img {
    height: 200px;
  }
}
