:root {
    --gruen: #C9CC51;
    --color: #445809;
    --rot: #E41B41;
    --hell: #eaeac9;
    --font-family: 'Barlow Condensed';
    --font-size: 20px;
    --font-size-klein: '17px';
    --con-padding: 10px 15px;
    --border-radius: 7px;
    --box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.1);
    --border: 2px solid var(--color);
    --max-width: 900px;
}

* {
    margin: 0px;
    box-sizing: border-box;
    outline: none;
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
}

html, body {
  overscroll-behavior: none; /* verhindert Bounce-Effekt */
}

/* barlow-condensed-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 100;
  src: url('./fonts/barlow-condensed-v13-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 200;
  src: url('./fonts/barlow-condensed-v13-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/barlow-condensed-v13-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/barlow-condensed-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/barlow-condensed-v13-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/barlow-condensed-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('./fonts/barlow-condensed-v13-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  src: url('./fonts/barlow-condensed-v13-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.background_wrap {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url("https://www.hoffnungstage.de/images/bilder/08-Donnerstag%203.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center; /* 👈 sorgt für perfekte Zentrierung */
}

.maxwidth {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}
.content {
    background: #fff;
    width: 100%;
    margin: 0px;
    padding: 35px 20px;
}

#scrollTop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: -100px;
    box-shadow: none;
    padding: 8px;
    z-index: 99;
    border: none;
    transition: 0.3s;
    cursor: pointer;
  background: transparent;
}
#scrollTop .fa-solid {
    font-size: 38px;
}
.menu-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 100;
}
.nav {
    display: block;
    background: transparent;
    list-style: none;
    padding: 0px;
    position: fixed;
    top: 0px;
    right: 0px;
    width: calc(100% - 20px);
    height: max-content;
    max-height: calc(100vh - 110px);
    box-shadow: var(--box-shadow);
    max-width: 1000px;
    z-index: 101;
    border-radius: var(--border-radius);
    overflow-x: hidden;
    overflow-y: scroll;
}
.nav .parent {
    position: relative;
    vertical-align: sub;
    clear: both;
}
.nav .mod-menu__sub {
    display: none;
    overflow: hidden !important;
    min-width: max-content;
}
.nav .nav-item {
    padding: 10px 2px;
    transition: 0.7s;
    margin: 5px;
    width: calc(100% - 10px);
    min-width: max-content;
    border-radius: var(--border-radius);
    background: transparent;
}
.nav .separator,
.nav .nav-item a {
    padding: 5px 15px;
    display: block;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 20px;
    transition: 0.7s;
    color: var(--color);
    font-weight: 500;
}
.nav .nav-item:hover .separator,
.nav .nav-item:hover a {
    color: var(--rot);
    transition: 0.3s;
}
@media (max-width: 849px) {
    .nav .mod-menu__sub .nav-item {
        background: var(--color);
        margin: 0px !important;
        padding: 0px !important;
        font-size: var(--font-size-klein) !important;
    }
    .nav .mod-menu__sub .nav-item a {
        font-size: var(--font-size-klein) !important;
        padding: 7px !important;
    }
    .nav .mod-menu__sub .nav-item:hover a {
        text-decoration: underline;
    }
    .nav {box-shadow: none;}
}



body {
    background: #ffffff;
}
nav {
    width: 100%;
    padding: 0px;
}
.nav-out {
    margin: 0px;
    background: var(--gruen);
    padding: var(--con-padding);
    border-radius: 0px;
    box-shadow: var(--box-shadow);

    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

.nav-space {
    background: #fff;
    width: 100%;
    height: 120px;
    margin-bottom: -2px;
}
@media (min-width: 849px) {
    .nav-space {
        background: #fff;
        width: 100%;
        height: 200px;
    }
}

.menu-open-1,
.menu-open-2,
.menu-open-3 {
    height: 8px;
    width: 50px;
    background-color: var(--color);
    border-radius: 2px;
    transition: 0.3s;
    margin: 0px;
}
.menu-open-2 {
    margin: 10px 0px;
}
.menu-open-in.active1 .menu-open-1 {
    transform: rotate(45deg) translate(12px, 13px) scale(1.2);
}
.menu-open-in.active1 .menu-open-2 {
    opacity: 0;
}
.menu-open-in.active1 .menu-open-3 {
    transform: rotate(-45deg) translate(12px, -13px) scale(1.2);
}
.menu-open {
    display: block;
    position: absolute;
    top: 20px;
    right: 10px;
    background: transparent;
    padding: 15px;
    z-index: 102;
    border-radius: none;
}

#menu {
    display: none;
}
#menu.menu-show {display: block;}


