nav {
   transition: 0.2s;
}

@media all and (min-width: 959px) {
    html {
        padding-top: 130px;
    }
}

@media all and (max-width: 959px) {
    html {
        padding-top: 125px;
    }
}

.breadcrumb-list .list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-list .list-items li:before {
    content: none;
}

.breadcrumb-list .list-items li {
    margin-bottom: 0;
}

.breadcrumb-list .list-item {
    margin-right: 5px; /* Abstand zwischen den Elementen */
    font-size: 13px;
}

.breadcrumb-list .list-item::after {
    content: "»";
    margin-left: 5px;
}

.breadcrumb-list .list-item:last-child::after {
    content: "";
    margin-left: 0;
}

.breadcrumb-list .list-item a {
    text-decoration: none;
    color: #284BB2;
}

.breadcrumb-list .list-item a:hover {
    text-decoration: underline;
}

.btn.btn-primary, .btn.btn-primary:active, .btn.btn-primary:focus {
    background: linear-gradient(360deg, var(--button-color-1) -17.11%, transparent) var(--button-color-2) 281% !important;
    border: none !important;
    border-radius: 16px;
    padding: 13px 33px;
    color: rgb(255,255,255);
    transition: background 0.2s ease-in-out;
    cursor: pointer;
    font-family: "Instrument Sans Medium", serif;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
}

.btn.btn-primary:hover {
    background: linear-gradient(360deg, var(--button-color-1) -17.11%, transparent) #3d63d4 281% !important;
}

.btn.btn-primary.shine::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 120px;
    top: 0;
    left: -100%;
    background: rgb(255 255 255 / 26%);
    filter: blur(40px);
    transform: skewX(341deg);
    animation: shine-primary-1 3.2s cubic-bezier(0.42, 0, 0.31, 1.3) infinite;
}

@keyframes shine-primary-1 {
    0% {
        left: -100%;
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

#comments ol {
    padding: 0;
    margin: 0;
}

#comments ol li {
    padding: 0;
    margin: 0;
}

#comments ol li::marker {
    padding: 0;
    margin: 0;
    content: " ";
    counter-increment: item;
}

a > i, .btn > i {
    margin-right: 10px;
}

.card.card-primary.card-btn > a {
    position: absolute;
    width: 100%;
    bottom: 0;
    border-radius: 0;
    background: #284BB2 !important;
    font-family: 'Instrument Sans Medium', serif;
    color: #ffffff !important;
    font-size: 17px;
    padding: 10px;
    box-shadow: none !important;
    transition: background 0.4s;
}

.card.card-primary.card-btn > a:hover {
    background: #1b3684 !important;
    color: #fff !important;
}

.card.card-primary.card-btn {
    padding-bottom: 35px;
}

.card.card-primary h2 {
    font-size: 28px;
    font-family: 'Instrument Sans Bold', serif;
    color: #1b3684;
    padding: 0;
}

h1 {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
    font-size: 40px;
}

h2 {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
    font-size: 25px;
    margin-bottom: 16px;
}

h3 {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
}

h4 {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
}

p {
    font-family: "Instrument Sans Regular", serif;
    color: #414141;
    font-size: 16px;
}

.highlight {
    font-family: 'Instrument Sans SemiBold', serif;
    color: #1b3684;
    font-size: 20px;
}

.highlight .lower-text {
    font-size: 14px;
    font-family: 'Instrument Sans Medium', serif;
    text-decoration: line-through;
}

.nav.nav-tabs {
    margin-top: 15px;
}

.trust-icon {
    font-size: 14px;
    margin: 9px 0 0;
    color: #26b764;
    font-family: 'Instrument Sans Medium', serif;
}

.trust-icon i {
    margin-right: 5px;
}

.tab-content {
    padding-top: 15px;
}

strong {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
    font-weight: 400;
}

blockquote {
    padding-left: 15px;
    border-left: 3px solid #ccc;
}

a {
    color: #284BB2;
}

a:hover {
    color: #284BB2;
}

a img {
    transition: opacity 0.3s ease-in-out;
}

.sidebar a:hover img {
    opacity: 0.8;
}

label {
    font-family: 'Instrument Sans Regular', serif;
    font-size: 12px;
    margin-bottom: 0;
}

.table-of-contents {
    background-color: #eff3ff75;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 16px;
    border: 1px solid #719cff4a;
}

.table-of-contents ul {
    margin: 0;
}

.table-of-contents ul li a {
    font-family: 'Instrument Sans Regular', serif;
    padding-left: 5px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #284BB2;
    border-color: #719cff4a #719cff4a transparent;
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

.nav-tabs .nav-item:before {
    content: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #719cff4a #719cff4a transparent;
    border-radius: 10px 10px 0 0;
}

.btn.btn-primary a:hover {
    text-decoration: none;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #284BB2;
}

.nav.navbar-nav .nav-item {
    position: relative;
}

.nav.navbar-nav .nav-item:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #284BB2;
}

