.theme_activities_titles{
    margin-top: 80px;
    margin-bottom: 60px;
}

.theme_activities{
    width: 1200px;
    margin: 0px auto;
}

.theme_activities_item{
    display: inline-block;
    width: 380px;
	height: 420px;
	background-color: #ffffff;
	box-shadow: 0px 5px 13px 0px 
		rgba(63, 72, 91, 0.07);
	border-radius: 16px;
    float: left;
    padding: 30px;
    margin-left: 30px;
    margin-bottom: 40px;
    transition: all 0.5s;
}
.theme_activities_item>img{
    width: 100%;
    height: 240px;
    display: block;
    border-radius: 8px;
}
.theme_activities_item>h6{
    font-size: 22px;
	font-weight: bold;
	color: #333333;
    width: 100%;
    display: block;
    margin: 30px 0px 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme_activities_item>div{
    font-size: 16px;
	color: #999999;
}
.theme_activities_item>div>span{
    font-size: 20px;
}
.theme_activities_item:hover{
    transform: translateY(-26px);
    border: solid 1px #c5322e;
}
.theme_activities_item:hover h6{
    color: #c5322e;
}
.theme_activities_item:hover div{
    color: #c5322e;
}

@media (max-width:768px) {
    .theme_activities_titles {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .theme_activities {
        width: 100%;
        padding: 0px 4%;
        margin:auto;
    }
    .theme_activities_item {
        width: 100%;
        height: auto;
        padding: 4%;
        margin-left: auto;
        margin-bottom: 30px;
    }
    .theme_activities_item>h6 {
        font-size: 22px;
        font-weight: bold;
        color: #333333;
        width: 100%;
        display: block;
        margin: 10px 0px 20px;
    }
    .pages_container{
        width: 92%;
        margin: 0px auto;
    }
    .pages_mobile{
        margin: 0px 0px 20px;
    }
    .theme_activities_item:hover{
        transform: translateY(-10px);
    }
}