@media (max-width: 849px) {
    nav .nav {
        display: block;
        background: var(--hell);
        list-style: none;
        padding: 10px;
        padding-top: 120px;
        width: calc(100% - 10px);
        height: 100%;
        max-height: unset !important;
        box-shadow: 0px 0px 200px #000;
        max-width: 300px;
        border-radius: 0px;
    }
    .nav .parent.active1 {
        background: var(--color);
    }
    .nav .nav-item.active1 .separator,
    .nav .nav-item.active1 a {
        color: #fff;
        transition: 0.3s;
    }
    .nav .mod-menu__sub.active1 {
        display: block;
    }
    .nav .active1 .mod-menu__sub {
        display: block;
        padding: 0px;
        padding-left: 30px;
        list-style: none;
        height: auto;
        transition: 0s;
        width: 100%;
        overflow-y: hidden !important;
        background: var(--color);
        margin-bottom: 0px;
    }
    .nav .parent:after {
        transform: translate(0px,-7px) rotate(0deg) !important;
        font-size: 40px;
    }
    .nav .parent:hover:after {
        transform: translate(0px,-7px) rotate(0deg) !important;
        color: #fff;
    }
    .nav .active1:hover:after {
        transform: translate(2px,-6px) rotate(45deg) !important;
        color: #fff;
    }
    .nav .active1:after {
        transform: translate(2px,-6px) rotate(45deg) !important;
        color: #fff;
    }
}

@media (min-width: 850px) {
    .menu-open, .menu-overlay {
        display: none;
    }
    #menu {
        display: block;
    }
    .nav {
        position: unset;
        padding: 0px;
        box-shadow: none;
        margin: 0px;
        display: flex;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    .nav-item {
        width: fit-content !important;
        min-width: max-content;
        margin: 0px 2px !important;
        cursor: pointer;
    }
    .separator,
    .nav-item a {
        width: auto;
        padding: 5px 12px !important;
    }
    .nav-item .active {color: var(--rot);}
    .mod-menu__sub {
        position: absolute;
    }
    .nav-item.parent {
        position: relative;
    }
    .nav-item.parent:hover {
        border-radius: var(--border-radius) var(--border-radius) var(--border-radius) 0px;
    }
    .nav-item.parent:hover .mod-menu__sub {
        display: block !important;
        animation: menuAnimation;
        animation-duration: 0.5s;
    }
    @keyframes menuAnimation {
        0% {transform-origin: top center; transform: scale(1,0.0); opacity: 0;}
        30% {opacity: 0;}
        100% {transform-origin: top center; transform: scale(1,1.0); opacity: 1;}
    }
    .mod-menu__sub {
        background: var(--hell);
        padding: 10px 18px;
        font-size: 15px !important;
        border-radius: 3px;
        cursor: default;
        margin-left: 0px;
    }
    .mod-menu__sub .nav-item {
        background: transparent !important;
        color: #fff;
        padding: 2px 0px !important;
        margin: 0px !important;
        cursor: default;
        list-style: none;
    }
    .mod-menu__sub .nav-item a {
        color: var(--color);
        padding: 2px 7px !important;
        margin: 2px !important;
        cursor: pointer;
    }
    .mod-menu__sub .nav-item a:hover {
        text-decoration: underline;
        color: var(--rot);
    }
    .nav-in {
        max-width: var(--max-width);
        margin: 0px auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 20px 10px;
        padding-top: 40px;
    }
    .nav-tab {
        padding-top: 35px;
    }
}

