:root {
    --card-width: 250px;
    --card-height: 400px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
    --heading-1: 3rem;
    --heading-2: 3rem;
    --heading-3: 2rem;
    --body-text: 1.5rem;
    --nav-text: 1.3rem;
    --display-icon-size:30px;
    --employee-img-width: 327px;
    --employee-img-height: 385px;
    --body-socialmedia-icon-size: 65px;
    --logo-width:370px;
    --logo-height:176px;
}

* {
    box-sizing: border-box;
    margin: 0 auto;
    font-family: 'Titillium Web', sans-serif;
    color: #626262;
}

body {
    background: #1b1b1b;
}

/**
 Header
 */

.header-main-container {
    width: 100%;
    height: 900px;
    margin-bottom: 120px;
}

.header-content-container {
    width: 100%;
    padding: 20px;
}

.header-contact-bar {
    height: auto;
}

.header-menu-link {
    float: left;
}

.header-menu-link img {
    height: var(--display-icon-size);
    width: var(--display-icon-size);
}
.header-contact-list {
    float: right;
    list-style: none;
}

.header-contact-list-element {
    display: inline;
}

.header-contact-list-element:first-child {
    padding-right: 40px;
}

.header-contact-list-element p {
    display: inline;
    color: #dedede;
    font-size: var(--nav-text);
    vertical-align: middle;
    font-weight: 400;
}

.header-contact-list-element img {
    display: inline;
    height: var(--display-icon-size);
    width: var(--display-icon-size);
    margin-right: 10px;
    vertical-align: middle;
}

/**
 Header Slideshow Section
 */

.header-logo-and-socialmedia-container {
    position: absolute;
    top:0;
    width: 100%;
    padding-left: 10%;
}

.header-logo-container {
    float: left;
}

.header-logo-container img{
    width: var(--logo-width);
    height: var(--logo-height);
}

.header-socialmedia-list {
    float: right;
    list-style: none;
    vertical-align: middle;
}

.header-socialmedia-list-element {
    height: var(--display-icon-size);
    width: var(--display-icon-size);
    margin: 15px 0;
}

.social-media-icons-link img {
    height: var(--display-icon-size);
    width: var(--display-icon-size);
}

.social-media-icons-link img[class="hovered"] {
    display: none;
}

.social-media-icons-link:hover img[class="unhovered"] {
    display: none;
}

.social-media-icons-link:hover img[class="hovered"] {
    display: block;
}

.body-slideshow-container {
    width: 100%;
    height: 800px;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
    border: none;
}

.body-slideshow-content-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.body-slideshow-bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -5;
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.body-slideshow-bg-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}
.body-slideshow-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
    width: 100%;
    height: 100%;
    transition: transform 1000ms ease, opacity 1000ms ease;
    overflow: hidden;
}

.body-slideshow-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.body-slideshow-bg-img.current-image {
    opacity: 1;
    --image-translate-offset: 0;
}

.body-slideshow-bg-img.previous-image, .body-slideshow-bg-img.next-image {
    opacity: 0;
}

.body-slideshow-bg-img.previous-image {
    --image-translate-offset: -25%;
}

.body-slideshow-bg-img.next-image {
    --image-translate-offset: 25%;
}

.body-slideshow-cards-container {
    position: absolute;
    width: calc(3 * var(--card-width));
    height: auto;
    top: 50%;
    left: 50%;
    /* Objekt translate in Koordinaten (x,y) */
    transform: translate(-15%, 0);
}

.body-slideshow-cards-btn {
    --btn-size: 75px;
    width: var(--btn-size);
    height: var(--btn-size);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.body-slideshow-cards-btn.body-slideshow-cards-btn-left {
    left: -5%;
}
.body-slideshow-cards-btn.body-slideshow-cards-btn-right {
    right: -5%;
}
.body-slideshow-cards-btn .icon {
    width: 100%;
    height: 100%;
}
.body-slideshow-cards-btn .icon svg {
    width: 100%;
    height: 100%;
}

.body-slideshow-cards-btn svg:hover{
    background: rgba(43, 43, 43, 0.5);
}
.body-slideshow-cards-container .body-slideshow-cards-wrapper-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.card {
    --card-translateY-offset: 100vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset)) rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
    display: inline-block;
    width: var(--card-width);
    height: var(--card-height);
    transition: transform var(--card-transition-duration) var(--card-transition-easing);
    user-select: none;
}
.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    transition: opacity var(--card-transition-duration) var(--card-transition-easing);
    opacity: calc(1 - var(--opacity));
}
.card-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.card-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card.current-card {
    --current-card-rotation-offset: 0;
    --card-translateX-offset: 0;
    --card-rotation-offset: var(--current-card-rotation-offset);
    --card-scale-offset: 1.2;
    --opacity: 0.8;
}
.card.previous-card {
    --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
    --card-rotation-offset: 25deg;
}
.card.next-card {
    --card-translateX-offset: calc(var(--card-width) * 1.1);
    --card-rotation-offset: -25deg;
}

