html{
	padding:0px;
	margin:0px;
	min-height:100%;
	height: 100%;
    text-rendering: auto;
	text-rendering: optimizeLegibility;
	text-rendering: geometricPrecision;
	font-smooth: always;
	
	font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    margin:0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

.inside{
    padding:30px;
    box-sizing: border-box;
    max-width: 1240px;
    position: relative;
    margin: auto;
}

.container{
    display: flex;
    flex-direction: column;
}

.content{
    background-color: #fff;
    height:calc(100vh - 165px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_a{
    position: absolute;
    top:30px;
    left:30px;
    background-image: url(../img/logo_a.svg);
    background-position: left top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 155px;
    height:158px;
}

.logo_g{
    position: absolute;
    top:30px;
    right:30px;
    background-image: url(../img/logo_g.svg);
    background-position: right top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 155px;
    height:158px;
}

.logo{
    position: absolute;
    bottom:30px;
    left:30px;
    background-image: url(../img/logo.svg);
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    width: 310px;
    height:155px;
}

.logo_100a{
    position: absolute;
    bottom:30px;
    right:30px;
    background-image: url(../img/logo_100a.svg);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    width: 464px;
    height:155px;
}

.counter{
    font-weight: bold;
    font-size: 230px;
    letter-spacing: 10px;
}

.link{
    text-align: center;
}

.footer{
    background-color: #000;
    height:165px;
    font-size: 20px;
    color:#fff;
    font-weight: bold;
    line-height: 25px;
}

.footer .inside{
    display:flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .coordonnees{
    display: flex;
}

.footer .coordonnees > div{
    margin-right: 50px;
}

a.button{
    font-size: 15px;
    text-transform: uppercase;
    border:1px solid;
    padding-left:30px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

a.button:hover{
    color:#fff;
    background-color: #000;
}

a{
    text-decoration: none;
    color: inherit;
}

@media all and (max-width:768px), all and (max-height:800px){

    .logo_a{
        height:75px;
        left:15px;
        top:15px;
    }
    .logo_g{
        height:75px;
        right:15px;
        top:15px;
    }

    .logo{
        height:72.5px;
        left:15px;
        bottom:15px;
    }

    .logo_100a{
        height:72.5px;
        right:15px;
        bottom:15px;
    }

    .footer .inside{
        flex-direction: column;
        align-items: flex-start;
    }


    .footer .coordonnees{
        flex-direction: column;
    }

    .footer .coordonnees > div{
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .footer .coordonnees .nom{
        display: none;
    }

    .counter{
        font-size: 115px;
       
    }


    .content{
        min-height: 500px;
        height: calc(100vh - 265px);
    }
    .footer{
        height: 265px;
    }

    .inside{
        padding: 15px;
    }
    
}
