*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::after,
*::before{
    box-sizing: border-box;
}

p {
    font-family: 'Exo 2';
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 30px;
}

main{
    max-width: 1920px;
    margin: 80px auto 0 auto;
}
.page-not-found {
    padding: 60px 0;
}

.page_not_found_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left_side{
    width: 50%;
    text-align: center;
    margin: 0 auto;
}
.lottie{
    height: 250px;
}
.left_side span {
    color: #44aa00;
    font-size: 69px;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 600;
}

.left_side h2 {
    color: #ff6e00;
    font-size: 200px;
    line-height: 150px;
    font-weight: bold;
}
.animation {
    width: 50%;
}
.left_side small {
    color: #333;
    font-size: 34px;
    text-transform: uppercase;
    margin: 15px 0 5px;
    display: block;
    font-weight: 600;
}
.btn_div{
    display: flex;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.common-btn {
    font-size: 20px;
    font-family: 'Exo 2';
    font-weight: 600;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background: #ff6e00;
    color: #fff;
    padding: 15px 15px;
    position: relative;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    min-width: 158px;
}

.common-btn:hover {
    background: #dd660c;
    color: #fff;
}
.right_slide{
    width: 51%;
}
img{
    max-width: 100%;
}

@media (max-width:1199px) {
    .page_not_found_inner{
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .right_slide{
        width: 100%;
    }
    .left_side h2 {
        font-size: 170px;
        line-height: 130px;
    }
    .left_side span {
        font-size: 59px;
    }
    .left_side small {
        font-size: 30px;
    }
}

@media (max-width:991px) {
    .left_side{
        width: 100%;
    }
    .left_side h2 {
        font-size: 150px;
        line-height: 110px;
    }
    .left_side span {
        font-size: 49px;
    }
}

@media (max-width:630px) {
    .common-btn {
        font-size: 18px;
        padding: 11px 15px;
        min-width: inherit;
    }
    p {
        font-size: 20px;
        line-height: 28px;
    }
    .left_side h2 {
        font-size: 120px;
        line-height: 90px;
    }
    .left_side span {
        font-size: 35px;
    }
    .left_side small {
        font-size: 25px;
    }
    .page-not-found {
        padding: 40px 0;
    }
}