@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: Inter;

    transition-timing-function: ease-out;
    -webkit-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
    user-select: none;
}

a, a:hover { text-decoration: none; cursor: pointer !important; }
a { color: rgba(51, 253, 180, 0.90); }
a:hover { color: #fff; }

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;

    margin: 0px;
    padding: 0px 0px;
    width: 100%;
    height: 100%;
}

body {
    background-color: #060607;
}

nav {
    display: flex; justify-content: space-between; box-sizing: border-box;

    padding-top: 35px; padding-left: 100px; padding-right: 100px;
}

.navLeft { display: flex; gap: 40px; margin-top: 20px; order: 1; }
.navLeft > div {
    cursor: pointer;

    display: flex; gap: 12px;

    color: rgba(255, 255, 255, 0.64);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navLeft > div:hover {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navCenter { display: flex; justify-content: space-between; order: 2; margin-top: 8px; 
    margin-left: 50px;
}
.navCenter > img {
    cursor: pointer;
    content: url('../images/logo_1.png');
    width: 51px; height: 46px;
}

.navCenter > p {
    margin-top: auto; margin-bottom: auto;
    font-size: 30px;
    color: white; display: none;
}

.navRight { display: flex; gap: 24px; order: 3; }
.navRight > div {
    display: inline-flex;
    padding: 20px 22px;
    justify-content: center;
    align-items: center;
    gap: 12px;

    color: #1D2127;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    cursor: pointer;
}

.navRight > div.Add {
    border-radius: 14px;
    background: #33FDB4;
}

.navRight > div.Add:hover {
    border-radius: 14px;
    background: #33FDB4;
    box-shadow: 0 0 48px 0 rgba(255, 255, 255, 0.60), 0 8px 0 0 #FFF;
}

.navRight > div.Register {
    border-radius: 14px;
    background: #FFF;
}

.navRight > div.Register:hover {
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 0 48px 0 rgba(255, 255, 255, 0.60), 0 8px 0 0 #33FDB4;
}

nav > img { margin-top: 8px; }

section#Header {
    width: 100%;
    height: fit-content;
    position: relative;

    background-image: url('../images/fundal.png');
    background-size: cover;
    background-repeat: no-repeat;

    box-sizing: border-box;
}

section#Header > div {
    width: 100%;
    padding-top: 400px; padding-bottom: 100px;
    justify-content: center; align-items: center;
    text-align: center;
}

section#Header > div > p:first-of-type {
    margin-bottom: 0px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 68px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

section#Header > div > p:last-of-type {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    margin-top: 20px;
    margin-bottom: 34px;
}

section#Header > div > div.Btns {
    justify-content: center;
    display: flex; gap: 22px;
}

section#Header > div > div.Btns > div {
    cursor: pointer;

    display: inline-flex;
    padding: 26px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

section#Header > div > div.Btns > div.Now {
    border-radius: 18px;
    border: 2px solid rgba(51, 253, 180, 0.48);
    background: rgba(51, 253, 180, 0.40);
    backdrop-filter: blur(6px);
}

section#Header > div > div.Btns > div.Now:hover {
    color: #171717;

    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.48);
    background: #33FDB4;
    box-shadow: 0 0 60px 0 rgba(51, 253, 180, 0.40);
}

section#Header > div > div.Btns > div.How {
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.40);
    background: rgba(239, 245, 255, 0.18);
    backdrop-filter: blur(6px);
}

section#Header > div > div.Btns > div.How:hover {
    color: #171717;

    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.40);
    background: #EFF5FF;
    box-shadow: 0 0 60px 0 rgba(239, 245, 255, 0.40);
}

section#Header > div > div.Online {
    display: flex; gap: 20px; justify-content: center;
}

div.Online > p {
    color: rgba(255, 255, 255, 0.60);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 4px;
}

.ring-container {
    position: relative;
    width: 30px; height: 30px;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #DB5858;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 23px;
}

.ringring {
    border: 3px solid #DB5858;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: 15px;
    top: 15px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

.Head {
    margin-top: 0px;
    color: #FFF;
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;

    justify-content: center;
    text-align: center;
}

.Desc {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 60px;

    justify-content: center;
    text-align: center;
}

section#WhyUs {
    background: #060607;
    padding-top: 80px; padding-bottom: 80px;
    padding-left: 15%; padding-right: 15%;
    width: 100%;
    box-sizing: border-box;
    height: max-content;
}