.card.previous-card, .card.next-card {
    --card-scale-offset: 0.9;
    --opacity: 0.4;
}

/**
 Header Slideshow info
 */
.body-slideshow-info-container {
    position: absolute;
    width: 100%;
    bottom: 25%;
    pointer-events: none;
}

.body-slideshow-info-wrapper-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.info-container {
    margin-bottom: 30px;
    margin-left: 10%;
    transform: translateZ(2rem);
    transition: transform var(--card-transition-duration) var(--card-transition-easing);
}

.slideshow-info-text {
    position: relative;
    white-space: nowrap;
    color: #dedede;
    text-align: left;
    text-transform: uppercase;
}

.slideshow-info-title {
    font-size: var(--heading-1);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    color: #dedede;
}

.slideshow-info-description {
    font-weight: 600;
    line-height: 1.1;
    font-size: var(--heading-3);
    color: #ededed;
}

.slideshow-info-description::before {
    top: 50%;
    width: 20px;
    height: 5px;
}

.slideshow-info-description::after {
    bottom: 0;
    width: 60px;
    height: 2px;
}

.current-info {
    opacity: 1;
    display: block;
}

.previous-info, .next-info {
    opacity: 0;
    display: none;
}

.body-slideshow-info-prices-container {
    width: 100%;
}

.prices-container {
    padding-top: 20px;
}

.prices-first-container , .prices-second-container{
    float: left;
    padding-right: 30px;
}

.prices-first-container p , .prices-second-container p {
    font-size: var(--body-text);
    font-weight: 300;
    color: #ededed;
}

.prices-first-container span , .prices-second-container span {
    font-size: var(--body-text);
    font-weight: 400;
    color: #f55350;
    padding-left: 10px;
}

/**
Body
 */

.body-main-container, .body-content-container {
    width: 100%;
}

/**
 Body Social-Media Section
 */
.body-socialmedia-container {
    margin: 120px 0;
    width: 100%;
    background: #2c2b2b url("img/socialmedia-section-bg.jpg") left no-repeat;
}

.body-socialmedia-content-container {
    padding: 80px 15%;
    text-align: center;
    float: right;
}

.body-socialmedia-content-container h2 {
    line-height: 1.1;
    font-size: var(--heading-2);
    font-weight: 700;
    text-transform: uppercase;
    color: #f55350;
}

.body-socialmedia-content-container p {
    font-size: var(--body-text);
    font-weight: 400;
}

.body-socialmedia-icon-list {
    list-style: none;
    padding-top: 30px;
}

.body-socialmedia-icon-list-element {
    display: inline;
    padding: 0 20px;
}

.body-socialmedia-icon-list-element img {
    height: var(--body-socialmedia-icon-size);
    width: var(--body-socialmedia-icon-size);
}

/**
 Body Staff Section
 */
.body-staff-container {
    background-color: #1b1b1b;
    width: 100%;
    margin: 120px 0;
}

.body-staff-content-container {
    text-align: center;
}

.body-staff-content-container h2 {
    line-height: 1.1;
    font-size: var(--heading-2);
    font-weight: 700;
    text-transform: uppercase;
    color: #f55350;
}

.body-staff-content-container p {
    font-size: var(--body-text);
    font-weight: 400;
}

.body-staff-info-container {
    margin: 0 auto;
    width: 100%;
    padding-top: 60px;
}

.body-employee-container {
    width: var(--employee-img-width);
    margin: 0 20px;
    display: inline-block;
}

.body-employee-container img {
    width: var(--employee-img-width);
    height: var(--employee-img-height);
}

.body-employee-container h3 {
    font-size: var(--body-text);
    font-weight: 300;
    text-align: left;
}

.body-employee-container p {
    font-size: var(--body-text);
    font-weight: 600;
    color: #dedede;
    text-align: left;
}

.body-employee-socialmedia-icon-list {
    list-style: none;
    padding: 10px 0;
}

