html {
    scroll-behavior: smooth;
    user-select: none;
}

body {
    margin: 16px;
}

::selection {
    background: #263238;
    color: #ffffff;
}

.intro-block {
    /* padding: 100px 0; */
    height: 500px;
    z-index: 0;

    pointer-events: none;
}

h1.title {
    font-family: "Poppins Bold", sans-serif;
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.2s, opacity 0.5s;
}

h1.subtitle {
    font-family: "Poppins Bold", sans-serif;
    padding: 64px 0px 48px 0px;
    /* position: fixed; */
    /* top: 200px; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* opacity: 1; */
    /* transition: transform 0.2s, opacity 0.5s; */
}

.click-me-img {
    position: fixed;
    top: 420px;
    height: 100px;
}

.no-spacing .col, .no-spacing .row {
    margin: 0;
    padding: 0;

    transition: height 0.55s ease;
}

.block-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    /* border-radius: 54px; */
    /* margin: 16px; */

    transition: padding-top 0.5s ease;
}

.half-height {
    padding-top: 50%;
}

.block-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: calc(100% - 4px * 2);
    height: calc(100% - 4px * 2);
    border-radius: 54px;
    background-color: black;
    margin: 4px;
    transition: transform .2s;

    background-color: #eceff1;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* pointer-events: none; */
}

.block-content-reactive:hover {
    transform: scale(1.02);
}

.block-expandable {
    cursor: pointer;
}

.block-background-blur {
    background-color: rgba(38, 50, 56, .25);  

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    width: 100%;
    height: 100%;
    border-radius: 54px;
}

.block-title {
    font-family: "Poppins ExtraBold", sans-serif;
    /* margin: 0 0 32px 0; */
    margin: 0;
}

.block-subtitle {
    font-family: "Poppins Medium", sans-serif;
}

.block-description {
    font-family: "Poppins Medium", sans-serif;
    font-size: 1rem;
    line-height: 1.0;
    /* margin: 36px 48px 0 48px; */
    margin: 0 48px;
    padding-bottom: 72px;

    opacity: 0;

    transition: opacity 0.25s;
}

.block-description-date {
    font-size: 0.85rem;
    font-family: "Poppins MediumItalic", sans-serif;
    padding-left: 8px;
}

.block-chip {
    font-family: "Poppins Medium", sans-serif;
    font-size: 12px;
    padding: 10px 28px;
    margin: 4px 2px;
    width: fit-content;
    border-radius: calc(12px + 10px);
    /* float:right; */
    background-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.block-chip.black {
    background-color: #37474f !important;
}

.block-chip.white {
    background-color: #fafafa !important;
    color: #263238 !important;
}

.flow-text {
    font-family: "Poppins Medium", sans-serif !important;
}

.clickable-text {
    cursor: pointer;
    white-space: nowrap;
    z-index: 1;
}

.clickable-text:hover {
    text-decoration: underline;
}

.footer-text {
    font-family: "Poppins Medium", sans-serif;
}

@media screen and (max-width: 600px) {
    .half-height {
        padding-top: 100%;
    }

    .no-spacing .container {
        margin: 0;
        width: 100%;
    }

    .block-description {
        margin: 0 36px;
        padding-bottom: 48px;
    }
}