.thesesText
{
	margin:60px 0 0;
}
#thesesItems 
{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.thesesItem 
{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #f4f3fc;
    position: relative;
    padding: 45px 0 42px 0;
    text-align: center;
}
.thesesItem .Img
{
    text-align: center;
}
.thesesItem .Name
{
    font-family: 'TildaSans Semibold';
    margin: 0 0 26px;
    color: #302f7f;
    font-size: 18px;
}
.thesesItem .Name a
{
	color:#e9b22c;
}
.thesesItem .Name a:hover
{
    color: #5958e9;
}
.thesesItem .Text
{
    margin: 15px 0 0 0;
    text-align: center;
    padding: 0 30px 0 30px;
}
.thesesItem .Anonse
{
    color: #686682;
    font-size: 16px;
    line-height: 1.5em;
}
@media all and (max-width: 960px) 
{	
	#thesesItems
	{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media all and (max-width: 800px) 
{	
	#thesesItems
	{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media all and (max-width: 480px) 
{	
	#thesesItems
	{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}