/* === GLOBAL === */
html {
    font-size: 16px;
    overflow-y: scroll;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    letter-spacing: 0.08em;
    color: #4a2e00;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 320px;
}

main.page-main {
    flex: 1 1 auto;
}


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

/* === GENERELLES === */
a {
    color: #eb6921;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #5c3a05;
    text-decoration: none;
}

.section-bg {
    background-color: #f6f3f0;
}

h2 {
    color: #5c3a05;
}

.normal {
    padding: 4rem 0;
    overflow: hidden;
}

.normal h2 {
    font-size: 2rem;
    font-weight: 300;
    padding-bottom: 0;
}

.normal h3 {
    font-size: 1.25rem;
    font-weight: 300;
    padding-bottom: 0;
    color: #5c3a05;
}

.normal p {
    color: #242425;
}

.normal strong {
    font-weight: bold;
}

.normal a {
    color: #eb6921;
    text-decoration: none;
    background-color: transparent;
}

.normal a:hover {
    color: #5c3a05;
}


/* === TOP-BAR-BEREICH === */
.top-bar {
    background-color: #f6f3f0;
    font-size: .813rem;
    padding: .625rem 0;
}

.top-bar a {
    color: #555555;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #eb6921;
    text-decoration: none;
}

.top-bar .fa-envelope,
.top-bar .fa-phone-alt {
    padding: .313rem;
    color: #533403;
}

.top-bar .contact-info .fa-phone-alt {
    padding-left: 1.25rem;
    margin-left: 1.25rem;
    border-left: 1px solid #e9e9e9;
}


/* === NAVIGATIONSLEISTE === */
header .logo img {
    max-height: 80px;
    width: auto;
    margin: 0.5rem;
}


header .navbar {
    padding: .313rem 0;
}

header .navbar-light .navbar-toggler {
    border-color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #5c3a05;
    text-transform: uppercase;
    font-size: .813rem;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #eb6921;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #eb6921;
    text-decoration: none;
    background-color: unset;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: .625rem 0;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.dropdown-item {
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-transform: uppercase;
    font-size: .813rem;
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .625rem;
    border: none;
    vertical-align: 0.1em;
}

.drop-down ul a:hover,
.drop-down ul .active > a,
.drop-down ul li:hover > a {
    color: #f03c02;
}


/* === HEADER-BANNER === */
.page-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

section.header-img {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: #fff;
    height: 50vh;
    max-height: 200px;
}



.popup.is-hidden {
    display: none;
}

.popup {
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup > div {
    max-width: 720px;
    min-width: 300px;
    border: 1px solid #ccc;
    padding: 0.5rem;
    background-color: #fff;
    box-shadow: 1px 1px 4px 1px var(--mae-custom-color-three);
    z-index: 100;
    margin: 1.5rem auto;
    position: relative;
    width: 300px;
}

.popup > div:hover {
    border-color: #000;
    background-color: #fff;
}

.popup .popup-close {
    display: block;
    position: absolute;
    right: 0.5rem; 
    top: 0.5rem; 
    cursor: pointer;
    color: #fff;
    padding: 0.25rem;
    z-index: 1;
}
.popup .popup-close:hover {
    color: #000;
}


.popup .ce-gallery {
    margin-bottom: 0;
}


@media only screen and (min-width: 600px){
    .popup > div {
        width: auto;
    }
}




@media only screen and (min-width: 600px){
    section.header-img {
        height: 65vh;
        max-height: none;
    }
}


/* === BREADCRUMB-NAVIGATION === */
.breadcrumbs {
    padding: .938rem 0;
    background: #5c3a05;
    min-height: 40px;
    color: #fff;
}

.breadcrumbs h2 {
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    color: #fff;
}

.breadcrumbs ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.breadcrumbs ol li + li {
    padding-left: .625rem;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: .625rem;
    color: #fff;
    content: "/";
}

.breadcrumbs ol a {
    color: #eb6921;
}


/* === STARTSEITE === */
.start {
    padding: 5rem 0 3rem 0;
}

.section-title {
    padding-bottom: 1.875rem;
    text-align: center;
}

.start-referenzen {
    padding: 3.75rem 0;
    overflow: hidden;
}


/* === CALL-TO-ACTION-BEREICH-STARTSEITE === */
.cta {
    background: #f6f3f0;
    color: #5c3a05;
    padding: 2.5rem 0;
}
@media (min-width: 992px) {
    .cta {
        padding: 3.75rem 0;
    }
}

.cta h3 span {
    color: #eb6921;
}

.cta .cta-btn {
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .875rem;
    display: inline-block;
    padding: .625rem 1.563rem;
    border-radius: 2px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin: .625rem;
    border-radius: 4px;
    border: 2px solid #eb6921;
    color: #eb6921;
    background: #fff;
}

.cta .cta-btn:hover {
    background: #eb6921;
    color: #fff;
}

.cta p {
    padding: 0;
    margin: 0;
}

@media (min-width: 769px){
    .cta .cta-btn-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}


/* === SERVICE-BOXEN-STARTSEITE === */
.services {
    padding: 3rem 0 7rem;
    overflow: hidden;
}

@media (max-width: 991px){
    .services {
        padding: 1rem 0 3.5rem;
    }
}

.services .section-title {
    padding-bottom: 1.875rem;
    text-align: center;
    color: #5c3a05;
}

.frame-layout-6 {
    padding: 3.125rem 1.25rem 1.563rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid #edf1f4;
    position: relative;
    background: #f6f3f0;
    width: 100%;
}

.frame-layout-6 .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: #5c3a05;
}

.frame-layout-6:hover .icon {
    background: #fff;
    border: 2px solid #5c3a05;
}

.frame-layout-6:hover .icon i {
    color: #5c3a05;
}

.frame-layout-6 > header > h2 {
    font-size: 1.4rem;
    color: #5c3a05;
}

.frame-layout-6 > header > h2 > a {
    color: #5c3a05;
}

.frame-indent {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 576px) {
    .frame-layout-6.frame-indent {
        width: auto;
    }
    
    .frame-indent {
        margin-left: 15%;
        margin-right: 15%;
    }
    
}

/*=== SHOP-ICONS-STARTSEITE ===*/
.bottom {
    margin: 5rem 0;
}

.shop .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    height: 100px;
}

