#home-info {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

#home-info .title {
    font-size: 32px;
    margin-bottom: 40px;
}

#home-info .description {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#home-section {
    height: auto!important;;
    background-color: #1C1C1C;
    padding-top: 100px;
    padding-bottom: 150px;
}

#home-section .home-section-title {
    font-size: 32px;
    color: white;
    text-align: center;
    margin: 0px 0px 40px 0px;
}

#angebote {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#angebote > .box {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#angebote > .box > .image {
    width: 100%;
    height: 400px;
    background-image: url(../../../public/assets/home/1705760909887.jpg);
    background-size: 240%;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#angebote > .box > .text {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    text-align: center;
}

#angebote > .box > .text > .title {
    font-size: 24px;
    position: relative;
}

#angebote > .box > .text > .price {
    font-size: 14px;
    position: relative;
}

#angebote > .box > .text > .description {
    font-size: 16px;
    padding: 10px 20px;
    text-align: left;
    margin-top: 20px;
}

#angebote > .box > .text > .button {
    margin-top: auto;
    padding: 20px;
}

#angebote > .box > .text > .button a {
    background: #8F0101;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
}

#angebote > .box > .text > .button a:hover {
    background: #9B1B1B;
}

#section-picture {
    width: 100%;
    height: auto;
    background-image: url(../../assets/home/IMG_5371.JPG);
    background-size: 100%;
    background-position: 50% 50%;
    background-attachment: fixed;
    padding: 150px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#rating {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#rating > .rating-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#rating > .rating-box > .rating-box-stars {
    width: 200px;
    height: 32px;
    position: relative;
    margin: 0px auto;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

#rating > .rating-box > .rating-box-stars > .star {
    width: 32px;
    height: 32px;
    background-size: 100%;
    background-position: 50% 50%;
    background-image: url('../../assets/icons/rating-star.png');
}

#rating > .rating-box > .rating-box-section {
    width: 100%;
    height: auto;
    background: #709282;
    border-radius: 8px;
    color: black;
}

#rating > .rating-box > .rating-box-section:hover {
    opacity: 0.90;
    transition: all 0.2s;
}

#rating > .rating-box > .rating-box-section > .rating-box-head {
    width: calc(100% - 40px);
    height: 70px;
    margin: 20px;
}

#rating > .rating-box > .rating-box-section > .rating-box-head > .head-picture {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 32px;
    background: #7EA774;
    color: white;
    margin: 0px;
    position: relative;
    float: left;
}

#rating > .rating-box > .rating-box-section > .rating-box-head > .head-text {
    width: calc(100% - 110px);
    height: auto;
    padding: 0px 20px;
    position: relative;
    float: left;
}

#rating > .rating-box > .rating-box-section > .rating-box-head > .head-text > .head-text-name {
    width: 100%;
    height: auto;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    float: left;
}

#rating > .rating-box > .rating-box-section > .rating-box-head > .head-text > .head-text-date {
    width: 100%;
    height: auto;
    position: relative;
    float: left;
}

#rating > .rating-box > .rating-box-section > .rating-box-content {
    width: calc(100% - 40px);
    height: auto;
    margin: 20px;
}

#faq-box {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

#faq-box > .faq-item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#faq-box > .faq-item > .question > .icon {
    width: 40px;
    height: auto;
    font-size: 32px;
    text-align: center;
    position: absolute;
    margin-top: -10px;
    margin-left: -50px;
}

#faq-box > .faq-item > .question {
    width: calc(100% - 80px);
    height: auto;
    font-size: 16px;
    padding: 20px;
    padding-left: 60px;
    background: #1C1C1C;
    display: flex;
    cursor: pointer;
}

#faq-box > .faq-item > .answer {
    width: calc(100% - 40px);
    max-height: 0;
    overflow: hidden;
    padding: 0px 20px;
    font-size: 16px;
    background: #212121;
    display: flex;
}

#faq-box > .faq-item.active .answer {
    max-height: 200px;
    padding: 20px;
}

@media all and (max-width: 1350px) {
    #home-info {
        width: calc(100% - 40px);
    }

	#angebote {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
    }

    #section-picture {
        width: 100%;
        height: auto;
        background-image: url(../..//assets/home/IMG_5371.JPG);
        background-size: 300%;
        background-position: 50% 50%;
        background-attachment: fixed;
        padding: 150px 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #rating {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
    }

    #faq-box {
        width: calc(100% - 40px);
        height: auto;
        position: relative;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}