/* Global CSS */
@import "./aos.css";
@import "./bootstrap.min.css";
@import "./lightbox.min.css";
@import "./slick.min.css";

/* Using a string */
html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Proxima Nova Rg';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Brandon Grotesque';
}

h2 {
    font-size: 44px;
    text-transform: uppercase;
    font-weight: bold;
    color: #3C3C3B;
}

p {
    font-size: 18px;
    font-family: 'Proxima Nova Alt Lt';
    line-height: 25px;
    color: #777777;
}

.container {
    max-width: 95%;
    width: 1600px;
}

/* Header */
header.headerMain {
    position: fixed;
    z-index: 99;
    transition: 0.5s all;
    margin-top: -120px;
    background: #fff;
    width: 100%;
    top: 0;
}

header.headerMain.sticky {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 99;
}

header.headerMain:before {
    content: '';
    background-image: url(../images/Icons/line.png);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
}

nav.navbar.navbar-expand-lg {
    justify-content: space-between;
    padding: 16px 0;
}

a.navbar-brand {
    display: block;
    width: 184px;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    position: absolute;
    width: 184px;
    top: 0;
    left: 0;
}

div#navbarNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-family: 'Brandon Grotesque';
    padding: 0;
    font-size: 14px;
    font-weight: 800;
    color: #3C3C3B;
    transition: 300ms all;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #762f53;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
    color: #762f53;
}

.navbar-expand-lg .navbar-nav li.nav-item {
    margin-right: 25px;
}

.phoneHeader a {
    font-family: 'Brandon Grotesque';
    padding: 0;
    font-size: 14px;
    font-weight: 800;
    color: #3C3C3B;
    text-decoration: none;
    position: relative;
    padding-left: 27px;
    margin-left: 17px;
    transition: 300ms all;
}

.phoneHeader a:hover {
    color: #762f53;
}

.phoneHeader a:before {
    content: '';
    background-image: url(../images/Icons/phone.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Banner */
.hero-banner {
    background-color: #762f53;
    margin-top: 0;
    background-image: url(../images/Pictures/pettern.svg);
    background-position: center left;
    background-repeat: no-repeat;
    height: 846px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    position: relative;
    transition: 0.5s all;
    z-index: 9;
}

.hero-banner:before {
    content: '';
    background-image: url(../images/Pictures/banner-image.svg);
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    z-index: -1;
    background-color: #762f53;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bannerLogo h1 {
    margin-bottom: 0;
    display: none;
}

.bannerLogo {
    text-align: center;
}

.bannerLogo img {
    width: 460px;
    position: relative;
    transition: 1s all;
    transform: scale(0);
}

/* Down Arrow */
.downArrow {
    position: absolute;
    width: 100%;
    bottom: -45px;
}

.downArrow a {
    display: block;
    line-height: 0;
    background-image: url(../images/Pictures/arrow-bg.png);
    height: 45px;
    background-position: center;
    text-align: center;
}

.downArrow img {
    width: 16px;
    margin-top: 12px;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-2px);
    }
}

/* Uber section */
.uber-section {
    background-image: url(../images/Pictures/texture-for-bright-background.png);
    border-bottom: 4px solid #fff;
    background-color: #EDE3E2;
    background-attachment: fixed;
}

.uber-section .container .row {
    background-color: #fff;
    position: relative;
    align-items: center;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 10%);
    margin: 90px 0 134px;
}

div#uber {
    margin-top: 0px;
}

