@font-face {
  font-family: "Prompt";
  src: url("src/fonts/Prompt-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Prompt", sans-serif;
  background-color: #f5f5f5;
}

header {
  background-color: #201e1f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 70px;
}

.logo img {
  height: 35px;
}

.menu-toggle {
  display: none;
}

.hamburger {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 25px;
}


nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
  display: flex;
}

nav ul li a:hover {
  color: #e5e633;
}

nav ul li.active a {
  position: relative;
}

nav ul li.active a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 3px;
  background-color: #e5e633;
  border-radius: 25px;
  transform: translateX(-50%);
}

.footer {
  background-color: #333;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 70px;
}

.footer-item {
  padding: 20px;
}

.footer-item h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-item ul {
  list-style-type: none;
  padding: 0;
}

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

.footer-item ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-item li {
  font-size: 14px;
}

.footer-item ul li a:hover {
  text-decoration: underline;
}

.footer-space {
  height: 5px;
  background-color: #e5e633;
}

.footer-sub-item {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.banner {
  position: relative;
  text-align: center;
  color: #fff;
  background-image: url("src/images/Banner-NoText.jpg"); /* Default large image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 400px;
}
.banner h1 {
  font-size: 30px;
}
.banner img {
  width: 100%;
  height: auto;
}

.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banner-text {
  padding: 20px;
  z-index: 1;
  text-align: end;
  text-shadow: 2px 2px 9px #000000;
}

.banner-empty {
  flex: 1;
}

.feature h1 {
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 100px;
}

.feature-item {
  padding: 20px;
  text-align: center;
}

.feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.feature-item h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-item p {
  text-align: start;
  font-size: 14px;
}

.button-primary {
  display: inline-flex;
  background-color: #e5e633;
  border-radius: 50px;
  cursor: pointer;
  height: 20px;
  padding: 5px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 120px;
}

.button-primary-icon {
  fill: #fff;
}
.button-primary-icon:hover {
  fill: #e5e633;
}

.contact-item {
  display: flex;
}
.contact-item img {
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  height: 18px;
}

.dbdicon {
  align-items: center;
}
.fade-in-element {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.copy-right.footer-center {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  flex-direction: column;
  align-items: center;
}

.copy-right.footer-center img{
  width: 80px;
  padding: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }

  nav {
    display: block;
  }
  .logo img {
    height: 35px;
  }
}

@media screen and (max-width: 1080px) {
  .logo img {
    height: 30px;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  nav {
    display: none;
    background-color: #201e1f;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1;
  }
  nav ul {
    display: grid;
  }
  nav li {
    padding: 8px;
    text-align: center;
  }
  nav ul li {
    margin-right: 0px;
  }

  nav.active {
    display: block;
  }
  .banner-text h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 14px;
  }
  .banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .banner-text {
    text-align: center;
  }
  .feature h1 {
    font-size: 24px;
  }
  header {
    padding: 15px 15px;
  }
}
@media screen and (max-width: 1366px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 50px;
  }
  .feature-item {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px;
  }
  .footer {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px 10px;
  }
  .banner {
    background-image: url("src/images/Banner-NoText-mobile.jpg");
    height: 340px;
  }
}
@media screen and (max-width: 390px) {
}
