/* Reset margins and padding for body and html */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  min-height: 100vh;
}

.wrapper-min {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Flex-grow for the content to push the footer down */
.content {
  flex: 1;
}

.service-content {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* General styles */
body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  margin: 0;
  padding: 0;
}

#main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  margin-top: 100px;
}

@media (min-width: 768px) {
  .content {
    margin-top: 0;
  }
}



/* Button styles */

.blue-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

.blue-button:hover {
  background-color: #0056b3;
}

.settings-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  /* Default width for mobile */
}

@media (min-width: 768px) {
  .settings-container {
    width: 80%;
    /* Width for tablets and small desktops */
  }
}

@media (min-width: 1024px) {
  .settings-container {
    width: 60%;
    /* Width for larger desktops */
  }
}

@media (min-width: 1200px) {
  .settings-container {
    width: 50%;
    /* Width for very large desktops */
  }
}



/* Responsive Grid System */
.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.box-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  width: 100%;
  margin: 20px;
}

@media (max-width: 768px) {
  .box-container {
    width: calc(100% - 40px);
  }
}



@media (min-width: 768px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Form */
form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="date"],
form input[type="checkbox"],
form input[type="tel"],
form button {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}

.form-center {
  text-align: center;
}

select {
  text-align: center;
  text-align-last: center;
  /* For modern browsers */
  width: calc(90% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  appearance: none;
  /* Remove default arrow */
  background: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-color: #fff;
  background-size: 12px;
}

select option {
  text-align: center;
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.checkbox-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.checkbox-item:hover {
  border-color: #007bff;
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkbox-item span {
  margin: 0;
  cursor: pointer;
}

.checkbox-item.selected {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

#apt-description {
  width: 100%;
  /* Make the textarea take the full width of its container */
  max-width: 100%;
  /* Ensure it doesn't exceed the container's width */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */
}

/* Popup Styles */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 2000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  /* Black w/ opacity */
}

.popup.show {
  display: block;
  opacity: 1;
}

.popup-content {
  background-color: #fefefe;
  border-radius: 5px;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  text-align: center;
  transition: transform 0.5s ease-in-out;
  transform: translateY(-50px);
}

.popup.show .popup-content {
  transform: translateY(0);
  /* Move to original position */
}

@media (min-width: 768px) {
  .popup-content {
    width: 70%;
    margin: 3% auto;
  }
}

@media (min-width: 1080px) {
  .popup-content {
    width: 40%;
    margin: 3% auto;
    /* Width for desktop */
  }
}

.popup-content form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-button:hover {
  background-color: #0056b3;
}

/* Additional Styles */
.forgot-password-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

/* Dashboard Styles */
.main {
  padding: 20px;
  display: block;
}

/* Login Page Styles */
.login-outer-container {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  background-color: #f8f9fa;
}

.login-container {
  margin-top: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.login-container label {
  display: block;
  margin-bottom: 5px;
  width: 100%;
}

.login-container input[type="text"],
.login-container input[type="password"],
.login-container input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}

.create-account-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}

.create-account-link:hover {
  text-decoration: underline;
}

.message {
  margin-top: 10px;
  color: red;
  text-align: center;
}

.account-container {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.account-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.account-container label {
  display: block;
  margin-bottom: 5px;
}

.account-container input[type="text"],
.account-container input[type="password"],
.account-container input[type="email"],
.account-container input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.account-container button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.account-container button:hover {
  background-color: #0056b3;
}

.forgot-password-container h2 {
  margin-top: 0;
}

.forgot-password-container form {
  display: flex;
  flex-direction: column;
}

.forgot-password-container form label {
  margin-bottom: 5px;
}

.forgot-password-container form input[type="email"],
.forgot-password-container form button {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.forgot-password-container form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.forgot-password-container form button:hover {
  background-color: #0056b3;
}

/* Close button */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Hero section */

.hero {
  position: relative;
  width: 100%;
  min-height: 224px;
  padding-top: 20%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  background: url('../images/company-roof-small.jpg') no-repeat center center;
  background-size: cover;
  transition: background 1s ease-in-out;
}

@media (min-width: 768px) {
  .hero {
    position: relative;
    width: 100%;
    padding-top: 28.125%;
    padding-bottom: 0;
    overflow: hidden;
  }
}


.hero.no-background {
  background: none;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


#hero-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background-color: rgba(128, 128, 128, 0.5);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 1;
  padding: 20px;
}

@media (min-width: 768px) {
  #hero-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    background-color: rgba(128, 128, 128, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
  }
}

@media (min-width: 1080px) {
  #hero-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    background-color: rgba(128, 128, 128, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
  }
}

#hero-inner h1 {
  margin: 10px;
  font-size: 1.2em;
}

@media (min-width: 768px) {
  #hero-inner h1 {
    font-size: 1.6em;
  }
}

@media (min-width: 1080px) {
  #hero-inner h1 {
    font-size: 2em;
  }
}

#hero-inner h2 {
  margin: 0;
  font-size: 1em;
  margin-bottom: 10px;
  font-family: "Open Sans", Arial, sans-serif;
}

@media (min-width: 768px) {
  #hero-inner h2 {
    margin: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
}

@media (min-width: 1080px) {
  #hero-inner h2 {
    margin: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
}

.cta-button {
  /* display: inline-block; */
  padding: 10px 20px;
  margin-top: 5px;
  background-color: #ffcc00;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: none;
  border: none;
}



.homepage-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 600px;
  min-height: 290px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .homepage-service {
    min-height: 320px;
    padding: 5px
  }
}

.features {
  padding: 25px 20px;
  background-color: #F9F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features h2 {
  margin-bottom: 15px;
}

.homepage-service h3 {
  color: #112D4E;
  font-size: 1.3em;
}