.body-employee-socialmedia-icon-list-element {
    float: left;
    padding-right: 10px;
}

.body-employee-socialmedia-icon-list-element img {
    height: var(--display-icon-size);
    width: var(--display-icon-size);
}

/**
 Body Appointment Section
 */
.body-appointment-container {
    margin: 120px 0;
    width: 100%;
    background: #2c2b2b;
}

.body-appointment-content-container {
    padding: 80px 10%;
    text-align: center;
}

.body-appointment-content-container h2 {
    line-height: 1.1;
    font-size: var(--heading-2);
    font-weight: 700;
    text-transform: uppercase;
    color: #f55350;
}

.body-appointment-details-container {
    width: 75%;
}

.body-contact-form-container {
    width: 100%;
    padding: 20px 0;
}

.body-contact-form-left-container {
    float: left;
    width: 50%;
    padding-right: 5px;
}

.body-contact-form-right-container {
    float: right;
    width: 50%;
    padding-left: 5px;
}

form input, form textarea {
    color: #535353;
    font-weight: 300;
    background: #1b1b1b;
    outline: 0;
    padding: 0.2em;
    width: 100%;
    margin: 5px 0;
    resize: none;
    font-size: var(--body-text);
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
}

::placeholder {
    color: #535353;
    font-weight: 300;
}

::-webkit-calendar-picker-indicator {
    background-image: url(img/icons/calendar.png);
}

form input:focus, form textarea:focus {
    -moz-box-shadow: 0 0 3px #ededed !important;
    -webkit-box-shadow: 0 0 3px #ededed !important;
    box-shadow: 0 0 3px #ededed !important;
    border-bottom-style: none;
    color: #ededed;
}

form input:focus::placeholder , form textarea:focus::placeholder {
    color: #ededed;
    font-weight: 300;
}

.message-input {
    padding-bottom: 4rem;
}

.send-message-btn {
    background: #ededed;
    width: 100%;
    padding: 12px 0;
    font-size: var(--body-text);
    font-weight: 400;
    text-transform: uppercase;
    color: #626262;
}

.body-appointment-content-container p {
    font-size: var(--nav-text);
    font-weight: 400;
    text-align: left;
}

.body-contact-form-list {
    float: left;
    list-style: none;
    padding: 0;
}

.body-contact-form-list-element {
    display: inline;
    padding-right: 40px;
}

.body-contact-form-list-element p {
    display: inline;
    font-size: var(--nav-text);
    vertical-align: middle;
    font-weight: 400;
}

.body-contact-form-list-element img {
    display: inline;
    height: 25px;
    width: 25px;
    margin-right: 10px;
    vertical-align: middle;
}

/**
 Footer
 */
.footer-content-container {
    text-align: center;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}

.footer-content-container p {
    padding-top: 10px;
    border-top: #f55350 solid 2px;
    font-size: 1.1rem;
    color:#dedede;
    font-weight: 400;
    line-height: 1.2;
}

/**
 Clearfix
*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/**
 Media Queries
*/
@media all and (max-width: 1200px) {
    :root {
        --card-width: 200px;
        --card-height: 350px;
        --heading-1: 3rem;
        --heading-2: 2.5rem;
        --heading-3: 1.5rem;
        --body-text: 1.1rem;
        --nav-text: 0.8rem;
        --display-icon-size:25px;
        --employee-img-width: 307px;
        --employee-img-height: 365px;
        --body-socialmedia-icon-size: 55px;
        --logo-width:340px;
        --logo-height:162px;
    }

    .body-socialmedia-container {
        background-size: contain;
    }

    .body-socialmedia-content-container {
        padding: 80px 10%;
    }

    .footer-content-container p {
        font-size: 0.9rem;
    }
}

@media all and (max-width: 900px) {
    :root {
        --card-width: 170px;
        --card-height: 320px;
        --heading-1: 2.5rem;
        --heading-2: 2rem;
        --heading-3: 1rem;
        --body-text: 1.1rem;
        --nav-text: 0.8rem;
        --display-icon-size:20px;
        --employee-img-width: 277px;
        --employee-img-height: 335px;
        --body-socialmedia-icon-size: 35px;
        --logo-width:290px;
        --logo-height:138px;
    }

    .body-socialmedia-container {
        background-size: contain;
    }

    .body-socialmedia-content-container {
        padding: 80px 1%;
    }

    .footer-content-container p {
        font-size: 0.9rem;
    }
}