<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 404 Page */
.content {
    background-color: #e6e7e8;
    color: #5e5e5e;
}
.content .inner {
    max-width: 100%;
    margin: 0 auto;
}
.page-404-banner-area,
.page-404-text-area{
    background: #d3d3d3;
}
.page-404-banner-area img {
    width: 100%;
    margin-top: 80px;
    vertical-align: middle;
}
.page-404-text-area{
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
}
.page-404-text-area h2{
    font-weight: 600;
    margin: 0 0 15px;
}
.page-404-text-area p{
    margin-bottom: 5px;
    margin-top: 0px;
}
.page-404-icons{
    margin-bottom: 20px;
    margin-top: 20px;
}
.page-404-icons ul {
    padding: 0;
    clear: both;
    font-size: 0;
    text-align: center;
    list-style-type: none;
}
.page-404-icons li {
    float: none;
    display: inline-block;
    width: 175px;
    height: 100px;
    margin: 15px;
    font-size: 24px;
}
.page-404-icons li a {
    display: inline-grid;
    width: 100%;
    height: 100%;
    border: 1px solid #373737;
    border-radius: 10px;
    margin-bottom: 25px;
    color: #5e5e5e;
}
.page-404-icons li a:hover {
    border-color: #ffe000;
    background: #ffe000;
    text-decoration: none;
    color: #000000;
}
.page-404-category-name {
    position: relative;
    display: inline-block;
    top: 15%;
    height: 50px;
    padding: 0 10px;
}

/* responsiveness */
@media only screen and (max-width: 767px) {
    .page-404-icons li {
        width: 180px;
        height: 180px;
    }
    .page-404-icons ul li a:before {
        top: 27px;
    }
}
/* ~responsiveness */</pre></body></html>