.subcategory_page_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.subcategory_page_logo a {
    width: 5%;
}

.subcategory_page_logo a img {
    width: 100%;
}

.activities_list_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 5%;
}

.activities_list {
    width: 70%;
}

.activity_item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 60%;
    height: 300px;
    overflow: hidden;
    margin-top: 50px;
}

.activity_item_image {
    height: 300px;
}

.activity_item_image img {
    height: 300px;
}

.activity_item_content {
    width: 100%;
    height: 300px;
    padding-left: 3%;
    display: grid;
    grid-template-rows: auto auto 20%;
}

.activity_item_content h3 {
    display: flex;
    align-items: flex-start;
    color: #000;
    height: fit-content;
}

.activity_item_description {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.activity_item_description img {
    display: none;
}

.activity_item_button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.activity_list_container_mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 15%;
    width: 100%;
}

.activity_list_container_mobile a {
    width: 90%;
    margin-top: 30px;
    position: relative;
}

.activity_list_container_mobile a img {
    width: 100%;
}

.activity_list_container_mobile_name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 40px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

@media(max-width: 996px) { 
    .subcategory_page_logo {
        margin-top: 40px;
    }

    .subcategory_page_logo a {
        width: 25%;
    }

    .activities_list_container {
        display: none;
    }

    .activity_list_container_mobile {
        display: flex;
    }
}