@media (min-width: 361px) {
    .shop .image {
        padding: 1.25rem;
    }
}


.shop .image:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .image img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 36px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    width: auto;
}


/* === DIENSTLEISTUNGEN === */
.frame-layout-5 .ce-bodytext h2 {
    font-size: 2rem;
    color: #5c3a05;
    font-weight: bold;
}

.frame-layout-5 .ce-intext.ce-left .ce-gallery {
    margin-right: 2rem;
}

@media (max-width: 991px) {
    .frame-layout-5 .ce-intext.ce-left .ce-gallery {
        margin-right: 0;
    }
    .frame-layout-5 .ce-gallery figure {
        margin-bottom: 1rem;
    }
    
    .frame-layout-5 .ce-gallery figure img {
        width: 100%;
        height: auto;
    }
    .frame-layout-5 .ce-bodytext {
        width: 100%;
    }
}

.site-ansprechpartner {
    padding: 3.75rem 0;
    overflow: hidden;
}

.site-ansprechpartner .member {
    margin-bottom: 1.25rem;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    min-width: 100%;
}

.site-ansprechpartner .member .member-info h4 {
    font-weight: 700;
    margin-bottom: .313rem;
    font-size: 1.125rem;
    color: #2b2320;
}

.site-ansprechpartner .member .member-info {
    padding: 1.563rem .938rem;
}

.site-ansprechpartner .member .member-info p {
    display: block;
    font-size: .813rem;
    font-weight: 400;
    color: #b4aca8;
    margin-bottom: 0;
}

.site-ansprechpartner .section-title {
    padding-bottom: 3rem;
}

.weitere-leistungen {
    padding: 5rem 0;
    overflow: hidden;
}

.weitere-leistungen h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #5c3a05;
}

.weitere-leistungen p {
    color: #2b2320;
}

.weitere-leistungen .weitere-leistungen-item .btn {
    border-radius: 0;
    border: none;
    background: #eb6921;
}