.uber-section .row.no-gutters:before {
    content: '';
    background-image: repeating-linear-gradient(0deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(90deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(180deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(270deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px);
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    width: 98%;
    height: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.uber-left h3 {
    color: #762f53;
    margin-bottom: 25px;
    font-size: 24px;
    font-family: 'Proxima Nova Rg';
    font-weight: 500;
}

a.primary-btn {
    width: 200px;
    height: 49px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #762F53;
    text-decoration: none;
    color: #3C3C3B;
    font-family: 'Brandon Grotesque';
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 300ms all;
    margin-top: 30px;
}

a.primary-btn:hover {
    background: #762f53;
    color: #fff;
}

.uber-left {
    padding: 0 100px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    font-size: 0;
    border: none;
    width: 60px;
    height: 60px;
    background: url(../images/Icons/arrow-with-background.svg);
}

button.slick-next.slick-arrow {
    transform: translateY(-50%) scale(-1);
    right: 0;
}

.slider-image img {
    height: 590px;
    width: 100%;
    object-fit: cover;
}

/* UNSERE Section */
.service-section .service-heading {
    background: url(../images/Pictures/unsere.png);
    padding-top: 150px;
    height: 445px;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 9;
    border-bottom: 6px solid #fff;
    box-shadow: 0px 1px 4px rgb(18 18 18 / 16%);
}

.service-heading:after {
    content: '';
    background: #fff;
    height: 6px;
    width: 100%;
    position: absolute;
    top: 0;
    box-shadow: 0px -1px 4px rgb(18 18 18 / 16%);
}

.service-section .service-heading:before {
    content: '';
    background: #762F53;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.80;
    z-index: -1;
}

.service-heading h2 {
    color: #fff;
}

.service-heading p {
    color: #fff;
}

.service-image img {
    width: 100%;
    transition: 300ms all;
}

.service-box {
    background: #fff;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 10%);
    position: relative;
    min-height: 725px;
    margin-bottom: 30px;
    transition: 300ms all;
}

.service-box .row {
    align-items: center;
}

.big-box.service-box:before {
    width: 97%;
    height: 96%;
}

.service-box:before {
    content: '';
    background-image: repeating-linear-gradient(0deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(90deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(180deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(270deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px);
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    width: 95%;
    height: 96%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-text {
    padding-left: 65px;
    padding-right: 50px;
    padding-top: 50px;
    position: relative;
}

.big-box .service-text {
    padding-top: 0;
}

.service-text h3 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #3C3C3B;
    margin-bottom: 15px;
    transition: 300ms all;
}

.service-text h4 {
    font-size: 20px;
    color: #762F53;
    margin-bottom: 18px;
    transition: 300ms all;
    font-family: 'Proxima Nova Rg';
}

.service-text p {
    margin-bottom: 18px;
    transition: 300ms all;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-image:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25.5px 25px 25.5px;
    border-color: transparent transparent #ffffff transparent;
    line-height: 0;
    _border-color: #000000 #000000 #6980fe #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    transition: 300ms all;
}

.big-box .service-image:before {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
    line-height: 0;
    _border-color: #000000 #6980fe #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    position: absolute;
    border-width: 25.5px 30px 25.5px 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    transition: 300ms all;
}

.service-boxes {
    margin-top: -160px;
    position: relative;
    z-index: 9;
}

.service-section {
    background: url(../images/Pictures/texture-for-bright-background.png) rgb(237, 227, 226);
    padding-bottom: 130px;
    position: relative;
    background-attachment: fixed;
}

.service-section:after {
    content: '';
    background: #fff;
    box-shadow: 0px 1px 4px rgb(18 18 18 / 16%);
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
}

.section-link {
    padding-top: 50px;
    margin-top: -50px;
}

/* Contact section */
.contact-left h4 {
    font-size: 24px;
    color: #762f53;
    font-family: 'Proxima Nova Rg';
    margin-bottom: 20px;
}

.contact-left h5 {
    font-size: 18px;
    color: #762f53;
    font-family: 'Proxima Nova Rg';
    margin-bottom: 20px;
    margin-top: 30px;
}

.contact-left ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.contact-left ul a {
    display: flex;
    align-items: center;
    width: 100%;
    color: #3C3C3B;
    font-size: 18px;
    margin-bottom: 7px;
    text-decoration: none;
    transition: 300ms all;
    line-height: initial;
}

.contact-left ul a:hover,
.contact-box ul a:hover {
    color: #762f53;
}

.contact-left ul a img {
    width: 19px;
    height: 19px;
    margin-right: 13px;
    transition: 300ms all;
}

.contact-left ul li:first-child a img {
    position: relative;
    top: 1.8px;
}

.contact-left ul li:nth-child(2) a img {
    position: relative;
    top: -0.5px;
}

.contact-left ul li:first-child a {
    margin-bottom: 9.2px;
}

.contact-left ul a:hover img,
.contact-box ul a:hover img {
    transform: translateX(5px);
}

.contact-left {
    width: 600px;
    margin: 0 auto;
}

.contact-section .row {
    align-items: center;
}

.contact-slider .slider-image img {
    height: 700px;
}

.slider-box .img-box img {
    width: 61px;
    height: 61px;
}

.slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text h6 {
    font-size: 18px;
    font-weight: bold;
    color: #3C3C3B;
    line-height: 23px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.slider-text {
    padding-left: 20px;
}

.bottom-slider-section {
    height: 300px;
    display: flex;
    align-items: center;
    background: url(../images/Pictures/texture-for-bright-background.png) rgb(237, 227, 226);
    border-top: 6px solid rgb(255, 255, 255);
    box-shadow: rgb(18 18 18 / 16%) 0px -1px 4px;
    background-attachment: fixed;
}

/* Footer */
.contact-box ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.contact-box ul a img {
    width: 17px;
    margin-right: 7px;
    transition: 300ms all;
}

.contact-box ul a {
    display: flex;
    align-items: center;
    width: 100%;
    color: #3C3C3B;
    font-size: 16px;
    margin-bottom: 2px;
    text-decoration: none;
    transition: 300ms all;
}

footer.site-footer {
    height: 444px;
    display: flex;
    align-items: center;
    background: #762f53;
    background-image: url(../images/Pictures/pettern.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-top: 6px solid #fff;
    box-shadow: 0px -1px 4px rgb(18 18 18 / 16%);
    overflow: hidden;
    z-index: 9;
}

footer.site-footer:before {
    content: '';
    background-image: url(../images/Pictures/banner-image.svg);
    height: 100%;
    width: 50%;
    position: absolute;
    left: 0;
    z-index: -1;
    background-color: #762f53;
}

.footer-right {
    background: #fff;
    width: 347px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
    padding: 48px 0;
    position: relative;
}

.footer-right:before {
    content: '';
    background-image: repeating-linear-gradient(0deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(90deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(180deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px), repeating-linear-gradient(270deg, #9e9e9e, #9e9e9e 6px, transparent 6px, transparent 12px, #9e9e9e 12px);
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    width: 95%;
    height: 94%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-box h3 {
    font-size: 30px;
    font-weight: bold;
    color: #3C3C3B;
}

.contact-box h4 {
    font-size: 16px;
    color: #762f53;
    font-family: 'Proxima Nova Lt';
    line-height: 23px;
    margin-bottom: 20px;
    margin-top: 12px;
}

.contact-box {
    position: relative;
    z-index: 9;
}

.footer-left h3 {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 18px;
}

.footer-left p {
    color: #fff;
    line-height: 23px;
    margin-bottom: 0;
    width: 594px;
}

.site-footer .row {
    align-items: center;
}

.hairman {
    position: absolute;
    bottom: -100%;
    right: 73px;
    transition: 300ms all 1.5s;
}

footer.site-footer.sectionView .hairman {
    bottom: 0;
}

.footer-b-text p,
.footer-b-text p a {
    margin-bottom: 0;
    font-size: 16px;
    color: #3C3C3B;
    font-weight: initial;
    text-decoration: none;
}

.footer-b-text ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-b-text ul a {
    font-size: 16px;
    color: #3C3C3B;
    text-decoration: none;
    transition: 300ms all;
    font-family: 'Proxima Nova Alt Lt';
}

.footer-b-text ul a:hover {
    color: #762f53;
}

.footer-bottom {
    padding: 20px 0 15px;
    margin-top: 8px;
    position: relative;
}

.footer-bottom:before {
    content: '';
    background-image: url(../images/Icons/line.png);
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
}

/* impressum */
.popup-page .modal-dialog {
    max-width: 95%;
    width: 1240px;
    margin: 40px auto;
}

.popup-page {
    background: rgb(118 47 83 / 80%);
}

.popup-page .modal-header {
    background: transparent;
    border: none;
    border-radius: 0;
}

.modal-content {
    border-radius: 0;
}

.modal-body {
    padding: 0;
}

.modal-text {
    padding: 60px 140px;
}

.modal-text h2 {
    margin-bottom: 45px;
}

.modal-text h3 {
    font-size: 20px;
    font-family: 'Proxima Nova Lt';
    color: #3C3C3B;
    margin: 25px 0;
}

.modal-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.modal-text a {
    font-size: 18px;
    line-height: 25px;
    color: #3C3C3B;
    text-decoration: none;
    font-family: 'Proxima Nova Alt Lt';
}

.modal-text p {
    color: #3C3C3B;
}

.modal-text .col-md-6:first-child {
    padding-right: 40px;
    padding-left: 40px;
}

.modal-text .col-md-6:last-child {
    padding-left: 40px;
}

.popup-col img {
    width: 200px;
}

.popup-col p {
    margin-bottom: .0;
    font-size: 16px;
    line-height: 24px;
}

.popup-bottom .col-md-3:last-child {
    display: flex;
    justify-content: flex-end;
}

.popup-bottom {
    border-top: 1px solid #707070;
    padding-top: 45px;
    margin-top: 30px;
}

.modal-header .close {
    padding: 14px 22px;
    opacity: 1;
}

.modal-text li {
    font-family: 'Proxima Nova Alt Lt';
    line-height: 25px;
}

.service-boxes .aos-init {
    opacity: 1 !important;
    transform: translate3d(0, 200px, 0) !important;
    visibility: hidden;
}

.service-boxes .aos-init.aos-animate {
    visibility: visible;
    transform: translate3d(0, 0px, 0) !important;
}

.lb-nav a {
    background-size: 50px !important;
    opacity: 1 !important;
    background: none !important;
}

.lb-dataContainer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.lb-dataContainer .lb-details {
    display: none;
}

.lightboxOverlay {
    background-color: #772c53 !important;
}

.lb-loader a.lb-cancel,
.lb-data .lb-close {
    background: none !important;
}

.lb-data .lb-close:before {
    content: '';
    background: url(../images/Icons/cancel.svg);
    width: 40px;
    height: 40px;
    background-size: 20px;
    position: absolute;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    right: 0px;
    top: -2px;
}

.lb-data .lb-close {
    opacity: 1 !important;
    z-index: 999;
    position: relative;
    top: 0;
}

.slider-image a {
    position: relative;
    display: block;
}

.slider-image a:hover .image-overlay {
    opacity: 1;
}

.image-overlay {
    position: absolute;
    width: 100%;
    background: rgb(118 47 83 / 80%);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s all;
    opacity: 0;
}

.slider-image .image-overlay img {
    width: 40px;
    height: 40px;
}

.lightbox {
    position: fixed !important;
    left: 0;
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    height: 80vh;
    top: 50% !important;
    transform: translateY(-50%);
}

.lb-outerContainer {
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100% !important;
    width: 75% !important;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid #fff;
    width: 100% !important;
    height: 80vh !important;
    object-fit: cover;
}

.modal-text.modal-text-page {
    padding: 150px 0 100px;
}

.modal-text h2+.row {
    margin: 0 -40px;
}

@media(max-width:1099px) {
    .modal-text h2+.row {
        margin: 0 -15px;
    }
}

@media(max-width:499px) {
    .modal-text.modal-text-page {
        padding-top: 130px;
        padding-bottom: 50px;
        padding-left: 0;
        padding-right: 0;
    }
}