/* Fonts starts here */

@font-face {
  font-family: "Goldman-Regular";
  src: url(./Fonts/Goldman-Regular.ttf);
}

@font-face {
  font-family: "ContrailOne-Regular";
  src: url(Fonts/ContrailOne-Regular.ttf);
}

@font-face {
  font-family: "CrimsonText";
  src: url(Fonts/CrimsonText-Regular.ttf);
}

@font-face {
  font-family: "Golos";
  src: url(Fonts/GolosText-Regular.ttf);
}

@font-face {
  font-family: "Google";
  src: url(Fonts/GoogleSansFlex_24pt-Regular.ttf);
}

@font-face {
  font-family: "Stack";
  src: url(Fonts/StackSansText-Regular.ttf);
}

/* Fonts End here */

body {
  padding-top: 100px;
}

/* Navigation starts here */

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Stack";
}

.navbar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: #0e4776;
  height: 100px;
  font-size: 24px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 0 10px;
  margin: 0 auto;
  padding-left: 120px;
}

.navbar2 {
  display: none;
}

.navbar__container2 {
  display: none;
}

#navbar__logo {
  height: 60px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
  position: relative;
}

.navbar__menu a {
  font-family: Stack;
}

.navbar__item {
  height: 100%;
}

.navbar__links {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 2rem;
  height: 100%;
}

.navbar__links a {
  padding-left: 0;
}

/* Navigation Pay Button Starts here */
.Pay_Button {
  font-family: "Crimson Text", serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  background-color: #f52100;
  cursor: pointer;
  color: white;
  padding: 0.3em 1em;
  margin-left: 10px;
  transition:
    box-shadow ease-in-out 0.3s,
    background-color ease-in-out 0.1s,
    letter-spacing ease-in-out 0.1s,
    transform ease-in-out 0.1s;
  text-decoration: none;
}

.Pay_Button:hover {
  color: black;
  background-color: #ffffff;
  transition: all 0.6s ease;
  transform: translateY(-5px);
}

.Pay_Button:active {
  box-shadow:
    var(--hover-shadows),
    var(--accent) 0px 0px 30px 5px;
  background-color: var(--accent);
  transform: scale(0.95);
}

.navbar__links:hover {
  color: #000000;
  transition: all 0.3s ease;
  display: block;
  background-color: rgba(148, 156, 163, 0.99);

  text-decoration: none;
}

/* Navigation End here */

.sub-menu {
  padding: 2rem;
  text-align: center;
}
.sub-menu .About {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  align-items: center;
  justify-content: center;
  width: 57%;
  height: 60%;
  background-color: #cccccc;
  border: none;
  color: rgb(0, 0, 0);
}

/* Red Report Issue Box Starts here */
.Report-Issue {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  align-items: center;
  justify-content: center;
  width: 57%;
  height: 60%;
  background-color: #f52100;
  border: none;
  color: white;
  text-align: center;
}

