* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

.logo {
    max-width: 100%;
    height: auto;
}

.accordion {
    background: transparent;
}

.accordion-header, .accordion-body {
    border: 2px solid;
    font-family: 'Montserrat', sans-serif;
    color: #ff005a;
    font-size: 14px;
    font-weight: 700;
}

.accordion-header {
    padding: 10px;
    cursor: pointer;
    position: relative;
    visibility: hidden;
}

    .accordion-header:hover {
        color: #8400ff;
    }

    .accordion-header i {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }

    .accordion-header.active i {
        transform: translateY(-50%) rotate(180deg);
    }

.accordion-body {
    padding: 10px;
    display: none;
    border: none;
}

#errorpage {
    position: relative;
    height: 100vh;
    background: #030005;
    background-image: url("/images/bg-error.png");
    background-size: cover;
    background-position: center;
}

    #errorpage .errorpage {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.errorpage {
    max-width: 767px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

    .errorpage .errorpage-500 {
        position: relative;
        height: 180px;
        margin-bottom: 20px;
        z-index: -1;
    }

        .errorpage .errorpage-500 h1 {
            font-family: 'Montserrat', sans-serif;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            font-size: 224px;
            font-weight: 900;
            margin-top: 0px;
            margin-bottom: 0px;
            margin-left: -10px;
            color: #030005;
            text-transform: uppercase;
            text-shadow: -1px -1px 0px #8400ff, 1px 1px 0px #ff005a;
            letter-spacing: -20px;
        }


        .errorpage .errorpage-500 h2 {
            font-family: 'Montserrat', sans-serif;
            position: absolute;
            left: 0;
            right: 0;
            top: 110px;
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 0px 2px 0px #8400ff;
            letter-spacing: 13px;
            margin: 0;
        }

    .errorpage a {
        font-family: 'Montserrat', sans-serif;
        display: inline-block;
        text-transform: uppercase;
        color: #ff005a;
        text-decoration: none;
        border: 2px solid;
        background: transparent;
        padding: 10px 40px;
        font-size: 14px;
        font-weight: 700;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        margin: 20px 0 20px 0;
    }

        .errorpage a:hover {
            color: #8400ff;
        }

@media only screen and (max-width: 767px) {
    .errorpage .errorpage-500 h2 {
        font-size: 24px;
    }

    .errorpage .errorpage-500 h1 {
        font-size: 170px;
    }

    .accordion {
        margin: 0 10px 0 10px;
    }
}

@media only screen and (max-height: 410px) {
    .logo {
        max-height: 2.0em;
    }

    #errorpage {
        height: 450px;
        
    }

    #errorpage .errorpage {
            top: 35%;
        }

    .errorpage .errorpage-500 h1 {
        font-size: 100px;
    }

    .errorpage .errorpage-500 h2 {
        font-size: 18px;
        letter-spacing: 9px;
    }

    .errorpage a {
        margin-bottom: 10px;
    }

    .errorpage .errorpage-500 {
        height: 100px;
        margin-bottom: 20px;
    }
}
