/* footer */

.box {
  background-color: var(--primary-color);
  margin-top: 5rem;
}

footer {
  padding-top: 2rem;
}
.footer-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;

}

.footer-list {
  display: flex;
  flex-direction: column;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  align-content: space-between;
  margin-bottom: 40px;

}

.footer-menu div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-btn {
  align-self: self-start;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1rem; 
}

.footer-btn:hover {
  background-color: #76131b;
}

footer h5 {
  color: rgb(236, 238, 240);
  font-size: 1rem;
}

footer li {
  color: rgb(236, 238, 240, 0.6);
  list-style: none;

}

footer a {
  color: rgb(236, 238, 240, 0.6);
}

footer p {
  color: rgb(236, 238, 240, 0.6);
}

.footer-list {
  font-size: 0.625rem;
}

.newsletter {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: self-start;
  /* align-items: flex-start; */
}

.newsletter input {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--white-color);
  background-color: rgb(255, 255, 255, 0.8);
}

.newsletter input:focus {
  outline: 2px solid #bd202e;
}

.footer-socials {
  margin-top: 1.5rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.socials a i {
  color: #eff6ffa1;
  font-size: 1.25rem;
} 

.socials a i:hover {
  color: #eff6ff;
} 

.copyright {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(236, 238, 240, 0.5) ;
}

.copyright a {
  font-size: 0.75rem;
  color: #eff6ff;
}

.copyright span {
  border: 1px solid var(--secondary-color);
  padding-top: 0.1rem;
  margin: 0 0.5rem;
}

.footer-copyright {
  display: flex;
  gap: 1.125rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;

}

.footer-copyright  img{
  width: 50px;
}

.footer-copyright  p{
  font-size: 0.625rem;
}




/* xs */
/* @media (min-width: 475px) {

} */

/* sm */
/* @media (min-width: 640px) {

} */

/* md */
@media (min-width: 768px) {
/* footer */

.footer-box {
  padding: 0 1rem;
}

.footer-list {
  flex-direction: row;
  justify-content: space-between;
}

.footer-menu {
  width: 60%;
  flex-direction: row;
  gap: 1rem;
}

.footer-menu div {
  width: 50%;
  /* justify-content: space-between; */
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.input-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;

}

.copyright {

  flex-direction: row-reverse;
  /* justify-content: space-between; */

  /* Align to center because privacy and policy section is currently commented out */
  /* align-items: flex-end; */
  align-items: center;
  padding-top: 1rem;
  margin-bottom: 1rem;

}

.footer-copyright {
  display: flex;
  margin-bottom: 0;

}

}

/* lg */
@media (min-width: 1024px) {

  .footer-menu {
      width: 70%;
      margin-bottom: 10px;
  }
  
  footer p {
      color: rgb(236, 238, 240);
  }
  
  .footer-copyright  img{
      width: 70px;
  }
  
  .footer-copyright  p{
      font-size: 0.875rem;
  }
  
}

/* xl */
@media (min-width: 1280px) {
  .footer-box {
      padding: 0 1rem;
  }
  
  .input-box {
      flex-direction: row;
      gap: 0;
  }

  .input-box input {
      width: 250px;
      border-radius: 5px 0 0 5px;
  }

  .footer-btn {
      /* font-size: 1.25rem; */
      padding: 0.5rem 2rem; 
      border-radius: 0 5px 5px 0;
  }
  
  .copyright {
      padding-top: 2rem;
      margin-bottom: 2rem;
  }

  .copyright a{
      font-size: 1rem;
  }

  .footer-list {
      width: 100%;
      margin-bottom: 10px;
      justify-content: space-between;
      align-content: flex-start;
  }

  .footer-menu {
      display: flex;
      /* width: 55%; */
      justify-content: space-between;
      align-content: space-between;
  
  }

  footer h5 {
      padding-bottom: 1rem;
      padding-top: 1.5rem;
  }
  
  footer p {
      color: rgb(236, 238, 240);
  }
  
  .footer-copyright  img{
      width: 100px;
  }
  
  .footer-copyright  p{
      font-size: 1rem;
  }
}

/* 2xl */
@media (min-width: 1536px) {
 
}