* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    position: relative; 
    background-image: url(../assets/images/bg-about.svg);
    max-width: 100%;
}

.error-screen-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;     
    width: 100%;
    height: 95vh;
}
.header-404-svg{
    width: 50.677vw;
    height: 25.9896vw;
    position: absolute;
    top: 20%;
    left: 24.53%;
}
.aura-404-left{
    width: 5.98vw;
    height: 6.3vw;
    position: absolute;
    top: 41.77%;
    left: 15.83%;
}
.aura-404-right{
    width: 5.98vw;
    height: 6.3vw;
    position: absolute;
    top: 41.77%;
    left: 79.42%;
}
.text-404{
    font-size: 1.666vw;
    color: white;
    font-weight: 500;
    position: absolute;
    top: 72.9%;
    left: 50%;
    transform: translateX(-50%);
}
.bg-error-btn{
    width: 13.33vw;
    height: 3.17vw;
    position: absolute;
    top: 84.13%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../assets/images/btn-404.svg);
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    a{
        font-size: 1.25vw;
        font-weight: 500;
        color: #999999;
    }
}
.bg-error-btn:hover {
    transform: translateX(-50%) scale(1.05);
}
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}
.tablet-only{
    display: none;
}
.hide-on-mobile{
    display: block;
}
@media (max-width: 780px) {
    
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: none !important;
    }
    .tablet-only{
        display: flex !important;
    }
    .hide-on-mobile{
        display: flex !important;
    }
    .nav-container {
        height: 5.5vw;
    }
    .nav-link{
        font-size: 1.6vw;
    }
    .nav-container {
        height: 5.5vw;
    }
    .nav-link{
        font-size: 1.6vw;
    }
    .footer-container {
        height: 4vw;
    }
    .footer-link{
        font-size: 1.3vw;
    }
    .error-screen-1 {
        height: 95vh;
        overflow: hidden;
    }
    .header-404-svg{
        width: 85.68vw;
        height: 43.23vw;
        left: 5.47%;
        top: 25.78%;
    }
    .text-404{
        font-size: 3.125vw;
        left: 50%;
        top: 66%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .bg-error-btn{
        width: 23.18vw;
        height: 5.6vw;
        a{
            font-size: 2.08vw;
        }
    }
}
    @media (max-width: 460px) {
        .hide-on-mobile {
            display: none !important;
        }
        .desktop-only {
            display: none !important;
        }
        .mobile-only {
            display: flex !important;
        }
        .tablet-only{
            display: none !important;
        }
    
        .nav-container-mob {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.78125vw 1.0417vw;
            height: 16.39vw;
            min-height: 3.125vw;
            width: 100%;
            background-image: url(../assets/images/bg-nav.svg);
            background-size: cover;
            position: relative;
        }
        .nav-links-mob {
            position: absolute;
            top: 25%;
            left: 0;
            transform: translateY(-25%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0;
            box-sizing: border-box;
            align-items: center;
        }
        .nav-link-mob {
            color: #797979;
            text-decoration: none;
            font-weight: 500;
            font-size: 4.44vw;
            padding: 0vw 3.8333vw;
            transition: background-color 0.2s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.4167vw;
        }
        .error-screen-1 {
            height: 95vh;
            overflow: hidden;
        }
        .header-404-svg{
            width: 85.68vw;
            height: 43.23vw;
            left: 5.47%;
            top: 25.78%;
        }
        .text-404{
            font-size: 4.44vw;
            left: 50%;
            top: 55%;
            transform: translateX(-50%);
            white-space: nowrap;
        }
        .bg-error-btn{
            width: 51.39vw;
            height: 12.22vw;
            top: 65%;
            a{
                font-size: 3.89vw;
            }
        }
        .footer-container {
            height: 10vw;
        }
        .footer-link {
            font-size: 2.778vw;
            padding: 1.6167vw 4.8333vw;
        }

}
