.notfound-section {
    position: relative;
    min-height: 92vh;
    background-image: url('../../assets/img/404.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
}

@media only screen and (max-width:768px) {
    .notfound-section {
        background: linear-gradient(to bottom right, #000000bb, #006622a9), url('../../assets/img/404.jpg');
        background-size: color;
        background-repeat: no-repeat;
    }
}

@media only screen and (max-height:700px) {
    .notfound-section {
        min-height: 120vh;
    }
}

@media only screen and (max-height:400px) {
    .notfound-section {
        min-height: 150vh;
    }
}

.notfound-section .wrapper {
    position: absolute;
    top: 45%;
    left: 100px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 650px;
}

@media only screen and (max-width:767px) {
    .notfound-section .wrapper {
        left: 40px;
        max-width: 600px;
    }
}

@media only screen and (max-width:575px) {
    .notfound-section .wrapper {
        left: 50px;
        max-width: 300px;
    }
}

@media only screen and (max-width:350px) {
    .notfound-section .wrapper {
        left: 30px;
        max-width: 270px;
    }
}

.notfound-section .wrapper .header h1 {
    font-weight: 900;
    font-size: 3.2rem;
}

.notfound-section .wrapper .header h1 .label {
    color: #114C82;
}

@media only screen and (max-width:768px) {
    .notfound-section .wrapper .header h1 .label {
        color: #a2d1fc;
    }
}

.notfound-section .wrapper .desc p {
    font-size: 1.25rem;
}

@media only screen and (max-width:768px) {
    .notfound-section .wrapper .desc p {
        color: #efefef;
    }
}

.action-btn {
    display: block;
    background-color: #0C9447;
    color: #ffffff;
    max-width: 200px;
    padding: 0.625rem 1rem;
    border-radius: 50px;
    text-align: center;
    transition: all 0.5s;
}

.action-btn:hover {
    background-color: #09ca5d;
    color: #ffffff;
    text-decoration: none;
}