* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
    supported by Chrome and Opera */
}

#notfound {
    position: relative;
    height: 100vh;
    display: flex;
    justify-items: center;
    align-items: center;
}

#notfound .notfound-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

#notfound .notfound-bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

#notfound .notfound {
    animation: 2s ease-out 0s 1 slideInFromLeft;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

.notfound {
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.notfound .notfound-404 h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin: 0px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-top: 20px;
}

.notfound h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

.notfound .home-btn,
.notfound .contact-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid transparent;
    text-transform: uppercase;
    padding: 13px 25px;
    font-size: 18px;
    border-radius: 40px;
    margin: 7px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.notfound .home-btn:hover,
.notfound .contact-btn:hover {
    opacity: 0.9;
}

.notfound .home-btn {
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
}

.notfound .contact-btn {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.9);
}

.notfound-social {
    margin-top: 25px;
}

.notfound-social > a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0px 6px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.notfound-social > a:hover {
    color: rgba(0, 0, 0, 0.7);
    background-color: #fff;
    border-radius: 50%;
}

.d-none {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 h1 {
        font-size: 48px;
    }

    .notfound-social > a {
        font-size: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 26px;
    }

    .notfound h2 {
        font-size: 16px;
    }

    .notfound .home-btn,
    .notfound .contact-btn {
        font-size: 14px;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}
