/*
    Lisa Monpierre
    EFRITS SAS
 
    Training center website
    Dec. 2021
*/

.icons_view
{
	height: 100%;
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
	margin: 0;
	padding: 0;
}

.icon_view 
{
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
	margin: 20px auto;
	padding: 0;

	text-align: center;
	text-decoration: none;
}

.icon_view img
{
	max-height: 100%;
	max-width: 	100px;

	margin: 10px auto;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.icon_view p
{
	width: 100%;

	margin: 1em auto;
	padding: 0 15px;
	text-align: center;
    font-weight: bold;
}

.icon_view a
{
	margin: 0.6em auto;
	padding: 1em;
    z-index: 1;
	text-decoration: none;
    
}

@media 	only screen and 
		(min-width: 741px) 
		/* portrait tablet */
{    
    .icon_view 
    {
        width: calc(100% / 2);
    }

}
@media 	only screen and 
		(max-width: 740px) 
		/* portrait mobile */
{
    .icon_view 
    {
        width: calc(90%);
    }
}
@media 	only screen and 
		(min-width : 1825px) 
		/* desktop */
{
    .icon_view 
    {
        width: calc(100% / 3);
    }
}
@media 	only screen and 
		(orientation: landscape) and
		(min-width: 1601px) and
		(max-width: 1824px) 
		/* desktop */
{
    .icon_view 
    {
        width: calc(100% / 3);
    }
}

@media 	only screen and 
		(orientation: landscape) and 
		(min-width: 1225px) and 
		(max-width: 1600px) 
		/* laptop */
{
    .icon_view 
    {
        width: calc(100% / 3);
    }
}

@media 	only screen and 
		(orientation: landscape) and 
		(min-width: 961px) and 
		(max-width: 1224px) 
		/* landscape tablet */
{
    .icon_view 
    {
        width: calc(100% / 2);
    }
}

@media 	only screen and 
		(orientation: landscape) and 
		(max-device-width: 960px) 
		/* landscape mobile */
{
    .icon_view 
    {
        width: calc(90%);
    }
}