nav .nav-icon img {
    width: 100%;
    max-width: 220px;
}
@media (min-width: 650px) {nav .nav-icon img {max-width: 250px;}}
nav .mod-menu__sub {
    z-index: 95;
}
.nav-out {
    width: 100%;
}

main {
    padding: 0px;
    background: transparent;
}
.main {
    padding: 0px;
    width: 100%;
    margin: 0px auto;
}

footer {
    background: var(--color);
    border-top: 12px solid var(--gruen);
    padding-bottom: 100px;
    margin-bottom: -50px;
}

.footer-content, .footer-menu {
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
}
.footer-menu {
    padding: 3px 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.footer-menu-in .nav {
    display: flex !important;
    position: unset !important;
    width: fit-content;
    overflow-x: auto;
    overflow-y: hidden !important;
    flex-wrap: nowrap;
    background: transparent;
}
.footer-copyright {
    padding: 5px 15px;
    color: #ccc;
}
.footer-menu-in .nav-item a {
    padding: 2px 5px;
    cursor: pointer;
    color: var(--hell);
    font-size: var(--font-size);
    font-weight: 200;
}
.footer-menu-in .nav-item {
    padding: 2px 5px;
    cursor: pointer;
}
@media (max-width: 850px) {
  .footer-menu-in .nav {
    display: block !important;
  }
  .footer-menu-in .nav .nav-item {
    width: fit-content;
  }
}

footer .nav-item:hover {
  background: transparent !important;
  color: #fff !important;
}


h1 {
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--color);
  font-size: 55px;
  cursor: default;
}
h2 {
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--color);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 33px;
  padding: 0px 12px;
  cursor: default;
  text-align: center;
}
h3 {
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--color);
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 25px;
  cursor: default;
}
@media (max-width: 700px) {
  h1 {font-size: 45px;}
  h2 {
    font-size: 38px;
    margin-left: 0px;
    margin-bottom: 7px;
    margin-top: 5px;
  }
  h3 {font-size: 25px;}
}
p, li, td {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight);
    color: #333;
    padding-bottom: 10px;
    cursor: default;
}
p {margin-bottom: 0px !important;}
li {padding-bottom: 5px;}
a {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--color);
    transition: 1s;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #333;
    transition: 0.5s;
}

.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: #333;
    font-style: normal;
    text-align: center;
    
    border: none;
    background-color: var(--hell);
    padding: 7px 15px;
    margin: 5px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.7s;
}
.button:hover {
    background-color: var(--rot);
    color: #fff;
    transition: 0.3s;
}
.btn-rot {
    border: 2px solid var(--rot) !important;
}

  input, textarea, select {
    background: #eee !important;
    padding: 7px 12px !important;
    margin: 1px;
    font-family: var(--font-family);
    font-size: var(--font-size) !important;
    color: #333 !important;
    border: 2px solid var(--rot) !important;
    border-radius: 5px !important;
    width: 100%;
    transition: 0.7s !important;
    resize: vertical !important;
    cursor: text;
}
input:hover, textarea:hover, select:hover,
input:focus, textarea:focus, select:focus {
    padding: 7px 12px !important;
    margin: 1px;
    background: #fff !important;
    color: #333 !important;
    border: 2px solid var(--rot) !important;
    border-radius: 5px !important;
}
::placeholder {
  color: #777 !important;
  font-family: var(--font-family) !important;
  font-size: var(--font-size) !important;
  opacity: 1;
}
::-ms-input-placeholder {
  font-family: var(--font-family) !important;
  font-size: var(--font-size) !important;
  color: #777 !important;
}
select, select:hover, select:focus {padding: 6px 12px;}
label {
    font-family: var(--font-family) !important;
    font-size: var(--font-size) !important;
    text-align: left !important;
    color: #333 !important;
    font-weight: bold !important;
    padding: 0;
    margin: 5px;
}

