* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;

}

body {
    width: 100%;
    height: auto;
    position: relative; 
    background: conic-gradient(from 45deg at 50% 50%, rgb(0, 2, 15), rgb(0, 12, 74), rgb(0, 2, 15), rgb(0, 12, 74), rgb(0, 2, 15));
}

.navbar {
    height: 80px;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 25px;
    z-index: 999;
    margin: auto;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 64px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border-width: 2px 3px 2px 3px;
    border-style: solid;
    border-color: rgba(49, 61, 148, 0.3);
}

#navbar__logo {
    background-color: #0040ff;
    background-image: linear-gradient(to top, #00b7ff, #002eba);

    background-size: 100%;
    z-index: 999;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 550;
    padding-left: 25px;
    transition: all 0.5s ease;
}

.navbar__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    text-align: center;
    padding-right: 1.5rem;
}

.navbar__item {
    height: 80px;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0, 1rem;
    font-weight: 450;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1001;
    padding: 10px 20px;
    height: 85%;
    width: 85%;
    border: none;
    outline: none;
    border-radius: 12px;
    background: #0040ff;
    color: #fff;
    transition: all 0.5s ease;
}

.button:hover {
    background: #37acff;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.button::after {
    content: '';
    position: absolute;
    background: #37acff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.button:hover::after {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.navbar__links:hover {
    color: #37acff;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.navbar__links {
    color: #fff;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1.15rem;
    height: 100%;
    transition: all 0.3s ease;
    z-index: 1;
}

.navbar__links::after {
    content: '';
    position: absolute;
    background: #37acff;
    top: 50%;
    translate: 0% -50%;
    left: 0;
    width: 100%;
    height: 75%;
    border-radius: 48px;
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.navbar__links:hover::after {
    opacity: .5;
    transition: opacity 0.5s ease;
}

#navbar__logo:hover {
    transition: all 0.5s ease;
}

@media screen and (max-width: 1000px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        position: absolute;
        
        opacity: 0;
        z-index: 99;
    }

    .navbar__menu.active {
        margin-top: 25px;
        border-radius: 48px;
        opacity: 1;

        margin-top: 100px;
        width: 100%;
        height: auto;

        z-index: 99;
        font-size: 1.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
               
        background: rgb(0, 1, 10);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 1);

        border: 1px solid rgba(49, 61, 148, 0.3);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    #navbar__logo {
        font-size: 1rem;
        padding-left: 12px;
    }

    #navbar__logo img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        margin-left: 0px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding-top: 2rem;
        width: 100%;
        display: table;
        z-index: 998;
    }

    .navbar__links::after {
        content: '';
        position: absolute;
        background: #37acff;
        top: 50%;
        translate: 62.5% -40%;
        left: 0;
        width: 45%;
        height: 75%;
        border-radius: 48px;
        filter: blur(10px);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .navbar__links:hover::after {
        opacity: .5;
        transition: opacity 0.5s ease;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 75%;
        height: 15%;
        margin: 0 auto;
        margin-top: 25px;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}





.main {
    margin-top: -80px;
    background-color: rgba(0, 2, 15, 0);
    position: relative;
    z-index: 0;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    background-color: rgba(0, 2, 15, 0);
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    overflow: hidden;
}

.main__content h1 {
    margin-top: 150px;
    font-size: 4rem;
    background-color: #b721ff;
    background-image: linear-gradient(to top, #b721ff, #21d4fd);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    margin-top: 15px;
    font-size: 2.5rem;
    background-color: #b721ff;
    background-image: linear-gradient(to bottom, #b721ff, #21d4fd);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {
    margin-top: 150px;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d5d5d5;
}

#p2 {
    margin-top: .15rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #d5d5d5;
}

.main__btn {
    font-size: 1.25rem;
    background-color: #0040ff;
    padding: 14px 32px;
    margin-bottom: 24px;
    border: none;
    border-radius: 12px;
    color: #0040ff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
    outline: none;
}

.main__btn:hover {
    background-color: #37acff;
    color: #37acff;
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:hover {
    color: #fff;
}

.main__btn::after {
    content: '';
    position: absolute;
    background: #37acff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main__btn:hover::after {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main__img--container {
    margin-top: 100px;
    position: relative;
    text-align: center;
    max-width: 85%;
    display: block;
    overflow: hidden;
}

#main__img {
    max-width: 75%;
    height: auto;
    position: relative;
    z-index: 1;
    max-height: 75%;
    display: block;
    margin: 0 auto;
    filter: contrast(1.05) saturate(1.1);
}

.main__img--container {
    position: relative;
    text-align: center;
    max-width: 85%;
    display: block;
    overflow: hidden;
    margin-top: 100px;
}

.main__img--container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('Images/pic1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(1rem) brightness(.95);
    z-index: 0;
    pointer-events: none;
}

#main__img {
    position: relative;
    z-index: 1;
    max-width: 75%;
    height: auto;
    max-height: 75%;
    display: block;
    margin: 0 auto;
    filter: contrast(1.05) saturate(1.1) brightness(.9);
}

.iframe__container {
    position: relative;
    text-align: right;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    background-color: transparent;
    margin-top: 100px;
}

#main__iframe {
    width: 95%;
    aspect-ratio: 9/5.5;
    border-radius: 24px;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    border: none;
}

