/*
 Theme Name:   tamarello26
 Description:  Ein Child-Theme von TwentyTwenty-One.
 Author:       Ihr Name
 Author URI:   http://beispiel.com
 Template:     twentytwentyone
 Version:      2.0.0
*/

/* Weitere CSS-Anpassungen können hier vorgenommen werden */

@font-face {
    font-family: 'bold';
    src: url('fonts/opensans-bold-webfont.woff2') format('woff2'),
        url('fonts/opensans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'italic';
    src: url('fonts/opensans-italic-webfont.woff2') format('woff2'),
        url('fonts/opensans-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'light';
    src: url('fonts/opensans-light-webfont.woff2') format('woff2'),
        url('fonts/opensans-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'regular';
    src: url('fonts/opensans-regular-webfont.woff2') format('woff2'),
        url('fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'semi';
    src: url('fonts/opensans-semibold-webfont.woff2') format('woff2'),
        url('fonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    /* diverse Farben */
    --body: #333333;
    --orange: #d1411c;
    --blue: #0e2c44;
    --green: #23a455;
    --grey: #f5f5f5;
    --border-angle: 0deg;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'regular' !important;
    font-size: 16px;
    color: var(--body);
    background: radial-gradient(circle, var(--orange) 0%, white 53%);
    background-size: 2000px 2000px;
    background-position: -1200px -1200px;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.orange {
    color: var(--orange) !important;
}

h1,
h2 {
    font-family: 'bold';
    color: var(--blue);
    font-size: 55px;
    line-height: 1;
    margin-bottom: 30px;
}

h1:first-letter,
h2:first-letter {
    background: url('img/circle.svg') no-repeat;
    background-position: 0px -2px;
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    background-size: 65px;
    margin-left: -20px;
    margin-right: -20px;
}
.col-12:not(.col-xl-6) h2 {
    margin-bottom: 40px;
}

h1 + h2 {
    font-size: 27px;
    font-family: 'semi';
}
h1 + h2:first-letter {
   background-image: none;
}

.smallHeadline {
    text-transform: uppercase;
    font-family: 'bold';
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 20px;
}
.smallHeadline:first-letter {
    background: url('img/circle.svg') no-repeat;
    background-position: 7px 0px;
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    background-size: 30px;
    margin-left: -20px;
    margin-right: -20px;
}
div + h2,
p + h2 {
    margin-top: 60px !important;
}
main ul {
    padding-left: 30px !important;
}
main ul li::marker {
    color: var(--orange)
}
.boxedblue h1:first-letter,
.boxedblue h2:first-letter {
    background: url('img/circle-white.svg') no-repeat;
    background-size: 60px;
}
input[type=submit],
.btn {
    padding: 15px 35px;
    border-radius: 10px;
    font-family: 'semi';
    font-size: 15px;
}


.btn-primary {
    background-color: var(--blue);
    color: white;
    border-color: var(--blue);
}
input[type=submit],
.btn-secondary {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: var(--blue) !important;
    color: white;
    border-color: var(--blue);
}
.boxedblue .btn-secondary:hover,
.boxedblue .btn-secondary:focus,
.boxedblue .btn-secondary:active {
    background: #fff !important;
    color: var(--blue);
    border-color: var(--blue);
}
input[type=submit] {
    background-color: var(--orange) !important;
    color: white !important;
    border: 0 !important;
}
input[type=submit]:hover  {
    background-color: var(--blue) !important;
}
.btn-outline-secondary {
    background: #fff;
    color: var(--orange) !important;
    border-color: var(--orange);
}
.btn-outline-secondary:hover, 
.btn-outline-secondary:focus, 
.btn-outline-secondary:active {
    background: #fff;
    color: var(--blue) !important;
    border-color: var(--blue);
}

.circle-blue,
.circle-orange {
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    color: #fff !important;
    padding: 0px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-family: 'bold';
    font-size: 30px;
}

.circle-blue {
    background: var(--blue);
}

.circle-orange {
    background: var(--orange);
}

.site-header {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 99;
    max-width: 1320px;
}
.site-header.scrolled {
    background: #fff;
    border-bottom: 1px solid var(--orange);
    max-width: none;
    padding: 0 0 5px;
}
.site-content {
    margin-top: 110px;
}
.site-logo a:active,
.site-logo a:focus {
    background-color: transparent !important;
}
.primary-navigation {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}
.primary-navigation a {
    display: block;
    font-family: 'light';
    font-size: 18px;
    font-weight: normal;
}
.primary-navigation a:hover {
   color: var(--orange);
   text-decoration: none;
   outline: none;
}
.primary-navigation > div > .menu-wrapper > li > .sub-menu li {
    background: #fff
}
.primary-navigation .primary-menu-container > ul > .menu-item > a + .sub-menu-toggle {
    margin-left: -20px;
}
.primary-navigation > div > .menu-wrapper > li > .sub-menu:after {
    top: 0px;
    border-color: #fff;
}
.primary-navigation li.anker > a {
    text-decoration: none !important;
}
#login-menu-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    margin-top: 25px;
}
#login-menu-list a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 10px;
    font-family: 'regular';
}
#login-menu-list li:last-child a{
    color: #fff;
    background-color: var(--orange);
    border-radius: 10px;
    padding: 15px 35px;
    font-size: 15px;
    font-family: 'semi';
}
#login-menu-list li:last-child a:hover {
    background-color: var(--blue);
}
footer {
    background: linear-gradient(90deg, #f5f5f5 0%, white 100%);
    padding: 60px 0;
}

.footer-navigation-wrapper {
    display: block;
}

.footer-navigation-wrapper li {
    display: block;
    line-height: 2;
}

.footer-navigation-wrapper li::before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--orange);
}
.impressum .footer-navigation-wrapper  {
    display: flex;
    justify-content: flex-end;
}
.impressum .footer-navigation-wrapper li::before {
    display: none;
}
.footer-navigation-wrapper li a:link,
.footer-navigation-wrapper li a:visited,
.footer-navigation-wrapper li a:active {
    color: var(--body);
    text-decoration: none;
    padding: 0 10px;
}
footer .footer-info .d-flex {
    gap: 10px 
}
footer .footer-info .fa {
    color: var(--orange);
    margin-top: 6px;
}
footer .footer-info a {
    color: var(--body);
    text-decoration: none;
}
footer .footer-navigation-wrapper  a:hover,
footer .footer-navigation-wrapper  a:focus,
footer .footer-navigation-wrapper  a:active,
footer .footer-info a:hover,
footer .footer-info a:focus,
footer .footer-info a:active {
    color: var(--orange);
}
footer .footer-seo img {
    margin-bottom: 40px;
}
footer .footer-seo p {
   max-width: 460px;
}
footer .social a {
    color: var(--orange);
    display: inline-block;
    margin: 0 5px;
    border: 1px solid var(--orange);
    padding: 4px;
    text-align: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
footer .social a:hover,
footer .social a:focus,
footer .social a:active {
color: var(--blue);
border-color: var(--blue);
}
#intro {
    margin-bottom: 60px;
    overflow: hidden;
    padding-top: 30px;
}

#intro .intro-bild {
    text-align: center;
    position: relative;
}

