@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: black;
    font-family: Montserrat, sans-serif;
}

.glitch.active span:not(:last-child) {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.glitch.active span:nth-child(odd) {
    -webkit-animation-name: slide-from-left;
    animation-name: slide-from-left;
}

.glitch.active span:nth-child(even) {
    -webkit-animation-name: slide-from-right;
    animation-name: slide-from-right;
}

.glitch.active span:last-child {
    -webkit-animation: reveal steps(1) forwards;
    animation: reveal steps(1) forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.glitch span:not(:last-child) {
    --ratio: calc(100% / var(--slice-count));
    --top: calc(var(--ratio) * (var(--i) - 1));
    --bottom: calc(var(--ratio) * (var(--slice-count) - var(--i)));
    position: absolute;
    white-space: nowrap;
    -webkit-clip-path: inset(var(--top) 0 var(--bottom) 0);
    clip-path: inset(var(--top) 0 var(--bottom) 0);
}

.glitch span:last-child {
    opacity: 0;
}

@-webkit-keyframes slide-from-left {
    from {
        transform: translateX(-20%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-from-left {
    from {
        transform: translateX(-20%);
    }

    to {
        transform: translateX(0);
    }
}

@-webkit-keyframes slide-from-right {
    from {
        transform: translateX(20%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-from-right {
    from {
        transform: translateX(20%);
    }

    to {
        transform: translateX(0);
    }
}

@-webkit-keyframes reveal {
    to {
        opacity: 1;
    }
}

@keyframes reveal {
    to {
        opacity: 1;
    }
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    z-index: 200;
}

@media screen and (max-width: 750px) {
    header {
        padding: 0 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 4px;
}

.underline-menu {
    position: fixed;
    top: 27%;
    right: 5%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    list-style-type: none;
    mix-blend-mode: difference;
}

.underline-menu:hover li:not(:hover) a {
    opacity: 0.5;
}

.underline-menu li {
    position: relative;
}

.underline-menu li::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #34badb;
    transform: scaleY(0);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.underline-menu li:hover::after,
.underline-menu li.active::after {
    transform: scaleY(1);
}

.underline-menu li a {
    position: relative;
    display: flex;
    padding: 20px 10px 20px 10px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(48, 217, 255);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#burger-toggle {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
}

#burger-toggle:checked~.overlay {
    opacity: 1;
    transform: scale(160);
}

#burger-toggle:checked~.burger-nav {
    pointer-events: auto;
}

#burger-toggle:checked~.burger-nav ul li {
    opacity: 1;
    transform: translateX(0);
}

#burger-toggle:checked~main {
    opacity: 0;
    pointer-events: none;
}

#burger-toggle:checked~.burger-menu .line:nth-child(1) {
    transform: translateY(calc(var(--burger-menu-radius) / 5)) rotate(45deg);
}

#burger-toggle:checked~.burger-menu .line:nth-child(2) {
    transform: scaleX(0);
}

#burger-toggle:checked~.burger-menu .line:nth-child(3) {
    transform: translateY(calc(var(--burger-menu-radius) / -5)) rotate(-45deg);
}

.burger-menu {
    --burger-menu-radius: 4em;
    position: fixed;
    top: 25px;
    right: 60px;
    z-index: 100;
    display: none;
    width: var(--burger-menu-radius);
    height: var(--burger-menu-radius);
    background: white;
    border: solid 2px rgba(149, 166, 167, 0.4);
    border-radius: 50%;
    outline: none;
    transition: 0.5s ease-in-out;
}

@media screen and (max-width: 750px) {
    .burger-menu {
        right: 18px;
    }
}

.burger-menu .line {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 3px;
    background: rgba(43, 61, 79, 0.3);
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s ease;
}

.burger-menu .line:nth-child(1) {
    top: 30%;
}

.burger-menu .line:nth-child(2) {
    top: 50%;
}

.burger-menu .line:nth-child(3) {
    top: 70%;
}

.burger-menu .line::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2980b9;
    transform: translateX(-100%);
    transition: all 0.25s ease;
}

.burger-menu .line:nth-child(2)::after {
    transition-delay: 0.1s;
}

.burger-menu .line:nth-child(3)::after {
    transition-delay: 0.2s;
}

.burger-menu:hover {
    box-shadow: 0.4px 0.4px 0.8px rgba(0, 0, 0, 0.042), 1px 1px 2px rgba(0, 0, 0, 0.061), 1.9px 1.9px 3.8px rgba(0, 0, 0, 0.075), 3.4px 3.4px 6.7px rgba(0, 0, 0, 0.089), 6.3px 6.3px 12.5px rgba(0, 0, 0, 0.108), 15px 15px 30px rgba(0, 0, 0, 0.15);
}

.burger-menu:hover .line::after {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    top: 45px;
    right: 80px;
    width: 2em;
    height: 2em;
    background: #1a5780;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s ease-in-out;
    will-change: transform;
}

.burger-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .burger-nav {
        transform: translateY(-8%);
    }
}

