body {
    background-color: #000;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

img {
    max-width: 100%!important;
}

p {
    color: #fff;
}

.grid_container {
    position: relative;
    max-height: 100%;
    overflow: hidden;
}

.grid_system {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    z-index: 0;
}

.column {
    min-width: 5%;
    /* max-width: 50px; */
    min-height: 50px;
    /* max-height: 50px; */
    border: 0.5px solid hsla(240deg, 5%, 67%, .075);
    /* background-color: white; */
    /* border-top: red 2px solid;
    border-bottom: red 2px solid; */
    transition: 200ms;
}

.grid_system .column:hover {
    animation: borderAnimationBottom;
    animation-duration: 12500ms;
    animation-iteration-count: infinite;
}

.grid_system_horizontal .column:hover {
    animation: borderAnimationLeft;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
}

.grid_system_horizontal {
    position: absolute;
    top: 0px;
    /* background-color: red; */
    left: 0;
    max-height: 100vh;
    width: 100%;
    z-index: 1;
}

.body_content {
    position: absolute;
    z-index: 2;
    width: 80%;
    margin: auto;
    top: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    /* background-color: blue; */
}

.menu {
    width: 100%;
    position: sticky;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    /* background-color: red; */
    max-width: 90%;
    position: fixed;
    /* margin-top: 10px; */
    backdrop-filter: blur(4px);
    padding-top: 10px;
    z-index: 10;
    /* overflow: scroll; */
    left: 0;
    right: 0;
    margin: auto;
}

.menu_container:nth-child(2) {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}

.menu_container:nth-child(3) {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: right;
}

.menu_container:first svg {
    margin-left: -10px;
}

.menu_container:first {
    display: flex;
    align-items: center;
    text-align: left;
}


/* animations */

@keyframes borderAnimationLeft {
    0% {
        border-left: rgba(70, 62, 152, 0.89) 0.5px solid;
        box-shadow: 5px 0px 0px 0px #141414;
    }
    25% {
        border-left: rgba(70, 62, 152, 0.89) 1px solid;
        box-shadow: 10px 0px 0px 0px #141414;
    }
    50% {
        border-left: rgba(70, 62, 152, 0.89) 1.5px solid;
        box-shadow: 15px 0px 0px 0px #141414;
    }
    100% {
        border-left: rgba(70, 62, 152, 0.89) 2px solid;
        box-shadow: 10px 0px 0px 0px #141414;
    }
}

@keyframes borderAnimationBottom {
    0% {
        border-left: rgba(70, 62, 152, 0.89) 1px solid;
        box-shadow: 0px 5px 0px 0px #141414;
    }
    25% {
        border-left: rgba(70, 62, 152, 0.89) 1px solid;
        box-shadow: 0px 5px 0px 0px #141414;
    }
    50% {
        border-left: rgba(70, 62, 152, 0.89) 1.5px solid;
        box-shadow: 0px 5px 0px 0px #141414;
    }
    100% {
        border-left: rgba(70, 62, 152, 0.89) 2px solid;
        box-shadow: 0px 5px 0px 0px #141414;
    }
}

.btn {
    background-color: #4f81ff;
    font-size: 16px;
    border-radius: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    padding: 8px 20px;
}

.body _menu {
    min-height: 50vh;
    width: 100%;
}

.body_menu::before {
    content: "";
    width: 100%;
    height: 1000px;
    top: -10vh;
    position: absolute;
    z-index: -1;
    max-width: 1500px;
    background: radial-gradient(50% 50% at 50% 50%, hsla(245deg, 42%, 42%, .89) 20%, rgba(0, 0, 0, 0) 110%);
    /* opacity: 0.9; */
}

.box {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

.box .hero_title {
    font-weight: bold;
    font-size: 3rem;
    line-height: 110%;
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
}

.p_text {
    font-size: 18px;
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
}

.btn_2 {
    border-radius: 28px;
    font-weight: 500;
    background: #4f81ff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
}

.content_sliding {
    position: relative;
    margin-top: 400px;
    z-index: 0;
}

.text_slidng {
    width: auto;
    width: 192%;
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    animation: TextAnimation 10s infinite;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.slide_text {
    font-size: 100px;
    color: #fff;
    font-family: 'Albert Sans', sans-serif;
    font-weight: lighter;
    width: 24%;
}

.container_slide {
    width: 100%;
    overflow: hidden;
}

@keyframes TextAnimation {
    0% {
        position: relative;
        left: 0%;
    }
    12.5% {
        position: relative;
        left: -12.5%;
    }
    25% {
        position: relative;
        left: -25%;
    }
    37.5% {
        position: relative;
        left: -37.5%;
    }
    50% {
        position: relative;
        left: -50%;
    }
    62.5% {
        position: relative;
        left: -37.5%;
    }
    75% {
        position: relative;
        left: -25%;
    }
    100% {
        position: relative;
        left: 0%;
        /* left: 12.5%; */
    }
    /* from {
        position: relative;
        left: 12.5%;
    }
    to {
        position: relative;
        left: 100%;
    } */
}


/* new */

.m-scroll {
    display: flex;
    position: relative;
    width: 100%;
    height: 300px;
    margin: auto;
    /* background-color: #D34444; */
    overflow: hidden;
    z-index: 1;
    background-color: #000;
}

.m-scroll__title {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    /* transform: scale(1); */
    transition: all 1s ease;
}

.m-scroll__title>div {
    display: flex;
    animation: scrollText 33s infinite linear;
}

.m-scroll__title h1 {
    margin: 0;
    font-size: 140px;
    color: #ffffff;
    transition: all 2s ease;
    font-family: 'Albert Sans', sans-serif;
}

.m-scroll__title a {
    text-decoration: none;
    color: white;
    font-family: 'Albert Sans', sans-serif;
}

.m-scroll__title a:hover {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}