*{
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

html{
	font-family: sans-serif;
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

#wwi{
	max-width: 95vw;
	margin: auto;
	height: auto;
}
#wwe{
	max-width: 95vw;
	margin: auto;
	height: auto;
}
.cards-list {
    max-width: 1300px;
    padding: 1rem;
    margin: auto;
	display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
	gap: 30px;
}
.head {
    max-width: 1300px;
    padding: 5rem 1rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
	gap: 30px;
}
.card {
    width: 100%;
	height: 220px;
	cursor: pointer;
    border-radius: 40px;
    box-shadow: 5px 5px 5px 3px rgba(0,0,0,0.25);
	transition: 0.4s;
	text-decoration: none;
	color: inherit;
}
.head-card{
	height: 300px;
    max-height: 320px;
}

.card_image {
    width: inherit;
    height: inherit;
    border-radius: 40px;
}

.card_image img {
    width: inherit;
    height: inherit;
    border-radius: 40px;
    object-fit: cover;
}

.card_title {
    text-align: center;
    background-color: #fff;
    border-radius: 0px 0px 40px 40px;
    font-family: sans-serif;
    font-weight: normal;
    font-size: 2.4rem;
	height: 35px;
	transform: translate(0,-100%);
}

.card:hover,
.card:active
{
	transform: scale(0.9, 0.9);
	box-shadow: 5px 5px 10px 6px rgba(1,1,1,0.25);
    text-decoration: underline 2px rgba(0, 0, 0, 0.75); 
}