.main {
    width: 85%;
    max-width: 1400px;
    height: max-content;
    margin: auto;
}

.main h1,
h2,
h3,
p,
li {
    color: white;
    text-align: left;
}

.main .slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.main .slider .slider-text {
    position: relative;
    width: 100%;
    height: 100%;
}

.main .slider .slider-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background-color: black;
    filter: blur(3.5pc);
}

.main .slider .slider-text video {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1.5);
    opacity: .8;
    background-color: transparent !important;
}

.main .ct {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1pc 2pc;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    border-bottom: 1px solid #373737;
    margin-bottom: 1pc;
}

.main .ct.show {
    opacity: 1;
    visibility: visible;
}

.main .ct .last-modified {
    position: absolute;
    top: 0;
    left: 2pc;
}

.main .ct .last-modified p {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: .7rem;
    opacity: .7;
}

.main .ct .name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5pc 0;
    overflow: hidden;
}

.main .ct .name h1 {
    position: relative;
    font-family: "NeueMontreal", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .1pc;
}

.main .ct .name .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
    transition: .4s ease;
}

.main .ct.active .name .icon {
    transform: rotate(225deg);
}

.main .ct .name .icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.main .ct .name .add-icon {
    --add-icon-width: 100%;
    --add-icon-thickness: 2px;
    --add-icon-radius: .4px;
}

.main .ct .name .add-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--add-icon-width);
    height: var(--add-icon-thickness);
    border-radius: var(--add-icon-radius);
    background-color: white;
}

.main .ct .name .add-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: var(--add-icon-width);
    height: var(--add-icon-thickness);
    border-radius: var(--add-icon-radius);
    background-color: white;
}

.main .ct .text {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 1pc;
    transition: .4s ease;
    overflow: hidden;
    width: 100%;
}

.main .ct.active .text {
    grid-template-rows: 1fr;
    padding: 0pc 1pc 1pc 1pc;
}

.main .ct .text ol {
    overflow: hidden;
    padding-left: 2.5pc;
    margin-bottom: .5pc;
}

.main .ct .text ol li {
    list-style: decimal;
}

.main .ct .text ol li::marker {
    font-family: "NeueMontreal", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.main .ct .text ol li .sub-name {
    margin-bottom: .5pc;
}

.main .ct .text ol li .sub-name h2 {
    font-family: "NeueMontreal", sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .1pc;
    margin-bottom: .2pc;
}

.main .ct .text ol li .sub-sub li {
    list-style: lower-latin;
    margin-bottom: .5pc;
}

.main .ct .text ol li ol li {
    list-style: disc;
}

.main .ct .text ol li ol li ol li,
.main .ct .text ol li .sub-sub li ol li {
    list-style: disc;
}

.main .ct .text ol li ol li::marker {
    font-size: 1.1rem;
}

.main .ct .text ol li ol li .sub-name h2 {
    font-size: 1rem;
}

.main .ct .text p,
.main .ct .text li {
    font-family: "Quicksand", sans-serif;
    font-size: .9rem;
    font-weight: 400;
}

.main .ct .text a {
    font-weight: bold;
    text-decoration: none;
    color: var(--pink);
}

.main .ct .text p {
    display: inline;
    overflow: hidden;
}