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

#termin {
    width: calc(100% - 400px);
    margin: 0 auto;
    font-size: 18px;
    position: relative;
}

#termin > .termin-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

#termin > .termin-description {
    font-size: 18px;
    line-height: 1.2;
}

#termin > .termin-description > p {
    margin-bottom: 30px;
}

#termin > .termin-description  a {
    color: white;
    text-decoration: underline;
}

#termin-buchen {
    width: 100%;
    height: auto;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 80px;
}

#termin-buchen > form > .textfield {
    width: 100%;
    background-color: #1C1C1C;
    color: white;
    font-size: 16px;
    padding: 15px;
    border: none;
    margin-bottom: 20px;
}

#termin-buchen > form > .button {
    width: 100%;
    padding: 15px;
    border: 2px solid #3BA53A;
    background: #3BA53A;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#termin-buchen > form > .button:hover {
    background: #2E8A2E;
}

#termin-buchen > #form-status {
    width: calc(100% - 30px);
    height: auto;
    padding: 10px 15px;
    background: linear-gradient(90deg,rgba(4, 177, 150, 1) 0%, rgba(74, 189, 109, 1) 52%, rgba(144, 200, 63, 1) 100%);
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    margin: 0px auto;
    color: #fff;
    display: none;
}

#termin-buchen > #form-status-not-available {
    width: calc(100% - 30px);
    height: auto;
    padding: 10px 15px;
    background: linear-gradient(90deg,rgba(176, 44, 44, 1) 0%, rgba(212, 70, 82, 1) 52%, rgba(204, 84, 108, 1) 100%);
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    margin: 0px auto;
    color: #fff;
    display: inline-block;
}

#information {
    width: calc(100% - 400px);
    margin: 0 auto;
    padding: 15px 0;
    position: relative;
    font-size: 18px;
}

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

#photo-gallery > .photo-item {
    width: 100%;
    height: 25vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    transition: top 0.3s ease;
}

#photo-gallery > .photo-item:hover {
    top: -4px;
}

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

    #photo-gallery {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
    }

    #photo-gallery > .photo-item {
        height: 75vw;
    }
}