:root {
    --premary_width: 1220px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.display {
    display: flex;
    justify-content: space-between;
}

.line_later {
    line-height: 22px;
    letter-spacing: 1px;
}

.search,
.menu,
.close__search {
    cursor: pointer;
}

a {
    color: black;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: bold;
    font-style: italic;
    letter-spacing: 1px;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ol,
ul {
    padding-left: 0px;
    list-style-type: none;
}

.Name__title {
    border-bottom: 1px solid #0000004f;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    & span {
        color: #000 !important;
        font-size: 21px;
        border-bottom: 3px solid;
        font-family: 'Tagesschrift' !important;
    }
}

/*  */
.ftf {
    &:before {
        content: '';
        width: 5px;
        height: 5px;
        border: 2px solid #3bc1f2;
        display: inline-block;
        border-radius: 100%;
        margin-right: 3px;
    }
}

.ros__section_title {
    margin-bottom: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #aaaaaa;
    width: fit-content;

    &:before {
        content: '';
        background: #ff000080;
        width: 10px;
        height: 10px;
        box-shadow: 2px -2px 0px #33b734;
        border-radius: 100% 0px 100% 100%;
        transform: rotate(45deg);
        border: 1px solid red;
        margin-right: 5px;
    }
}

/*  */
section#generalContent {
    width: 100%;
    display: flex;
    justify-content: center;
}



/*  */
.viewPort {
    transform: translateY(25px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.TransformScroll {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition: 1s;
}

/*  */
.marg {
    margin: 3rem auto;
}

.Marg_Arc {
    margin: 1rem auto;
}

aside {
    .marg:nth-child(1) {
        margin-top: 0 !important;
    }
}

.marg:last-child {
    margin-bottom: 0 !important;
}

/*  */
ul.anim {
    width: fit-content;
    margin-bottom: 10px;

    & li,
    & a {
        padding: 7px 8px 7px;
        transition: 0.5s;
        border-radius: 50px;
        font-size: 14px;
        /* box-shadow: 5px 0px 19px #0000007d; */

        &:not(:first-child) {
            margin-left: -30px;
        }

        &:hover {
            transform: translateY(-1rem);
            transition: 0.5s;
        }

        &:focus-within~&,
        &:hover~& {
            transform: translateX(30px);
        }
    }
}

/* Traking Button */
& .traking {
    width: fit-content;
    position: absolute;
    right: 1rem;
    top: 1rem;
    gap: 5px;
    z-index: 2;

    & .trak {
        border-radius: 100%;
        padding: 6px 7px 3px;
        cursor: pointer;
        backdrop-filter: blur(15px);
        background: #72727217;
        height: 30px;

        & .trak {
            border-radius: 100%;
            padding: 6px 7px 3px;
            cursor: pointer;
            backdrop-filter: blur(15px);
        }
    }
}

.Pagination {
    gap: 1rem;

    & * {
        color: #000 !important;
    }
}

/*  */
.noPosts {
    font-weight: bold;
    font-size: 18px;
    font-family: "Inria Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;

    & a {
        color: blue;
        text-decoration: underline;
    }
}

/*  */
@media ((min-width: 400px) and (max-width: 576px)) {
    aside {
        border-top: 1px solid #0000004a;
        width: 100% !important;
        padding: 2rem 7px 0;
    }
}


/*  */

.nav__sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: .5s;
}