body {
    position: relative;
}

main {
    padding-bottom: 50px;
}

section {
    position: relative;

    max-width: 1200px;

    margin: 0px auto;
} 


.button {
    border: 1px solid black !important;
    border-radius: 30px;
}

.button.secondary {
    /* background: white; */
    border: 1px solid #000;
}

.button.secondary span {
    color: black;

    transition: color .1s ease-in-out;
}

.button.secondary::before {
    /* background: rgba(45, 157, 226, 0.12); */
    background: white;
}

.button.secondary:hover span {
    color: white;
}


.sichtbarkeit.content {
    width: 100vw;
    max-width: 1500px;
    min-height: calc(100dvh - 75px);

    margin: 0px auto;

    padding: 50px 25px;

    overflow: hidden;

    

    display: flex;
    justify-content: center;
    align-items: center;
}

.bg {
    position: absolute;
    z-index: -1;

    width: 100vw;
    height: calc(100dvh - 75px);
}

.bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

.bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #2d9de2;
    border-radius: 999px;

    background: rgba(45, 157, 226, 0.08);
    border: 1px solid rgba(45, 157, 226, 0.2);

    letter-spacing: 0.02em;

    backdrop-filter: blur(6px);

    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.content .titlebox {
    margin-bottom: 25px;

    height: 100%;
    /* max-width: 875px; */

    margin: 0px auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content .titlebox .title {
    font-family: 'azonix', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;

    margin-bottom: 25px;

    animation: slideUp 0.8s ease-out 0.8s backwards;
}

.content .titlebox .subtitle {
    display: none;
    font-size: 16px;
    font-weight: normal;
    text-align: center;

    margin-bottom: 25px;

    animation: slideUp 0.8s ease-out 1.2s backwards;
}

.content .titlebox .liste {
    display: block;
    width: fit-content;
    padding: 0px;
    margin: 0px auto;

    margin-bottom: 25px;

    animation: slideUp 0.8s ease-out 1.2s backwards;
}

.content .titlebox .liste li {
    list-style: none;
    max-width: 500px;
    width: fit-content;

    text-align: left;
    font-size: 20px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.content .titlebox .liste li .icon {
    /* color: #27ae60; */
    color: #4A00E0;

    padding-right: 15px;
}

.content .titlebox .trust {
    animation: slideUp 0.8s ease-out 1.6s backwards, shiny 5s linear infinite;
}

.content .titlebox .buttons {
    animation: slideUp .8s ease-out 2.0s backwards;
}

.content .titlebox .buttons .button {
    width: 300px;
}

.content .titlebox .buttons .button span {
    display: block;
    width: 100%;
    text-align: center;
}

/* Small Window */
@media only screen and (max-width: 1273px) {
    .content .buttons {
        flex-direction: column;
    }

    .content .buttons .button {
        margin: 0px;
        margin-bottom: 25px;
    }
}

h2.title {
    font-weight: bold !important;
}

.why {
    padding: 25px;
}

.why .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.why .subline {
    text-align: center;

    margin-bottom: 25px;
}

.why .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.why .cards .card {
    min-width: 347px;
    flex: 25%;
    height: fit-content;
    

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border-color);
    border-radius: 32px;
    
    box-shadow: 0 6px 12px var(--border-color);
    
    background: var(--light);
    
    padding: 25px;

    margin: 12.5px;

    transition: all .3s ease-in-out;
}

.why .cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 20px #4a00e035;
}

.why .cards .card .icon {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 100%;

    background-color: #4a00e025;

    padding: 5px;
    margin-bottom: 15px;
}

.why .cards .card .icon i {
    font-size: 18px;
    color: #4A00E0;
}

.why .cards .card .text {
    display: flex;
    flex-direction: column;
}

.why .cards .card .text .title {
    display: flex;
    align-items: center;

    font-size: 17px;
    text-align: left;
    font-weight: 600;

    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
} 



.what {
    padding: 25px;
}

.what .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.what ul {
    display: block;

    width: fit-content;

    margin: 0px auto;

    padding: 0px;
}

.what ul li {
    list-style: none;

    padding: 0px;
    padding-bottom: 10px;

    display: flex;
    align-items: center;

    font-size: 16px;

    transition: all .3s ease-in-out;
}

.what ul li:hover {
    transform: translateX(20px);
}

.what ul li i {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 100%;

    background-color: #4a00e025;

    font-size: 18px;
    color: #4A00E0;

    padding: 5px;

    margin-right: 15px;
}

.what ul li span {
    width: calc(100% - 15px - 50px);

    transition: all .3s ease-in-out;
}

.what ul li:hover span {
    color: #4A00E0;
}

.what ul li:hover span a {
    color: #4A00E0;
    text-decoration: underline;
}



.packages {
    padding: 25px;
}

.packages .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.packages .subline {
    text-align: center;

    margin-bottom: 25px;
}

