/* utility classes */


/* main classes */

.cb_arch_head {
    height: 100px;
    margin-top: 40px;
    background-color: #020044;
    color: #fff;
    letter-spacing: 1px;
    word-spacing: 4px;
    position: relative;
}

.cb_arch_head h2::after {
    content: '';
    border-top: 20px solid #020044;
    bottom: -18px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    display: inline-block;
    position: absolute;
    left: 50%;
}

.cb_arch_body_wrap {
    padding: 30px 0;
    gap: 26px;
}

.cb_arch_art {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.cb_arch_art:hover {
    box-shadow: 8px 8px;
    transform: scale(1.02);
    border: 2px solid;
}

.cb_arch_art>a {
    display: block;
}

.cb_arch_art header {
    height: 180px;
    overflow: hidden;
    object-fit: cover;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.cb_arch_art img {
    height: 100%;
    width: 100%;
}

.cb_arch_art div {
    padding: 20px 10px;
    border-radius: 0 0 8px 8px;
}

.cb_arch_art h3 {
    font-weight: 600;
}

.cb_arch_nav_wrap {
    margin: 30px 0;
    flex-wrap: wrap;
}

.cb_pegi_count>* {
    display: inline-block;
    padding: 10px 20px;
    margin: 4px;
    background: #dbccfa;
    color: #020044;
}

.cb_pegi_count .prev,
.cb_pegi_count .next {
    background-color: #6a28ea;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
}

.cb_pegi_count .current {
    background-color: #6a28ea;
    color: #fff;
}

.cb_404 {
    flex-direction: column;
    margin: 100px 0;
    text-align: center;
}

.cb_404 h1 {
    font-size: 3rem;
}

.cb_404 h2 {
    font-weight: 600;
}

.cb_404 p {
    max-width: 600px;
}


/* respoinsive css */

@media (min-width: 750px) {
    .cb_arch_body_wrap {
        justify-content: stretch;
        align-items: stretch;
    }
}