#intro .intro-bild::before {
    content: '';
    display: block;
    position: absolute;
    top: -320px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #d1411c61 0%, white 53%);
    background-repeat: no-repeat;
    z-index: -1;
}
#intro .intro-text {
    min-height: 190px;
}
#intro p a {
    display: inline-block;
    margin: 15px 0 30px;
}

/*BEREICH*/
.bereich {
    padding: 90px 0;
}

/*
.bereich .row {
    justify-content: center;
}*/

.bg-gray {
    background: linear-gradient(90deg, #f5f5f5 0%, white 100%);
}
.bg-orange {
    background:  var(--orange);
}
.bg-blue {
    background:  var(--blue)
}

.bg-orange *,
.bg-blue * {
    color: #fff;
}

.bg-orange h2::first-letter {
    background: url('img/circle-white.svg') no-repeat;
}

#kontakt .boxed,
.bereich .text.pricebox,
.text.boxedblue,
.bereich .text.review,
.bereich .text.boxed {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 10px 10px #f5f5f5;
    height: 100%;
    background-color: #fff;
    position: relative;
}
.bereich .text.boxed {   
    border: 1px solid transparent;
    transition: border 0.2s ease; /* Übergang für flüssiges Zurücksetzen */
}

.bereich .text.boxed:hover {      
    animation: borderanimate 1s linear forwards; /* Animation bleibt bestehen */
}

@keyframes borderanimate {
    0% {
        border: 1px solid transparent;   
    }
    100% {
        border: 1px solid var(--orange);   
    }
}
.bereich .text.boxed h3 {
    font-size: 23px;
    color: var(--blue);
    font-family: 'bold';
    margin-bottom: 20px;
}

.text.boxedblue  {
    background-color: var(--blue);
}
.text.boxedblue * {
    color: #fff;
}
.text.boxedblue h3 {
    font-size: 23px;
    color: #fff;
    font-family: 'semi';
}

.bereich .text.boxed p {
    color: var(--body)
}

.bereich .text.boxedblue .fas,
.bereich .text.boxed .fas {
   font-size: 50px;
   line-height: 1;
   text-align: center;
   margin: 0 auto 20px;
   display: block;
}

.bereich .col-xl-4 .text:has(.btn) {
    padding-bottom: 100px;
    position: relative;
}
.bereich .col-xl-4 .text .btn {
    width: calc(100% - 80px);
    display: block;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.bereich .faq:not(.open)>*:not(:first-child) {
    display: none;
}

.bereich .faq>* {
    flex: 0 0 100%
}

.bereich .faq {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px 20px 15px;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}
.bereich .faq:hover {
    border-color: var(--orange);
    cursor: pointer;
}

.bereich .faq::after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    ;
    background-color: var(--orange);
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    padding: 3px;
}

.bereich .faq h3 {
    font-size: 23px;
    margin-bottom: 0;
}

.bereich .faq p {
    line-height: 1.2rem;
    margin-bottom: 0;
    margin-top: 10px;
}

.bereich .faq.open {
    border-color: var(--orange);
    padding-right: 50px;
}

.bereich .faq.open::after {
    transform: translateY(-50%) rotate(45deg);
}

.bereich .faq.open h3 {
    color: var(--orange);
}

.bereich .review {
    position: relative;
   /* padding-bottom: 130px !important;*/
}


.bereich .review > p:first-child {
    text-align: right;
    margin-bottom: 35px;
    font-family: 'semi';
    text-transform: uppercase;
}
.bereich .review  .pictext {
    font-family: 'regular';
    line-height: 1;
    position: absolute;
    bottom: 40px;
    left: 40px;

}
.bereich .review  .pictext p:last-child {
    line-height: 1.3rem;
}
.bereich .review .fa-star {
    color: #faa919;
}

.bereich .review::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-size: 60px;
    color: #f3cfc694;
    position: absolute;
    top: 10px;
    left: 40px;
    font-weight: bold;
}