.card {
    border: 1px solid #719cff4a;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.card a:hover {
    text-decoration: none !important;
}

.card-animate img {
    transition: transform 0.2s ease-in-out;
}

.card-animate:hover img {
    transform: scale(1.05);
}

#ai-indicator-form {
    background-color: #eff3ff75;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid #719cff4a;
}

#ai-indicator-form .badge {
    background-color: #284BB2;
    color: white;
    padding: 6px 13px;
    border-radius: 20px;
    font-family: 'Instrument Sans Regular', serif;
    font-size: 12px;
    margin-bottom: 10px;
}

#comments-form {
    background-color: #eff3ff75;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 16px;
    border: 1px solid #719cff4a;
}

#comments-form .form-group:last-of-type {
    margin: 0;
}

#comments-form h2 {
    font-family: "Instrument Sans SemiBold", serif;
    color: #414141;
    font-size: 25px;
    margin-bottom: 16px;
}

.form-control, .form-control:focus {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #edf2ff;
    background-clip: padding-box;
    border: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none;
}

.nav-link {
    display: block;
    padding: .5rem 0.6rem;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.35);
    opacity: 1;
}

.card-primary {
    background-color: #eff3ff75;
}

.card .icon-big {
    position: absolute;
    left: 76%;
    top: 7%;
    font-size: 188px;
    transform: rotate(345deg);
    color: #719cff4a;
}

.card-success {
    background-color: rgba(40, 198, 86, 0.46);
}

.card .breadcrumb-list {
    background-color: var(--background-box-color);
    padding: 9px 20px 9px 20px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 30px;
}

.post-content h2 {
    padding-top: 30px;
}

.post-content div, .post-content img {
    max-width: 100%;
    height: auto;
}

.post-content {
    padding-bottom: 46px;
}

 .star-rating {
     display: flex;
     gap: 5px;
     cursor: pointer;
 }

.star {
    font-size: 30px;
    color: #ddd; /* Standardfarbe der Sterne */
    transition: color 0.2s ease-in-out;
}

/* Sterne beim Hover */
.star.hovered {
    color: #ffd700; /* Gelb beim Hover */
}

/* Sterne bei Auswahl */
.star.filled {
    color: #ffd700; /* Gelb bei Auswahl */
}

.testimonial {
    position: relative;
    margin-top: 35px;
    margin-bottom: 16px;
    background-color: #eff3ff75;
    padding: 20px;
    border: 1px solid #719cff4a;
    border-radius: 8px;
}

.testimonial i {
    position: absolute;
    left: -6px;
    top: -6px;
    font-size: 25px;
    color: #425b9e;
}

.testimonial p {
    font-size: 18px;
    color: #000000b0;
    font-family: Instrument Sans Medium, serif;
    margin: 0;
}

.testimonial span {
    font-size: 12px;
    color: #000000b0;
    margin: 10px 0 0;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 7px;
}

.badge-primary {

}

.badge-success {
    background-color: #2ec550bf;
    color: #ffffff;
}

img {
    border-radius: 10px;
}

.sidebar .block {
    margin-bottom: 30px;
}

.sidebar .block h2 {
    color: #1f43aa;
    font-size: 18px;
    font-family: 'Instrument Sans Medium', serif;
}

.sidebar .block a {
    color: #1f43aa;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.price {
    font-family: 'Instrument Sans Medium', serif;
    font-size: 22px;
}

.price span:first-of-type {
    font-size: 18px;
}

.price span:nth-of-type(2) {
    font-family: 'Instrument Sans Medium', serif;
    font-size: 12px;
    color: #0000008a;
}

article {
    padding-bottom: 20px;
}

article ul li {
    font-family: "Instrument Sans Regular", serif;
    list-style-type: none;
    margin-bottom: 10px;
}

article ul li:before {
    content: '▸';
    font-size: 25px;
    color: #1f43aa;
    vertical-align: middle;
    line-height: 20px;
    margin-left: -30px;
    margin-right: 9px;
}

.table-of-contents ul {
    padding: 0;
}

.table-of-contents li:before {
    content: none;
}

.table-of-contents li {
    margin: 0;
}

.highlight-color {
    color: #1f43aa;
}

@media all and (min-width: 768px) {
    article ul {
        padding-left: 45px;
    }

    article ol {
        padding-left: 37px;
    }
}

@media all and (max-width: 768px) {
    article ul {
        padding-left: 25px;
    }

    article ol {
        padding-left: 17px;
    }
}

article ol li {
    margin-bottom: 10px;
    padding-left: 9px;
}

article ol li::marker {
    counter-increment: list;
    color: #1f43aa;
    font-weight: bold;
}

.slider-container {
    position: relative;
    padding: 10px 0;
    margin-top: 15px;
}

