* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.tc-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50vh;
    max-height: 50vh;
    z-index: -99;
    object-fit: cover;
}

.tc-top-wrapper {
    position: relative;
    top: 0;
    left: 0;
    height: 50vh;
}

.tc-top-video-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50vh;
    align-items: center;
    justify-content: space-evenly;
}

.tc-top-video-container h1 {
    padding-top: 100px;
    width: 1180px;
    text-shadow: 0 5px 10px var(--text-shadow-color);
    height: 79px;
    font-size: 70px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: white;
}

.tc-top-video-container p {
    text-shadow: 0 5px 10px var(--text-shadow-color);
    width: 656px;
    height: 121px;
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: white;
}

.tc-top-video-container a {
    background-color: var(--storyzy-light-color);
    box-shadow: 0 5px 10px var(--box-shadow-color);
    border-radius: 20px;
    padding: 10px 35px 10px 35px;
    cursor: pointer;
    transition: 0.2s;
}

.tc-top-video-container a:hover {
    background-color: var(--bg-hover-color);
}

.content-wrapper {
    padding: 2rem 0;
    width: 80%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-wrapper * {
    color: var(--storyzy-main-color);
}

.content-wrapper h2 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.content-wrapper .tc-sub-title {
    text-align: center;
    padding-bottom: 1rem;
}

.content-wrapper section h3 {
    font-weight: bold;
    margin-bottom: .7rem;
    text-decoration: underline;
}

.content-wrapper section p {
    font-size: 17px;
    text-align: justify;
    padding-bottom: .5rem;
}

.content-wrapper section .tc-table-container {
    width: 80%;
    margin-inline: auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.content-wrapper section .tc-table-container .tc-table {
    border-collapse: collapse;
    margin: 1rem auto;
}

.content-wrapper section .tc-table-container .tc-table tr :is(td, th) {
    border: 1px solid;
    padding: 0.7rem 5px;
}

.content-wrapper section .tc-table-container .tc-table tr th.width-12 {
    width: 12rem;
}

/* Utils */
.text-start {
    text-align: start !important;
}

.link:hover, .link:focus, .link:active {
    text-decoration: underline;
    color: var(--link-color);
    cursor: pointer;
}

.link {
    text-decoration: none;
    color: var(--link-color);
    cursor: pointer;
}

ul.list-item {
    padding: 1rem 2rem;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

@media screen and (max-width: 1100px) {
    .content-wrapper {
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    .tc-top-video-container h1 {
        width: 100%;
        font-size: 45px;
        margin-top: 50px;
    }

    .tc-top-video-container p {
        font-size: 16px;
        margin-top: 30px;
        width: 100%;
    }

    .content-wrapper section .tc-table-container {
        width: 100%;
    }
}