@media screen and (max-width: 768px) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: auto;
        padding: 0 20px;
        margin-top: -80px;
    }

    .main__content h1 {
        font-size: 3rem;
        margin-top: 5rem;
    }

    .main__container h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
        font-size: 1rem;
    }

    .iframe__container {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .main__content h1 {
        font-size: 2rem;
        margin-top: 8.5rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }

    .main__img--container {
        margin-top: 2rem;
    }
}



.more {
    background-color: rgba(0, 2, 15, 0);
    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding-top: 100px;
}

.more__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    z-index: 1;
    width: 75%;
    max-width: 1300px;
    margin: 0 auto;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 42px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(49, 61, 148, 0.3);
}

.more__container h1 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    background-color: #0040ff;
    background-image: linear-gradient(to top, #00b7ff, #54009e);

    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 550;
    transition: all 0.5s ease;
}

.more__container p {
    padding: 0 25px;
    margin-bottom: 25px;
    font-size: 1.25rem;
    text-indent: 3rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
}

.located__container {
    height: auto;
    width: 150px;
    align-items: center;
    margin-bottom: 25px;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(49, 61, 148, 0.3);
}

.located__container h2 {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.located__container p {
    text-indent: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}



.services {
    background-color: rgba(0, 2, 15, 0);
    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100vh;
    padding-bottom: 5rem;
}

.services h1 {
    background-color: #0040ff;
    background-image: linear-gradient(to top, #0026ff, #28009e, #000a56);
    background-size: 100%;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 5rem;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.code__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    z-index: 1;
    width: 75%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 5rem;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 42px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(49, 61, 148, 0.3);
}

.code__description h1 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    background-color: #002eba;
    background-image: linear-gradient(to top, #00b7ff, #0056c6);

    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.code__description h2 {
    font-size: 1.5rem;
    background-color: #00b7ff;
    background-image: linear-gradient(to bottom, #00b7ff, #0162e0);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.code__description p {
    margin: 0 45px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

#gun-code-img {
    width: 75%;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
}

.services__card {
    margin: 1rem;
    height: 450px;
    width: 375px;
    border-radius: 48px;
    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 42px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(49, 61, 148, 0.3);
    transition: all 0.5s ease;
}

.services__card h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 1.5rem;
    text-align: center;

    background-color: #3900b5;
    background-image: linear-gradient(to top, #3900b5, #0080ff);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__card p {
    font-size: 1rem;
    color: #fff;
    margin-top: 1.5rem;
    text-align: center;
}

.services__card iframe {
    position: relative;
    width: 85%;
    height: 45%;
    translate: 8.5% 0%;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: none;
}

.services__card button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1001;
    padding: 25px 20px;
    margin-top: 0;
    translate: 50% 25%;
    font-size: 1.25rem;
    font-weight: 500;
    height: 10%;
    width: 50%;
    border: none;
    outline: none;
    border-radius: 12px;
    background: #0040ff;
    color: #fff;
    transition: all 0.5s ease;
}

.services__card button:hover {
    background: #37acff;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.services__card button::after {
    content: '';
    position: absolute;
    background: #37acff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services__card button:hover::after {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.services__card:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.services__card::after {
    content: '';
    position: absolute;
    background: #0a007b;
    top: 50%;
    translate: 0% -50%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 48px;
    filter: blur(25px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services__card:hover::after {
    opacity: .25;
    transition: opacity 0.5s ease;
}

.pricing {
    margin-top: -80px;
    background-color: rgba(0, 2, 15, 0);
    position: relative;
    z-index: 0;
}

.pricing {
    background-color: rgba(0, 2, 15, 0);
    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 5rem;
}

.pricing__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    z-index: 1;
    width: 75%;
    max-width: 1300px;
    margin: 0 auto;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 42px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(49, 61, 148, 0.3);
}

.pricing__container h1 {
    margin-top: 1.5rem;
    margin-bottom: 20px;
    font-size: 2rem;
    background-color: #0040ff;
    background-image: linear-gradient(to top, #00b7ff, #54009e);

    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 550;
    transition: all 0.5s ease;
}

.pricing__container p {
    padding: 0 25px;
    padding-bottom: 35px;
    font-size: 1.25rem;
    text-indent: 3rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
}

.contact__background {
    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    opacity: 0;
    position: fixed;
    z-index: -100;
    visibility: visible;
    display: flex;
    top: 0;
    left: auto;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
}

.contact {
    background-color: rgba(0, 2, 15, 0);
    position: fixed;
    z-index: 0;
    visibility: hidden;
    display: flex;
    height: auto;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(.1);
    transition: all 0.5s ease;
}

.open-contact {
    visibility: visible;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.open-contact-background {
    opacity: 1;
    z-index: 998;
}

.contact__container {    
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 75%;
    max-width: 500px;
    height: auto;
    border-radius: 48px;
    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-radius: 42px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(49, 61, 148, 0.3);
    left: 50%;
    transform: translate(-50%);
}

.contact__container h1 {
    margin-top: 1rem;
    font-size: 2rem;
    background-color: #0040ff;
    background-image: linear-gradient(to top, #00b7ff, #54009e);

    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 550;
    transition: all 0.5s ease;
}

.contact__container p {
    padding-top: 1rem;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.25rem;
    text-indent: 3rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
}

.contact__toggle {
    position: absolute;
    width: auto;
    height: auto;
    top: 20px;
    right: 25px;
    z-index: 1000;
}

.contact__toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.contact__toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.contact__toggle .bar:nth-child(2) {
    opacity: 0;
}

.contact__toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.profile__picture {
    margin-top: 24px;
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
}

.profile__picture img {
    width: 50%;
    height: auto;
    border-radius: 100%;
}

.contact__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 5%;
    margin-bottom: 12px;
}

.contact__icons a img {
    height: 50px;
    width: 50px;
}










.bottom__bar--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: auto;
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 2rem;
    list-style: none;

    background: hsl(0, 0%, 7%);
    background: rgba(28, 35, 84, 0.2);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border-width: 2px 0px 0px 0px;
    border-style: solid;
    border-color: rgba(49, 61, 148, 0.3);
}

.bottom__bar--container h1 {
    font-size: 1rem;
    color: #fff;
    margin-top: .25rem;
    font-weight: 500;
    text-align: center;
}

.bottom__bar--container p1 {
    font-size: 1rem;
    color: #fff;
    margin-top: .25rem;
    font-weight: 500;
    text-align: center;
}

.bottom__bar--container p2 {
    font-size: 1rem;
    color: #fff;
    margin-top: .25rem;
    font-weight: 500;
    text-align: center;
}




.hidden {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(5px);
    transition: .5s ease;
}

.show {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
    transition: .5s ease;
}

@media(prefers-reduced-motion) {
    .hidden,
    .show {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0px);
    }
}