:root {
    --star: #f5b50a;
}
* {
    margin: 0;
    padding: 0;
}
@font-face {
	font-family: 'Aptos';
	src: url('/fonts/aptos.ttf');
}
body {
    font-family: 'Aptos', Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #fff;
    color: #3e3e3e;
    font-size: 1rem;
}
a {
	color: var(--color-primary);
}
.main-wrapper {
    margin: auto;
}
.c-header {
    display: none;
    background-color: var(--color-secondary);
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;

    img {
        width: 32px;
    }

    @media screen and (max-width: 900px) {
        display: grid;
    }
}
a {
    text-decoration: none;
}
.c-intro {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    padding-top: 4rem;
    max-width: 1280px;
    margin: auto;
    h1 {
        font-size: 40px;
    }
    p {
        font-size: 18px;
        margin: 1.5rem 0;
    }
    h1, p {
        font-weight: bold;
        text-align: left;
    }

    @media screen and (min-width: 900px) {
        .c-cta-image {
            margin-top: 0;
            padding: 0;

            img {
                height: 405px;
            }
        }
    }

    @media screen and (max-width: 900px) {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        padding-top: 8rem;

        #logo-hospiten-intro {
            display: none;
        }
    }
}
.c-btn {
    display: block;
    width: 40%;
    background-color: var(--color-primary);
    padding: 1rem;
    border-radius: 4rem;
    color: white;
    font-weight: bold;
    text-align: center;
}
.c-cta-image::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30%;
    height: 50%;
    width: 100%;
    background: var(--color-primary);
    z-index: 0;
}
.c-cta-image {
    position: relative;
    margin: 4rem 0;
    padding: 0 3rem;
    .c-cta-image__frame {
        position: relative;
        z-index: 1;
        max-width: 100%;
        border-radius: 1rem;
        overflow: hidden;
        background: #fff;
    }
    img {
        display: block;
        width: 100%;
        height: 600px;
        object-fit: cover;
    }
    @media (max-width: 640px) {
        padding: 0 1rem;
        img {
            height: 480px;
        }
        .c-cta-image::before {
            height: 50%;
        }
    }
}
.c-services {
    max-width: 1280px;
    margin: auto;
    h2 {
        font-size: 24px;
        font-weight: bold;
        text-align: left;
        margin: 2rem 0;
    }
    .c-services__items {
        background-color: var(--color-secondary);
        padding: 2rem;
        border-radius: 2rem;
    }
    .c-services__item:not(:last-child) {
        margin-bottom: 1rem;
        border-bottom: 3px solid var(--color-primary);
    }
    .c-services__header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
        margin: 1rem 0;
        align-items: center;

        h3 {
            margin: 0;
        }
    }
    .c-services__icon {
        border-radius: 100%;
        border: 1px solid var(--color-primary);
        padding: 0.75rem;
        i {
            color: var(--color-primary);
        }
    }
    .c-services__content {
        font-size: 14px;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .c-services__btn {
        margin: 2rem auto;
    }

    @media screen and (max-width: 900px) {
        padding: 0 2rem;
    }
}
.c-clients-say {
    background-color: var(--color-primary);
    color: white;
    padding: 2em;
    h2 {
		font-size: 24px;
        text-align: center;
        margin-bottom: 1rem;
    }
    ul {
        display: block;
        margin: auto;
        max-width: 360px;
        list-style: none;
        li {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-style: italic;
        }

        li:nth-child(2) {
            text-align: center;
        }
        li:nth-child(3) {
            text-align: center;
            margin-left: 8rem;
        }
        li:nth-child(4) {
            margin-left: 1rem;
        }
    }
}
.c-hospital {
	display: grid;
	grid-template-columns: 75% 25%;

	iframe {
		height: 100%;
	}

	@media screen and (max-width: 900px) {
		grid-template-columns: repeat(1, 1fr);
	}
}
.c-rating {
	margin: 2rem;

    h2 {
        font-size: 24px;
        margin: 1.2rem 0;
    }
    p {
        font-weight: 700;
        margin: 1rem 0;
    }
    .c-rating__content p, .c-rating__contact address {
        font-weight: 400!important;
    }

    .c-rating__rating {
        display: grid;
        grid-template-columns: auto 1fr;
        width: 200px;
        align-items: center;
        background-color: lightgray;
        text-align: center;
        border-radius: 3rem;
        .c-rating__score {
            border-top-left-radius: 3rem;
            border-bottom-left-radius: 3rem;
            padding: 1rem;
            background-color: var(--color-secondary);
            color: white;
            font-weight: 700;
        }
        .c-rating__stars {
            color: #ffba08;
        }
    }

	.c-rating__contact {
		address {
			font-weight: bold;
		}
	}
}
.mb-60 {
    margin-bottom: 60px;
}
.c-cta-footer {
    background-color: var(--color-secondary);
    text-align: center;
    padding: 2rem;
    h3, p {
        margin-bottom: 1rem;
    }
    p {
        margin: 1rem 0;
    }
    .c-btn {
        max-width: 200px;

        @media screen and (max-width: 900px) {
            max-width: 100%;
        }
    }
}

