/*=====================================================
 :root & Global Reset / Base Styles
=====================================================*/
html {
  font-size: 20px;
}
:root {
  --primary-color: #2c3e50; 
  --secondary-color: #34495e;
  --text-color: #555;
  --subtext-color: #7f8c8d;
  --background-light: rgb(232, 244, 255);
  --body-bg: #fff;
  --dark-bg: #2c3e50;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
body, h2, h3, h4, h5, h6, p, li, a {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  background-color: var(--body-bg);
}
h1, h2, h3, a, li {
  color: var(--primary-color);
}
/*=====================================================
  Navbar Section
=====================================================*/
.navbar {
  background: var(--body-bg);
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 50px;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-menu ul li {
  margin-left: 20px;
}
.nav-menu ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-menu ul li a:hover {
  color: var(--secondary-color);
}
/* Sign Up Button */
.signup-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid  var(--primary-color); /* Blue border */
  background: transparent;
  color:  var(--primary-color);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-left: 20px; /* Adds spacing from the nav-menu */
}
.signup-btn:hover {
  background:  var(--primary-color);
  color: #fff;
}
/* Hide the nav menu on small screens but leave the Sign Up button visible */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
}
/*=====================================================
  Introductory Banner
=====================================================*/
.intro-banner {
  background-color: var(--body-bg);
  text-align: center;
  padding: 20px 0;
}
.intro-banner h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.intro-banner p {
  font-size: 1.1rem;
  color: var(--text-color);
}
/*=====================================================
  Top Images Section
=====================================================*/
.top-images {
  display: block;
  overflow: hidden;
  background-color: var(--body-bg);
  border-bottom: 1px solid #ddd;
}
.top-images img {
  width: 100%;
  object-fit: cover;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .top-images img:nth-child(n+2) {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .top-images {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-images img {
    width: 50%;
    height: 300px;
    margin-bottom: 0;
    border-right: 3px solid var(--body-bg);
  }
  .top-images img:nth-child(2) {
    border-right: none;
  }
  .top-images img:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 768px) {
  .top-images {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-images img {
    width: 33.33%;
    height: 300px;
    margin-bottom: 0;
    border-right: 3px solid var(--body-bg);
  }
  .top-images img:last-child {
    border-right: none;
  }
}
@media (min-width: 1200px) {
  .top-images {
    max-width: 1200px;
    margin: 0 auto;
  }
}
/*=====================================================
  Hero Section
=====================================================*/
.hero {
  padding: 40px 20px;
  text-align: center;
  background-color: var(--body-bg);
}
.hero h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.hero p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 0 25px;
}
.cta-button {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: var(--secondary-color);
}
@media (min-width: 768px) {
  .hero {
    padding: 70px 20px;
  }
  .hero h2 {
    font-size: 2.7rem;
    margin-bottom: 24px;
  }
  .hero p {
    font-size: 1.15rem;
    line-height: 1.85;
    max-width: 690px;
  }
}
/*=====================================================
  Hero Section - Medium Tablets
=====================================================*/
@media (min-width: 600px) and (max-width: 900px) {

  .hero p {
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0 10px;
  }

}
/*=====================================================
  Services Section
=====================================================*/

.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  position: relative;
  display: inline-block;

  font-size: 2.2rem;
  color: var(--primary-color);

  padding-bottom: 14px;
  margin-bottom: 50px;
}

.services h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 70px;
  height: 3px;

  background-color: var(--primary-color);
  border-radius: 999px;
}


/*=====================================================
  Service Cards — Desktop
=====================================================*/

.service-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;

  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: 45px 30px;

  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #0047ab;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item i {
  font-size: 3rem;
  color: #0047ab;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  line-height: 1.7;
}

.service-item.featured {
  transform: scale(1.05);
  border: 2px solid #0047ab;
}

.service-item.featured:hover {
  transform: translateY(-10px) scale(1.05);
}


/*=====================================================
  Services Supporting Text — Desktop
=====================================================*/

.services-description {
  width: min(90%, 760px);
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}

.services-description > p:first-child {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);

  text-align: center;
  text-wrap: balance;
}

.services-description .services-tagline {
  width: 100%;
  max-width: 760px;
  margin: 36px auto 0;

  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;

  color: rgba(0, 71, 171, 0.55);
  text-align: center;

  white-space: normal;
  text-wrap: balance;
}


/*=====================================================
  Services — Tablet: Two Cards + One Centered
=====================================================*/

@media (min-width: 700px) and (max-width: 1000px) {

  .service-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item {
    max-width: 360px;
  }

  .service-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 15px);
    min-width: 330px;
  }

  .service-item.featured {
    transform: none;
  }

  .service-item.featured:hover {
    transform: translateY(-10px);
  }

  .services-description {
    width: min(78%, 650px);
    margin-top: 50px;
  }

  .services-description .services-tagline {
    font-size: 1.15rem;
    letter-spacing: 0.035em;
  }
}


