/* General */
.single-modul .page-title {
    display: none;
}

.single-modul #main {
    padding-top: 0;
}

.single-modul h2 {
    color: var(--e-global-color-the7_accent) !important;
    font-family: var(--the7-base-font-family) !important;
    font-size: 30px;
}

.single-modul .center {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Header Slider */
.single-modul .tns-nav {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.single-modul .tns-nav button {
    height: 10px;
    width: 10px;
    background: transparent;
    border: 2px solid var(--e-global-color-the7_accent);
    border-radius: 50%;
    margin: 3px;
}

.single-modul .tns-nav .tns-nav-active {
    background: rgba(0, 0, 0, 0.2)
}

.single-modul .tns-outer {
    margin-bottom: 1rem;
}

.single-modul #module-slider img {
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
    .single-modul .tns-outer {
        margin-left: calc(50% - (100vw / 2));
        margin-right: calc(50% - (100vw / 2));
        max-width: 100vw;
        width: 100vw;
    }
}

/* Head */
.single-modul .facts {
    display: flex;
    margin: 50px 0;
}

.single-modul .facts .fact {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.single-modul .facts .fact:not(:first-child) {
    margin-left: 4rem;
}

.single-modul .fact .top {
    font-size: 26px;
}

.single-modul .gallery-icon {
    height: 26px;
}

.single-modul .gallery-icon path {
    fill: var(--e-global-color-the7_accent);
}

@media (max-width: 768px) {
    .single-modul .facts .fact:not(:first-child) {
        margin-left: 2rem;
    }
}

@media (max-width: 460px) {
    .single-modul .facts {
        flex-direction: column;
        margin: 25px 0;
    }
    
    .single-modul .facts .fact:not(:first-child) {
        margin-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .single-modul .facts .fact:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

/* General Infos */
.single-modul .general-infos__container,
.single-modul .insulation__container,
.single-modul .other__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    margin-bottom: 50px;
}

.single-modul .list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.single-modul .list li {
    line-height: 2;
}

.single-modul .key {
    font-weight: bold;
}

@media (max-width: 768px) {
    .single-modul .general-infos__container,
    .single-modul .insulation__container,
    .single-modul .other__container {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

/* Gallery */
.single-modul .gallery {
    columns: 2;
    margin-bottom: 40px
}

.single-modul .gallery img {
    /* object-fit: cover; */
    width: 100%;
    cursor: pointer;
    /* aspect-ratio: 16 / 10; */
}

@media (max-width: 620px) {
    .single-modul .gallery {
        columns: 1;
    }
}

/* Contact */
.single-modul .contact {
    margin-bottom: 20px;
}

