/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: #8383D2;
    border-radius: 0px;
}

/* GENERAL */
* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    height: 100%;
    overflow-x: hidden;
    background-color: #090914;

    background-image: url('../img/background_pattern.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

a{
    text-decoration: none;
    color: #fff;
}

/* INDEX */
/* NAVBAR */
.navbar{
    display: flex;
    justify-content: center;
    margin: 40px 40px;
}

.navbar__container{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-left: 80px;
}

.navbar__link{
    list-style-type: none;
    margin: 0 25px;
    font-weight: 500;
    color: #a4a4ab;
    transition: .3s;
}

.navbar__link:hover{
    color: white;
    transition: .3s;
}

.navbar__link--active{
    color: white;
}

.navbar__brand{
    width: 90px;
    margin: 0 20px;
}

.navbar__mobile{
    display: none;
}

@media only screen and (max-width: 1100px) {
    .navbar__mobile{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar__mobile__brand{
        width: 74px;
    }
        
    .navbar__container{
        display: none;
    }

    .navbar__nav--active{
        display: block;
        margin-top: 30px;
        position: absolute;
        top: 80px;
        background-color: #151521;
        border-radius: 10px;
        width: 100%;
        padding: 20px 0;
    }

    .navbar{
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 40px 8%;
        position: relative;
    }
    
    .navbar__link{
        margin: 10px 0 12px 30px;
    }
    
    .navbar__brand{
        display: none;
    }

}

/* HEADER */
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin: 170px 40px;
}

.header__container{
    width: 600px;
    text-align: center;
}

.header__title{
    color: white;
    font-size: 60px;
    margin-bottom: 20px;
}

.header__description{
    color: #8B8B92;
    font-weight: normal;
}

.header__status{
    background-color: #151521;
    border-radius: 8px;
    margin: 70px 50px;
}

.status__row {
    padding: 30px;
}

.status__list {
    display: inline-flex;
    flex-direction: row;
    gap: 40px;
    list-style-type: none;
}

.status__name {
    color: #8b8b92;
    font-weight: 500;
}

.status__info {
    display: inline-flex;
    align-items: center;
}

.status__info--success {
    color: #6EFF73;
}

.status__info--offline {
    color: #ff6e6e;
}

.status__info--pending {
    color: #626262;
}

.status__blob {
    width: 10px;
    height: 10px;
    background-color: #6EFF73;
    border-radius: 50px;
    margin-right: 15px;
    animation: animate 3s linear infinite;
}

.status__count {
    color: #e3e3e3;
    font-weight: 600;
}

@keyframes animate{
    0%{
        box-shadow:0 0 0 0 #20332C,0 0 0 0 #20332C;
        transform:scale(.7)
    }
    40%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 0 #20332C;
        transform:scale(.9)
    }
    80%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 15px #ff6d4a00;
        transform:scale(.8)
    }
    100%{
        box-shadow:0 0 0 0 #ff6d4a00,0 0 0 10px #ff6d4a00;
        transform:scale(.7)
    }
}

@keyframes animateDanger{
    0%{
        box-shadow:0 0 0 0 #3d3d3d,0 0 0 0 #3d3d3d;
        transform:scale(.7)
    }
    40%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 0 #3d3d3d;
        transform:scale(.9)
    }
    80%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 15px #ff6d4a00;
        transform:scale(.8)
    }
    100%{
        box-shadow:0 0 0 0 #ff6d4a00,0 0 0 10px #ff6d4a00;
        transform:scale(.7)
    }
}

@keyframes animatePending{
     0%{
        box-shadow:0 0 0 0 #3d3d3d,0 0 0 0 #3d3d3d;
        transform:scale(.7)
    }
    40%{
        box-shadow:0 0 0 15px #62626200,0 0 0 0 #3d3d3d;
        transform:scale(.9)
    }
    80%{
        box-shadow:0 0 0 15px #62626200,0 0 0 15px #62626200;
        transform:scale(.8)
    }
    100%{
        box-shadow:0 0 0 0 #62626200,0 0 0 10px #62626200;
        transform:scale(.7)
    }
}

/* FOOTER */
.footer{
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.content__row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1160px;
    margin: 0 40px;
}

.content__col{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.footer__title{
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.links__header{
    color: #A4A4AB;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.links__row{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.links__col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links{
    color: #fff;
    font-size: 14px;
    transition: .3s;
}

.footer__links:hover{
    color: #A4A4AB;
    transition: .3s;
}


.content__col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.card {
    background-color: #151521;
    border-radius: 8px;
    padding: 95px 85px;
    position: relative;
    margin-bottom: 35px;
    transition: .1s;
}

.card__info {
    width: 400px;
}

.card__title {
    font-size: 42px;
    color: white;
    margin-bottom: -10px;
}
.card__title2 {
    font-size: 24px;
    color: white;
    margin-bottom: -10px;
}

.card__description {
    color: #8b8b92;
}

.card__image--shop {
    position: absolute;
    top: 30px;
    right: 60px;
    max-width: 180px;
}

.card__arrow {
    position: absolute;
    bottom: 40px;
    right: 50px;
    opacity: 0.18;
    transition: .3s;
}

.card__arrow:hover {
    opacity: 0.8;
    transition: .3s;
}