.weitere-leistungen .weitere-leistungen-item .btn > a {
    color: #fff;
}

.weitere-leistungen .weitere-leistungen-item .btn > a:hover {
    text-decoration: none;
}

.weitere-leistungen .weitere-leistungen-item .btn:hover {
    background: #5c3a05;
}

.weitere-leistungen .weitere-leistungen-item {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 2.5rem;
    position: relative;
    background: #f9f9f9;
    border: 1px solid #edf1f4;
}


/* ===  OBJEKTSEITEN === */
.tx-ifabrik-realestate a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.ref-item {
    margin-bottom: 1.25rem;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #d8dee3;
    border-radius: 3px;
    color: #242425;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ref-item img {
    min-height: 1px;
}

a.ref-item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.ref-item p {
    margin: 0;
}

.ref-item-body  {
    padding: .938rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
}

.ref-img-overlay {
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
}

.ref-item-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: #5c3a05;
}

.ref-img-overlay .badge {
    display: block;
    border-radius: 0;
    line-height: auto;
    background-color: #5c3a05;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1rem;
    padding: 0.5rem;
}

.ref-item-text {
    font-size: .813rem;
}

.ref-item-footer {
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid #d8dee3;
    width: 50%;
    text-align: center;
}

.ref-item-footer:nth-child(2) {
    border-left: 1px solid #d8dee3;
}

.ref-item-footer h6 {
    font-size: .75rem;
    color: #5c3a05;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}


/* === OBJEKTSEITEN-PAGINATION === */
.f3-widget-paginator,
.pagination {
    padding: 1.875rem 0 0 0;
    overflow: hidden;
}

.f3-widget-paginator li {
    display: inline-block;
}

.f3-widget-paginator a,
.pagination .page-link {
    background-color: #f9f9f9;
    color: #5c3a05;
}

.page-item:first-child .page-link {
    border-radius: 0;
}

.page-item:last-child .page-link {
    border-radius: 0;
}

.f3-widget-paginator a:hover,
a.page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #5c3a05;
    border-color: #dee2e6;
}


/* === OBJEKTDETAIL-SEITE === */
.detailseite {
    padding: 3.75rem 0;
    overflow: hidden;
}

.detailshort {
    padding-bottom: 3.75rem;
    font-size: .875rem;
}

.detailshort h2 {
    margin-bottom: 1.25rem;
}

.carousel {
    position: relative;
    margin-bottom: 1.25rem;
}

.carousel-item img {
    height: auto;
}

.objektbeschreibung,
.objektlage,
.objektaustattung,
.bildergallery,
.objektinfozusatz{
    padding: 3.75rem 0;
    overflow: hidden;
}

.responsivemap > iframe {
    width: 100%;
    min-height: 350px;
}

.bildergallery img {
    padding-bottom: 1rem;
}

.backlink {
    max-width: 115px;
    border-radius: unset;
    background: #5c3a05;
    border: 0;
    padding: .625rem 1.5rem;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.backlink:hover {
    background: #fd5c28;
}


/* === PARTNER-SEITE === */
.frame-layout-4 h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5c3a05;
    text-transform: uppercase;
}

.frame-layout-4 p {
    margin-right: 2rem;
}