.reviews {
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--color-secondary);
}
.reviews-header{
    max-width: 1280px;
    margin: auto;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}
.reviews-title{
    font-size:28px;
    font-weight:700;
    margin:0 0 8px;
}
.reviews-grid{
    max-width: 1280px;
    margin: auto;
    grid-template-columns:repeat(2,1fr);
}
@media (max-width:980px){
    .reviews-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:640px){
    .reviews-header{
        grid-template-columns:1fr;
    }
    .reviews-grid{
        grid-template-columns:1fr;
    }
}
.reviews-card{
    text-align: center;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius: 16px;
    padding:20px 20px 14px;
    min-height: 200px !important;
}
.reviews-card__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    text-align: left;
    align-items: start;
}
.reviews-card header{
    display:grid;
    grid-template-columns: 1fr;
    align-items:center;
    justify-items: center;
    gap:12px;
    margin-bottom:6px;
}
.reviews-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    object-fit:cover;
    flex:0 0 54px;
}
.reviews-person{
    display:flex;
    flex-direction:column;
}
.reviews-name{
    font-weight:700;
    font-size:18px;
    margin-top: 1rem;
}
.reviews-stars {
    margin-bottom: 1rem;
}
.reviews-text{
    color:#374151;
    font-size:14px;
    margin:0 0 18px;
}
.slick-slide {
    margin: 0 24px;
}
.slick-list {
    margin: 0 -24px;
}
.c-hospiten-group {
    max-width: 1200px;
    margin: 4rem auto;
	margin-top: 1rem;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 3rem;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

	img {
		width: 100%;
		height: 100%;
		max-height: 360px;
		object-fit: cover;
		border-radius: 1.5rem;
	}

	article {
		max-width: 960px;
		margin: 0 auto;
	}

	article h3 {
		font-size: 24px;
	}

	article p {
		margin-bottom: 1.5rem;
		font-size: 16px;
		line-height: 1.7;
	}

	p:first-of-type {
		margin-top: 2rem;
	}
}

@media screen and (max-width: 900px) {
    .c-hospiten-group {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        margin: 3rem 1.5rem;
    }

    .c-hospiten-group img {
        max-height: 260px;
    }

    .c-hospiten-group article p {
        margin-left: 0;
        margin-right: 0;
    }
}

.c-footer {
    background-color: var(--color-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
}

.c-footer__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.c-footer__intro {
    color: #ffffff;
}

.c-footer__certifications--list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem 3rem;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0 0;
    padding: 0;
}

.c-footer__certifications--item img {
    display: block;
    max-height: 48px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.c-footer__certifications--item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

.c-footer a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.c-footer a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 900px) {
    .c-footer__content {
        padding: 2rem 1.5rem;
    }

    .c-footer__certifications--list {
        flex-direction: row;
        gap: 1rem 1.5rem;
    }
}