.homepage-service hr {
  margin: 10px 0;
  border: 1px solid #112D4E;
  width: 75%;
}



.homepage-service:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

#feature-inner-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  #feature-inner-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .homepage-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
  }
}


/* Call-to-action section */
.cta {
  padding: 50px 20px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}

.cta .cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #ffcc00;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #ffcc00;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Carousel styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin-bottom: 0 auto 20px auto;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

.carousel-inner .carousel-item {
  display: none;
}

.carousel-inner .carousel-item.active {
  display: block;
}




.svg-white {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.svg-black {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Brands */

/* Basic styling */
.brand-banner {
  padding: 20px;
  background: #f5f5f5;
  overflow: hidden;
}

.brand-banner h4 {
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

/* Marquee setup */

.logo-marquee {
  overflow: hidden;
  /* Hide overflow to create marquee effect */
  white-space: nowrap;
}

/* .logo-marquee-inner { */
#brand-logos-1,
#brand-logos-2 {
  display: inline-flex;
  gap: 20px;
  transform: translateX(0);
  transition: transform 0.1s linear;
}

#brand-logos-1 {
  animation: marquee 40s linear infinite;
}

#brand-logos-2 {
  animation: marquee 40s linear infinite;
}

.logo-marquee-inner img {
  height: 50px;
  /* Adjust as needed */
  object-fit: contain;
}

/* Keyframe for infinite scroll */
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* @-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
} */

.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease;
}

.brand-card-top img {
  width: 100px;
  max-height: 50px;
  margin-bottom: 10px;
}

.brand-card-top h2 {
  font-size: 1em;
  margin: 10px 0;
}

.brand-card-top a {
  color: #007bff;
  text-decoration: none;
}

.brand-card-top:hover {
  transform: scale(1.05);
}

.brand-card-bottom {
  position: relative;
  margin-top: auto;
}



.content h1 {
  text-align: center;
  margin: 20px;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  padding: 20px;
}

.contact-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-column iframe {
  width: calc(100% - 20px);
}

.contact-column h2 {
  margin-top: 0;
}

.contact-column form {
  display: flex;
  flex-direction: column;
}

.contact-column form label {
  margin-bottom: 5px;
}

.contact-column form input,
.contact-column form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-column form button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-column form button:hover {
  background-color: #0056b3;
}

.about-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.about-container p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.history-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#history-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.features {
  position: relative;
  padding: 20px;
}

.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#service-search,
#brand-search {
  width: 300px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: all 0.3s ease;
}

#service-search:focus,
#brand-search:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-size: auto;
  background-color: #ffffff;
  border-bottom: 4px solid #ffcc00;
  height: 100px;
}

@media (min-width: 768px) {
  .header {
    position: relative;
    height: auto;
  }
}


.logo-container {
  flex:1;
  display: flex; 
  position: absolute;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  align-items: center;
}


@media  (min-width: 768px) {
  .logo-container {
    position: static;
  }
}

.logo {
  height: 100px;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {


  .logo {
    height: 80px;
    padding: 0;
    margin-left: 0;
  }
}

.search-container {
  flex: 2;
  display: none;
  position: relative;
  margin: 20px 20px;
}

@media (min-width: 1000px) {
  .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

.search-bar-home {
  display: flex;
  width: 100%;
  justify-content: center;
}

#service-search-home {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: all 0.3s ease;
}

/* @media (min-width: 1080px) {
  #service-search-home {
    width: 400px;
  }
} */

#service-search-home:focus,
#brand-search:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-result {
  display: none;
}
.home-services {
  display: none
}

#no-service-results-home {
  position: absolute;
  display: none;
  z-index: 1000;
  top: calc(100% + 10px); /* Places it slightly below the search box */
  left: 30%; /* Align to the center of the parent */
  transform: translateX(-50%); /* Center it relative to the parent */
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

#service-results-home {
  position: absolute;
  display: none;
  z-index: 1000;
  top: calc(100% + 10px);
  /* Places it slightly below the search box */
  left: 30%;
  /* Align to the center of the parent */
  transform: translateX(-50%);
  /* Center it relative to the parent */
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.service-result-line {
  text-decoration: none;
}

.required-asterisk {
  color: red;
  margin-left: 5px;
}

#create-appointment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.checkbox-item span {
  font-weight: 400;
}


/* Admin Dashboard */



.dashboard {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th,
table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

table th {
  background-color: #f9f9f9;
}

table tr:nth-child(even) {
  background-color: #f2f2f2;
}

button {
  padding: 5px 10px;
  margin-right: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button.approve {
  background: #4CAF50;
  color: white;
}

button.reject {
  background: #f44336;
  color: white;
}

button.details {
  background: #2196F3;
  color: white;
}

button.archive {
  background: #848484;
  color: white;
}



.disclaimer {
  font-size: 0.6em;
  color: #777;
  margin-top: 20px;
}



.item {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  max-width: fit-content;
  box-sizing: border-box;
}

.item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.item ul {
  list-style-position: inside;
  padding-left: 20px;
  margin: 0;
}

.item ul li {
  margin-bottom: 10px;
}

.option-selector {
  width: 40%;
}

.spinner {
  border: 3px solid #f3f3f3;
  /* Light grey */
  border-top: 3px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



#home-title {
  opacity: 0;
  /* Start transparent */
  transform: translateY(20px);
  /* Start slightly below */
  animation: slideFadeIn 1.5s ease forwards;
  animation-delay: .8s;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#home-subtitle {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomFadeIn 2s ease forwards;
  animation-delay: 1.6s;
}

@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomFadeInSlight {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 769px) {
  .hero {
      animation: zoomFadeInSlight 1s ease forwards;
    }
}


#reset-password-request-form {
  width: 350px;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grecaptcha-badge {
  visibility: hidden;
}