.button_primary {
    display: block;
    width: max-content;
    border-radius: 10px;
    padding: 12px 29px;
    border: none;
    color: white;
    font-weight: 600;
    background-color: var(--orange);
}
.button_primary:hover {
    color: white;
    background-color: #d74e18;
}
.gap10 {
    gap: 10px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.my30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.subtitle {
    color: var(--grey-light);
    font-size: 14px;
    text-align: justify;
}
.title {
    color: var(--blue-navy-light);
    font-size: 1.5rem;
}

#countdown {
    margin-bottom: 20px;
}

#countdown .container_countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container_countdown > p {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-navy-light);
}

#countdown .item_countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border: 1px solid var(--blue-navy-light);
    border-radius: 10px;
}

#countdown .divider_countdown {
    padding-top: 0.7rem;
}

#new_event .card_banner_new_event {
    border-radius: 20px;
    background-color: #ffff;
    box-shadow: -13px 1px 20px 0px #10101014;
    padding: 40px 50px;
}

#new_event .owl-upcoming{
    position: relative;
}
#new_event .owl-upcoming .owl-nav {
    position: absolute;
    top: calc(50% - 30px);
    left: -10px;
    width: calc(100% + 20px);
}
#new_event .owl-upcoming .owl-nav button.disabled{
    opacity: 0.5;
}
#new_event .owl-upcoming .owl-nav span{
    color: var(--blue-navy-light);
    font-size: 30px;
}
#new_event .owl-upcoming .owl-nav .owl-next{
    float: right
}

#new_event .icon_event {
    height: 21px;
    width: 21px;
}

#new_event .image_new_event {
    /* width: 85%;
    height: 80%; */
    min-height: 200px;
    z-index: 1;
}

#new_event .text_new_event {
    color: #7a7a7a;
}

#new_event .circle_orange {
    position: absolute;
    bottom: 100px;
    left: 101%;
    width: 30px;
    height: 30px;
    background-color: var(--orange-dark);
    border-radius: 100%;
    /* z-index: 0; */
}

#new_event .circle_purple {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: var(--purple);
    border-radius: 100%;
    /* z-index: 0; */
}

#article_event .container_article {
    /* width: 65%; */
}

#article_event .container_article_event {
    gap: 3%;
    margin-bottom: 60px;
}

#article_event .container_popular_article {
    margin-bottom: 60px;
}

#article_event .image_article_event {
    width: 230px;
}

#article_event .card_article_event {
    background-color: #ffff;
}

#article_event .search_form {
    border: 1px solid #ecf2f6;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none !important;
    outline: none;
    padding: 25px;
}

#article_event .button_search {
    border: 1px solid #ecf2f6;
    border-left: none !important;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

#article_event .icon_search {
    width: 16px;
    height: 16px;
}

#category-section li {
    list-style: none;
    color: var(--grey-light);
}

#category-section li a {
    color: var(--grey-light);
}
#category-section li a:hover {
    color: #000000;
}

#category-section li ul li {
    border-bottom: 1px solid #ecf2f6;
}

#category-section li button {
    padding: 1rem 0;
    color: var(--grey-light);
    border-bottom: 1px solid #ecf2f6;
}

#category-section li button img {
    transition: transform 0.5s;
    transform: rotate(90deg);
    fill: #27272e;
}

#category-section li button[aria-expanded="true"] img {
    transform: rotate(180deg);
}

#article_event .image_article_popular_event {
    width: 100px;
    border-radius: 15px;
}

#article_event .card_popular_article {
    display: flex;
    gap: 3%;
    margin-bottom: 60px;
}

#article_event .container_text_popular > h2 {
    font-size: 16px;
}

#article_event .arrow {
    border-radius: 5px;
}

#article_event .icon_arrow {
    height: 16px;
    width: 16px;
}

#article_event .item_pagination {
    color: #27272e;
    border-radius: 5px;
}

#article_event .item_pagination.active {
    color: white;
    background-color: var(--purple-deep);
}

@media (max-width: 1399px) {
    .card_popular_article h2.title, .card_article_event h2.title{
        font-size: 1.2rem;
    }
}
@media (max-width: 1299px) {
}

@media (max-width: 767px) {
}

@media only screen and (max-width: 575px) {
    #new_event .card_banner_new_event {
        width: 100%;
    }

    #new_event .card_registration_new_event {
        width: 100%;
        margin-top: 30px;
    }

    #article_event .container_article {
        width: 100%;
    }

    h2 {
        font-size: 18px;
    }
    #new_event .card_banner_new_event {
        padding: 30px 35px;
    }
}

@media only screen and (max-width: 400px) {
    #new_event .card_banner_new_event {
        padding: 20px 25px;
    }
}

.clickable:hover {
    cursor: pointer;
}
