 /* ==================== FOOTER ==================== */
  .footer {
    background: #cc6e16;
    width: 100%;
  }

  .site-footer {
    background-color: #222c3d;
    color: #ffffff;
    font-size: 0.9rem;
  }
  
  .site-footer a {
    color: #ffffff;
  }

  .footer-container {

    width: 100%;
    max-width: 1200;
    padding: 20px 20px;
    /*outline: 2px solid red;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    gap: 25px;
    text-align: right;
  }

  .footer-logo {
    order: 1;
    flex: 0 0 140px;
    text-align: center;
    /*outline: 2px solid rgb(202, 24, 63);*/
  }

  .footer-logo img {
    max-width: 130px;
    border-radius: 50%;
  }

  .footer-main {
    order: 2;
    flex: 0 0 260px;
    /*outline: 2px solid rgb(202, 24, 63);    */
  }

  .footer-social {
    order: 3;
    display: flex;
    gap: 10px;
    padding-top: 10px;
    /*outline: 2px solid rgb(60, 202, 24);*/
    justify-content: center;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #222c3d;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
  }

  .footer-quick {
    order: 4;
    flex: 0 0 160px;
    /*outline: 2px solid rgb(202, 24, 63); */
  }

  .footer-contact {
    order: 5;
    flex: 0 0 260px;
    /*outline: 2px solid rgb(25, 27, 110); */
  }

  .footer-quick ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-quick li,
  .footer-contact li {
    margin-bottom: 8px;
  }

  .footer-contact li {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18);
    text-align: center;
    padding: 12px 15px;
    font-size: 0.8rem;
  }

/* =======================  Responsive ======================= */
/* ============  TABLETTE ============ */
@media (max-width: 1024px) {
	.footer-container {
			flex-direction: column;
			align-items: center;
			text-align: center;
	}

	.footer-contact li,
	.footer-logo,
	.footer-main,
	.footer-social,
	.footer-quick,
	.footer-contact {
			order: initial;
			flex: none;
			width: 100%;
			/*max-width: 360px;*/
			justify-content: center;
	}    
}

/* ============  MOBILE ============ */
@media (max-width: 768px) {
/*	.footer-social {
		justify-content: center;
	}

	.footer-contact li {
		justify-content: center;
	}
*/
	.footer-line1,
	.footer-line2 {
		display: block;
	}   
}



  