.WhyUs_Grid {
    display: grid;
    grid-template-columns: 58% 40%;
    gap: 32px;
}

.WhyUs_Grid > div {
    padding-top: 10px;
    padding-left: 27px; padding-right: 27px;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.WhyUs_Grid > div.Create {
    width: 100%; height: 540px;
    background-image: url('../images/caracter.png');
}

.WhyUs_Grid > div.Vehs {
    width: 100%; height: 540px;
    background-image: url('../images/masina.png');
}

.WhyUs_Grid > div.Sleep {
    grid-column: 1 / -1; /* ocupă tot rândul */
    width: 100%;
    height: 301px;
    background-image: url('../images/oras.png');
}

.WhyUs_Grid > div > p:first-of-type {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.WhyUs_Grid > div > p:last-of-type {
    margin-top: 0px;
    color: rgba(255, 255, 255, 0.75);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.SectionLine {
    width: 100%; height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

section#Stories {
    padding-top: 80px;
    padding-bottom: 80px;
}

section#Stories .H {
    /* width: 919px; */
    width: 75%;
    height: auto;
    min-height: 240px;
    background-image: url('../images/boxsus.png');
    background-size: cover;
    background-repeat: no-repeat;

    padding-top: 10px; padding-bottom: 30px; box-sizing: border-box;
    margin-left: auto; margin-right: auto;
    text-align: center;
}

section#Stories .H p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}

section#Stories .H p:last-of-type {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px;
}

section#Stories .Bg {
    width: 100%;
    height: auto;
    min-height: 453px;

    padding-top: 73px; padding-bottom: 73px; box-sizing: border-box;

    background-image: url('../images/boximagine.png');
    background-size: cover;
    background-repeat: no-repeat;

    justify-content: center;
    align-items: center;
    text-align: center;
}

section#Stories .Bg p:first-of-type {
    margin-top: 0px;
    color: #3BADFF;
    text-shadow: 0 0 80px rgba(0, 0, 0, 0.60);
    font-family: Inter;
    font-size: 86px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 18px;
}

section#Stories .Bg p:nth-child(2) {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

section#Stories .Bg p:last-of-type {
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 42px;
}

section#Stories .Bg .Btns {
    justify-content: center;
    display: flex; gap: 20px;
}

section#Stories .Bg .Btns > div {
    display: inline-flex;
    padding: 20px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 12px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);

    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    cursor: pointer;
}

section#Stories .Bg .Btns > div.Police.active,
section#Stories .Bg .Btns > div.Police:hover {
    border-radius: 12px;
    background: rgba(59, 173, 255, 0.80);
    backdrop-filter: blur(10px);
}

section#Stories .Bg .Btns > div.Doctor.active,
section#Stories .Bg .Btns > div.Doctor:hover {
    border-radius: 12px;
    background: rgba(255, 81, 81, 0.80);
    backdrop-filter: blur(10px);
}

section#Stories .Bg .Btns > div.Business.active,
section#Stories .Bg .Btns > div.Business:hover {
    border-radius: 12px;
    background: rgba(67, 185, 98, 0.80);
    backdrop-filter: blur(10px);
}

section#Stories .Bg .Btns > div.Job.active,
section#Stories .Bg .Btns > div.Job:hover {
    border-radius: 12px;
    background: rgba(255, 131, 7, 0.80);
    backdrop-filter: blur(10px);
}

section#Stories .Bg .Btns > div.Gangster.active,
section#Stories .Bg .Btns > div.Gangster:hover {
    border-radius: 12px;
    background: rgba(189, 136, 255, 0.80);
    backdrop-filter: blur(10px);
}

section#Guide {
    padding-top: 40px; padding-bottom: 80px;

    background-image: url('../images/logogtasifivem.png');
    background-size: contain;
    background-position-y: 75%;
    background-repeat: no-repeat;
}

section#Guide .Grids {
    display: flex; gap: 24px;
    justify-content: center;
    align-items: center;
}

section#Guide .Grids > div {

    width: 35%;
    height: auto;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #101011;

    padding-top: 5px;
    padding-left: 28px; padding-right: 28px;
    padding-bottom: 28px;
}

section#Guide .Grids > div > p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: -5px;
}

section#Guide .Grids > div > p:last-of-type {
    color: rgba(255, 255, 255, 0.75);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 32px;
}

