* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: "Open Sans", sans-serif;
}

/* navbar */
nav {
 height: 6rem;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #232324;
 padding: 0 2rem;
 position: relative;
}

.insideNav {
 height: 98%;
 width: 98%;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.logo {
 height: 3.5rem;
}

.menuLinks {
 display: flex;
 justify-content: center;
 align-items: center;
 translate: -8rem;
}

.menuLinks p {
 color: #fff;
 padding: 0.2rem;
 margin: 0.2rem 1.5rem;
 font-size: 16px;
 font-weight: 600;
 cursor: pointer;
}

.fij {
 width: auto !important;
}

.ham {
 display: none;
}

.mobileMenu {
 position: fixed;
 top: 0;
 right: 0;
 width: 50vw;
 height: 100vh;
 z-index: 99999999999999999;
 background-color: #232324;
 color: #fff;
 display: none;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 animation-name: menu;
 animation-duration: .2s;
 animation-fill-mode: forwards;
 animation-timing-function: linear;
}

.mobileMenu p {
 color: #fff;
 padding: 0.2rem;
 margin: 1.5rem;
 font-size: 16px;
 font-weight: 600;
 cursor: pointer;
}

.closeMobile {
 position: absolute;
 top: 2.5%;
 right: 5%;
 font-size: 28px;
 cursor: pointer;
}

.mobileIcon {
 display: flex;
 position: absolute;
 bottom: 5%;
}

.navNav {
 text-decoration: none;
}

@keyframes menu {
 0% {
  opacity: 0;
 }

 100% {
  opacity: 1;
 }
}

@media screen and (max-width:1200px) {
 .menuLinks {
  translate: -4rem;
 }
}

@media screen and (max-width:1024px) {
 .menuLinks {
  translate: -2rem;
 }

}

@media screen and (max-width:900px) {
 .ham {
  display: flex;
  color: #fff;
  font-size: 28px;
 }

 .menuLinks {
  display: none;
 }

 .fij {
  width: auto !important;
  display: none !important;
 }
}

@media screen and (max-width:500px) {
 nav {
  height: 4.5rem;
 }

 .logo {
  height: 2.5rem;
 }
}


.banner-img {
 position: relative;
 width: 100%;
 max-height: 500px;
 overflow: hidden;
}

.banner-img img {
 width: 100%;
 height: auto;
 display: block;
 object-fit: cover;
}

.overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
 /* Semi-transparent black */
 color: #fff;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-align: center;
 padding: 20px;
 box-sizing: border-box;
}

.overlay h1 {
 font-size: 2.5rem;
 margin-bottom: 10px;
}

.overlay p {
 font-size: 1.2rem;
}

/* Responsive text scaling */
@media (max-width: 768px) {
 .overlay h1 {
  font-size: 1.8rem;
 }

 .overlay p {
  font-size: 1rem;
 }
}

@media (max-width: 480px) {
 .overlay h1 {
  font-size: 1.4rem;
 }

 .overlay p {
  font-size: 0.9rem;
 }
}

/* footer */
footer {
 padding: 2rem 0;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #232324;
}

.insideFooter {
 width: 80%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.insideFooter img {
 height: 2rem;
}

.footerIcon {
 padding: 2rem;
 width: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.fi {
 background-color: #808080;
 border-radius: 100%;
 height: 2rem;
 width: 2rem;
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0 0.25rem;
}

.fIcon {
 color: #fff;
}

.copy {
 color: #fff;
 font-size: 14px;
 font-weight: 500;
}

/* marquee */
.footer-marquee {
 padding-bottom: 16px;
}

.footer-marquee a {
 text-decoration: none;
 color: #fff;
}