
.d-flex {
    display: flex;
}

.justify-space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}

.max-wide {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding: 24px;
}

.startpage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.startpage * {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.app-header {
    padding: 16px;
    flex-wrap: wrap;
}

.app-header .link-logo {
    height: 20px;
}

.app-footer {
    margin-top: auto;
}

.auth-nav {
    align-self: flex-start;
    gap: 8px;
}

.banner {
    margin-bottom:65px;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-image .logo {
    height: 230px;
}

.banner-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.banner-content .lead {
    font-weight: 300;
    font-size: 1.625rem;
    margin-bottom: 20px;
}

.card-title {
    background: #e6002e;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 1.625rem;
}

.card-content {
    background: #fafafa;
    border: 1px solid #f5f5f5;
    padding: 12px;
    text-align: center;
}

.language-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.btn-link {
    display: block;
    background: #fff;
    padding: 8px 24px;
    font-weight: bold;
    box-shadow: 0 0 4px 0 #eeeeee;
    margin-top: 16px;
    border-radius: 8px;
    border-bottom: 0;
    font-size: 1.275rem;
    border: 1px solid currentColor;
}

.link-logo {
    text-decoration: none;
    border: none;
}

.link-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
}

.link-start {
    color: #118fa8;
    filter: grayscale(1);
    opacity: 0.6;
    border: none;
}

.link-demo {
    color: #185768;
}

.link-shop {
    color: #88569d;
}

.btn-link .btn-hint {
    color: black;
    display: block;
    font-size: 0.75rem;
    font-weight: normal;
    margin-top: 6px;
}
.small {
    font-size: 0.75rem;
}

.content-credits {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #f5f5f5;
}

.has-network-access .link-demo, .has-account-access .link-demo {
    filter: grayscale(1);
    opacity: 0.6;
    border: none;
}
.has-network-access .link-shop, .has-account-access .link-shop {
    filter: grayscale(1);
    opacity: 0.6;
    border: none;
}
.has-network-access .link-start, .has-account-access .link-start {
    border: 1px solid;
    opacity: 1;
    filter: none;
}

@media screen and (max-width: 768px) {
    .app-footer {
        flex-wrap: wrap;
    }

    .app-footer .copyright {
        order: 10;
        width: 100%;
        margin-top: 50px;
        text-align: center;
    }
}


.arrow-button {
    --arrow-offset: 15px;
    padding: 20px calc(20px + var(--arrow-offset));
    background: hsl(0, 0%, 84%);
    border: none;
    font: inherit;
    font-weight: 600;
    font-size: 18px;
    clip-path: polygon(0 0, var(--arrow-offset) 50%, 0 100%, calc(100% - var(--arrow-offset)) 100%, 100% 50%, calc(100% - var(--arrow-offset)) 0);
    cursor: pointer;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .arrow-button:hover {
    background: hsl(0, 0%, 74%);
  }
  
  .arrow-button.primary {
    color: white;
    background: hsl(348, 100%, 45%);
  }
  
  .arrow-button.primary:hover {
    background: hsl(348, 100%, 35%);
  }
  
  