:root {
    --color-t: #2948ff;
    --color-add: #2948ff;
}

::-webkit-scrollbar {
    display: none;
}

.d {
    display: flex;
}

.d_c {
    display: flex;
    flex-direction: column;
}

.d_r {
    display: flex;
    flex-direction: row;
}

.sc {
    width: 100vw;
    height: 100vh;
}

.mx-sc {
    max-width: 950px;
    min-width: 200px;
    animation-name: b-t;
    animation-duration: 350ms;
}

.mx-sc-post {
    max-width: 750px;
    animation-duration: 450ms;
}

.mx-sc-post-img {
    max-width: 600px;
}

.mx-sc-post-b {
    max-width: 400px;
    min-width: 200px;
    animation-name: b-t;
    animation-duration: 450ms;
}

.mh-post-img {
    max-height: 350px;
}

.bg-t-l {
    background-image: linear-gradient(to top, #396afc, #2948ff);
}

.bg-t1 {
    background-color: var(--color-t);
}

.c-t {
    color: var(--color-t);
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-2-5 {
    flex: 2.5;
}

.flex-3 {
    flex: 3;
}

.flex-3-5 {
    flex: 3.5;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

.flex-5-5 {
    flex: 5.5;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.s-img {
    width: 50px;
    height: 50px;
}

.s-img-add {
    width: 60px;
    height: 60px;
}

.t-0 {
    top: 0;
}

.t-1 {
    top: 0.5rem;
}

.t-2 {
    top: 3rem;
}

.l-0 {
    left: 0;
}

.l-1 {
    left: 1.5rem;
}

.l-2 {
    left: 3rem;
}

.l-3 {
    left: 4.5rem;
}

.r-0 {
    right: 0;
}

.r-1 {
    right: 0.5rem;
}

.r-2 {
    right: 3rem;
}

.b-0 {
    bottom: 0;
}

.b-1 {
    bottom: 0.5rem;
}

.t-0 {
    top: 0;
}

.trand-box {
    height: 130px;
    transition: transform 0.5s ease;
}

.post-animation-z {
    transition: transform 200ms ease;
}

.ay {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 90%;
}

.bg-blur {
    backdrop-filter: blur(2px);
}

.co-btn {
    border: 1px solid var(--color-t);
    background-color: var(--color-t);
    transition: background-color 200ms;
    color: white;
}

.box-s {
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 13%);
    -webkit-box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 13%);
    -moz-box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 13%);
}

svg {
    width: 1em;
    height: 1em;
}

.frame-profile {
    position: absolute;
}

.cover {
    background-size: cover;
}

.animation-card-1 {
    animation-name: animation-card-1;
    animation-duration: 3000ms;
    border-radius: 50%;
    position: absolute;
}

@keyframes animation-card-1 {
    0% {
        transform: scale(0);
        border-radius: 0%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    50% {
        transform: scale(1);
        border-radius: 0%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        border-radius: 50%;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.animation-card-2 {
    animation-name: animation-card-2;
    animation-duration: 3000ms;
}

@keyframes animation-card-2 {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }
    65% {
        opacity: 0;
        transform: translateY(-50%);
    }
    100% {
        top: 24px;
        left: 50%;
    }
}

.animation-card-3 {
    animation-name: animation-card-3;
    animation-duration: 3300ms;
}

@keyframes animation-card-3 {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }
    75% {
        opacity: 0;
        transform: translateY(-50%);
    }
    100% {
        top: 24px;
        left: 50%;
    }
}

.animation-card-4 {
    animation-name: animation-card-4;
    animation-duration: 2950ms;
}

@keyframes animation-card-4 {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    80% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        top: 24px;
        left: 50%;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #000000;
}

input:focus+.slider {
    box-shadow: 0 0 1px #000000;
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.wrapper {
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    transition: all 0.6s ease-in-out;
}

#active:checked~.wrapper {
    /*left: 0;*/
    right: 0;
}

.menu-btn {
    position: relative;
    z-index: 2;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid #000;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
    transform: translateY(-8px);
}

.menu-btn:after {
    transform: translateY(8px);
}

.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.6s;
}


/* closing animation */

#active:checked+.menu-btn span {
    transform: scaleX(0);
}

#active:checked+.menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}

#active:checked+.menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}

.wrapper ul {
    position: absolute;
    top: 60%;
    left: 50%;
    height: 90%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.wrapper ul li {
    height: 10%;
    margin: 15px 0;
}

.wrapper ul li a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    line-height: 50px;
    margin: 5px 30px;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wrapper ul li a:after {
    position: absolute;
    content: "";
    background: #fff;
    /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
    /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s ease;
}

input[type="checkbox"] {
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    width: 100%;
    color: #202020;
}

.content .title {
    font-size: 40px;
    font-weight: 700;
}

.content p {
    font-size: 35px;
    font-weight: 600;
}

#active:checked~.wrapper ul li a {
    opacity: 1;
}

.wrapper ul li a {
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}

#active:checked~.wrapper ul li a {
    transform: none;
    transition-timing-function: ease, cubic-bezier(0.1, 1.3, 0.3, 1);
    transition-delay: 0.6s;
    transform: translateX(-100px);
}

.click-nav {
    border-top: 2px solid black;
}

.click-nav-main {
    color: white !important;
}

.click-nav-main::after {
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    width: 100%;
    height: 52px;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 37%);
    -webkit-box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 37%);
    -moz-box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 37%);
}