@charset "UTF-8";
@font-face {
  font-family: Proxima_Nova;
  src: url("../fonts/Proxima Nova.ttf") format("ttf");
  font-style: normal;
  font-weight: normal; 
}

body{
    font-family: Proxima_Nova, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    margin: 0 auto;
}
.not_found{
    background-image: url('/img/404/background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.not_found,
.not_found .wrapper,
.not_found .wrapper .row{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    min-height: 100vh;
}
.not_found__content, 
.not_found__menu{
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    min-height: 100vh;
}

.not_found__title{
    background-image: url('/img/404/404.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    width: 50%;
    height: 130px;
}
.not_found__text{
    font-size: 30px;
    color: #794D2A;
}
.not_found__button{
    display: inline-block;
    color: #fff;
    background: #8DC960;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    position: relative;
}
.not_found__button::before,
.not_found__button::after{
    content: ' ';
    display: block;
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
    background-position: center;
}
.not_found__button::before{
    background-image: url('/img/404/button__left.svg');
    left: -1.7rem;
}
.not_found__button::after{
    background-image: url('/img/404/button__right.svg');
    right: -1.7rem;
}

.not_found__list{
    list-style-type: none;
    padding: 0;
    margin: auto;
}
.not_found__item-link{
    text-decoration: none;
    color: #fff;
    text-shadow: 0 0 2px #333;
    display: inline-block;
    padding-left: 1.5rem;
    margin: 0.5em auto;
    position: relative;
    line-height: 1;
    transition: 0.25s;
}
.not_found__item-link::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    background-image: url('/img/404/arrow.svg');
    background-size: contain;
    opacity: 0;
    transition: 0.25s;
}
.not_found__item-link:hover{
    font-size: 2rem;
    padding-left: 2.5rem;
}
.not_found__item-link:hover::before{
    opacity: 1;
    width: 2rem;
    height: 2rem;
}

@media(min-width:600px){
    .not_found__title{
        min-height: 300px;
    }
    .not_found .wrapper .row{
        display: flex;
        flex-flow: row wrap;
    }
    .not_found__content,
    .not_found__menu{
        width: 50%;
        align-items: center;
        justify-content: center;
    }
    .not_found__button{
        min-width: 360px;
    }
}