.bereich ul {
    padding-left: 0;
}

.bereich ul[style="list-style-type: circle;"] li {
    list-style: none
}

.bereich ul[style="list-style-type: circle;"]  {
  padding-left: 0 !important;
}
.bereich ul[style="list-style-type: circle;"] li::before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    color: var(--orange);
    margin-right: 10px;
}

.bereich .pictext {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'semi';
    line-height: 1.3rem;
}

.bereich .pictext img {
    max-width: 50px;
}

.iconsquare {
    background: #f3cfc694;
    padding: 20px;
    border-radius: 10px;
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
}
.iconsquare + h3 {
   margin-top: 15px;
}
.iconsquare .fa {
    font-size: 30px;
    color: var(--orange);
}
#features .text {
    text-align: center;
}
.col-12 + .col-12.single {
    margin-top: 30px;
}
.col-12.single:has( + .col-12) {
    margin-bottom: 30px;
}
/*GRID*/
.grid {
    display: grid;
    grid-template-columns: calc(50% - 15px) calc(50% - 15px);
    gap: 20px 30px;
}

.grid .col-12 {
    width: 100%;
    flex: 0 0 100%
}

/*SPALTEN*/
.grid:has(.col-xl-3:first-child) {
    grid-template-columns: calc(25% - 15px) calc(75% - 15px);
}
.grid:has(.col-xl-4:first-child) {
    grid-template-columns: calc(33% - 15px) calc(66% - 15px);
}

.grid:has(.col-xl-8:first-child) {
    grid-template-columns: calc(66% - 15px) calc(33% - 15px);
}

.grid:has(.col-xl-9:first-child) {
    grid-template-columns: calc(75% - 15px) calc(25% - 15px);
}

.grid.right .col-12:first-child {
    grid-column: 1 / span 1;
}

.grid.right .col-12:not(:first-child) {
    grid-column: 2 / span 1;
}

.grid.left .col-12:last-child {
    grid-column: 2 / span 1;
}

.grid.left .col-12:not(:last-child) {
    grid-column: 1 / span 1;
}


/*ZEILEN*/
.grid.gridcount-2 {
    grid-template-rows: repeat(1, auto);
}

.grid.gridcount-3 {
    grid-template-rows: repeat(2, auto);
}

.grid.gridcount-4 {
    grid-template-rows: repeat(3, auto);
}

.grid.gridcount-5 {
    grid-template-rows: repeat(4, auto);
}

.grid.gridcount-6 {
    grid-template-rows: repeat(5, auto);
}

