/*footer*/

	footer#footer{
		background-color: #0F172A;
	}
	footer .name{
		color: white;
		font-family: 'Orbitron', sans-serif;
		font-size: 20px;
		font-weight: 700;
		margin-left: 20px;
		margin-bottom: 0;
	}

	footer .ligne{
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}

	footer .description{
		font-size: 14px;
		color: #94A3B8;
		max-width: 273px;
	}

	footer .titre{
		color: white;
		font-weight: 700;
		font-size: 18px;
		margin-bottom: 20px;
	}

	footer li{
		list-style: none;
		margin-bottom: 20px;
		margin-left: -32px;
		color: #94A3B8;
	}

	footer a, footer p{
		color: #94A3B8;
		font-size: 16px;
		text-decoration: none;
		transition: 0.2s;
	}

	footer a:hover{
		color: white;
		transition: 0.2s;
	}


	footer .contact li {
	    list-style: none;
	    position: relative;
	    padding-left: 30px;
	}
	
	footer .contact li::before {
	    content: "";
	    position: absolute;
	    left: 0;
	    top: 50%;
	    transform: translateY(-50%);
	    width: 25px; 
	    height: 25px;
	    background-size: contain;
	    background-repeat: no-repeat;
	}

	footer .contact li.tel::before {
	    background-image: url('../img/phone.svg');
	}

	footer .contact li.mail::before {
	    background-image: url('../img/arobase.svg');
	}

	footer .contact li.adresse::before {
	    background-image: url('../img/adresse.svg');
	}

	footer .sep{
		width: 100%;
		border-bottom: 1px solid #1E293B;
		margin-bottom: 20px;
		margin-top: 50px;
	}

	footer .end p, .end a{
		font-size: 13px!important;
	}

	footer .end a{
		margin-left: 20px;
	}

	footer .end-1{
		display: flex;
	}

	footer .end-2{
		display: flex;
		justify-content: flex-end;
	}


	footer#footer{
		padding-left: 50px;
		padding-right: 50px;
	}

	footer .f-content{
		width: 250px;
		margin-bottom: 20px;
	}

	footer .responcive{
		display: flex;
		flex-direction: column;
		align-items: center;
		flex-wrap: wrap;
	}

	@media (max-width: 991px) {
		footer .end-1{
			justify-content: center;
		}
	
		footer .end-2{
			justify-content: center;
		}

		footer#footer{
			padding-left: 25px;
			padding-right: 25px;
		}
	
		footer .sep{
			margin-top: 0px;
		}
	}