.Report-Issue h1 {
  font-family: "Goldman-Regular";
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.phone-link {
  color: white;
  text-decoration: none;
  font-family: "Goldman-Regular";
}
/* Red Report Issue Box Ends here */

/*Sub-Menu-Power Start*/

.sub-menu-power {
  display: none;
}

.navbar__container ul li:hover .sub-menu-power {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:focus-within .sub-menu-power {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:hover .sub-menu-power a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:focus-within .sub-menu-power a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:hover .sub-menu-power ul {
  list-style-type: none;
}

.navbar__container ul li:focus-within .sub-menu-power ul {
  list-style-type: none;
}

.navbar__container ul li:hover .sub-menu-power ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:focus-within .sub-menu-power ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:hover .sub-menu-power ul li:hover a {
  color: #000000;
  transition: all 0.3s ease;
}

.navbar__container ul li:focus-within .sub-menu-power ul li:focus-within a {
  color: #000000;
  transition: all 0.3s ease;
}

/*Sub-Menu-Power End*/

/*Sub-Menu-Water Start*/

.sub-menu-water {
  display: none;
}

.navbar__container ul li:hover .sub-menu-water {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);

  text-decoration: none;
}

.navbar__container ul li:focus-within .sub-menu-water {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);

  text-decoration: none;
}

.navbar__container ul li:hover .sub-menu-water a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:focus-within .sub-menu-water a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:hover .sub-menu-water ul {
  list-style-type: none;
}

.navbar__container ul li:focus-within .sub-menu-water ul {
  list-style-type: none;
}

.navbar__container ul li:hover .sub-menu-water ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:focus-within .sub-menu-water ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:hover .sub-menu-water ul li:hover a {
  color: #000000;
  transition: all 0.3s ease;
}

.navbar__container ul li:focus-within .sub-menu-water ul li:focus-within a {
  color: #000000;
  transition: all 0.3s ease;
}

/*Sub-Menu-Water End*/

/*Sub-Menu-sewer Start*/

.sub-menu-sewer {
  display: none;
}

.navbar__container ul li:hover .sub-menu-sewer {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:focus-within .sub-menu-sewer {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:hover .sub-menu-sewer a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:focus-within .sub-menu-sewer a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:hover .sub-menu-sewer ul {
  list-style-type: none;
}

.navbar__container ul li:focus-within .sub-menu-sewer ul {
  list-style-type: none;
}

.navbar__container ul li:hover .sub-menu-sewer ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:focus-within .sub-menu-sewer ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:hover .sub-menu-sewer ul li:hover a {
  color: #000000;
  transition: all 0.3s ease;
}

.navbar__container ul li:focus-within .sub-menu-sewer ul li:focus-within a {
  color: #000000;
  transition: all 0.3s ease;
}

/*Sub-Menu-sewer End*/

/*Sub-Menu-about-us Start*/

.sub-menu-about-us {
  display: none;
}

.navbar__container ul li:hover .sub-menu-about-us {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:focus-within .sub-menu-about-us {
  display: block;
  position: absolute;
  background-color: rgba(148, 156, 163, 0.99);
  text-decoration: none;
}

.navbar__container ul li:hover .sub-menu-about-us a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:focus-within .sub-menu-about-us a {
  list-style-type: none;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
  padding: 6px 13px;
  display: block;
}

.navbar__container ul li:hover .sub-menu-about-us ul {
  list-style-type: none;
}

.navbar__container ul li:focus-within .sub-menu-about-us ul {
  list-style-type: none;
}

.navbar__container ul li:hover .sub-menu-about-us ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:focus-within .sub-menu-about-us ul li {
  padding: 10px;
  padding-left: 0px;
  border-bottom: 1px dotted #000000;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.navbar__container ul li:hover .sub-menu-about-us ul li:hover a {
  color: #000000;
  transition: all 0.3s ease;
}

.navbar__container ul li:focus-within .sub-menu-about-us ul li:focus-within a {
  color: #000000;
  transition: all 0.3s ease;
}

/*Sub-Menu-sewer End*/

/* slider starts here */

.slider-container {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 1fr minmax(0, 50rem) 1fr;
  grid-template-rows: auto auto;
}

.slider-container a {
  font-family: "Stack";
}

.slider-container h2 {
  display: none;
}

.slider-wrapper {
  display: grid;
  grid-template-rows: auto auto;
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 50rem;
  margin: 0 auto;
  width: 100%;

  row-gap: 0.75rem;
}

.slides {
  grid-row: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;

  /* CHANGE THESE LINES */
  overflow-x: auto; /* Allow horizontal movement */
  scroll-snap-type: x mandatory; /* Makes slides snap into place */
  scroll-behavior: smooth; /* Smooth scrolling for links */

  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.25);
}

.slides > * {
  flex: 0 0 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  scroll-snap-align: start; /* Tells each slide where to snap */
}

.slides::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  grid-row: 2;
  display: flex;
  justify-content: center; /* centered horizontally */
  column-gap: 1rem;
}

.slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #312e2e;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a.active {
  background-color: #f52100;
  opacity: 1;
}

.slider-nav a:hover {
  opacity: 1;
  background-color: #551107;
}

/* slider ends here */

/* The Four Cards on the Slider Starts here */
/* About Us Sub Menu Starts here */

.container {
  color: rgb(0, 0, 0);
  grid-column: 1;
  font-family: sans-serif;
  max-width: 80rem;
  justify-self: end;
  padding-right: 30px;
}

.container::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container::after {
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container .box {
  width: 11.875em;
  height: 13.875em;
  padding: 1.3rem;
  background-color: rgba(82, 81, 81, 0.074);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container .box {
  flex-direction: column;
  justify-content: space-between;
}

.container .box .title {
  font-size: 1.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.container .box:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-5px);
}

.container .box img {
  width: 9.5rem;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.container .box {
  display: flex;
}

/* About Us Sub Menu Ends here */

/* Resources Sub Menu Starts here */
.container2 {
  color: rgb(0, 0, 0);
  grid-column: 1;
  grid-row: 2;
  font-family: sans-serif;
  max-width: 100rem;
  justify-self: end;
  padding-right: 30px;
}

.container2::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container2::after {
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container2 .box {
  width: 11.875em;
  height: 13.875em;
  padding: 1.3rem;
  background-color: rgba(82, 81, 81, 0.074);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container2 .box {
  flex-direction: column;
  justify-content: space-between;
}

.container2 .box .title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.container2 .box:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-5px);
}

.container2 .box img {
  width: 9.5rem;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.container2 .box {
  display: flex;
}

/* Resources Sub Menu Ends here */

/* Jobs Sub Menu Starts here */
.container3 {
  color: rgb(0, 0, 0);
  grid-column: 3;
  justify-self: start;
  font-family: sans-serif;
  max-width: 80rem;
  padding-left: 30px;
}

.container3::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container3::after {
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container3 .box {
  width: 11.875em;
  height: 13.875em;
  padding: 1.3rem;
  background-color: rgba(82, 81, 81, 0.074);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container3 .box {
  flex-direction: column;
  justify-content: space-between;
}

.container3 .box .title {
  font-size: 1.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 11px;
}

.container3 .box:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-5px);
}

.container3 .box img {
  width: 9.4rem;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.container3 .box {
  display: flex;
}
/*Jobs Sub Menu Ends here */

/* Contact US Sub Menu Starts here */

.container4 {
  color: rgb(0, 0, 0);
  grid-column: 3;
  grid-row: 2;
  font-family: sans-serif;
  max-width: 80rem;
  justify-self: start;
  padding-left: 30px;
}

.container4::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container4::after {
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container4 .box {
  width: 11.875em;
  height: 13.875em;
  padding: 1.3rem;
  background-color: rgba(82, 81, 81, 0.074);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container4 .box {
  flex-direction: column;
  justify-content: space-between;
}

.container4 .box .title {
  font-size: 1.67rem;
  font-weight: 500;
  letter-spacing: 0em;
}

.container4 .box:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-5px);
}

.container4 .box img {
  width: 9.4rem;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.container4 .box {
  display: flex;
}
/* Contact US Sub Menu ends here */

/* The three movie poster cards starts here */

.Card-Container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

/* Pay card starts here */

.pay-here-card {
  position: relative;
  grid-column: 1;
  justify-self: end;
}

.pay-here-card h2 {
  position: absolute;
  top: 50%;
  color: #fffcfc;
  font-family: "ContrailOne-Regular", cursive;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 85px;
  padding-top: -300px;
}

.pay-here-card img {
  width: 22rem;
  height: 33rem;
  padding: 0.5rem;
  background-color: rgb(255, 84, 84);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);

  transition: all ease 0.3s;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33rem;
  width: 22rem;
  opacity: 0.45;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.pay-here-card:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-10px);
}

.pay-here-card:hover .overlay {
  opacity: 0.15;
  cursor: pointer;
  transition: all ease 0.9s;
  transform: translateY(-5px);
}

/* Pay card ends here */

/* View Map card starts here */

.ViewMap {
  position: relative;
  grid-column: 2;
  justify-self: center;
}

.ViewMap h2 {
  position: absolute;
  top: 50%;
  color: #fffcfc;
  font-family: "ContrailOne-Regular", cursive;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 100px;
  padding-top: 0px;
}

.ViewMap img {
  width: 22rem;
  height: 33rem;
  padding: 0.5rem;
  background-color: rgb(255, 84, 84);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);

  transition: all ease 0.3s;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33rem;
  width: 22rem;
  opacity: 0.45;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.ViewMap:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-10px);
}

.ViewMap:hover .overlay {
  opacity: 0.15;
  cursor: pointer;
  transition: all ease 0.9s;
  transform: translateY(-5px);
}

/* View Map card ends here */

/* FAQ card starts here */

.faq-card {
  position: relative;
  grid-column: 3;
  justify-self: start;
}

.faq-card h2 {
  position: absolute;
  top: 50%;
  color: #fffcfc;
  font-family: "ContrailOne-Regular", cursive;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 55px;
  padding-top: 0px;
}

.faq-card img {
  width: 22rem;
  height: 33rem;
  padding: 0.5rem;
  background-color: rgb(255, 84, 84);
  border: 1px solid rgba(0, 0, 0, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);

  transition: all ease 0.3s;
}

.faq-card:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 1px solid rgba(250, 16, 16, 0.454);
  background-color: #fc8a797a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(100px);
  transform: translateY(-10px);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33rem;
  width: 22rem;
  opacity: 0.45;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.faq-card:hover .overlay {
  opacity: 0.15;
  cursor: pointer;
  transition: all ease 0.9s;
  transform: translateY(-5px);
}

/* FAQ card ends here */

hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 1rem 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.Download {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: "Goldman-Regular", sans-serif;
}

.Download h2 {
  grid-column: 1 / span 2;
  justify-self: center;
  font-size: 2.2rem;
  font-family: "Goldman-Regular", sans-serif;
}

.Download .appstore {
  grid-column: 1;
  grid-row: 2;
}

.Download .appstore-text {
  grid-column: 1;
  grid-row: 3;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Goldman-Regular", sans-serif;
}

.Download .playstore-text {
  grid-column: 2;
  grid-row: 3;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Goldman-Regular", sans-serif;
}

.Download .playstore {
  grid-column: 2;
  grid-row: 2;
}

.Download img {
  width: 400px;
  height: 400px;
  object-fit: contain;
}

.Download .appstore :hover {
  transform: translateY(-5px);
  transition: all ease 0.3s;
}

/* Power Page Starts here */
.power a {
  display: flex;
  font-family: "Crimson Text", serif;

  margin-top: 2rem;
  margin-bottom: 2rem;
}

.power h2 {
  display: none;
}

.power-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(211, 33, 33);
  border: 2px solid black;
}

.power-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
}

.powerbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.powerdoc {
  position: relative;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 700px);
  row-gap: 2rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.powerdoc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.powerdoc > *:not(img) {
  position: relative;
  z-index: 1;
}

.powerdoc h2 {
  grid-row: 1;
  justify-self: center;
  font-family: "Stack", serif;
  font-size: 2.4rem;
}

.powerdoc .first {
  grid-row: 2;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.powerdoc .first {
  font-family: google;
}

.powerdoc .sec {
  font-family: google;
}

.powerdoc .sec {
  list-style-type: none;
  grid-row: 3;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  justify-self: center;
  margin-left: 1rem;
  margin-right: 1rem;
}

.powerbox {
  flex: 1;
}

.power-body,
.powerh {
  height: 100%;
  margin: 0;
}

.power-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Power-Documents h2 {
  font-family: "Stack", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* These are Cards that Every Page uses for to Display PDF From Uiverse.io by kamehame-ha */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 15px;
  background: #f9f9f9;
  flex-direction: column;
  gap: 15px;
}

.cards .card {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  width: 400px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .one {
  background-color: #a9a9a9;
}

.cards .two {
  background-color: #a9a9a9;
}

.cards .three {
  background-color: #a9a9a9;
}

.cards .four {
  background-color: #a9a9a9;
}

.cards .five {
  background-color: #a9a9a9;
}

.cards .six {
  background-color: #a9a9a9;
}

.cards .seven {
  background-color: #a9a9a9;
}

.cards .eight {
  background-color: #a9a9a9;
}

.cards .nine {
  background-color: #a9a9a9;
}

.cards .ten {
  background-color: #a9a9a9;
}

.cards .eleven {
  background-color: #a9a9a9;
}

.cards .twelve {
  background-color: #a9a9a9;
}

.cards .thirteen {
  background-color: #a9a9a9;
}

.cards .fourteen {
  background-color: #a9a9a9;
}

.cards .fifteen {
  background-color: #a9a9a9;
}

.cards .sixteen {
  background-color: #a9a9a9;
}

.cards .seventeen {
  background-color: #a9a9a9;
}

.cards .card p.tip {
  font-size: 1.5em;
  font-weight: 700;
}

.cards .card p.second-text {
  font-size: 1em;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
  background-color: #f52100;
  transition: all ease 0.3s;
}
/* These are Cards that Every Page uses for to Display PDF From Uiverse.io by kamehame-ha */
/* Power Page Ends here */

/* Power Rates page Starts here */
.power-substation {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(211, 33, 33);
  border: 2px solid black;
}

.power-substation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%; /* Adjust this to change which part of the image is centered */
}

/*power rates page ends here */

/*water page starts here */

.water a {
  display: flex;
  font-family: google;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.water h2 {
  display: none;
}

.water-video-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(232, 232, 232);
  border: 2px solid black;
}

#water-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
}

.waterbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.waterdoc {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 600px);
  row-gap: 2rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.waterdoc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09;
  z-index: 0;
}

.waterdoc > *:not(img) {
  position: relative;
  z-index: 1;
}

.waterdoc h2 {
  grid-row: 1;
  justify-self: center;
  font-family: "stack";
  font-size: 2.5rem;
}