.frame-layout-4 img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px){
    .frame-layout-4 .ce-bodytext {
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .frame-layout-4 {
        margin-bottom: 4rem;
    }
    
    .frame-layout-4 img {
        max-width: 100%;
        height: auto;
    }   
    
    .ce-intext.ce-right .ce-gallery {
        margin: .313rem; 
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px){
    .frame-layout-4 .ce-bodytext {
        width: 100%;
        overflow: unset;
    }   
}


/* === KONTAKT-SEITE === */
.contact .info-wrap {
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1.875rem;
}

.contact .info i {
    font-size: 1.25rem;
    color: #5c3a05;
    float: left;
    width: 44px;
    height: 44px;
    background: #edf1f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 3.75rem;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: .313rem;
    color: #2b2320;
}

.contact .info p {
    padding: 0 0 0 3.75rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #65534c;
}

.frame-type-form_formframework,
.contact .php-email-form {
    width: 100%;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 1.875rem;
    background: #fff;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.form-group textarea {
    height: 119px;
}

.form-control:focus {
    border-color: #5c3a05;
}

.form-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -.313rem;
    margin-left: -.313rem;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form .form-group {
    padding-bottom: .5rem;
}

.form-row>.col, .form-row>[class*=col-] {
    padding-right: .313rem;
    padding-left: .313rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: .875rem;
}

.form-navigation button {
    background: #5c3a05;
    border: 0;
    border-radius: 0;
    padding: .438rem 1.5rem;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.form-navigation button:hover  {
    background: #fd5c28;
}

.form-navigation .btn-toolbar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* === FOOTER-BEREICH === */
#footer {
    color: #ddc896;
    font-size: .875rem;
    background: #5c3a05;
}

#footer .footer-top {
    padding: 3.75rem 0 1.875rem 0;
    background: #4a2e00;
}

#footer .footer-top h3 {
    font-size: 1.125rem;
    margin: 0 0 .625rem 0;
    padding: .125rem 0 .125rem 0;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

#footer .footer-top .ce-bodytext {
    margin-bottom: 2rem;
}

#footer .footer-nav a{
    padding-left: .625rem;
    text-decoration: none;
    color: #fff;
}

#footer .footer-nav a:before {
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-weight: 900;
    color: #fff;
    font-size: .625rem;
    padding-right: .313rem;
}

#footer .footer-nav a:hover:before{
    color: #ddc896;
}

#footer .footer-nav a:hover{
    color: #ddc896;
}


/* === ZURÜCK-NACH-OBEN-BUTTON === */

.back-to-top {
    display: inline-block;
    background-color: #ddc896;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: .188rem;
    position: fixed;
    bottom: 15px;
    right: 15px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
         -o-transition: background-color .3s, opacity .5s, visibility .5s;
            transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
}

.back-to-top i {
    font-size: 1.5rem;
    position: relative;
    top: 8px;
}

.back-to-top:hover {
    cursor: pointer;
    background-color: #fd5c28;
    color: #fff;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


label.control-label {
    display: none;
}
    
/* NEWS */
.news-list-view-start {}
.article-start {
    margin: 1rem 0;
}
.article-start .news-img-top {
    margin-bottom: 0.5rem;
}

/* Accordeon */
.accordion-header {
    padding: 0;
    border-bottom: 0;
}
.accordion-title {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.2em;
}
.accordion-title-link, 
.accordion-title-link:focus, 
.accordion-title-link:hover {
    color: inherit;
    text-decoration: none;
}
.accordion-title-link {
    padding: 1rem 1.5rem;
    padding-right: calc(1.5rem + 2em);
    position: relative;
    display: block;
}

.accordion-title-link-state {
 position:absolute;
 height:0.8em;
 width:0.8em;
 top:50%;
 right:1.5rem;
 transform:translate(0,-50%)
}
.accordion-title-link-state:before,
.accordion-title-link-state:after {
 content:'';
 position:absolute;
 top:50%;
 left:0;
 display:block;
 height:1px;
 width:100%;
 background-color:currentColor;
 transition:all 0.2s ease-in-out
}
.accordion-title-link-state:before {
 transform:rotate(-45deg)
}
.accordion-title-link-state:after {
 transform:rotate(45deg)
}
.accordion-title-link.collapsed .accordion-title-link-state:before {
 transform:rotate(0)
}
.accordion-title-link.collapsed .accordion-title-link-state:after {
 transform:rotate(90deg)
}

.accordion-body {
    border-top: 1px solid rgba(0,0,0,0.125);
    padding: 1.5rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.125) !important;
}
.accordion-item + .accordion-item {
    margin-top: 0.25em;
}


.social-media a {
    margin-right: 0.5rem;
    color: #ddc896;
}
.social-media a:hover {
    color: #eb6921;
}


@media (max-width: 575px){
    .ce-left .ce-gallery, .ce-column {
        float: none;
    }
    .ce-intext.ce-left .ce-gallery {
        margin-right: 0;
    }
}