body {
  margin: 0;
  padding: 0;
  width: 100vw;
} 
* {
  box-sizing: border-box;
}
body {
  color: black;
}
:root {
  --primary: #28528a;
  /* --primary: #73C7C7; */
  --secondary: #EBE1EF;
  /* --secondary: #F4F8D3; */
}
::selection {
  background-color: var(--primary);
  color: var(--secondary);
}
.active_header {
  border-bottom: 2px solid var(--secondary);
}

/* Style for the loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* Keyframe animation for spinning */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.nav-link{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar {
  background-color: var(--primary);
}
.navbar a {
  color: white;
  
}
.navbar a:hover,
.navbar a:focus {
  color: var(--secondary);
  background-color: var(--primary);
}
.navbar ul li{
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-fluid {
  justify-content: space-between;
}
.dropdown-menu a {
  color: black;
}
#logo {
  width: 10rem;
  background-color: white;
  padding: 5px;
  border-radius: 10px;
}
.top_header {
  height: 2rem;
  background-color: var(--secondary);
  padding: 0rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_header a {
  text-decoration: none;
  color: black;
}
.contact_info svg,
.contact_info b {
  margin: 5px;
}
.social_handle svg,
.social_handle b {
  margin: 0px 5px;
}

footer {
  background-color: var(--primary);
  display: flex;
  justify-content: space-between;
  padding: 2rem 5rem;
  margin-top: 5rem;
  color: white;
}
.footer_logo {
  width: 20rem;
}

.footer_logo img {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  margin: 1rem 0rem;
}
.footer_logo a {
  margin: 0rem 0.5rem;
}
.customer_support ul,
.about_footer ul,
.info_links ul {
  padding: 0;
}
.customer_support li,
.about_footer li,
.info_links li {
  list-style: none;
}
.customer_support a,
.about_footer a,
.info_links a {
  text-decoration: none;
  color: white;
}
.about_footer{
  width: 20rem;
}
.bottom_footer {
  border-top: 2px solid white;
  background-color: var(--primary);
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.copyright a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Styles for mobile devices */
@media screen and (max-width: 768px) {
  .top_header {
    flex-direction: column;
    text-align: center;
    padding: 0;
    height: auto;
  }

  footer {
    flex-direction: column;
    padding: 2rem;
  }
  footer > div {
    margin: 1rem 0rem;
  }
.bottom_footer {
    flex-direction: column;
}
.copyright, .copyright a{
    font-size: 0.8rem;
}
.payment_method img{
    width: 10rem;
}
}

/* Styles for laptops */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
  footer{
    flex-direction: column;
   }
  footer > div {
    margin: 1rem 0rem;
  }
}
