footer {
  /* sizing */
  width: 100%;
  margin-top: 10vh;
  height: 30vh;
  

  /* color */
  background-color: var(--dk-b);
}

footer p {
  width: 100%;
  color: white;
  background-color: var(--dk-b);
  padding: 10px ;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.contactsBox {
   /* sizing */
  width: 90vw;
  height: fit-content;
  margin-right: auto;
  margin-left: auto;

   /* position */
  translate: 0 -40%;
}

.contactsBox h5 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 1% 10%;

  text-align: center;
  font-size: 100%;

  border: none;

}

.contacts {
  /* sizing */
  width: 90vw;
  height: 10vh;
  margin-right: auto;
  margin-left: auto;

  /* display */
  display: flex;

 

  /* color */
  background-color: black;
}

.contacts a {
  /* sizing */
  width: 50%;
  height: 10vh;

  /* text */
  text-transform: uppercase;
  font-size: 100%;
  font-weight: 900;
  text-decoration: none;

  /* display */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  

  /* color */
  color: white;

  transition: background-color 0.4s;
}

.contacts a:hover {
  background-color: var(--y);
  color: black;
  border: 2px solid black;
}

.number {
  border-right: 5px solid var(--y);
}

.footerCta {
  /* sizing */
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2%;
  margin-bottom: 2%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  /* display */
  display: block;

  /* text */
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;



  /* color */
  background-color: var(--y);
  color: black;
}

.quickLinks {
  /* sizing */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;

  /* display */
  display: flex;
  justify-content: space-evenly;

  /* color */
  background-color: var(--dk-b);

}

.quickLinks a {
  /* text */
  font-size: 80%;
  font-weight: 900;
  text-transform: uppercase;

  /* color */
  color: white;
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
@media (min-width: 568px) {
  .contacts {
    width: 70%;
  }

  .contactsBox h5 {
    width: 60%;
    font-size: 120%;
  }

  .contacts a {
    font-size: 120%;
  }
}

/* tablet */
/*@media (min-width: 768px) {

} */

/* desktop */
/* @media (min-width: 1024px) {
 
} */