.grid.right.gridcount-2 .col-12:first-child,
.grid.left.gridcount-2 .col-12:last-child {
    grid-row: 1 / span 1;
}

.grid.right.gridcount-3 .col-12:first-child,
.grid.left.gridcount-3 .col-12:last-child {
    grid-row: 1 / span 2;
}

.grid.right.gridcount-4 .col-12:first-child,
.grid.left.gridcount-4 .col-12:last-child {
    grid-row: 1 / span 3;
}

.grid.right.gridcount-5 .col-12:first-child,
.grid.left.gridcount-5 .col-12:last-child {
    grid-row: 1 / span 4;
}

.grid.right.gridcount-6 .col-12:first-child,
.grid.left.gridcount-6 .col-12:last-child {
    grid-row: 1 / span 5;
}
/*Slider*/
#infoSlider {
    padding: 80px 0;
}
#infoSlider .carousel-control-prev,
#infoSlider .carousel-control-next {
      opacity: 1;
      text-decoration: none;
}
#infoSlider .carousel-control-prev .fa,
#infoSlider .carousel-control-next .fa {
        color: #fff;
        background: var(--blue);
        opacity: 1;
        padding: 10px;
        width: 40px;
        height: 40px;
        text-decoration: none;
        line-height: 1.3;
}
#infoSlider .carousel-control-prev:hover .fa,
#infoSlider .carousel-control-next:hover .fa {
        color: #fff;
        background: var(--orange);
}
/*PREISE*/
#prcieswitch {
    padding: 0;
    /*display: flex;*/
    display: none;
    justify-content: center;
    margin-bottom: 20px;
}
#prcieswitch input {
        width: 100px;
        flex: 0 0 40px;
        margin: 5px 20px;
        background-repeat: no-repeat;
        border: 1px solid #ccc;
        outline: none !important;
        box-shadow: none !important;
}
#prcieswitch .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange) !important;
}
#prcieswitch input::after {
    display: none !important;
}
#prcieswitch label:last-child {
      color: var(--orange)
}
.priceBox .price  {
    font-family: 'semi';
    font-size: 60px;
}
.priceBox .short,
.priceBox .price small  {
        font-size: 14px;
        font-family: 'regular';
        line-height: 1.3rem;;
    
}
.bereich:has(.monthly) .price-yearly {
    display: none;
}
.bereich:has(.yearly) .price-monthly {
    display: none;
}
/*ACCORDIOAN*/

.accordion-item h2 {
    margin-bottom: 0 !important;
}
.accordion-item {
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #ccc;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: #fff;
    border: 0;

}

.accordion-button:not(.collapsed) {
    color: var(--orange) !important;
    background-color: #fff;
    box-shadow: none;
    padding-bottom: 10px;
}

.accordion-button {
    background: #fff !important;
    color: var(--blue) !important;
    padding: 15px 0;

}
.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}
.accordion-button:hover {
   color: var(--orange) !important;
}

.accordion-body {
    padding: 0 0 30px;
}

.accordion-body>br:first-child {
    display: none;
}
.accordion-image {
    display: none;
}
.accordion-image.show {
    display: block;
}

.accimagewrap {

}

#kontakt {
    padding: 60px 0;
}

#kontakt .row {
    align-items: center;
}

#kontakt .boxed {
    border: 1px solid var(--orange);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
.site textarea {
    border: 1px solid #f3cfc694;
    border-radius: 10px;
    color: var(--form--color-text);
    line-height: var(--global--line-height-body);
    padding: var(--form--spacing-unit);
    margin: 5px 0;
    max-width: 100%;
    width: 100%;
}
.wpcf7-list-item {
    margin: 0 ;
}
input[type=checkbox] {
    border: 1px solid #f3cfc694;
    flex: 0 0 20px;
    height: 20px;
}
label:has(input[type=checkbox]) {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    font-size: 14px;
}
.site textarea {
    height: 150px;
}
#kontakt label {
    margin-bottom: 0;
}
#kontakt input[type=submit] {
   width: 100%;
   padding: 10px;
}
*{
    outline: none !important;
}
textarea:focus,
input:focus {    
    border-color: var(--orange);
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    top: -50px;
    background: red;
    color: #fff;
    padding: 4px 10px;
    width: 100%;
    border-radius: 5px;
}
#testversion  {
    margin-top: 100px;
}
#testversion .boxedblue {
    padding: 80px;
}
#testversion img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
    
}
body:has(#testversion) footer {
    padding-top: 400px;
    margin-top: -300px;
}
.yikes-mailchimp-container {
    margin-top: 40px;
}
.yikes-easy-mc-form input[type=email], .yikes-easy-mc-form input[type=number], .yikes-easy-mc-form input[type=text], .yikes-easy-mc-form input[type=url], .yikes-easy-mc-form select {
    padding: 7px 10px !important;
    background-color: #fff !important;
    border: 1px solid var(--orange) !important;
    display: block;
    -moz-box-sizing: border-box;
    margin-bottom: 8px;
    margin-top: 0 !important;
    border-radius: 4px;
}

