/* ============================================
   CUSTOM.CSS - SCRANNAGE ADVANTAGE
   ============================================
   
   TABLE OF CONTENTS
   -----------------
   1. FOOTER
      1.1 Footer Layout
      1.2 Footer Elements
      1.3 Footer Responsive
   2. PAGE-TITLE
	  2.1 Page-title Styles
/* ============================================
   1. FOOTER
   ============================================ */
/* ------------------------------------------
   1.1 Footer Layout
   ------------------------------------------ */
.site-footer {
  background-color: #212529;
  padding-top: 30px;
  padding-bottom: 0;
  margin: 0;
}
.footer-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  	gap: 0px;
	padding: 10px 0 0 0;
}
.footer-item {
  flex: 0 0 25%;
  min-width: 200px;
  text-align: center;
}
/* ------------------------------------------
   1.2 Footer Elements
   ------------------------------------------ */
/* Footer Logos */
.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}
/* Footer Titles */
.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 19px;
}
/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  display: block;
  margin: 0px;
  line-height: 20px;
}
.footer-links li a {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}
/* Footer Contact */
.footer-contact {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 215px;
  align-content: center;
}
.footer-item:nth-child(2) {
    align-content: center;
  }
.footer-contact li {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #5c5d5f;
}
.footer-contact li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-contact li a, .footer-contact li span {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact li a:hover {
  color: #fff;
}
/* Footer Social Section */
.footer-social {
    text-align: center;
    padding: 0 0 20px 0;
    margin: 0;
  }
.footer-name {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.footer-social .social-icons li {
  display: inline-block;
  margin: 0;
}
.footer-social .social-icons li a {
  color: #999;
  font-size: 18px;
  transition: color 0.3s ease;
}
.footer-social .social-icons li a:hover {
  color: #fff;
}
/* Footer Copyright */
.footer-copyright {
  background-color: #212529;
  padding: 20px 0;
  border-top: 1px solid #5c5d5f;
}
.copyright-text {
  color: #999;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}
.copyright-disclaimer {
  color: #777;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}
.contact {
	margin: 0 0 12px 0;
}
/* ------------------------------------------
   1.3 Footer Responsive
   ------------------------------------------ */
/* Desktop: 992px and up - 4x1 grid (4 columns) */
@media (min-width: 855px) and (max-width: 1199px) {
  .footer-flex-container {
    flex-wrap: wrap;
    justify-content: space-evenly;
	align-items: stretch;
	gap: 0px;
	padding: 10px 0 0 0;
  }
	.footer-item:nth-child(2) {
    align-content: center;
  }
  .footer-item {
    flex: 0 0 20%;
    min-width: auto;
    text-align: center;
  }
	.footer-contact {
		width: 215px;
		align-content: center;
	}
	.contact {
		margin: 0 0 13px 0;
	}
}
/* Tablet: 550px to 991px - 2x2 grid */
@media (min-width: 550px) and (max-width: 855px) {
  .footer-flex-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    align-items: stretch;
  }
  .footer-item {
    flex: 0 0 40%;
    max-width: 40%;
    min-width: auto;
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
	align-items: center;
  }
  /* Vertically center the second logo (Royal LePage) */
  .footer-item:nth-child(2) {
    justify-content: center;
    align-items: center;
  }
	.footer-contact {
		width: 210px;
		align-content: center;
	}
	.footer-title {
		margin: 0 0 10px 0;
	}
	.contact {
		margin: 0 0 4px 0;
	}
}
/* Mobile: Under 550px - 1x4 grid (single column) */
@media (max-width: 549px) {
  .footer-flex-container {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .footer-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 210px;
    text-align: center;
  }
	.footer-social {
    padding: 5px 0 20px 0;
  }
  .footer-logo {
    max-width: 160px;
    margin: 10px 0;
  }
  .footer-title {
    font-size: 14px;
    margin: 0 0 5px 0;
  }
	.contact {
		margin: .5rem 0 0 0;
	}
  .footer-links li a, .footer-contact li a, .footer-contact li span {
    font-size: 13px;
  }
  .footer-links li {
	line-height: 18px;
  }
  .copyright-disclaimer {
    font-size: 11px;
    padding: 0 15px;
  }
	.footer-contact {
		width: 200px;
	}
}
/* ============================================
   2. PAGE TITLE;
   ============================================ */
/* ------------------------------------------
   2.1 Page Title styles
   ------------------------------------------ */
.page-title {
	text-transform: none;
	font-weight: bold;
	font-size: 1.80em;
	margin: 0 0 1.5rem 0;
	padding: 0 0 1.5rem 0;
	font-family: "Poppins", sans-serif;
}
/*Spacing for every title in mobile and tablet*/
@media (max-width: 767px) {
	section.section {
		padding-top: 1.5rem;
	}
	.page-title {
		font-size: 1.50em;
		margin: 0 0 0.5rem 0;
		padding: 0 0 0.5rem 0;
	}
}






