.burger-nav ul {
    position: fixed;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
}

.burger-nav ul li {
    padding: 6px 0;
    margin: 1em 3em;
    opacity: 0;
    transition: 0.6s cubic-bezier(0.365, 0.84, 0.44, 1);
}

.burger-nav ul li:nth-child(odd) {
    transform: translateX(-100%);
}

.burger-nav ul li:nth-child(even) {
    transform: translateX(100%);
}

.burger-nav ul li:nth-child(1) {
    transition-delay: 0.05s;
}

.burger-nav ul li:nth-child(2) {
    transition-delay: 0.1s;
}

.burger-nav ul li:nth-child(3) {
    transition-delay: 0.15s;
}

.burger-nav ul li:nth-child(4) {
    transition-delay: 0.2s;
}

.burger-nav ul li:nth-child(5) {
    transition-delay: 0.25s;
}

.burger-nav ul li a {
    position: relative;
    display: block;
    padding: 5px;
    font-size: 2em;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    transition: 0.5s;
}

.burger-nav ul li a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #ff4281;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

@media screen and (max-width: 750px) {
    .burger-nav ul li a::after {
        transition: none;
    }
}

.burger-nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media screen and (max-width: 750px) {
    .burger-nav ul li a:hover::after {
        transform: scaleX(0);
    }
}