.waterdoc .first {
  grid-row: 2;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.waterdoc .sec {
  list-style-type: none;
  grid-row: 3;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  justify-self: center;
  margin-left: 1rem;
  margin-right: 1rem;
}

.waterdoc .first {
  font-family: google;
}

.waterdoc .sec {
  font-family: google;
}

.waterbox {
  flex: 1;
}

.water-portion {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  width: min(90%, 600px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.water h2 {
  grid-column: 1;
  grid-row: 3;
  position: absolute;
  text-align: center;
  font-family: "Crimson Text", serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.water p {
  grid-column: 1;
  grid-row: 2;
  position: absolute;
  margin-left: 20rem;
  margin-right: 20rem;
  text-indent: 40px;
  text-align: justify;
  text-justify: inter-word;
  font-size: 1.1rem;
}

.water-portion img {
  grid-column: 1;
  grid-row: span 3;
  position: absolute;
  justify-self: center;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.1;
}

.water-body,
.Waterh {
  height: 100%;
  margin: 0;
}

.water-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.water-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.water-portion {
  display: grid;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 600px);
  row-gap: 2rem;
  height: 100%;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.water-portion h1 {
  grid-row: 1;
  justify-self: center;
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
}

.water-portion .first {
  grid-row: 2;
  font-size: 1.4rem;
  text-indent: 40px;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.water-portion .sec {
  grid-row: 3;
  font-size: 1.4rem;
  text-indent: 40px;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.water-portion h2 {
  grid-row: 4;
  justify-self: center;
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
}

.water-portion img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.water-content {
  flex: 1;
}

.Water-Documents h2 {
  font-family: "Stack";
  font-size: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* This Controls all the Leads names on the website here */
.Lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Google";
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.Lead a {
  font-size: 4.3rem;
}

/* From Uiverse.io by kamehame-ha */

.cards .card {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  width: 400px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .card p.tip {
  font-size: 1.5em;
  font-weight: 700;
}

.cards .card p.second-text {
  font-size: 1em;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
  background-color: #f52100;
  transition: all ease 0.3s;
}

.cards .CD1 {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 150px;
  width: 400px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .CD1 {
  background-color: #a9a9a9;
}

.cards .CD1:hover {
  transform: scale(1.1, 1.1);
  background-color: #f52100;
  transition: all ease 0.3s;
}

.cards .CD1 p.tip {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
}

.cards .CD1 p.second-text {
  font-size: 1.2rem;
  text-align: center;
}

.cards .CD1 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.cards .CD1 p {
  text-indent: 0; /* ✅ remove indent */
  text-align: center; /* ✅ center text */
}

/* Container for the cards */
.report-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 15px;
  background: #f9f9f9;
}

/* Individual card styling */
.wcard {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wcard:hover {
  transform: scale(1, 1);
  background-color: #f2a69a;
  transition: all ease 0.3s;
}

.wcard .tip {
  font-size: 1.19em;
  color: #555;
  text-align: center;
}

.wcard .second-text {
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* Summary - Controls the water page and the mobile hamburger menu kind of -_- */

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  background-color: #eee;
  border-radius: 5px;
  list-style: none;
}

summary::before {
  content: "▸";
  color: #000000;
}

details[open] summary::before {
  content: "▾";
}
/* Summary - Controls the water page and the mobile hamburger menu kind of -_- */

/* wcards Ends here */
/* Water Page Ends here */

/*sewer page starts here */

.sewer a {
  display: flex;
  font-family: "Crimson Text", serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sewer h2 {
  display: none;
}
.sewer-video-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(232, 232, 232);
  border: 2px solid black;
}

#sewer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
}

.sewerbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sewerdoc {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 600px);
  row-gap: 2rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.sewerdoc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.sewerdoc > *:not(img) {
  position: relative;
  z-index: 1;
}

.sewerdoc h2 {
  grid-row: 1;
  justify-self: center;
  font-family: "Stack";
  font-size: 2.5rem;
}

.sewerdoc .first {
  grid-row: 2;
  font-size: 1.84rem;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.sewerdoc .sec {
  list-style-type: none;
  grid-row: 3;
  font-size: 1.84rem;
  text-align: justify;
  text-justify: inter-word;
  justify-self: center;
  margin-left: 1rem;
  margin-right: 1rem;
}

.sewerdoc .first {
  font-family: google;
}

.sewerdoc .sec {
  font-family: google;
}

.sewerbox {
  flex: 1;
}

.sewer-content {
  flex: 1;
}

.Sewer-Documents h1 {
  font-family: "Crimson Text", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.Sewer-Documents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 15px;
  background: #f9f9f9;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinning-logo {
  animation: spin 8s linear infinite;
}

.sewer-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Stack";
  margin-top: 1rem;
  margin-bottom: 3rem;
  margin-left: 20px;
  margin-right: 20px;
}

.sewer-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.sewer-intro p {
  font-size: clamp(1.9rem, 2vw, 1.9rem);
  text-align: center;
  text-justify: inter-word;
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  font-family: google;
}

.sewer-intro ul {
  list-style-type: none;
  font-size: 1.6rem;
}

.sewer-intro li {
  font-family: google;
}

.Warning {
  font-size: 1.9rem;
  font-weight: bold;
}

/* Sewer Page Ends Here */

/* Contact Page Starts here */
.Contact h2 {
  display: none;
}

.Contact a {
  display: flex;
  font-family: "Crimson Text", serif;
}

.Contact-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(232, 232, 232);
  border: 2px solid black;
}

.Contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.Contact-body,
.Contact h1 {
  height: 100%;
  margin: 0;
}

.Contact-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Contactbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Contactdoc {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 800px);
  row-gap: 2rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.Contactdoc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.Contactdoc > *:not(img) {
  position: relative;
  z-index: 1;
}

.Contactdoc h2 {
  grid-row: 1;
  justify-self: center;
  font-family: "Stack";
  font-size: 2.5rem;
}

.Contactdoc .first {
  grid-row: 2;
  font-size: 1.69rem;
  text-indent: 0px;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
  list-style-type: none;
}

.Contactdoc .first li {
  margin-bottom: 0.75rem;
}

.Contactdoc ul {
  list-style-type: none;
  padding: 0;
}

.Contactdoc .sec {
  list-style-type: none;
  grid-row: 3;
  font-size: 1.57rem;
  text-align: justify;
  text-justify: inter-word;
  justify-self: center;
  margin-left: 1rem;
  margin-right: 1rem;
  font-weight: bold;
}

.Contactbox {
  flex: 1;
}

.Contactdoc .first {
  overflow: hidden;
}

.Hours h2 {
  font-family: "Stack";
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.Hours ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.Hours li {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.Follow_Us h2 {
  font-family: "Stack";
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style-type: none;
}

.Follow_Us {
  display: grid;
  justify-content: center;
  gap: 2rem;
  list-style-type: none;
}

.Follow_Us .socials-icon {
  width: 100px;
  height: 100px;
  margin-left: 50px;
  border-radius: 50%;
  background-color: #0e4776;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}

.socials {
  list-style-type: none;
}

.sq-icon {
  width: 150px;
  height: 150px;
  margin-left: 25px;
  margin-bottom: 0px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sq2-icon {
  width: 125px;
  height: 125px;
  margin-left: 35px;
  margin-top: 10px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 100px;
}

.socials li {
  padding: 0.75rem;
  cursor: pointer;
}

.socials li:hover {
  transform: scale(1.1);
}

/* Contact Us Page Ends here */

/* About Page Starts here */
.About h2 {
  display: none;
}

.About a {
  display: flex;
  font-family: "Crimson Text", serif;
}

.About-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border: 2px solid black;
}

.About-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.Aboutbox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Aboutdoc {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  width: min(90%, 800px);
  row-gap: 2rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.Aboutdoc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.Aboutdoc > *:not(img) {
  position: relative;
  z-index: 1;
}

.Aboutdoc h2 {
  grid-row: 1;
  justify-self: center;
  font-family: "Stack";
  font-size: 2.5rem;
}

.Aboutdoc .first {
  grid-row: 2;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1rem;
  margin-right: 1rem;
}

.Aboutdoc .sec {
  list-style-type: none;
  grid-row: 3;
  font-size: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
  justify-self: center;
}

.Aboutdoc .first {
  font-family: google;
}

.Aboutdoc .sec {
  font-family: google;
}

.Aboutbox {
  flex: 1;
}

.About-Documents h1 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* About Page Ends here */

/* slider Navigation starts here */
.slides::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  display: flex;
  justify-content: center; /* centered horizontally */
  column-gap: 1rem;
}

.slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #312e2e;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a.active {
  background-color: #f52100;
  opacity: 1;
}

.slider-nav a:hover {
  opacity: 1;
  background-color: #551107;
}

/* slider navigation ends here */

/* board Meeting Page Starts here */

.bm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Google";
  font-size: 1.8rem;
  list-style: none;
}

.bm-content h2 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.bm-content li {
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
  list-style: none;
  margin-left: 20px;
  margin-right: 20px;
}

/* board Meeting Page Ends here */

/* Medical Page */

.Medical h2 {
  display: none;
}

.Medical a {
  display: flex;
  font-family: "Crimson Text", serif;
}

.Medical-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border: 2px solid black;
}

.Medical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.Medical-Content {
  max-width: 800px; /* Keeps lines from being too long and hard to read */
  margin: 0 auto; /* Centers the content on the page */
  padding: 40px 20px;
  line-height: 1.6; /* Improves readability */
}

.Medical-Content h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.Medical-Content p {
  font-size: clamp(1.6rem, 2vw, 1.6rem);
  text-indent: 40px;
  text-align: justify;
  text-justify: inter-word;
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}

.Medical-Content ul {
  list-style-type: none;
  font-size: clamp(1.6rem, 2vw, 1.6rem);
}

/* FAQ Page Starts here */
.FAQ-Container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.65rem;
  line-height: 1.6;
  max-width: 1400px;
  margin: 10px auto;
  padding: 0 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Style the FAQ boxes */
details .cs,
details .pq,
details .wq,
details .sq {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

details[open] {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style the clickable header */
summary {
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  background-color: #fff;
  list-style: none; /* Removes default arrow in some browsers */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary:hover {
  background-color: #f0f7ff;
}

/* Add a custom indicator arrow */
summary::after {
  content: "◂";
  color: #000000;
  font-weight: bold;
}

details[open] summary::after {
  content: "▾";
}

.CS p {
  text-align: start;
}

.pq p {
  text-align: start;
}

.wq p {
  text-align: start;
}

.sq p {
  text-align: start;
}

/* Style the answer content inside */
details p {
  padding: 0 15px 15px;
  margin: 0;
  color: #444;
}

/* Specific styling for the Q: and A: labels */
details p:nth-of-type(odd) {
  font-weight: bold;
  color: #ff0000;
  margin-top: 10px;
}

/*  FAQ page Ends here */

/* Footer starts here */
footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: #0e4776;
  height: 500px;
  font-size: 24px;
  position: sticky;
  z-index: 998;
  margin-top: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-content {
  width: 1140px;
  height: auto;
  margin: 0 auto;
  padding: 40px 0px;
}
.vox {
  color: white;
  width: 33.3%;
  height: auto;
  float: left;
}

.vox1 {
  color: white;
  width: 33.3%;
  height: auto;
  float: left;
}

.vox2 {
  color: white;
  width: 33.3%;
  height: auto;
  float: left;
}

.vox3 {
  color: white;
  width: 33.3%;
  height: auto;
  float: left;
}

.footer-title {
  color: white;
  font-size: 32px;
  font-family: "Google";
  font-weight: 600;
  padding: 8px, 12px;
}

.address P {
  color: white;
  font-family: "Google";
  padding: 8px, 12px;
  text-align: center;
}

.email p {
  color: white;
  font-family: "Google";
  padding: 8px, 12px;
  text-align: center;
}

.address a {
  color: white;
  text-decoration: none;
  font-family: "Google";
}

.copyright {
  font-family: "google";
  padding: 30px;
  clear: both;
  text-align: center;
  color: white;
}

.quick,
.social {
  color: white;
  font-family: "Golos";
  padding: 8px, 12px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}

.q-link li,
.s-link li {
  color: white;
  font-family: "Golos";
  padding: 8px, 12px;
  text-align: center;
  list-style: none;
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
}

.q-link li a,
.s-link li a {
  text-decoration: none;
  color: inherit;
  font-family: "Golos";
}

.vox img {
  justify-content: center;
  justify-self: center;
  justify-items: center;
  width: 40%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.vox1 img {
  justify-content: center;
  justify-self: center;
  justify-items: center;
  width: 40%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/*  Footer page Ends here */

/* Jobs2 Page starts here   This is basically when we have job openings */
.careers-notice-container {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  margin: 0px auto;
  max-width: 800px;
}

.careers-notice-text {
  font-family: "Google";
  color: #495057;
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
}
.jobs {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.job {
  background: #f1f5f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.job__description {
  margin-bottom: 15px;
}

.job__apply {
  background: #0e4776;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}
.job__apply:hover {
  background: #5e9dcc;
}

.jobButton {
  background: #0e4776;
  color: white;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 15px;
  justify-self: center;
  justify-content: center;
  justify-items: center;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
}
.jobButton:hover {
  background: #5e9dcc;
}

.job {
  margin-left: auto;
  margin-right: auto;
}

.JobHeader {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.job {
  background: #f1f5f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  list-style: none;
  font-size: 1.2rem;
}

.job {
  background: #f1f5f8;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 700px;
  list-style-type: none;
}

.job {
  list-style-type: none;
}

.jobButton {
  display: inline-block;
  margin: 10px auto;
}

.job__description {
  margin-bottom: 15px;
  list-style-type: none;
}

.jobButton {
  background: #0e4776;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.JobDetails {
  padding: 20px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.top {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.top2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.JobHeader {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.job__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  align-items: center;
}

.Black {
  padding: 0 15px 15px;
  margin: 0;
  color: #444;
}

.Red {
  font-weight: bold;
  color: #ff0000;
  margin-top: 10px;
}

/*  Jobs2 page Ends here */

/*  Mobile versions start here */

/* Mobile Nav Bar 1 Starts here */
@media screen and (max-width: 1050px) {
  .Pay_Button {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .Pay_Button {
    font-size: 17px;
  }
}
@media screen and (max-width: 1005px) {
  .Pay_Button {
    font-size: 15px;
  }
}
@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #0e4776;
  }

  .navbar__menu.active {
    background: #0e4776;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    position: relative;
    z-index: 100;
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 40px;
    height: 3px;
    margin: 5px auto;
    margin-left: -50px;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    display: block;
    cursor: pointer;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .Pay_Button {
    padding-bottom: 0.5rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 0;
  }

  .navbar__container ul li:hover .sub-menu-power {
    display: none;
  }

  .navbar__container ul li:hover .sub-menu-water {
    display: none;
  }

  .navbar__container ul li:hover .sub-menu-sewer {
    display: none;
  }

  .navbar__container ul li:hover .sub-menu-about-us {
    display: none;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .Report-Issue h1 {
    background-color: #f52100;
    padding: 3rem;
  }
}
/* Mobile Nav Bar 1 ends here */

/* Mobile Nav Bar 2 Starts here */

@media screen and (max-width: 960px) {
  .navbar {
    display: none;
  }

  .navbar2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #0e4776;
    height: 100px;
    font-size: 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 999;
  }

  .navbar__container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    padding: 0 10px;
    margin: 0 auto;
    padding-left: 120px;
  }

  .navbar__menu2 {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    position: relative;
  }

  .navbar__menu2 {
    column-gap: 1rem;
  }

  .navbar__item2 {
    height: 100%;
  }

  .navbar__item3 {
    height: 100%;
  }

  .navbar__item4 {
    height: 100%;
  }

  .navbar__item5 {
    height: 100%;
  }

  #navbar__logo2 {
    height: 60px;
    width: auto;
  }

  #navbar__logo2 {
    position: relative;
    z-index: 100;
    padding-left: 25px;
  }

  .navbar__links2 {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 2rem;
    height: 100%;
  }

  .navbar__links2 a {
    padding-left: 0;
  }

  .navbar__container2 {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu2 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto auto auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #0e4776;
  }

  .navbar__menu2.active {
    background: #0e4776;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 95vh;
    font-size: 1.6rem;
  }

  .navbar__toggle2 .bar {
    width: 40px;
    height: 3px;
    margin: 5px auto;
    margin-left: -50px;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    display: block;
    cursor: pointer;
  }

  .navbar__item2 {
    width: 100%;
  }

  .navbar__item3 {
    width: 100%;
  }

  .navbar__item4 {
    width: 100%;
  }

  .navbar__item5 {
    width: 100%;
  }

  .navbar__links2 {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu2 {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__item2 {
    grid-column: span 3;
    grid-row: 1;
  }

  .navbar__item3 {
    grid-column: span 3;
    grid-row: 2;
  }

  .navbar__item4 {
    grid-column: span 3;
    grid-row: 3;
  }

  .navbar__item5 {
    grid-column: span 3;
    grid-row: 4;
  }

  .Gplay {
    grid-column: 1;
    grid-row: 5;
    padding-bottom: 1rem;
  }
  .Apple {
    grid-column: 3;
    grid-row: 5;
  }

  .navbar__Pay_Button_Item2 {
    grid-column: 2;
    grid-row: 5;
  }

  .Gplay img {
    width: 210px;
    height: auto;
  }

  .Apple img {
    width: 200px;
    height: auto;
  }

  .Pay_Button {
    padding-bottom: 0.5rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 0;
  }

  .navbar__item2 details {
    display: block;
    background-color: #0e4776;
    padding: 1rem;
    border-radius: 5px;
    top: 100%;
    left: 0;
  }

  .navbar__item3 details {
    display: block;
    background-color: #0e4776;
    padding: 1rem;
    border-radius: 5px;
    top: 100%;
    left: 0;
  }

  .navbar__item4 details {
    display: block;
    background-color: #0e4776;
    padding: 1rem;
    border-radius: 5px;
    top: 100%;
    left: 0;
  }

  .navbar__item5 details {
    display: block;
    background-color: #0e4776;
    padding: 1rem;
    border-radius: 5px;
    top: 100%;
    left: 0;
  }

  .navbar__item2 details a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .navbar__item2 details li {
    list-style: none;
  }

  .navbar__item3 details a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .navbar__item3 details li {
    list-style: none;
  }

  .navbar__item4 details a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .navbar__item4 details li {
    list-style: none;
  }

  .navbar__item5 details a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .navbar__item5 details li {
    list-style: none;
  }

  .navbar__item2 details {
    width: 100%;
  }

  .navbar__item3 details {
    width: 100%;
  }

  .navbar__item4 details {
    width: 100%;
  }

  .navbar__item5 details {
    width: 100%;
  }

  .navbar__item2 summary {
    background-color: #0e4776;
    color: rgb(225, 0, 0);
    padding: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .navbar__item3 summary {
    background-color: #0e4776;
    color: rgb(225, 0, 0);
    padding: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .navbar__item4 summary {
    background-color: #0e4776;
    color: rgb(225, 0, 0);
    padding: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .navbar__item5 summary {
    background-color: #0e4776;
    color: rgb(225, 0, 0);
    padding: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .navbar__item2 summary::-webkit-details-marker {
    display: none;
  }

  .navbar__item3 summary::-webkit-details-marker {
    display: none;
  }

  .navbar__item4 summary::-webkit-details-marker {
    display: none;
  }

  .navbar__item5 summary::-webkit-details-marker {
    display: none;
  }

  .navbar__item2 details > ul {
    background-color: #0e4776;
  }

  .navbar__item3 details > ul {
    background-color: #0e4776;
  }

  .navbar__item4 details > ul {
    background-color: #0e4776;
  }

  .navbar__item5 details > ul {
    background-color: #0e4776;
  }

  .Pay_Button2 {
    font-family: "Stack";
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    background-color: #f52100;
    cursor: pointer;
    color: white;
    padding: 0.3em 1em;
    margin-left: 10px;
    transition:
      box-shadow ease-in-out 0.3s,
      background-color ease-in-out 0.1s,
      letter-spacing ease-in-out 0.1s,
      transform ease-in-out 0.1s;
    text-decoration: none;
  }

  .Pay_Button2:hover {
    color: black;
    background-color: #ffffff;
    transition: all 0.6s ease;
    transform: translateY(-5px);
  }

  .Pay_Button2:active {
    box-shadow:
      var(--hover-shadows),
      var(--accent) 0px 0px 30px 5px;
    background-color: var(--accent);
    transform: scale(0.95);
  }

  .Pay_Button2 {
    padding-bottom: 0.5rem;
  }

  /* Add a custom indicator arrow */
  .navbar__menu2.active summary::after {
    content: "⠿";
    color: #ffffff;
    font-weight: bold;
  }

  .navbar__menu2.active details[open] summary::after {
    content: "⠿";
  }

  .navbar__menu2.active summary::before {
    content: "⠿ ";
    color: #ffffff;
  }

  .navbar__menu2.active details[open] summary::before {
    content: "⠿";
  }
}
/* Mobile Nav Bar 2 ends here */

/*  Mobile version of the Slider on the SPWS Page start here Size 960px*/

@media (max-width: 960px) {
  .slider-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    display: inline-grid;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 4 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-right: 0px;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-right: 0px;
  }
  .container3 {
    grid-column: 3 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 0px;
  }

  .container4 {
    grid-column: 4 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 0px;
  }

  .container .box img {
    width: 8rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 9px;
  }

  .container .box {
    width: 12rem;
    height: 12rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 8rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container2 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 9px;
  }

  .container2 .box {
    width: 12rem;
    height: 12rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 8rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 17px;
  }

  .container3 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 19px;
  }

  .container3 .box {
    width: 12rem;
    height: 12rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 8rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container4 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 0px;
  }

  .container4 .box {
    width: 12rem;
    height: 12rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .slider-nav {
    display: none;
  }
}

/*  Mobile version of the Slider on the SPWS Page ends here Size 960px*/

/*  Mobile version of the Slider on the SPWS Page start here Size 830px*/

@media (max-width: 830px) {
  .slider-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    display: inline-grid;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 2 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .container4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center !important;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .slider-nav {
    display: none;
  }

  .container .box img {
    width: 14rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container .box .title {
    font-size: 2.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 9px;
  }

  .container .box {
    width: 19rem;
    height: 19rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 14rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container2 .box .title {
    font-size: 2.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 9px;
  }

  .container2 .box {
    width: 19rem;
    height: 19rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 14rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container3 .box .title {
    font-size: 2.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 30px;
  }

  .container3 .box {
    width: 19rem;
    height: 19rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 14rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container4 .box .title {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 9px;
  }

  .container4 .box {
    width: 19rem;
    height: 19rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .Download {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .Download h2 {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    font-family: "Crimson Text", serif;
    font-size: 2.5rem;
  }

  .Download .appstore {
    grid-column: 1;
    grid-row: 2;
  }

  .Download .appstore-text {
    grid-column: 1;
    grid-row: 3;
    font-size: 1.5rem;
    text-align: center;
  }

  .Download .playstore-text {
    grid-column: 1;
    grid-row: 5;
    font-size: 1.5rem;
    text-align: center;
  }

  .Download .playstore {
    grid-column: 1;
    grid-row: 4;
  }

  .Download img {
    width: 400px;
    height: 400px;
    object-fit: contain;
  }
}

/*  Mobile version of the Slider on the SPWS Page start here Size 830px*/

/*  Mobile version of the Movie Poster Cards on the SPWS Page start here Size 1000px*/
@media (max-width: 1000px) {
  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 85px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 100px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 55px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
}
/*  Mobile version of the Movie Poster Cards on the SPWS Page ends here Size 1000px*/

/*  Mobile version of the SPWS Page starts here Size 650px*/
@media (max-width: 650px) {
  #navbar__logo2 img {
    height: 125px;
    width: auto; /* smaller size */
    padding-left: 10px;
    margin-top: 10px;
  }

  .slider-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    display: inline-grid;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 2 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .container4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .slider-nav {
    display: none;
  }

  .container .box img {
    width: 12rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container .box .title {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 30px;
  }

  .container .box {
    width: 16rem;
    height: 17rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 12rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container2 .box .title {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 19px;
  }

  .container2 .box {
    width: 16rem;
    height: 17rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 12rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container3 .box .title {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 35px;
  }

  .container3 .box {
    width: 16rem;
    height: 17rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 12rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
  }

  .container4 .box .title {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 9px;
  }

  .container4 .box {
    width: 16rem;
    height: 17rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  /* Cards starts here */

  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  /* Pay card starts here */

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 85px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 100px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 55px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
}

/* View Map card ends here */

/* Font sizes for smaller screens */
@media (max-width: 677px) {
  .Report-Issue h1 {
    font-size: 2.3rem;
  }

  .Water-Documents h2 {
    font-size: 2.3rem;
  }

  .Power-Documents h2 {
    font-size: 2.3rem;
  }

  .powerbox h2 {
    font-size: 2.3rem;
  }

  .powerbox .first {
    font-size: 1.29rem;
  }

  .powerbox .sec {
    font-size: 1.29rem;
  }

  .waterbox h2 {
    font-size: 2.3rem;
  }

  .waterbox .first {
    font-size: 1.29rem;
  }

  .waterbox .sec {
    font-size: 1.29rem;
  }

  .sewerbox h2 {
    font-size: 2.3rem;
  }

  .sewerbox .first {
    font-size: 1.29rem;
  }

  .sewerbox .sec {
    font-size: 1.29rem;
  }

  .Aboutdoc h2 {
    font-size: 2.3rem;
  }

  .Aboutdoc .sec {
    font-size: 1rem;
    line-height: 35px;
  }

  .Aboutdoc .first {
    font-size: 1.29rem;
  }

  .FAQ-Container h1 {
    font-size: 2.3rem;
  }

  .bm-content h2 {
    font-size: 2.3rem;
  }

  .Contactdoc h2 {
    font-size: 2.3rem;
  }

  .Contactdoc .first {
    font-size: 1.29rem;
  }

  .shrink {
    font-size: 1.05rem  }

  .Hours h2 {
    font-size: 2.3rem;
  }

  .Hours li {
    font-size: 1.55rem;
  }

  .Follow_Us h2 {
    font-size: 2.3rem;
  }

  .Follow_Us li {
    font-size: 1.55rem;
  }

  .Holidays h2 {
    font-size: 2.3rem;
  }

  .Holidays li {
    font-size: 1.55rem;
  }

  .FAQ-Container ::details-content {
    font-size: 1.29rem;
  }

  .bm-content .first li {
    font-size: 1.29rem;
  }

  .Medical-Content h2 {
    font-size: 2.3rem;
  }

  .Medical-Content p {
    font-size: 1.29rem;
  }

  .Lead {
    font-size: 1.6rem;
  }
  .sewer-intro-content h2 {
    font-size: 2rem;
  }
  .sewer-intro-content p {
    font-size: 1.5rem;
  }
}

/*  Mobile version of the SPWS Page ends here Size 650px*/

@media (max-width: 600px) {
  .navbar__menu2 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto auto auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #0e4776;
  }

  .navbar__item2 {
    grid-row: 1;
    grid-column: span 3;
  }

  .navbar__item3 {
    grid-row: 2;
  }

  .navbar__item4 {
    grid-row: 3;
  }

  .navbar__item5 {
    grid-row: 4;
  }

  .navbar__Pay_Button_Item2 {
    grid-row: 5;
    grid-column: span 3;
  }

  .Gplay {
    grid-row: 7;
    grid-column: span 3;
  }
  .Apple {
    grid-row: 6;
    grid-column: span 3;
  }

  .Gplay {
    transform: translateY(-40px);
  }

  .navbar__menu2:has(details[open]) .Gplay img,
  .navbar__menu2:has(details[open]) .Apple img,
  .navbar__menu2:has(details[open]) .navbar__Pay_Button_Item2 {
    display: none;
  }
}

/*  Mobile version of the SPWS Page starts here Size 578px*/
@media (max-width: 578px) {
  #navbar__logo2 img {
    height: 125px;
    width: auto; /* smaller size */
    padding-left: 10px;
    margin-top: 10px;
  }

  .slider-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    display: inline-grid;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 2 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .container4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .slider-nav {
    display: none;
  }

  .container .box img {
    width: 9rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 20px;
  }

  .container .box {
    width: 13.1rem;
    height: 13rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 9rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container2 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 19px;
  }

  .container2 .box {
    width: 13.1rem;
    height: 13rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 9rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container3 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 25px;
  }

  .container3 .box {
    width: 13.1rem;
    height: 13rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 9rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container4 .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 9px;
  }

  .container4 .box {
    width: 13.1rem;
    height: 13rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  /* Cards starts here */

  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  /* Pay card starts here */

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 85px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 100px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 55px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
}

/* View Map card ends here */
/*  Mobile version of the SPWS Page ends here Size 578px*/

/*  Mobile version of the SPWS Page starts here Size 438px*/
@media (max-width: 483px) {
  #navbar__logo2 img {
    height: 125px;
    width: auto; /* smaller size */
    padding-left: 10px;
    margin-top: 10px;
  }

  .slider-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    display: inline-grid;
    justify-items: center;
    align-items: center;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 2 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .container3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .container4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .slider-nav {
    display: none;
  }

  .container .box img {
    width: 7rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-left: -5px;
  }

  .container .box .title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 9px;
  }

  .container .box {
    width: 10rem;
    height: 10rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 7rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-left: -5px;
  }

  .container2 .box .title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-left: -15px;
  }

  .container2 .box {
    width: 10rem;
    height: 10rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 7rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 10px;
  }

  .container3 .box .title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 15px;
  }

  .container3 .box {
    width: 10rem;
    height: 10rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 7rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-left: -5px;
  }

  .container4 .box .title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-left: -10px;
  }

  .container4 .box {
    width: 10rem;
    height: 10rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  /* Cards starts here */

  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  /* Pay card starts here */

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 85px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .pay-here-card .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    margin-left: 0px;

    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 100px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .ViewMap .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
    margin-left: 0px;
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-left: 55px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    margin-left: 43px;
    transition: all ease 0.3s;
  }

  .faq-card .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    margin-left: 43px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover {
    border: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
}

/* View Map card ends here */

@media (max-width: 413px) {
  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    margin-left: 2px;
    transition: all ease 0.3s;
  }

  .faq-card .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    margin-left: 2px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/*  Mobile version of the SPWS Page ends here Size 438px*/
@media (max-width: 439px) {
  .Download {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .Download h2 {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    font-family: "Crimson Text", serif;
    font-size: 2.5rem;
  }

  .Download .appstore {
    grid-column: 1;
    grid-row: 2;
  }

  .Download .appstore-text {
    grid-column: 1;
    grid-row: 3;
    font-size: 1.5rem;
    text-align: center;
  }

  .Download .playstore-text {
    grid-column: 1;
    grid-row: 5;
    font-size: 1.5rem;
    text-align: center;
  }

  .Download .playstore {
    grid-column: 1;
    grid-row: 4;
  }

  .Download img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .Download {
    align-items: center;
    justify-items: center;
  }

  .Medical-image {
    width: 100%;
    height: auto;
  }
}

/*  Mobile version of the SPWS Page starts here Size 380px*/
@media (max-width: 380px) {
  #navbar__logo2 img {
    height: 125px;
    width: auto; /* smaller size */
    padding-left: 10px;
    margin-top: 10px;
  }

  .slider-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    display: inline-grid;
  }

  .slider-container > * {
    min-width: 0;
  }

  .slider-wrapper {
    grid-column: span 2 !important;
    grid-row: 1 !important;
  }

  .container {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
  }
  .container2 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
  }
  .container3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
  }

  .container4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center;
    width: 100%;
    padding-top: 1rem;
  }
  .slider-nav {
    display: none;
  }

  .container .box img {
    width: 6rem;
    height: auto;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-left: -6px;
  }

  .container .box .title {
    font-size: 1.238rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-left: -5px;
  }

  .container .box {
    width: 9rem;
    height: 9rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container2 .box img {
    width: 6rem;
    height: auto;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-left: -6px;
  }

  .container2 .box .title {
    font-size: 1.238rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-left: -13px;
  }

  .container2 .box {
    width: 9rem;
    height: 9rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container3 .box img {
    width: 6rem;
    height: auto;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-left: -6px;
  }

  .container3 .box .title {
    font-size: 1.238rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 9px;
    margin-left: -5px;
  }

  .container3 .box {
    width: 9rem;
    height: 9rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  .container4 .box img {
    width: 6rem;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    padding-left: 15px;
  }

  .container4 .box .title {
    font-size: 1.09rem;
    font-weight: 500;
    margin-left: -13px;
  }

  .container4 .box {
    width: 9rem;
    height: 9rem;
    padding: 1.3rem;
    background-color: rgba(82, 81, 81, 0.074);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0.7rem;
    transition: all ease 0.3s;
  }

  /* Cards starts here */

  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  /* Pay card starts here */

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 85px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 100px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* View Map card ends here */

  /* View Map card starts here */

  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 55px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 22rem;
    height: 33rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33rem;
    width: 22rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* View Map card ends here */
}

/*  Mobile version of the SPWS Page ends here here Size 380px*/

/*  Mobile version of the Power Page Size 960px */
@media screen and (max-width: 960px) {
  .power-image {
    /* Set a fixed size for your 'window' (the orange space) */
    width: 100%;
    height: 350px;
    margin-top: -33px;
  }

  .power-substation {
    /* Set a fixed size for your 'window' (the orange space) */
    width: 100%;
    height: 400px;
    margin-top: -33px;
  }
  .power {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Crimson Text", serif;

    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .power img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    margin-top: -50px;
  }

  .power-portion h1 {
    font-size: 2rem;
  }
  .power-portion .first {
    font-size: 1.2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .power-portion .sec {
    font-size: 1.2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .power-portion h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .power-portion {
    row-gap: 10px;
  }
}
/*  Mobile version of the Power Page Size 960px ends here */

/*  Mobile version of the Power Page Size 500px starts here */

@media screen and (max-width: 614px) {
  .power-image {
    /* Set a fixed size for your 'window' (the orange space) */
    width: 100%;
    height: 171px;
  }

  .power-substation {
    /* Set a fixed size for your 'window' (the orange space) */
    width: 100%;
    height: 190px;
  }
  .power {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Crimson Text", serif;

    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .power img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    margin-top: -50px;
  }

  .power-portion h1 {
    font-size: 1.5rem;
  }
  .power-portion .first {
    font-size: 1rem;
  }

  .power-portion .sec {
    font-size: 1rem;
  }

  .power-portion h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .power-portion {
    row-gap: 5px;
  }
}
/*  Mobile version of the Power Page Size 500px ends here */

/* Responsive design for cards on mobile screen size 434px */

@media screen and (max-width: 450px) {
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 15px;
    background: #f9f9f9;
    flex-direction: column;
    gap: 15px;
  }

  .cards .card {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 150px;
    width: 300px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }

  .cards .CD1 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 150px;
    width: 300px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }

  .report-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 15px;
    background: #f9f9f9;
  }

  /* Individual card styling */
  .wcard {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .wcard:hover {
    transform: scale(1, 1);
    background-color: #f2a69a;
    transition: all ease 0.3s;
  }

  .wcard .tip {
    font-size: 1.19em;
    color: #555;
    text-align: center;
  }

  .wcard .second-text {
    font-size: 1em;
    color: #555;
    text-align: center;
  }
}
/* Responsive design for cards on mobile screen size 434px ends here */

/*  Mobile version of the Movie Poster Cards on the SPWS Page start here Size 367px*/
@media screen and (max-width: 367px) {
  /* Cards starts here */

  .Card-Container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }

  /* Pay card starts here */

  .pay-here-card {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .pay-here-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 55px;
    padding-top: -300px;
  }

  .pay-here-card img {
    width: 20rem;
    height: 28rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28rem;
    width: 20rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pay-here-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* Pay card ends here */

  /* View Map card starts here */

  .ViewMap {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .ViewMap h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 90px;
    padding-top: 0px;
  }

  .ViewMap img {
    width: 20rem;
    height: 28rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28rem;
    width: 20rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .ViewMap:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }

  /* View Map card ends here */

  /* View Map card starts here */

  .faq-card {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .faq-card h2 {
    position: absolute;
    top: 50%;
    color: #fffcfc;
    font-family: "ContrailOne-Regular", cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 35px;
    padding-top: 0px;
  }

  .faq-card img {
    width: 20rem;
    height: 28rem;
    padding: 0.5rem;
    background-color: rgb(255, 84, 84);
    border: 1px solid rgba(0, 0, 0, 0.222);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    transition: all ease 0.3s;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28rem;
    width: 20rem;
    opacity: 0.45;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .faq-card:hover .overlay {
    opacity: 0.15;
    cursor: pointer;
    transition: all ease 0.9s;
  }
}
/*  Mobile version of the Movie Poster Cards on the SPWS Page start here Size 367px*/

/*  Mobile version of the Footer starts here Size 730px*/
@media screen and (max-width: 730px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
  }

  footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #0e4776;
    height: 500px;
    font-size: 24px;
    position: sticky;
    z-index: 998;
    margin-top: 110px;
    padding-top: 400px;
    padding-bottom: 430px;
  }

  .footer-content {
    width: 1140px;
    height: auto;
    margin: 0 auto;
    padding: 40px 0px;
  }

  .vox1 {
    width: 100%;
    height: auto;
    float: none;
    text-align: center;
    grid-row: 1;
  }

  .vox2 {
    width: 100%;
    height: auto;
    float: none;
    text-align: center;
    grid-row: 2;
  }

  .vox3 {
    width: 100%;
    height: auto;
    float: none;
    text-align: center;
    grid-row: 3;
  }

  .copyright {
    grid-row: 4;
    text-align: center;
  }

  .vox1 img {
    justify-content: center;
    justify-self: center;
    justify-items: center;
    width: 20%;
    height: auto;
    display: block;
    margin-bottom: 20px;
  }
}

/*  Mobile version of the Footer ends here Size 730px*/
