body {
    line-height: 1.3;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.image {
    position: relative;
}

.is-overlay {
    position: absolute;
}

.check {
    width: 15%;
    height: 15%;
    position: absolute;
    bottom: 0;
    right: 5px;
    font-size: 1.7em;
}

.filled-check-circle {
    position: relative;
    width: 32px;
    height: 32px;
    background-color: #f9a826;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
            inset 0 0 0 2px #f9a826,
            inset 0 2px 4px rgba(0,0,0,0.4);
}

.filled-check-circle:before {
    content: '';
    position: absolute;
    --t: 5px;
    --r: 4px;
    --w: 28px;
    --h: 17px;
    --c: rgba(54, 54, 54, 0.96);
    height: var(--h);
    width: var(--w);
    border-bottom-left-radius: var(--r);
    background: radial-gradient(farthest-side at top right, transparent 97%, var(--c) 100%) bottom calc(var(--t) - 1.5px) left calc(var(--t) - 1.5px) / calc(var(--t) * 0.8) calc(var(--t) * 0.8),
    radial-gradient(farthest-side, var(--c) 99%, transparent 100%) top left / var(--t) var(--t),
    radial-gradient(farthest-side, var(--c) 99%, transparent 100%) bottom right / var(--t) var(--t),
    linear-gradient(var(--c), var(--c)) left bottom / var(--t) calc(100% - var(--t) / 2),
    linear-gradient(var(--c), var(--c)) left bottom / calc(100% - var(--t) / 2) var(--t);
    background-repeat: no-repeat;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4) rotate(-45deg);
}

.empty-check-circle {
    border: 2px dotted #acacac;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: white;
}

.home-cards {
    padding: 5%;
}

.card {
    border-radius: 1.4rem;
    height: 100%;
    min-width: 270px;
    background-color: var(--card-bg);
    border: 3px solid #1f1f1f;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
    transition:
            transform 0.16s ease-out,
            box-shadow 0.16s ease-out,
            background-color 0.16s ease-out;
}

.card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.35);
    background-color: color-mix(in srgb, var(--card-bg-hover) 80%, white);
}

.card-content {
    text-align: center;
    font-weight: 600;
    min-height: 96px;
    padding: 1.25rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message {
    background-color: transparent;
    margin-bottom: 1rem;
}

.message-header {
    background-color: rgba(54, 54, 54, 0.96);
    color: #ffffff;
    border-radius: 1rem;
}

.message .message-body {
    background-color: rgba(255, 251, 242, 0.42);
    font-size: 16px;
    color: #363636;
    border-radius: 50px;
}

.message .message-header {
    text-align: left;
    padding-left: 4.2rem;
    font-size: 1.1rem;
}

.message a:not(.button):not(.tag):not(.dropdown-item) {
    text-decoration: none;
}

#effect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1rem;
    opacity: 0.8;
    user-select: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    position: relative;
    padding: 0 2.3rem;
}

.cards-wrapper > a {
    flex: 0 0 270px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.cards-wrapper > a:hover {
    z-index: 10;
}

@media (max-width: 768px) {
    .carousel-button {
        display: none;
    }

    .cards-wrapper {
        padding: 0;
        justify-content: center;
    }

    .message .message-header {
        text-align: center;
        padding-left: 1em;
    }
}

@media screen and (max-width: 600px) {
    .hero-body {
        padding-left: 6%;
        padding-right: 6%;
    }
}