/*=====================================================
  Services — Phones and Small Tablets
=====================================================*/

@media (max-width: 699px) {

  .services {
    padding: 65px 18px;
  }

  .services h2 {
    font-size: 2rem;
    margin-bottom: 42px;
  }

  .service-items {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .service-item {
    width: 100%;
    max-width: 380px;
    padding: 40px 24px;
  }

  .service-item:last-child {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }

  .service-item.featured {
    transform: none;
  }

  .service-item.featured:hover {
    transform: translateY(-6px);
  }

  .services-description {
    width: 100%;
    max-width: 100%;
    margin-top: 45px;
    padding: 0 16px;
  }

  .services-description > p:first-child {
    max-width: 430px;
    margin: 0 auto;

    font-size: 1rem;
    line-height: 1.8;

    text-align: center;
    text-wrap: pretty;
  }

  .services-description .services-tagline {
    max-width: 430px;
    margin-top: 34px;

    font-size: 1.05rem;
    line-height: 1.55;
    letter-spacing: 0.025em;

    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
}


/*=====================================================
  Services — Very Small Phones
=====================================================*/

@media (max-width: 420px) {

  .services {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-item {
    padding: 36px 20px;
  }

  .service-item h3 {
    font-size: 1.25rem;
  }

  .services-description {
    padding: 0 8px;
  }

  .services-description .services-tagline {
    font-size: 1rem;
    letter-spacing: 0.015em;
  }
}
/*==================================================
    Insurance Companies
==================================================*/
.insurance-companies{
    padding:90px 25px;
    text-align:center;
}
.section-heading{
    max-width:700px;
    margin:0 auto 60px;
}
.section-heading h2 {
    font-size: 2rem;
    width: 75%;
    margin: auto;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.section-heading p {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}
/*==========================
    Logo Grid
==========================*/
.company-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px 40px;
    max-width:1200px;
    margin:auto;
    align-items:center;
}
.company{
    display:flex;
    justify-content:center;
    align-items:center;
}
.company img{
    max-width:180px;
    max-height:90px;
    width:100%;
    height:auto;
    object-fit:contain;
    filter: grayscale(65%) saturate(70%);
    opacity: .85;
    transition:
        filter .35s ease,
        transform .35s ease,
        opacity .35s ease;
}
.company:hover img{
    filter: grayscale(0%) saturate(100%);
    opacity:1;
    transform:translateY(-6px) scale(1.06);
}
.company:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:translateY(-6px) scale(1.06);

}
@media(max-width:900px){
.company-grid{
    grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:550px){
.company-grid{
    grid-template-columns:1fr;
    gap:45px;
}
.section-heading h2{
    font-size:2.2rem;
}
.company img{
    max-width:170px;
}
}
/*=====================================================
  Info Section
=====================================================*/
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.info-content {
  text-align: center;
  max-width: 600px;
  margin-bottom: 20px;
}
.info-content h2{
    position:relative;
    font-size:2.35rem;
    color:var(--primary-color);
    padding-bottom:14px;
    margin-bottom:24px;
}
.info-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 999px;
}
.info-content h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.info-content p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}
.info-button {
  background: var(--primary-color);
  text-decoration: none;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.info-button:hover {
  background: var(--secondary-color);
}
.info-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .info-section {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px;
  }
  .info-content {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
  .info-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .info-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
  }
  .info-image img {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
  }
  .info-content h2 {
    position: relative;
    display: inline-block;
    font-size: 2.15rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding-bottom: 14px;
    margin-bottom: 22px;
  }
  .info-content h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 20px;
  }
.info-content h3 {
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 24px;
}
.info-content p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 95%;
  margin: 0 auto 30px;
}
}
/*=====================================================
  Agent Section
=====================================================*/
.agent-section {
  padding: 60px 20px;
  background-color: var(--body-bg);
}
.agent-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  gap: 35px;
}
/*=====================================================
  Agent Photo
=====================================================*/
.agent-photo {
  flex-shrink: 0;
}
.agent-photo img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(44, 62, 80, 0.14);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.agent-photo img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 26px rgba(44, 62, 80, 0.2);
}
/*=====================================================
  Agent Text Content
=====================================================*/
.agent-details {
  width: 100%;
  max-width: 700px;
  text-align: left;
}
.agent-details h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  color: var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.agent-details h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 115px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 10px;
}
.agent-details p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 18px;
}