section#Guide .Grids > div > div {
    display: flex;
    width: 100%;
    padding: 22px 40px; box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 12px;
    border: 1.5px solid rgba(51, 253, 180, 0.48);
    background: rgba(51, 253, 180, 0.40);

    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    cursor: pointer;
}

section#Guide .Grids > div > div:hover {
    border-radius: 12px;
    border: 1.5px solid rgba(51, 253, 180, 0.48);
    background: #33FDB4;
    box-shadow: 0 0 60px 0 rgba(51, 253, 180, 0.40);

    color: #171717;
}

section#Socials {
    padding-top: 80px;
    padding-bottom: 80px;
}

section#Socials .Grid {
    justify-content: center;
    margin-top: 60px;
    display: flex; gap: 24px;
}

section#Socials .Grid div {
    cursor: pointer;
    width: 352px;
    height: 118px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

section#Socials .Grid div img {
    width: 280px;
    height: 80px;
    margin: auto;
    vertical-align: middle;
}

/* discord */
section#Socials .Grid div.discord {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(88, 101, 242, 0.18);
}

section#Socials .Grid div.discord img {
    content: url('../images/discord.png');
}

section#Socials .Grid div.discord:hover {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(88, 101, 242, 0.80);
}

/* ytb */
section#Socials .Grid div.youtube {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 59, 59, 0.18);
}

section#Socials .Grid div.youtube img {
    content: url('../images/youtube.png');
}

section#Socials .Grid div.youtube:hover {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 59, 59, 0.80);
}

/* insta */
section#Socials .Grid div.instagram {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(253, 115, 255, 0.18);
}

section#Socials .Grid div.instagram img {
    content: url('../images/instagram.png');
}

section#Socials .Grid div.instagram:hover {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(253, 115, 255, 0.80);
}

/* tiktok */
section#Socials .Grid div.tiktok {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(47, 210, 255, 0.18);
}

section#Socials .Grid div.tiktok img {
    content: url('../images/tiktok.png');
}

section#Socials .Grid div.tiktok:hover {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(47, 210, 255, 0.80);
}

/* tebex */
section#Socials .Grid div.tebex {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(33, 90, 169, 0.18);
}

section#Socials .Grid div.tebex img {
    content: url('../images/tebex.png');
}

section#Socials .Grid div.tebex:hover {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(33, 90, 169, 0.80);
}

section#Faq {
    padding-left: 34px; padding-right: 34px;
}

section#Faq .Body {
    position: relative;

    border-radius: 48px;
    outline: 1px solid rgba(255, 255, 255, 0.10);

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,   /* negru sus */
        rgba(59, 11, 59, 0.5) 40%,  /* mov în centru */
        rgba(46, 46, 146, 0.5) 100%  /* albastru jos */
    );
    

    width: 100%;
    height: auto;

    padding: 60px 60px; box-sizing: border-box;
    border-radius: 48px;
}

section#Faq .RVRP {
    position: absolute; bottom: 7px; left: 50%;
    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.16);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.1px;
}

section#Faq .Grids {
    display: flex; gap: 20px;
}

section#Faq .Grids div {
    margin-top: -20px;

    width: 100%;
    height: auto;
    border-radius: 14px;

    padding-top: 5px; padding-bottom: 5px;
    padding-left: 28px; padding-right: 28px; box-sizing: border-box;

    background: rgba(9, 9, 9, 0.68);
}

section#Faq .Grids div > p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 6px;
}

section#Faq .Grids div > p:last-of-type {
    margin-top: 0px;
    color: rgba(255, 255, 255, 0.75);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section#Faq .Convince {
    margin-top: 28px;

    width: 100%;
    height: auto;
    min-height: 222px;

    padding-top: 30px; padding-bottom: 63px;
    padding-left: 60px; padding-right: 60px;
    box-sizing: border-box;

    display: flex; justify-content: space-between;

    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/image.png');
    border-radius: 16px;
}

section#Faq .Convince > div:first-of-type > p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

section#Faq .Convince > div:first-of-type > p:last-of-type {
    margin-top: 0px;
    color: rgba(255, 255, 255, 0.85);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section#Faq .Convince > div:last-of-type {
    cursor: pointer;

    margin-top: 35px;
    display: inline-flex;
    padding: 26px 28px;
    box-sizing: border-box;
    max-height: 71px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 18px;
    border: 2px solid rgba(253, 51, 115, 0.48);
    background: rgba(253, 51, 115, 0.40);
    backdrop-filter: blur(6px);

    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