@media screen and (max-width: 750px) {
    .underline-menu {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .logo {
        padding-top: 20px;
    }
}

.btn {
    --hue: 200;
    position: relative;
    padding: 1rem 1.5rem;
    margin-top: 40px;
    font-size: 0.8rem;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    background-color: hsl(var(--hue), 70%, 53%);
    border: 1px solid hsl(var(--hue), 70%, 53%);
    outline: transparent;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-large {
    font-size: 2.8rem;
}

@media screen and (max-width: 750px) {
    .btn {
        margin-top: 20px;
        /* font-size: 0.7rem; */
    }
}

.btn:hover {
    background: hsl(var(--hue), 70%, 43%);
}

.btn-ghost {
    color: hsl(var(--hue), 70%, 53%);
    background-color: transparent;
    border-color: hsl(var(--hue), 70%, 53%);
}

.btn-ghost:hover {
    color: rgb(0, 223, 252);
    background: hsl(var(--hue), 70%, 53%);
}

.btn-through {
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-through::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--hue), 70%, 53%);
    transform: scaleX(0);
    transform-origin: right;
    mix-blend-mode: color-dodge;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-through:hover {
    color: rgb(0, 207, 248);
    background: transparent;
}

.btn-through:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cursor,
.cursor-border {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    will-change: transform;
    transition: 0.3s;
}

.cursor {
    background: #349bdb;
}

.cursor-border {
    padding: 2rem;
    border: 0.1rem solid #347fdb;
}

.cursor-border.on-focus {
    padding: 0.5rem;
    background: rgba(51, 115, 219, 0.5);
    border-color: transparent;
}

.cross-bar-glitch {
    position: relative;
}

.cross-bar-glitch.active .bars .bar {
    -webkit-animation: 0.6s cubic-bezier(0.4, 0.2, 0.175, 1) forwards;
    animation: 0.6s cubic-bezier(0.4, 0.2, 0.175, 1) forwards;
}

.cross-bar-glitch.active .bars .bar:nth-child(odd) {
    -webkit-animation-name: slide-left;
    animation-name: slide-left;
}

.cross-bar-glitch.active .bars .bar:nth-child(even) {
    -webkit-animation-name: slide-right;
    animation-name: slide-right;
}

.cross-bar-glitch.active .glitch {
    -webkit-animation: reveal forwards 0.3s;
    animation: reveal forwards 0.3s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.cross-bar-glitch.active .glitch span:not(:last-child) {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.cross-bar-glitch.active .glitch span:nth-child(odd) {
    -webkit-animation-name: slide-from-left;
    animation-name: slide-from-left;
}

.cross-bar-glitch.active .glitch span:nth-child(even) {
    -webkit-animation-name: slide-from-right;
    animation-name: slide-from-right;
}

.cross-bar-glitch.active .glitch span:last-child {
    -webkit-animation: reveal steps(1) forwards;
    animation: reveal steps(1) forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.cross-bar-glitch .bars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cross-bar-glitch .bars .bar {
    width: 100%;
    flex: 1;
    background: currentColor;
    border-radius: 50px;
}

.cross-bar-glitch .bars .bar:nth-child(odd) {
    transform: translateX(100%);
}

.cross-bar-glitch .bars .bar:nth-child(even) {
    transform: translateX(-100%);
}

.cross-bar-glitch .bars .bar:nth-child(1) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.cross-bar-glitch .bars .bar:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.cross-bar-glitch .bars .bar:nth-child(3) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.cross-bar-glitch .bars .bar:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.cross-bar-glitch .bars .bar:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.cross-bar-glitch .glitch {
    opacity: 0;
}

.cross-bar-glitch .glitch span:not(:last-child) {
    --ratio: calc(100% / var(--slice-count));
    --top: calc(var(--ratio) * (var(--i) - 1));
    --bottom: calc(var(--ratio) * (var(--slice-count) - var(--i)));
    position: absolute;
    color: currentColor;
    white-space: nowrap;
    -webkit-clip-path: inset(var(--top) 0 var(--bottom) 0);
    clip-path: inset(var(--top) 0 var(--bottom) 0);
}

.cross-bar-glitch .glitch span:last-child {
    opacity: 0;
}

@keyframes slide-from-left {
    from {
        transform: translateX(-20%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-from-right {
    from {
        transform: translateX(20%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
    }
}

@-webkit-keyframes slide-left {
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-left {
    to {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-right {
    to {
        transform: translateX(100%);
    }
}

@keyframes slide-right {
    to {
        transform: translateX(100%);
    }
}

.staggered-rise-in {
    position: relative;
    display: flex;
    white-space: pre;
    overflow: hidden;
}

.staggered-rise-in span {
    transform: translateY(100%);
}

.staggered-rise-in.active span {
    -webkit-animation: rise-in 1s forwards;
    animation: rise-in 1s forwards;
}

@-webkit-keyframes rise-in {
    to {
        transform: translateY(-12%);
    }
}

@keyframes rise-in {
    to {
        transform: translateY(-12%);
    }
}

.card {
    --card-bg-color: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
    position: relative;
    width: 240px;
    color: white;
}

.card.active .card-borders .border-top {
    -webkit-animation: slide-in-horizontal 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: slide-in-horizontal 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.card.active .card-borders .border-right {
    -webkit-animation: slide-in-vertical 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: slide-in-vertical 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.card.active .card-borders .border-bottom {
    -webkit-animation: slide-in-horizontal-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: slide-in-horizontal-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.card.active .card-borders .border-left {
    -webkit-animation: slide-in-vertical-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: slide-in-vertical-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.card.active .card-content {
    -webkit-animation: bump-in 0.5s 0.8s forwards;
    animation: bump-in 0.5s 0.8s forwards;
}

.card.active .card-content .avatar {
    -webkit-animation: bump-in 0.5s 1s forwards;
    animation: bump-in 0.5s 1s forwards;
}

.card.active .card-content .username {
    -webkit-animation: fill-text-white 1.2s 2s forwards;
    animation: fill-text-white 1.2s 2s forwards;
}

.card.active .card-content .username::before {
    -webkit-animation: slide-in-out 1.2s 1.2s cubic-bezier(0.75, 0, 0, 1) forwards;
    animation: slide-in-out 1.2s 1.2s cubic-bezier(0.75, 0, 0, 1) forwards;
}

.card.active .card-content .info {
    -webkit-animation: fade-up 1.2s 2s forwards;
    animation: fade-up 1.2s 2s forwards;
}

.card .card-borders {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card .card-borders .border-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--card-bg-color);
    transform: translateX(-100%);
}

.card .card-borders .border-right {
    position: absolute;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--card-bg-color);
    transform: translateY(100%);
}

.card .card-borders .border-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--card-bg-color);
    transform: translateX(100%);
}

.card .card-borders .border-left {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--card-bg-color);
    transform: translateY(-100%);
}

.card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 360px;
    padding: 40px 0 40px 0;
    background: var(--card-bg-color);
    box-shadow: 0 0px 0.7px rgba(0, 0, 0, 0.056), 0 0px 1.7px rgba(0, 0, 0, 0.081), 0 0px 3.1px rgba(0, 0, 0, 0.1), 0 0px 5.6px rgba(0, 0, 0, 0.119), 0 0px 10.4px rgba(0, 0, 0, 0.144), 0 0px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.6);
}

.card .card-content .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0.6);
}

.card .card-content .username {
    position: relative;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: transparent;
}

.card .card-content .username::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
}

.card .card-content .info {
    font-size: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(20%);
}

@-webkit-keyframes bump-in {
    50% {
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bump-in {
    50% {
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes slide-in-horizontal {
    50% {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes slide-in-horizontal {
    50% {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slide-in-horizontal-reverse {
    50% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-in-horizontal-reverse {
    50% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-in-vertical {
    50% {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

@keyframes slide-in-vertical {
    50% {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes slide-in-vertical-reverse {
    50% {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

@keyframes slide-in-vertical-reverse {
    50% {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

@-webkit-keyframes slide-in-out {
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50.1% {
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@keyframes slide-in-out {
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50.1% {
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@-webkit-keyframes fill-text-white {
    to {
        color: white;
    }
}

@keyframes fill-text-white {
    to {
        color: white;
    }
}

.marker {
    position: relative;
    --marker-radius: 1em;
    --marker-diameter: calc(var(--marker-radius) * 2);
    --marker-color: #3498db;
}

.marker .pin {
    position: relative;
    z-index: 1;
    width: var(--marker-diameter);
    height: var(--marker-diameter);
    background: var(--marker-color);
    border-radius: 50% 50% 0 50%;
    -webkit-mask: radial-gradient(transparent calc(var(--marker-radius) / 2), black calc(var(--marker-radius) / 2));
    mask: radial-gradient(transparent calc(var(--marker-radius) / 2), black calc(var(--marker-radius) / 2));
    transform: rotate(45deg);
}

.marker .shadow {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--marker-radius);
    height: var(--marker-radius);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(50%, -10%) rotateX(60deg);
}

.marker .shadow::before {
    position: absolute;
    content: "";
    width: var(--marker-diameter);
    height: var(--marker-diameter);
    background: transparent;
    border: 1px solid var(--marker-color);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0);
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
    50% {
        opacity: 1;
    }

    to {
        transform: scale(1.2);
    }
}

@keyframes pulse {
    50% {
        opacity: 1;
    }

    to {
        transform: scale(1.2);
    }
}

.timeline {
    position: relative;
    display: grid;
    gap: 40px;
    padding: 0;
    margin: 0;
    max-width: 600px;
    font-size: 0.75rem;
    line-height: 1;
    color: white;
    list-style-type: none;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
}

.timeline.active {
    -webkit-animation: expand 4s 0.6s forwards linear;
    animation: expand 4s 0.6s forwards linear;
}

@media screen and (max-width: 750px) {
    .timeline {
        -webkit-animation: none;
        animation: none;
        max-width: 60vw;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translateY(2%);
    }

    .timeline.active {
        -webkit-animation: fade-up 1.2s 0.6s forwards;
        animation: fade-up 1.2s 0.6s forwards;
    }
}

.timeline .timeline__line {
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 100%;
    background: white;
}

.timeline .timeline__item .info {
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr;
    align-items: center;
    gap: 0.3rem;
}

.timeline .timeline__item .info h4 {
    margin: 0;
}

.timeline .timeline__item .info a {
    text-decoration: none;
    color: #3498db;
}

.timeline .timeline__item .info .dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: #1a1e23;
    border-radius: 50%;
}

.timeline .timeline__item .info .dot::before {
    position: absolute;
    content: "";
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: #1a1e23;
}

.timeline .timeline__item .info .dot::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border: 4px solid white;
    border-radius: inherit;
}

.timeline .timeline__item .info .time {
    margin-right: 8px;
}

.timeline .timeline__item .content {
    margin: 1rem 0 0 3.9rem;
    line-height: 1.5;
}

@-webkit-keyframes expand {
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes expand {
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20%);
}

.fade-up.active {
    -webkit-animation: fade-up 0.6s forwards;
    animation: fade-up 0.6s forwards;
}

@-webkit-keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.active {
    -webkit-animation: reveal 0.6s forwards;
    animation: reveal 0.6s forwards;
}

main {
    height: 100%;
    color: white;
}

main section h1,
main section h2 {
    margin: 0;
}

main section h1 {
    font-size: 32px;
}

main section h2 {
    font-size: 14px;
}

main section p {
    margin: 0;
}

main .hero-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-image: linear-gradient(rgba(16, 16, 16, 0.8), rgba(16, 16, 16, 0.8)), url('../img/bg2.jpg'); */
    background-position: center;
    background-size: cover;
}

main .hero-section h1 {
    margin-bottom: 8px;
    font-size: 46px;
    text-transform: uppercase;
}

main .hero-section h2 {
    font-size: 24px;
    font-weight: lighter;
}

@media screen and (max-width: 750px) {
    main .hero-section h1 {
        font-size: 30px;
    }

    main .hero-section h2 {
        font-size: 16px;
    }
}

main .normal-section {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 40px;
    padding: 48px 0;
    color: white;
}

main .normal-section#pricing {
    justify-items: normal;
}

main .normal-section .titles {
    display: grid;
    justify-items: center;
    gap: 20px;
    letter-spacing: 0.25em;
}

main .normal-section:nth-child(odd) {
    background: #f6eef5;
    color: black;
}

main .normal-section:nth-child(even) {
    background: #1a1e23;
    color: white;
}

main #about {
    padding: 60px 0;
}

main #about .description {
    display: grid;
    gap: 24px;
    width: 60vw;
}

main #about .description p:nth-child(1) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

main #about .description p:nth-child(2) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

main #about .description p:nth-child(3) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

main #about .description p:nth-child(4) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

main #how {
    padding: 60px 0;
}

main #how .description {
    display: grid;
    gap: 24px;
    width: 60vw;
}

main #how .description p:nth-child(1) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

main #rules {
    padding: 60px 0;
}

main #rules .description {
    display: grid;
    gap: 24px;
    width: 60vw;
}

main #rules .description p:nth-child(1) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

main #pricing .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
    gap: 2rem;
    margin: 0 12.5rem;
    text-align: center;
}

@media screen and (max-width: 750px) {
    main #pricing .pricing-cards {
        margin: 0;
    }
}

main #location .place {
    display: flex;
    align-items: center;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

main #location .place .marker {
    margin: 0 1em 0.5em 0;
}

main #location .place .place-name {
    font-size: 20px;
    font-weight: bold;
}

main #location #map {
    width: 60vw;
    height: 360px;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

main #faq {
    padding: 60px 0;
}

main #faq .description {
    display: grid;
    gap: 24px;
    width: 60vw;
}

main #faq .description p:nth-child(1) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}


/* Inputs and Labels*/

.accordion input[name=panel] {
    display: none;
}

.accordion label {
    position: relative;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1.1em;
    color: #000000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
}

.accordion label:after {
    content: "+";
    position: absolute;
    right: 1em;
    width: 1em;
    height: 1em;
    color: #000000;
    text-align: center;
    opacity: 1;
    transition: opacity 300ms ease;
}

.accordion input:checked+label:after {
    content: "-";
    line-height: 1;
}

.accordion input:checked+label {
    border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}


/* Content */

.accordion .accordion__content {
    overflow: hidden;
    height: 0px;
    position: relative;
    padding: 0 1.5em;
    background: white;
    color: black;
    transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
}

.accordion .accordion__content .accordion__body {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4em;
    padding-top: 0.5em;
}

/* Add Height to Expand */

input[name=panel]:checked~.accordion__content {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}