* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.75;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
}
h1 {
  font-size: 1.75rem;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background-color: #6ca8f6;
  position: relative;
}
footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background-color: blue;
}
.footer-aboutus p {
  padding: 10px;
}
.footer-aboutus {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 10px;
}
.footer-contact-each {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: lightblue;
  padding: 10px;
  border-radius: 8px;
}
.footer-contact-each h3 {
  text-align: center;
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.footer-contact-each section {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-each img {
  width: 60px;
  height: 60px;
}
.footer-contact-each section p {
  font-weight: 600;
  font-size: large;
  color: #000;
}
.footer-contact-a-open {
  align-self: flex-end;
  margin-top: 2.5px;
  padding: 7.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: blue;
  border-radius: 4px;
  font-weight: 500;
}
.footer-contact-a-open i {
  font-size: 17.5px;
}
@media (max-width: 768px) {
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
  }
  .footer-contact-each section p{
    font-size: medium;
  }
}
header {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header-dark {
  background-color: rgb(0 0 0 / 0.6);
  display: flex;
  flex-direction: column;
}
.linkin {
  padding: 10px;
}
.header-contents {
  padding: 20px;
}
.header-para {
  margin-top: 5px;
  margin-left: 10px;
}
.header-contact {
  margin-top: 10px;
  padding: 10px;
  background-color: rgb(0 0 0 / 0.4);
  flex-wrap: wrap;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 50px;
  row-gap: 20px;
}
.header-contact-each {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.header-contact-each img {
  height: 40px;
  width: 40px;
}
.header-top a h1 {
  font-weight: 700;
}
.header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header-search{
  width: 300px;
}
@media (max-width: 624px) {
  .header-search {
    display: none;
  }
  .header-contact {
    display: none;
  }
}
#fade-slider-container {
  position: relative;
  width: 100%;
  height: 300px;
}
#fade-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.fade-overlay h3 {
  background-color: rgb(0 0 0 / 0.65);
  border-radius: 5px;
}
.fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}
.fade-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  background: rgb(0 0 0 / 0.35);
  padding: 10px;
  z-index: 3;
  pointer-events: auto;
}
.fade-overlay a {
  background: blue;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: blue;
  border: none;
  font-size: 24px;
  padding: 5px 0;
  cursor: pointer;
  z-index: 10;
}
#prev-fade {
  left: 0;
}
#next-fade {
  right: 0;
}
@media (max-width: 624px) {
  .fade-slide img {
    object-fit: cover;
  }
}
.nav-mob {
  display: none;
}
.nav-desk {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.nav-desk-a-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.nav-desk-a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7.5px 0;
  width: 100%;
  text-decoration: none;
  border: 1px solid blue;
}
.nav-desk-a i {
  padding: 2px;
}
.nav-desk-a p {
  font-weight: 500;
}
.nav-desk-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background-color: #fff;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
  max-height: 500px;
  overflow-y: auto;
  list-style: none;
  padding: 5px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-desk-a-wrapper.has-dropdown:hover .nav-desk-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-desk-dropdown-li {
  padding: 5px 10px;
}
.nav-desk-dropdown-li:hover {
  background-color: #f0f0f0;
}
.nav-desk-dropdown-li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-desk-dropdown-li p {
  color: #000;
}
.nav-desk-dropdown-li img {
  object-fit: cover;
}
.nav-desk-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 10px;
  list-style: none;
  z-index: 10;
}
.nav-desk-a-wrapper:hover .nav-desk-dropdown {
  display: block;
}
.loading-spinner {
  font-style: italic;
  color: blue;
}
@media (max-width: 624px) {
  .nav-desk {
    display: none;
  }
  .nav-mob {
    display: flex;
    flex-direction: column;
  }
  .nav-mob-top {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .nav-mob-bottom {
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
  }
  .nav-mob-top-search {
    margin-left: 10px;
    flex: 3;
  }
  .nav-mob-top-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3px;
    padding: 3px;
  }
  .nav-mob-bottom-a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    border: 1px solid blue;
  }
  .nav-mob-bottom-a,
  .nav-mob-top-a p {
    font-weight: 500;
  }
  .nav-mob-top-search {
    margin-top: -10px;
    padding-bottom: 5px;
  }
  .nav-mob-bottom i {
    margin-top: 5px;
  }
  .nav-mob-top-a {
    margin-left: 3px;
  }
}
.search {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-left: -5px;
  margin-right: 75px;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.search-bar {
  border-radius: 3px;
  padding: 5px;
  color: #000;
  opacity: 1.25;
  border: 1px solid #000;
  width: 100%;
  font-weight: 400;
}
.search-bar::placeholder {
  color: #333;
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
}
.search-dropdown {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: absolute;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  border: 1px solid #ccc;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search:focus-within .search-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-dropdown li a {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: flex-start;
  background-color: #fff;
}
.search-dropdown li p {
  color: #000;
}
.search-dropdown li a:hover {
  background-color: #f0f0f0;
}
.search-icon {
  color: #000;
  background-color: #fff0;
  position: absolute;
  right: 0;
  height: 20px;
  width: 25px;
}