@media(min-width: 1301px) {
    .primary-navigation li.mobile {
        display: none !important;
    }
}
@media(max-width: 1300px) {
    .site-header {
        padding-top: 0px;
        padding-bottom: 5px;
    }
    .site-content {
        margin-top: 80px;
    }
    #login-menu-list {
        display: none;
    }
    .primary-navigation {
        position: relative;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0px;
    }
    .menu-button-container {
        display: block;
    }
    .primary-navigation > .primary-menu-container {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding-top: calc(var(--button--line-height) * var(--primary-nav--font-size-button) + 42px + 5px);
        padding-left: var(--global--spacing-unit);
        padding-right: var(--global--spacing-unit);
        padding-bottom: var(--global--spacing-horizontal);
        background-color: var(--global--color-background);
        transform: translateY(var(--global--spacing-vertical));
    }
    .primary-navigation-open .primary-navigation > .primary-menu-container {
        position: fixed;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        width: 300px;
        height: 100vh;
        right: 0;
        left: auto;
        background: #fff;
        border-left: 2px solid var(--blue);
        margin: 0;
        z-index: 99;        
    }
    .primary-navigation > .primary-menu-container ul > li .sub-menu-toggle[aria-expanded=false] ~ ul,
    .primary-navigation .primary-menu-container > ul > .menu-item {
        display: block;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu:before, .primary-navigation > div > .menu-wrapper > li > .sub-menu:after,
    .primary-navigation .primary-menu-container > ul > .menu-item > a + .sub-menu-toggle {
        display: none;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu li:not(:last-child),
    .primary-navigation > div > .menu-wrapper > li:not(:last-child) {
        border-bottom: 1px dotted #ccc;
    }
    .primary-navigation > div > .menu-wrapper > li > .sub-menu {
        left: 0;
        margin: 0;
        min-width: 10px;
        position: relative;
        top: 0;
        padding-top: 0;
        z-index: 88888;
        left: 0;
        border: 0;
        padding-left: 20px;
    }
    .primary-navigation .sub-menu .menu-item > a {
        padding: 10px;
    }
    .primary-navigation-open .menu-button-container #primary-mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
    }
    .primary-navigation > div > .menu-wrapper {
        flex-direction: column;
    }
}

@media(max-width: 1200px) {
    .col-12 {
        margin-bottom: 20px;
    }
    form .col-12 {
        margin-bottom: 0;
    }
    .grid:has(.col-xl-3:first-child) {
        grid-template-columns: calc(33% - 15px) calc(66% - 15px);
    }
    
    .grid:has(.col-xl-9:first-child) {
        grid-template-columns: calc(66% - 15px) calc(33% - 15px);
    }
    footer .social {
        order: 1
    }
    footer .social .text-center {
       text-align: left !important;
    }
    footer .impressum {
        order: 2
    }
    footer .copy {
        order: 3
    }

}
@media(max-width: 1024px) {
    h1, h2 {
        font-size: 40px;
    }
    h1:first-letter,
h2:first-letter {

    background-size: 50px;
}
    .col-12 {
        margin-bottom: 20px;
    }
    .grid {
        display: block;
    }
}
@media(max-width: 991px) {
    #testversion .boxedblue{
        padding-bottom: 200px;
    }
    #testversion img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: 320px;
    }
}
@media(max-width: 768px) {
    h1, h2 {
        font-size: 30px;
    }
    #intro .intro-bild::before {
        display: none
    }
    .impressum .footer-navigation-wrapper {
        justify-content: flex-start;
    }
    .circle-blue, .circle-orange {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .bereich .text.boxed h3 {
        font-size: 20px;
    }
    .bereich .faq h3 {
        font-size: 18px;
    }
}

@media(max-width: 575px) 
{
    #testversion,
    #kontakt,
    #intro,
    #infoSlider,
    main .bereich {
        padding-left: 20px;
        padding-right: 20px;
    }
    #testversion .boxedblue {
        padding: 50px 50px 20px
    }
    #testversion img {
       display: none;
    }
    .btn {
        display: block;
        width: 100%;
    }
    
}