* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.main {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #DBD3CD;
}
.main .page1 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
}
.main .page1 .nav {
  width: 75%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  margin: 1vw;
  padding: 1.5vw 0vw;
  border-bottom: 2.5px solid #000;
  border: 1.5px solid #000;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.main .page1 .nav .nleft {
  width: auto;
}
.main .page1 .nav .nleft img {
  height: 58px;
  margin: 0px 10px;
}
.main .page1 .nav .ncentre {
  width: auto;
}
.main .page1 .nav .ncentre a {
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0.5vw 1vw;
  color: #000;
  margin: 0px 1px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.main .page1 .nav .ncentre a:hover {
  color: #ff6600;
}
.main .page1 .nav .nright {
  width: auto;
}
.main .page1 .nav .nright a {
  text-decoration: none;
  text-transform: uppercase;
  border: 1.5px solid #000;
  background-color: #65d446;
  padding: 0.5vw 1vw;
  border-radius: 50px;
  color: #000;
  margin: 0px 15px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.main .page2 {
  width: 100%;
  height: 100vh;
  padding: 2vw 10vw;
  margin-top: 8vw;
  background-color: #DBD3CD;
}
.main .page2 h1 {
  font-size: 6vw;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  line-height: 1;
}
.main .page2 #name {
  color: #BF014C;
  font-size: 9vw;
}
.main .page2 span {
  color: #017F7E;
  font-size: 9vw;
}
.main .page2 p {
  font-size: 2.5vw;
  margin-top: 1vw;
  color: #000;
  font-weight: 600;
}
.main .page3 {
  width: 100%;
  height: 100vh;
  padding: 2vw 10vw;
  margin-top: 5vw;
  background-color: #DBD3CD;
  z-index: -1;
}
.main .page3 h3 {
  font-size: 1.5vw;
  text-transform: uppercase;
  color: #BF014C;
  font-weight: 900;
  line-height: 5;
  text-decoration: underline;
  margin-top: 3vw;
}
.main .page3 h1 {
  font-size: 3.5vw;
  margin-top: 1vw;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: 0.2vw;
  margin-bottom: 2vw;
}
.main .page3 p {
  font-size: 1.5vw;
  margin-top: 1vw;
  color: #000;
  font-weight: 600;
}

/* Container for the dropdown */
.dropdown {
  position: relative;
  display: inline-block; /* Essential to keep the menu aligned with the button */
}

/* Style the link/button that triggers the dropdown */
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  text-decoration: none;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute; /* Positions menu below the button */
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; /* Ensures it stays on top of other content */
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block; /* Makes each link take up the full width */
}

/* Change background color on hover for dropdown links */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu when hovering over the .dropdown container */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: Change the background color of the trigger button on hover */
.dropdown:hover .dropbtn {
  background-color: #2980b9;
}/*# sourceMappingURL=m.css.map */