.gradient-bar {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(to right, #db2222, #ddd31f, #23b16f);
}

.wp-caption-text {
    font-family: "Instrument Sans Regular", serif;
    font-style: italic;
    margin-top: -55px;
    position: absolute;
    background-color: #284bb2;
    color: #fff;
    border-radius: 0 5px 5px 0;
    padding: 5px 15px;
    font-size: 16px;
}

@media all and (max-width: 768px) {
    .wp-caption-text {
        font-size: 14px;
    }
}

.marker {
    position: absolute;
    top: 35%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 14px solid #284BB2;
}

.raw li .fa {
    padding-right: 5px;
    color: #1b3684;
    font-size: 16px;
}

.raw {
    padding: 0;
}

.raw li:before {
    content: none;
}

.raw li {
    margin-bottom: 0;
}

.raw li, .raw ul {
    font-family: "Instrument Sans Regular", serif;
    list-style-type: none;
}

.circular {
    height: 150px;
    width: 150px;
    position: relative;
}

.circular .inner, .circular .outer, .circular .circle{
    position: absolute;
    z-index: 6;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.2);
}

.circular .inner {
    top: 50%;
    left: 50%;
    height: 120px;
    width: 120px;
    margin: -60px 0 0 -60px;
    background-color: #eff3ff;
    border-radius: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.circular .circle{
    z-index: 1;
    box-shadow: none;
}

.circular .title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -79%);
    z-index: 10;
    font-size: 24px;
    font-family: 'Instrument Sans Bold', serif;
    font-weight: 500;
    color: #000000;
}

.circular .subtitle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 13%);
    z-index: 10;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.circular .bar{
    position: absolute;
    height: 100%;
    width: 100%;
    background: #eff3ff;
    -webkit-border-radius: 100%;
    clip: rect(0px, 150px, 150px, 75px);
}

.circle .bar .progress{
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 100%;
    clip: rect(0px, 75px, 150px, 0px);
}

.circle .bar .progress, .dot span{
    background: #284BB2;
}

.progress.progress-small {
    height: 4px !important;
}

.progress {
    background: #d4dfff;
}

.progress-bar {
    background: #284BB2;
}

.progress-block.gap {
    margin-bottom: 15px;
}

.progress-block label {
    margin-bottom: 6px;
    font-size: 13px;
}

@keyframes left {
    100% {
        transform: rotate(180deg); /* Voller Fortschritt für die linke Hälfte */
    }
}

.circle .right{
    z-index: 3;
    transform: rotate(180deg);
}

@keyframes right {
    100% {
        transform: rotate(72deg); /* Fortschritt für 70% */
    }
}

.product-benefits {
    list-style-type: none;
    padding: 0;
    color: #414141;
}

.product-benefits li:before {
    content: none;
}

.product-benefits li {
    margin: 0;
}

.product-benefits .fa {
    font-size: 16px;
    color: #2C4FB6;
    padding-right: 5px;
}

.faq-card {
    background-color: #eff3ff75;
    border: 1px solid #719cff4a;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-card .card-header {
    border-bottom: none;
    background-color: #F8F9FF;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Instrument Sans Medium', serif;
}

.rating {
    color: #e87949;
}

.sub-info {
    font-size: 14px;
    margin-bottom: 35px;
    color: black;
}

.sub-info span {
    margin-left: 4px;
    margin-right: 4px;
    color: #0000008c;
}

footer {
    width: 100%;
    background-color: #060917;
    padding: 22px 0 21px 0;
}

.pt2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px;
}
footer p {
    font-size: 13px;
    color: #ccc;
    padding-bottom: 0px;
    margin-bottom: 8px;
}

img.white-out:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.5);
}

.footer-disclaimer {
    margin-top: 20px;
}

.footer-disclaimer > p {
    color: #ffffff30;
    font-size: 12px;
}

.mb10 {
    padding-bottom: 35px;
}
.footer_ul_amrc {
    margin: 0px;
    list-style-type: none;
    font-size: 14px;
    padding: 0px 0px 10px 0px;
}
.footer_ul_amrc li {
    padding: 0px 0px 5px 0px;
}
.footer_ul_amrc li a {
    color: #ccc;
}
.footer_ul_amrc li a:hover {
    color: #fff;
    text-decoration: none;
}
.fleft {
    float: left;
}
.padding-right {
    padding-right: 10px;
}

.footer_ul2_amrc {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}
.footer_ul2_amrc li p {
    display: table;
}
.footer_ul2_amrc li a:hover {
    text-decoration: none;
}
.footer_ul2_amrc li i {
    margin-top: 5px;
}

.bottom_border {
    border-bottom: 1px solid #ffffff1a;
    padding-top: 15px;
    padding-bottom: 40px;
}
.foote_bottom_ul_amrc {
    list-style-type: none;
    padding: 0px;
    display: table;
    margin: 20px auto 10px;
}
.foote_bottom_ul_amrc li {
    display: inline;
}
.foote_bottom_ul_amrc li a {
    color: #ffffff82;
    margin: 0 12px;
    font-family: 'Instrument Sans Regular', serif;
}

.i-footer > i {
    margin-right: 5px;
}