html, body, pre, code, kbd, samp, input, button, select, option, textarea {
    font-family: var(--font-theme-1);
    font-weight: var(--font-regular);
    font-style: normal;
}
p {
    line-height: 165%;
    margin: 0px 0 1vw 0;
}
p a {
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}
strong {
    font-weight: var(--font-bold);
}
a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: var(--color-white);
    transition: var(--transition-all);
}
button, a, input[type="button"], .btn {
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-theme-1);
    font-size: 100%;
    line-height: 120%;
    font-weight: var(--font-regular);
    color: var(--color-white);
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    border: 2px solid #fff;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 0 #000 inset;
    transition: background-color 5000s ease-in-out 0s;
    color: #fff;
    background-color: transparent;
    font-size: 100%;
}
input::placeholder {
    color: #fff;
    opacity: 0.6;
}
html, body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 17px;
}
.banner-wrapper {
    aspect-ratio: 16/4;
    background-color: #d40606;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/banner-1.jpg");
    background-attachment: fixed;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
    padding-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: left;
    column-gap: 30px;
}
.banner-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: left;
    padding-top: 50px;
}
.banner-top span {
    display: block;
    width: 2px;
    height: 80px;
    background-color: #fff;
}
.banner-wrapper h1 {
    color: #fff;
    font-size: 300%;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 0px 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
}
.banner-wrapper .sub-title {
    color: #fff;
    font-size: 190%;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 0px 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
}

.banner-bottom.sub-title{
    font-size: 140%;
}


.about-storylabs {
    color: #fff;
    font-size: 110%;
    font-weight: 500;
    width: 60%;
    margin: 0 auto;
}
.about-storylabs p {
    line-height: 170%;
}
.single-wrapper {
    padding: 70px 0px;
}
.section-top .section-headline {
    color: #fff;
    font-size: 300%;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 15px 0;
}
.section-top p {
    line-height: 170%;
    font-size: 100%;
    font-weight: 500;
    color: #a7a7a7;
}
.card-row {
    /*
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
*/
}
.section-mid {
    padding-top: 30px;
}
.card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    grid-auto-flow: row;
}
.card-col {
    background-color: #000;
    aspect-ratio: 3/2;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #2e2e2e;
}
.card-col figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.card-col figure::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: -webkit-linear-gradient(330deg, transparent 0%, rgb(0 0 0 / 0%) 76%, rgb(0 0 0 / 76%) 100%);
    background: -o-linear-gradient(330deg, transparent 0%, rgb(0 0 0 / 0%) 76%, rgb(0 0 0 / 76%) 100%);
    background: linear-gradient(60deg, transparent 0%, rgb(0 0 0 / 0%) 76%, rgb(0 0 0 / 76%) 100%);
    pointer-events: none;
    transition: 0.2s all ease-in;
}
.card-col a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    outline: none;
    color: inherit;
    cursor: pointer;
    transition: 0.2s all ease-in;
}
.card-col a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}
/*
.card-col a:hover > img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
*/
.card-col figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 90%);
    transition: 0.2s all ease-in;
}
.card-col figure a:hover figcaption {
    background: linear-gradient(to top, rgb(144 2 2 / 80%) 40%, rgba(0, 0, 0, 0) 90%);
}
.card-col figure figcaption::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    backdrop-filter: blur(40px);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 50%);
    transition: 0.2s all ease-in;
}
.card-col figure figcaption .caption-content {
    z-index: 2;
}
.card-col figure figcaption h2 {
    font-size: 110%;
    line-height: 120%;
    font-weight: 600;
    margin: 0 0 0px 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
}
.footer-wrapper {
    background-color: #d40606;
    padding: 30px 0px;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}
.footer-wrapper p {
    margin: 0;
    padding: 0;
    font-size: 90%;
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}