h1, h2, h3, h4 { margin: 0; }

h1 + .sub, h2 + .sub, h3 + .sub { display: block; margin-bottom: 20px; }

h1 {
    font-family: "EB Garamond", "PT Sans", Arial, Tahoma, sans-serif;
    font-style: italic;
    color: rgb(249, 178, 0);
}

h1 {
    font-size: 38px;
    line-height: 48px;
    letter-spacing: -2px;
}

h1.sub,
h1 + .sub {
    font-size: 22px;
    line-height: 25px;
}

h2 {
    font-size: 25px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #0098b0;
}

h2 + .sub {
    font-size: 25px;
    line-height: 28px;
}

h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    margin-bottom: 10px;
}

h3.sub,
h3 + .sub {
    font-size: 20px;
    line-height: 23px;
}

figure {
    margin: 10px 0;
}

img {
    box-sizing: content-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    vertical-align: middle;
}

.icon::before { text-decoration: none; }

.icon-facebook { color: #3b5998; }

.icon-g-plus { color: #db3236; }

.icon-whatsapp { color: #00e676; }

.icon-envelope, .icon-mobile-phone { color: rgb(120, 120, 120); }

li > .icon { position: relative; top: 2px; margin-right: 10px; }

.bg-orange { background: rgb(238, 127, 0); color: #ffffff; }

.bg-blue { background: rgb(0, 68, 138); color: #ffffff; }

.bg-green { background: rgb(10, 139, 48); color: #ffffff; }

.bg-yellow { background: rgb(249, 178, 0); color: rgb(40, 40, 40); }

.bg-red { background: rgb(170, 49, 49); color: #ffffff;}

.bg-cyan { background: rgb(0, 152, 176); color: #ffffff; }

.text-orange { color: rgb(238, 127, 0); }

.text-blue { color: rgb(0, 68, 138); }

.text-yellow { color: rgb(249, 178, 0); }

.text-red { color: rgb(170, 49, 49); }

.text-cyan { color: #0098b0; }

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 50px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 20px 36px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .5);
}

.clear {
    clear: both;
}

.clear::after {
    content: '';
    display: table;
    clear: both;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.justify-content-around { justify-content: space-around; }

.justify-content-between { justify-content: space-between; }

.align-items-center { align-items: center; }

.text-zentriert { text-align: center; }

.text-rechts { text-align: right; }

.text-links { text-align: left; }

.vtop { vertical-align: top; }

.vbottom { vertical-align: bottom; }

.external-link {
    display: inline-block;
    margin-top: 10px;
    padding: 1px 9px 3px 9px;
    border: 1px solid rgb(40, 40, 40);
    border-radius: 50%;
    text-decoration: none;
    transition: background .3s ease, border-color .3s ease;
}

.external-link:hover {
    background: rgba(255, 126, 0, .1);
    border-color: rgb(255, 126, 0);
}

.tabs {
    padding: 0;
    list-style: none;
    margin: 20px 0 0 0;
    clear: both;
    border: 1px solid rgb(238, 127, 0);
    border-bottom: none;
}

.tabs li {
    font-weight: 700;
    padding: 15px;
    border: 1px solid transparent;
    font-size: 18px;
    background: #efefef;
}

.tabs li.active,
.tabs li:hover {
    cursor: pointer;
    background: rgb(249, 178, 0);
    color: #ffffff;
    border-color: rgb(249, 178, 0);
}

.tabs-contents {
    border: 1px solid rgb(249, 178, 0);;
}

.tabs-contents .tab-pane {
    display: none;
    padding: 20px;
}

.tabs-contents .tab-pane.active {
    display: block;
}

.table {
    width: 100%;
    border-spacing: 0;
    border: 1px solid rgb(249, 178, 0);;
    margin-bottom: 30px;
}

.table[data-title]::before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    font-size: 22px;
    white-space: pre;
    padding: 15px 0 0 10px;
}

.table thead th,
.table tfoot td {
    background: rgb(249, 178, 0);;
    color: #ffffff;
}

.table thead th {
    padding: 10px;
}

.table thead {
    display: none;
}

.table tbody td {
    display: block;
    position: relative;
    transition: background .3s ease, color .3s ease;
    padding: 0 10px 0 10px;
}

.table tbody tr:hover td {
    background: rgba(249, 178, 0, .2);
}

.table tbody td:not([data-title]) {
    font-size: 20px;
    padding: 15px 0 0 10px;
}

.table tbody td[data-title]::before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    padding-top: 10px;
    white-space: pre;
}

.table tbody tr td:last-child {
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(249, 178, 0);;
}

.table tbody tr:last-child td:last-child {
    border-bottom: 0;
}

.table tbody tr td:only-child[colspan] {
    background: rgb(249, 178, 0);;
    color: #ffffff;
    font-weight: 700;
}

.table tbody td.mobil {
    display: block;
}

.table tbody td.mobil:empty::before {
    text-decoration: underline;
    font-size: 18px;
    font-weight: 400;
}

.table tfoot td {
    padding: 7px;
}

.table-rounded {
    border-radius: 7px;
}

.table-rounded tr:first-child th:first-child,
.table-rounded thead:first-child tr:first-child th:first-child {
    border-radius: 5px 0 0 0;
}

.table-rounded tr:first-child th:last-child,
.table-rounded thead:first-child tr:first-child th:last-child {
    border-radius: 0 5px 0 0;
}

.table-rounded tr:first-child th:only-child,
.table-rounded thead:first-child tr:first-child th:only-child {
    border-radius: 5px 5px 0 0;
}

.table-rounded tr:last-child td:first-child,
.table-rounded tfoot:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

.table-rounded tr:last-child td:last-child,
.table-rounded tfoot:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

.table-rounded tr:last-child td:only-child,
.table-rounded tfoot:last-child td:only-child {
    border-radius: 0 0 5px 5px;
}

.table-rounded tr:first-child th:first-child.no-radius {
    border-radius: 0;
}

.mapGoogle {
    height: 551px;
    border: 1px solid rgba(0, 0, 0, .3);
    margin-bottom: 30px;
    z-index: 0;
}

.mapGoogle img {
    box-shadow: none;
}

.event {
    margin-bottom: 100px;
}

.event-time {
    display: block;
    font-size: 18px;
    font-family: "Myriad Pro", "PT Sans", Arial, Tahoma, Helvetica, sans-serif;
}

h1 > .event-time {
    color: #0098b0;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0;
    margin-top: -15px;
}

.objekt {
    margin-bottom: 40px;
}

main {
    color: rgb(40, 40, 40);
    padding: 70px 10px 0 10px;
    max-width: 1000px;
    margin: 0 auto;
    min-width: 320px;
}

main a,
#fuss a {
    color: rgba(0, 0, 0, .75);
    transition: color .3s ease;
}

main a:hover,
#fuss a:hover {
    color: rgb(249, 178, 0);
}

#fuss a {
    text-decoration: none;
}

#inhalt {
    min-height: calc(100% - 285px);
}

#inhalt img {
    max-width: 100%;
    height: auto;
}

#inhalt .inline-image-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

#inhalt .inline-image-group .sub-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

#inhalt p {
    margin: 0 0 30px 0;
}

