<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lst-crds {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lst-crds .lst__el {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    padding: 0 .5rem;
    margin-bottom: 1rem;
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .lst-crds--3 .lst__el,
    .lst-crds--4 .lst__el {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 640px) {
    .lst-crds--3 .lst__el,
    .lst-crds--4 .lst__el {
        flex-basis: 33.3333%;
    }
}

@media screen and (min-width: 480px) {
    .lst-crds--2 .lst__el {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 960px) {
    .lst-crds--3 .lst__el {
        flex-basis: 33.3333%;
    }
}

@media screen and (min-width: 960px) {
    .lst-crds--4 .lst__el {
        flex-basis: 25%;
    }
}

.lst--2,
.lst--3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lst--2 .lst__el,
.lst--3 .lst__el {
    flex-basis: 100%;
}

@media screen and (min-width: 480px) {
    .lst--2 .lst__el {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 480px) {
    .lst--3 .lst__el {
        flex-basis: 33.3333%;
    }
}

.lst {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.lst--us {
    list-style: none;
}

.lst--us .lst__el {
    padding: .25rem 0;
}

.lst--us .lst__el a {
    display: block;
}

.lst--us a {
    position: relative;
    color: inherit;
    opacity: .87;
    padding: 0 .75em;
}

.lst--us a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin: auto;
    display: block;
    width: .375rem;
    height: .375rem;
    border-radius: .375rem;
    color: inherit;
    background-color: currentColor;
    transform: translate3d(0,-50%,0);
    opacity: .25;
    transition: opacity 300ms ease-in-out;
}

.lst--us a:hover,
.lst--us a:focus {
    opacity: 1;
    transform: translate3d(.75rem, 0, 0);
}

.lst--us a:visited {
    color: inherit;
}

.lst--us a:hover::before,
.lst--us a:focus::before {
    opacity: 1;
}

.lst__el {
    display: block;
    width: 100%;
    max-width: 100%;
}

.lst__el a {
    text-decoration: none;
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.lst__el a:hover,
.lst__el a:focus {
    color: #3FBEFC;
}

.lst-crd {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    color: #FFF;
    background-color: #0D1522;
    border-radius: .375em;
    overflow: hidden;
    padding: .25rem .25rem 0;
}

.lst-crd:hover, .lst-crd:focus {
    transform: scale(1.05);
    box-shadow: 0 1px 3px 5px rgba(0, 0, 0, 0.1);
}

.lst-crd-tl {
    box-sizing: border-box;
    padding: .75em 1.5em;
    font-size: .75rem;
    line-height: 1rem;
    display: block;
    text-align: center;
    color: inherit;
    font-weight: bold;
    text-transform: uppercase;
    order: 2;
}

.lst-crd-md {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: .375em;
    padding-top: 56.25%;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    background-color: #FFF;
    order: 1;
}

.lst-crd-md::before {
    content: attr(data-title);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    background-color: transparent;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    width: 100%;
    max-width: 12rem;
    height: 100%;
    transform: scale(0);
}

.lst-crd-md::after {
    content: '';
    display: block;
    background-color: transparent;
    background: linear-gradient(to left, transparent, #000 50%, #000);
    z-index: 0;
    will-change: transform;
    width: 15rem;
    height: 15rem;
    transform: rotate(45deg) scale(.75);
}

.lst-crd-md::before,
.lst-crd-md::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    transition: transform 150ms ease-in, opacity 150ms ease-in;
}

.lst-crd:hover .lst-crd-md::after,
.lst-crd:focus .lst-crd-md::after {
    transform: rotate(-45deg) scale(1);
    opacity: .67;
}

.lst-crd:hover .lst-crd-md::before,
.lst-crd:focus .lst-crd-md::before {
    transform: scale(1);
    opacity: 1;
}

.lst-crd:hover .lst-crd-md__img {
    filter: blur(.25rem);
}

.lst-crd-md__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    height: auto;
}</pre></body></html>