.agent-details h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin: 20px 0 10px;
}
/*=====================================================
  Agent Feature List
=====================================================*/
.agent-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.agent-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 4px;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-color);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}
.agent-features li:hover {
  transform: translateX(6px);
  background-color: var(--background-light);
}
.agent-features li i {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 5px;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.agent-features li:hover i {
  transform: scale(1.15);
  color: var(--secondary-color);
}
@media (min-width: 768px) {
  .agent-section .container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 55px;
  }
  .agent-details {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .agent-section {
    padding: 65px 20px;
  }
  .agent-section .container {
    padding: 20px;
    gap: 30px;
  }
  .agent-photo {
    margin-bottom: 10px;
  }
  .agent-photo img {
    width: 170px;
    height: 170px;
  }
  .agent-details {
    text-align: center;
  }
  .agent-details h2 {
    margin-bottom: 30px;
  }
  .agent-details h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .agent-details p {
    margin-bottom: 40px;
  }
  .agent-details h3 {
    margin-bottom: 25px;
  }
  .agent-features {
    text-align: left;
  }
  .agent-features li {
    padding: 8px 12px;
    margin-bottom: 10px;
  }
  .agent-features li:hover {
    transform: translateX(3px);
  }
}
/*=====================================================
  Testimonials Section
=====================================================*/
.testimonials {
  padding: 40px 20px;
  text-align: center;
}
.testimonials h2{
    position:relative;
    display:inline-block;
    font-size:2rem;
    color:var(--primary-color);
    padding-bottom:14px;
    margin-bottom:40px;
}
.testimonials h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:70px;
    height:3px;
    background:var(--primary-color);
    border-radius:999px;
}
.testimonial-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.testimonial-item {
  background: var(--body-bg);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-item p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 10px;
}
.testimonial-item h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: bold;
}
@media (min-width: 768px) {
  .testimonial-items {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .testimonials {
    padding: 65px 20px;
  }
  .testimonials h2 {
    position: relative;
    display: inline-block;
    font-size: 2.15rem;
    line-height: 1.2;
    font-weight: 600;
    padding-bottom: 14px;
    margin-bottom: 40px;
  }
  .testimonials h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 999px;
  }
  .testimonial-items {
    gap: 30px;
  }
  .testimonial-item {
    width: 92%;
    max-width: 340px;
    padding: 28px 22px;
  }
  .testimonial-item p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .testimonial-item h3 {
    font-size: 1.35rem;
  }
}
/*=====================================================
  Map Section
=====================================================*/
.map-section {
  margin-top: 40px;
  padding: 40px 20px;
  text-align: center;
  background: var(--background-light);
}
.map-section h2{
    position:relative;
    display:inline-block;
    font-size:2rem;
    color:var(--primary-color);
    padding-bottom:14px;
    margin-bottom:40px;
}
.map-section h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:70px;
    height:3px;
    background:var(--primary-color);
    border-radius:999px;
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
/*=====================================================
  FAQ Section
=====================================================*/
.faq {
  padding: 40px 20px;
  background-color: var(--body-bg);
}
.faq h2{
    position:relative;
    font-size:2rem;
    color:var(--primary-color);
    text-align:center;
    padding-bottom:14px;
    margin-bottom:40px;
}
.faq h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:70px;
    height:3px;
    background:var(--primary-color);
    border-radius:999px;
}
.faq-container {
  max-width: 600px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--primary-color);
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  margin-top: 10px;
  color: var(--text-color);
  font-size: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
/*=====================================================
  Footer Section
=====================================================*/
footer {
  background: var(--dark-bg);
  border-top: 1px solid #ddd;
  padding: 20px;
  color: white;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-container a {
  text-decoration: none;
  background: transparent;
}
.footer-left *,
.footer-contact *,
.footer-nav *,
.footer-hours *,
.footer-copy * {
  background-color: transparent !important;
  color: white;
}
.footer-left {
  text-align: center;
}
.footer-left img {
  height: 50px;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 1rem;
}
.footer-contact h4,
.footer-nav h4,
.footer-hours h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  margin-bottom: 15px;
}
footer a:active,
footer a:focus,
footer a:visited {
  color: white !important;
}
.footer-contact {
  text-align: center;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.9rem;
}
.footer-contact p a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-hours {
  text-align: center;
  margin-top: 20px;
}
.footer-hours p {
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-nav {
  text-align: center;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.footer-nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav ul li a:hover {
  color: var(--secondary-color);
}
.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left,
  .footer-contact,
  .footer-hours,
  .footer-nav {
    flex: 1;
  }
  .footer-left {
    text-align: left;
    max-width: 300px;
  }
  .footer-contact {
    text-align: left;
    max-width: 400px;
    margin: 0 20px;
  }
  .footer-hours {
    text-align: left;
    max-width: 300px;
    margin: 0 20px;
  }
  .footer-nav {
    text-align: left;
    max-width: 300px;
  }
}
/*=====================================================
  Ultra-wide Screens Global
=====================================================*/
@media (min-width: 2100px) {
  body {
    max-width: 2100px;
    margin: 0 auto;
  }
}