#inhalt p + ul {
    margin-top: -20px;
}

#inhalt address {
    font-style: normal;
    margin-bottom: 30px;
}

#inhalt ul.liste,
#inhalt ol.liste {
    margin: 0 0 30px 0;
    padding: 0 0 0 15px;
}

#inhalt ul.liste {
    list-style: square;
}

#inhalt article:not(.event) {
    margin-bottom: 30px;
}

#inhalt .lead-image {
    width: 100%;
    max-height: 550px;
    padding-bottom: 56.1224%;
    background-size: cover;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

#fuss {
    clear: both;
    color: rgba(0, 0, 0, .6);
    margin-top: 20px;
}

#fuss::after {
    display: block;
    content: '';
    height: 120px;
    background: url(https://www.insel-poel.de/bilder/risskanten/1024.png) no-repeat bottom right;
}

#fuss > ul {
    border-top: 2px solid rgba(0, 0, 0, .6);
    flex-wrap: wrap;
}

#fuss > ul > li {
    flex: 1 0 100%;
    font-weight: 700;
}

#fuss ul {
    list-style: none;
    padding: 0;
}

#fuss .social-links li a {
    text-decoration: none;
}

#facebook {
    display: none;
}

#whatsapp {
    display: block;
}

figure[data-toggle="box"]::before,
figure[data-toggle="box"]::after {
    text-shadow: 0 0 7px gray;
}

@media (min-width: 480px) {
    h1 {
        font-size: 50px;
        line-height: 60px;
        letter-spacing: -2px;
    }
}

@media (min-width: 600px) {
    .text-sm-zentriert { text-align: center; }

    .table[data-title]::before {
        display: none;
    }

    .table tbody td.mobil {
        display: none;
    }

    .table thead {
        display: table-header-group;
    }

    .table tbody td {
        display: table-cell;
        padding: 7px;
    }

    .table tbody td:not([data-title]) {
        font-size: inherit;
        padding: 7px;
    }

    .table tbody td[data-title]::before {
        display: none;
    }

    .table tbody tr td:last-child {
        padding: 7px;
        border-bottom: 0;
    }
}

@media (min-width: 700px) {
    .bild-rechts {
        float: right;
        margin: 0 0 20px 20px;
    }
}

@media (min-width: 1000px) {
    figure[data-toggle="box"] {
        position: relative;
    }

    figure[data-toggle="box"]::after,
    figure[data-toggle="box"]::before {
        position: absolute;
        right: 5px;
        bottom: 5px;
        content: '';
        display: inline-block;
        color: #ffffff;
    }

    figure[data-toggle="box"]::after {
        content: '\1F50E\FE0E';
        font-size: 36px;
    }

    figure[data-toggle="box"]::before {
        content: '+';
        font-size: 24px;
        bottom: 18px;
        right: 13px;
    }

    .tabs {
        border: none;
        border-bottom: 5px solid rgb(249, 178, 0);;
    }

    .tabs li {
        display: inline-block;
        background: none;
        border-radius: 15px 15px 0 0;
    }

    .tabs-contents {
        border-radius: 0 0 7px 7px;
    }

    main {
        padding: 70px 10px 0 10px;
    }

    #fuss ul {
        list-style: none;
    }

    #fuss > ul > li {
        flex: 1 0 33%;
        font-size: 20px;
    }

    #fuss::after {
        height: 153px;
        background: url(https://www.insel-poel.de/bilder/risskanten/1280.png) no-repeat bottom right;
    }

    #facebook {
        display: block;
    }

    #whatsapp {
        display: none;
    }
}

@media (min-width: 1280px) {
    #fuss::after {
        height: 170px;
        background: url(https://www.insel-poel.de/bilder/risskanten/1440.png) no-repeat bottom right;
    }
}

@media (min-width: 1440px) {
    #fuss::after {
        height: 204px;
        background: url(https://www.insel-poel.de/bilder/risskanten/1680.png) no-repeat bottom right;
    }
}

@media (min-width: 1680px) {
    #fuss::after {
        height: 203px;
        background: url(https://www.insel-poel.de/bilder/risskanten/1920.png) no-repeat bottom right;
    }
}