section#Faq .Convince > div:last-of-type:hover {
    border-radius: 18px;
    border: 2px solid rgba(253, 51, 115, 0.48);
    background: #BA003B;
    box-shadow: 0 0 60px 0 rgba(255, 54, 118, 0.40);
}

footer {
    margin-top: 80px;
    background: #0B0B0C;

    display: flex; justify-content: center;
    gap: 40px;

    padding-top: 37px;
    padding-bottom: 47px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    width: 100%; height: auto; box-sizing: border-box;
}

footer > div:first-of-type {
    color: rgba(255, 255, 255, 0.40);
    text-align: left;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

footer > div:nth-child(2) {
    width: 1px;
    height: 213px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    margin-right: 40px;
}


footer > div:last-of-type {
    display: flex; gap: 100px;
}

footer > div:last-of-type > div > p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

footer > div:last-of-type > div > p:not(:first-of-type) {
    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.60);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    cursor: pointer;
} 

footer > div:last-of-type > div > p:not(:first-of-type):hover {
    color: rgba(51, 253, 180, 0.90);
}

section#Fields {
    padding-top: 80px;
    padding-left: 10%; padding-right: 10%;
}

section#Fields > div {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0B0B0C;

    width: 100%;
    height: auto;
}

section#Fields > div > div:not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);    
}

section#Fields > div > div {
    padding-left: 28px; padding-right: 28px;
    padding-top: 12px; padding-bottom: 12px;
}

section#Fields > div > div > p:first-of-type {
    color: #FFF;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 7px;
}

section#Fields > div > div > *:not(p:first-of-type) {
    color: rgba(255, 255, 255, 0.80);
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media only screen and (max-width: 1000px) { 
    .navCenter {
        order: 1;
        margin-left: 0px;
    }
    .navCenter > p {display: block;}

    .navLeft { margin-top: 50px; order: 2; display: none; }
    .navRight { order: 3; display: none; }

    nav > div {
        margin-top: 25px;
    }

    nav {
        flex-direction: column;
        padding: 15px 15px;
    }
    nav > div:not(.navCenter) {
        text-align: center;
        margin-left: auto; margin-right: auto;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    section#Header {
        padding: 15px 15px;
    }
    section#Header > div > p:first-of-type {
        font-size: 35px;
    }

    section#Header > div {
        padding-top: 0px !important;
    }

    section#Header > div > div.Btns {
        flex-direction: column;
    }

    .WhyUs_Grid {
        display: flex; gap: 15px;
        flex-direction: column;
    }

    .WhyUs_Grid > div:first-of-type {
        background-position: 20%;
    }

    section#Stories .H { width: 100%; }
    section#Stories .Bg {
        background-position: center;
    }

    section#Stories .Bg .Btns {
        margin-left: auto; margin-right: auto;
        width: 50%;
        flex-direction: column;
    }

    section#Stories .Bg p:last-of-type {
        padding-left: 15px; padding-right: 15px;
    }

    section#Guide {
        padding: 15px 15px;
    }

    section#Guide .Grids,
    section#Socials .Grid,
    section#Faq .Grids,
    section#Faq .Convince { flex-direction: column; }
    section#Guide .Grids > div { width: 85%; }

    section#Socials {
        padding-left: 15px; padding-right: 15px;
    }

    section#Socials .Grid {
        justify-content: center;
        align-items: center;
    }

    section#Faq .Body {
        padding: 45px 15px;
    }

    footer, footer * {
        flex-direction: column-reverse;
        padding-left: 15px;
    }

    footer > div:nth-child(2) {
        display: none;
    }

    footer > div:last-of-type {
        gap: 30px;
    }
}

#loader {
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #060607;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.loader div {
    position: absolute;
    border: 4px solid;
    border-radius: 50%;
    opacity: 1;
    width: 100%;
    height: 100%;
    animation: ripple 1s cubic-bezier(0,0.2,0.8,1) infinite;
    box-sizing: content-box;
}

.loader div:nth-child(1) {
    border-color: #ffffff;
    animation-delay: 0s;
}

.loader div:nth-child(2) {
    border-color: #33fdb4;
    animation-delay: -0.5s;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
    border-radius: 100px;
}
  
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}
  
::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 100px;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #33FDB4;
}