.img-box {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  border-left: 18px solid #f7e274;
  margin: 8px 0px;
  margin-bottom: 15px;
}
.img-box1, .img-box2, .img-box3 {
    width: 100%;
    padding: 10px;
}
.img-box1 img, .img-box2 img, .img-box3 img {
    width: 100%;
    border-radius: 10px;
}
@media (min-width: 700px) {.img-box3, .img-box2 {width: 50%;}}
@media (min-width: 1000px) {.img-box3 {width: 33%;}}

table {
    width: 100% !important;
    max-width: max-content !important;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
table td {
    color: #333;
    font-family: var(--font-family);
    font-size: var(--font-size);
    padding: 3px 10px;
    font-weight: 400;
}
table td:first-child {
    padding-right: 5px;
    vertical-align: text-top;
    font-weight: 600;
}
table tr:nth-of-type(odd) {
    background: #fff;
}

@media (max-width: 500px) {
    h1 {font-size: 270% !important};
    h2 {font-size: 200% !important};
    h3 {font-size: 155% !important};
}

.clearfix {
    clear: both;
}

.form-control-feedback {display: none !important;}

.cf-radio-group .cf-label,
.cf-control-input .cf-label {
    font-family: var(--font-family) !important;
    font-size: var(--font-size) !important;
    text-align: left !important;
    color: #333 !important;
    font-weight: 400 !important;
}
.cf-btn {
    font-family: var(--font-family) !important;
    font-size: var(--font-size) !important;
    color: #333 !important;
    font-style: normal !important;
    text-align: center !important;
    font-weight: 400 !important;
    
    border: 2px solid var(--rot) !important;
    background-color: #fff !important;
    padding: 7px 15px !important;
    margin: 0px !important;
    border-radius: 3px !important;
    cursor: pointer;
    transition: 0.7s !important;
}
.cf-btn:hover {
    background-color: var(--rot) !important;
    color: #fff !important;
    transition: 0.3s !important;
}
.cf-radio-group input, .cf-list input {outline: none !important;}

fieldset {
  width: 100%;
  padding: 7px 15px;
  padding-top: 20px;
  border: 5px solid #eee !important;
  border-radius: 20px;
  max-width: 550px;
  margin: 10px auto;
  margin-top: 50px;
}
fieldset legend {
  border: 5px solid #eee;
  background: #eee;
  border-radius: 10px;
  padding: 0px 15px;
  padding-top: 5px;
}

.form-check-input {
  width: fit-content !important;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex2, .flex3 {width: 100%;}
@media (min-width: 700px) {.flex2, .flex3 {width: 50%; padding: 0px 15px;}}
@media (min-width: 1000px) {.flex3 {width: 33.33%; padding: 0px 15px;}}
@media (min-width: 550px) {
    .flex-inverted {
        flex-direction: row-reverse;
    }
}

button:focus-visible, a:focus-visible {
  outline: 3px dotted blue !important;
  outline-offset: 2px !important;
  border-radius: 3px;
}

button:focus, a:focus {
  outline: none; /* Entfernt die Outline bei Mausfokus */
}



.nav-item .fa-up-right-from-square {
    float: right;
    margin-left: 7px;
    font-size: 10px;
}


.mod-breadcrumbs__wrapper {
    padding: 5px;
    background: #ffffff !important;
    width: 100%;
    max-width: 950px;
    margin: 0px auto;
    margin-bottom: 15px;
}
.mod-breadcrumbs__wrapper ol {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 0px;
}
.mod-breadcrumbs__item {
    margin-left: 15px;
    min-width: max-content;
}
.mod-breadcrumbs__item::before {
    content: '/';
    margin-right: 20px;
    font-weight: 500;
    font-family: 'Ubuntu';
    color: #333;
}



.visually-hidden {
  display: none;
}

.nav-in {
    display: flex;
}
.nav-tab {top: -50px; left: unset; right: unset; transition: 0s; transition: top 0.5s ease-in-out;}

.nav-icon img,
.nav-tab,
.nav-in {
  transition: 0.3s;
}

.scrolled .nav-icon img {
  width: 180px;
  transition: 0.3s;
}
.scrolled .nav-tab {
  padding-top: 10px;
  transition: 0.3s;
  height: fit-content;
}
.scrolled .nav-in {
    padding: 0px;
}

main .nav {
  display: flex;
  position: unset;
  width: 100%;
max-width: 700px;
padding: 20px;
flex-wrap: wrap;
  justify-content: center;
}
main .nav .nav-item {
  width: fit-content;
}

.container {
    width: 100%;
    padding: 50px 0px;
}
.con1 {
    font-size: 20px;
}

nav {
  position: relative;
  z-index: 1000;
}

.parallax {
    width: 100%;
    padding: 0px;
}
.parallax img {
    width: 100%;
    margin-top: -4px;
}
.parallax-space {
    height: 150px;
}
.parallax-img2 {
    margin-bottom: -5px;
}

.breitbild-boxen {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px;
    background: #fff;
}
.breitbild-box {
    flex: 1;
}
.breitbild-box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
    margin-bottom: 0px;
}
.bbb1, .bbb2, .bbb3, .bbb4 {display: none;}
@media (min-width: 450px) {.bbb1 {display: block;}}
@media (min-width: 600px) {.bbb2 {display: block;}}
@media (min-width: 750px) {
  .bbb3 {display: block;}
  .breitbild-boxen .breitbild-box:nth-child(2n) {
     transform: translate(0px,50px);
  }
  .breitbild-boxe. {
    padding-bottom: 70px;
  }
  .breitbild-box img {
    height: 150px;
  }
}
@media (min-width: 900px) {.bbb4 {display: block;}}



.note {
    background: var(--hell);
    margin: 30px 0px;
    padding: 10px 30px;
    border-radius: 5px;
}

.miniboxen {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 10px;
    justify-content: center;
    margin: 10px 0px;
}
.minibox {
    padding: 4px 7px;
    background: var(--hell);
    border-radius: 5px;
}
p b {font-weight: 700;}

a.minibox {
    text-decoration: none !important;
}

hr {
    margin: 50px 0px;
    border: 1px solid var(--gruen);
    height: 0px;
    width: 100%;
}


.accordion {
    background-color: var(--hell);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: var(--font-size);
    transition: 0.4s;
    margin-top: 30px;
    border-radius: 5px;
    position: relative;
    padding-left: 80px;
}
.accordion h3,
.accordion p {
    cursor: pointer;
}
.accordion h3 {
    margin-top: 5px;
}

.accordion:after {
    content: '\002B';
    color: var(--rot);
    font-weight: 100;
    font-size: 60px;
    position: absolute;
    top: -9px;
    left: 20px;
    transition: 0.3s;
}

.active:after {
    transform: translate(4px,8px) rotate(135deg);
    transition: 0.3s;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel .container {
    margin: 0px;
    padding: 20px 0px;
}
.banner {
    width: 100%;
    padding: 20px 0px;
}
.banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
#content a {
    text-decoration: underline;
}

.blog-img {
    width: 100%;
    padding-top: 20px;
}
.blog-img img {
    margin: 10px 0px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
}
.blog {
    margin-top: 35px;
}
@media (min-width: 400px) {
    .blog-img img {
        height: 185px;
    }
}
@media (min-width: 550px) {
    .blog {
        display: flex;
        flex-wrap: nowrap;
    }
    .blog-img {
        width: 220px;
    }
    .blog-txt {
        width: calc(100% - 220px);
        padding-left: 25px;
        padding-top: 15px;
    }
    .blog-img img {
        height: auto;
    }
    .flex-inverted.blog .blog-txt {
        padding-left: 0px;
        padding-right: 25px;
    }
}

.flex-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
}
@media (max-width: 550px) {.flex-img {height: 150px}}

.footer-content {
    padding-top: 25px;
    min-height: 50px;
}
.btn-insta {
    background: transparent !important;
    border: none;
    padding: 5px;
    margin: 0px;
    border-radius: 10px;
}
.btn-insta img {
    width: 30px;
    height: auto;
    display: block;
}
.btn-insta:hover {
    border: none;
    transform: scale(1.1);
    background: transparent !important;
}

.convertforms {
  width: calc(100% - 20px);
  margin: 30px auto;
  border: none;
  max-width: 550px;
}