.packages .cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.packages .cards .card {
    width: calc(100vw - 50px);
    max-width: 350px;

    height: fit-content;
    
    border: 1px solid var(--border-color);
    border-radius: 32px;
    
    box-shadow: 0 6px 12px var(--border-color);
    
    background: var(--light);
    
    padding: 25px;
    
    margin: 12.5px;
    
    position: relative;
    
    cursor: pointer;

    transition: all 0.3s ease;
}

.packages .cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px #4a00e035;
}

.packages .cards .card.selected {
    box-shadow: 0px 0px 20px #4a00e035;
}

.packages .cards .card.needToSelect {
    box-shadow: 0px 0px 20px #e0000035 !important;
    animation: boing .3s ease-in-out;
}

@keyframes boing {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.packages .cards .card .headline {
    font-size: 16px;

}

.packages .cards .card .title {
    font-family: 'azonix';
    font-size: 30px;
    text-align: left;

    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
}

.packages .cards .card .line {
    width: 100%;
    height: 2px;
    margin: 15px 0px;
    background-color: #ddd;
}

.packages .cards .card .price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;

    margin-bottom: 10px;
}

.packages .cards .card .price .ab {
        color: #888;
    padding-right: 10px;
}

.packages .cards .card .price .sum {
    font-family: 'azonix', "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: -webkit-linear-gradient(0deg, #2d9de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: 600;
}

.packages .cards .card .price .option {
    font-style: italic;
    font-size: 20px;
    color: #888;
    padding-left: 25px;
}

.packages .cards .card .desc {
    color: #888;
    font-size: 14px;

    margin-bottom: 10px;
}

.packages .cards .card ul {
    display: block;

    width: fit-content;

    padding: 0px;
    padding-left: 0px;
}

.packages .cards .card ul li {
    list-style: none;
}

.packages .cards .card ul li i {
    color: #4A00E0;
    padding-right: 5px;
}

.packages .subInfo {
   display: block;

   width: fit-content;

   margin: 0px auto;
   margin-top: 50px;
}



.process {
    max-width: 1200px;
    margin: 0px auto;
    padding: 25px;
}

.process .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.process .subline {
    text-align: center;

    margin-bottom: 25px;
}

.process .cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.process .cards .card {
    min-width: 338px;
    flex: calc(33% - 25px);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 6px 12px var(--border-color);
    background: var(--light);
    padding: 25px;

    margin: 12.5px;

    transition: all .3s ease-in-out;
}

.process .cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px #4a00e035;
}

.process .cards .card .step {
    font-family: 'azonix', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 5px;
    font-size: 25px;
    color: #4A00E0;
    font-weight: bold;
    margin-bottom: 15px;
}

.process .cards .card .desc {
    font-size: 16px;
    text-align: left;
    margin: 0px;
}



.whofor {
    max-width: 1200px;
    margin: 0px auto;
    padding: 25px;
}

.whofor .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.whofor .subline {
    text-align: center;

    margin-bottom: 25px;
}

.whofor ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    width: fit-content;
    margin: 0px auto;
    padding: 0px;
}

.whofor ul li {
    max-width: 250px;
    width: calc(25% - 25px);
    margin: 12.5px;

    list-style: none;
    padding: 0px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: all .3s ease-in-out;

    font-weight: bold;

    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 6px 12px var(--border-color);
    background: var(--light);
    padding: 25px;
}

.whofor ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px #4a00e035;
}

.whofor ul li i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #4a00e025;
    font-size: 18px;
    color: #4A00E0;
    padding: 5px;
    margin-right: 15px;
}



.cta {
    max-width: 1200px;
    margin: 0px auto;
    padding: 25px;
}

.cta .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;

    padding-bottom: 25px;
}

.cta .subline {
    text-align: center;

    margin-bottom: 25px;
}

.cta b {
    display: block;

    width: fit-content;

    font-size: 20px;

    margin: 0px auto;
    margin-bottom: 25px;
}

.cta ul {
    display: block;
    width: fit-content;
    margin: 0px auto;
    padding: 0px;

    
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.cta ul a {
    display: flex;
    align-items: center;

    margin: 12.5px;

    transition: all .3s ease-in-out;
}

.cta ul a:hover {
    transform: translateY(-5px);
}

.cta ul li {
    list-style: none;
    padding: 0px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;

    font-weight: bold;
}

.cta ul li i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #4a00e025;
    font-size: 18px;
    color: #4A00E0;
    padding: 5px;
    margin-right: 15px;
}

@media screen and (max-width: 740px) {
    .packages .cards .card .price .sum {
        font-size: 30px;
    }

    .packages .cards .card .price .option {
        font-size: 18px;
    }

    .bg img {
        object-position: right top !important;
    }

    .whofor ul li {
        width: calc(100% - 25px);
    }
}