.wrapper-not-found{
    position: relative;
    overflow: hidden;
    padding-block: 80px;
    padding-inline: 64px;
}


.wrapper-not-found .coh-container:before, .wrapper-not-found .coh-container:after{
  content: unset;
}

.not-found-page-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.not-found-page-container .not-found-img-container img{
    max-width: 500px;
}
.not-found-txt-container {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3ms ease-in-out;
}

.not-found-main-txt{
    font-family: 'Paramount Vista Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 192px;
    line-height: 90%;
    text-transform: uppercase;
    color: #00ABDB;
}

.not-found-txt-container h5{
    color: #fff;
}
.not-found-sub-txt{
    /* color: #00ABDB; */
    color: #ffffff;
}

.not-found-page-container .secondary-btn {
    /* color: #03D1E5; */
    color: #fff;
    margin-top: 18px;
}

.not-found-page-container .secondary-btn svg path{
    fill: currentColor;
}

@media screen and (max-width:1024px) {
    .wrapper-not-found {
        padding-block: 64px;
        padding-inline: 32px;
    }
    .wrapper-not-found .container{
        max-width: 100%;
    }

}
@media screen and (max-width: 850px) {
    .wrapper-not-found{
        padding-inline: 16px;
    }
    .not-found-page-container{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .not-found-txt-container{
         max-width: 460px;
         align-items: center;
    }
    .not-found-main-txt{
        font-size: 112px;
    }

}
