* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
}

:root {
  scrollbar-width: thin;
}

.navbar {
  width: 100%;
  padding: 0px 80px;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
}

.logo-holder {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-title {
  color: #065494;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-title p {
  letter-spacing: 2.3px;
}

.logo-holder img {
  width: 100px;
}

/* Navbar Links  */
.nav-links {
  position: sticky;
  top: 0px;
  z-index: 100;
  padding: 15px 10px;
  border-radius: 5px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  color: rgb(55, 55, 55);
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links ul li a span {
  margin-top: -6px;
  width: 24px !important;
}

.nav-links ul li a::before {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #065494;
  bottom: -6px;
  left: 0px;
  position: absolute;
  transition: 0.2s linear;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.nav-links ul li a:hover {
  color: #065494;
}

.nav-links ul li a:hover::before {
  width: 100%;
  transform-origin: center;
  transform: scaleX(1);
}

/* Dropdown Styling  */
#dropdown {
  position: relative;
}

#dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

#dropdown > span {
  position: absolute;
  top: 10px;
  left: -17px;
  width: 200px;
  height: 0px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0px 10px;
  opacity: 0;
  transition: 0.2s linear;
  z-index: -10;
}

#dropdown:hover > span {
  height: auto;
  padding: 20px 10px;
  padding-top: 37px;
  opacity: 1;
  transition: 0.2s linear;
}

#dropdown span a {
  cursor: pointer;
}

/* Carousel Styling  */
.owl-carousel {
  height: calc(100vh - 150px);
  overflow: hidden;
}

.owl-carousel .item img.animated {
  transform-origin: center;
}

.scale-animation {
  width: 100%;
  height: 100%;
  background-size: contain;
  transform: scale(1);
  transition: transform 6s linear;
}

.scale-animation-active {
  transform: scale(1.3);
}

.owl-carousel .item {
  height: calc(100vh - 150px);
  min-width: 100vw !important;
  overflow: hidden;
}

.owl-carousel .item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Price List Cards Styling  */
.product-list {
  padding: 40px 80px;
}

.product-list > h2 {
  color: rgb(66, 66, 66);
  font-weight: 600;
}

.product-list hr {
  border: 1px solid rgb(190, 190, 190);
}

.price-list {
  height: 170px;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-card {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgb(202, 202, 202, 0.5);
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 3px 3px 3px rgb(203, 203, 203, 0.4);
  max-width: 250px;
}

.price-card h3 {
  color: rgb(72, 72, 72);
  font-size: 16px;
}

.price-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgb(92, 92, 92);
}

.price-card p {
  font-weight: 500px;
  color: rgb(72, 72, 72);
}

/* Owl Carousel Arrow Buttons Styling */
.owl-nav {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.owl-nav button {
  background-color: #065494 !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white !important;
}

/* Footer Section Styling  */
.footer {
  height: 180px;
  color: white;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  font-size: 12px;
  background-color: #065494;
}

.elements__toggle .material-symbols-outlined {
  color: grey;
}

.footer .material-symbols-outlined {
  font-size: 16px;
}

.footer-inner {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 300;
}

.qr-code {
  /* background-color: white; */
  padding: 0px 6px;
}

.icon-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.copyright {
  font-weight: 500;
  font-size: 14px;
}

/* Download Section Styling  */
.wrapper {
  padding: 40px 80px;
  background-color: whitesmoke;
}
.wrapper hr {
  margin-top: 4px;
}
.download-section {
  min-height: calc(100vh - 150px);
  padding: 40px 0px;
  background-color: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: start; */
  align-content: flex-start;
  gap: 40px;
}

.download-card {
  flex-grow: 1;
  max-width: 300px;
  min-width: 200px;
  min-height: 100px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 3px 3px 3px rgb(198, 198, 198, 0.5);
  border: 1px solid rgb(204, 204, 204, 0.5);
  padding: 10px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.download-card p:nth-child(1) {
  font-size: 13px;
  color: #0960a7;
  text-align: end;
}
.download-card p:nth-child(2) {
  font-size: 14px;
}

.download-card a {
  background-color: #065494;
  border: none;
  padding: 5px 0px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: 0.2s linear;
}

.download-card a:hover {
  background-color: #0960a7;
  transition: 0.2s linear;
}
p.no-files {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b6b1b1;
  text-align: center;
  width: 100%;
}

.navlink-active {
  color: #065494 !important;
  position: relative;
}
.navlink-active::before {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #065494;
  bottom: -6px;
  left: 0px;
  position: absolute;
  /* transform: scaleX(1) !important; */
  transform: none !important;
  /* transition: 0.2s linear;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.2s ease-out; */
}