@keyframes fadeIn {

  0% {

    opacity: 0;

    visibility: hidden;

  }



  75% {

    opacity: 0.6;

  }



  100% {

    opacity: 2;

    visibility: visible;

  }

}

@keyframes fadeOut {

  0% {

    opacity: 2;

    visibility: visible;

  }



  75% {

    opacity: 0.6;

  }



  100% {

    opacity: 0;

    visibility: hidden;

  }

}

body {

  margin: 0;

  padding: 0;

}



.butterfly {
    width: 35px;
    height: 24px;
    transform: rotate(-36deg);
    margin-bottom: 15px;
    margin-left:8px;
}

.mainNav {

  height: 140px;

  width: 100%;

  background-color: black;

 /* position: relative;*/
     position:fixed;
     z-index:99999;
  display: flex;

  justify-content: center;

  align-items: center;

}



.checkboxDiv {

  position: relative;

}

.checkboxDiv p {

  position: absolute;

  top: 15px;

  right: 13px;

  font-family: "Helvetica Neue";

  font-size: 25px;

  color: #ffffff;

  z-index: 2;

}

.hamburger-lines {

  position: absolute;

  top: -25px;

  right: 13px;

  display: block;

  height: 32px;

  width: 32px;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}

.hamburger-lines .line {

  display: block;

  height: 4px;

  width: 100%;

  border-radius: 10px;

  background: white;

}

.checkbox {

  position: absolute;

  display: block;

  height: 32px;

  width: 32px;

  top: -25px;

  right: 13px;

  z-index: 5;

  opacity: 0;

  cursor: pointer;

}

.links li {

  list-style: none;

  visibility: hidden;

  text-align: start;

  margin-top: -15px;

  padding: 10px;

  border-bottom: 1px solid white;

}

li a {

  text-decoration: none;

  font-family: "Helvetica Neue";

  font-size: 15px;

  color: #ffffff;

  color: rgb(255, 255, 255);

}

li a:hover{

  color: #ffffff;

  color: rgb(255, 255, 255);

}



.links {

  gap: 2rem;

  margin-right: 81px;

  width: 1000px;

  position: relative;

  display: flex;

  align-items: flex-start;

  flex-direction: row;

  transition: all 1s;

  align-content: center;

  justify-content: flex-end;

}

&:has(.checkbox:checked) .links li {

  visibility: visible;

}

.navAnimationFadeIn {

  -webkit-animation: fadeIn 0.6s linear;

  animation: fadeIn 0.6s linear;

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;

}

.navAnimationFadeOut {

  -webkit-animation: fadeOut 0.6s linear;

  animation: fadeOut 0.6s linear;

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;

}

.navAnim1 {

  -webkit-animation-delay: 0.26s;

  animation-delay: 0.26s;

}

.navAnim2 {

  -webkit-animation-delay: 0.52s;

  animation-delay: 0.52s;

}

.navAnim3 {

  -webkit-animation-delay: 0.78s;

  animation-delay: 0.78s;

}

.navAnim4 {

  -webkit-animation-delay: 1.04s;

  animation-delay: 1.04s;

}

.navAnim5 {

  -webkit-animation-delay: 1.3s;

  animation-delay: 1.3s;

}

.navAnim6 {

  -webkit-animation-delay: 1.56s;

  animation-delay: 1.56s;

}

.dropdown {

  position: relative;

}



.dropdown > a {

  cursor: pointer;

}

.dropdown >   a:hover { 

  color: #fff !important;

}

.dropdown-menu {

  position: absolute;

  border-radius: 0 !important;

  top: 100% !important;

  left: 0 !important;

  width: 100% !important;

  height: 130px !important;

  background-color: #e0e0e0 !important; /* Customize the dropdown menu background */

  padding: 0 !important; /* Remove padding to eliminate the space */

  margin: 0 !important; /* Remove margin to eliminate the space */

  display: none; /* Keep the menu open when hovering over it */

}

.dropdown-menu li {

  margin-top: 5px;

  border-bottom: 0 !important;

}

.dropdown-menu-2 {

  position: absolute;

  border-radius: 0;

  top: 100%;

  left: 0;

  width: 100%;

  height: 50px;

  background-color: #e0e0e0; /* Customize the dropdown menu background */

  padding: 0; /* Remove padding to eliminate the space */

  margin: 0; /* Remove margin to eliminate the space */

  display: none; /* Keep the menu open when hovering over it */

}

.dropdown-menu-2 li {

  margin-top: 5px;

  border-bottom: 0 !important;

}

.dropdown-menu-2 li a,.dropdown-menu li a{

 color: #000;

}

.dropdown-main-border {

  width: 100%;

  height: 1px;

  display: flex;

  justify-content: center;

  align-items: center;

}

.inner-border {

  height: 1px;

  width: 88%;

  border-bottom: 1px solid black;

}

.dropdown:hover .dropdown-menu,

.dropdown-menu:hover {

  display: flex; /* Keep the menu open when hovering over it */

  justify-content: start;

  align-items: start;

  flex-direction: column;

  text-align: start;

}

.dropdown:hover .dropdown-menu-2,

.dropdown-menu-2:hover {

  display: flex; /* Keep the menu open when hovering over it */

  justify-content: start;

  align-items: start;

  flex-direction: column;

  text-align: start;

}



.dropdown-menu li {

  list-style: none;

}



.dropdown-menu a {

  text-decoration: none;

  font-family: "Helvetica Neue";

  font-size: 13px !important; /* Adjust the font size as needed */

  color: #000000;

  margin-left: 2%;

  width: 100%;

  display: block;

  border-bottom: 0px;

}

.dropdown-menu-2 a {

  text-decoration: none;

  font-family: "Helvetica Neue";

  font-size: 13px !important; /* Adjust the font size as needed */

  color: #000000;

  margin-left: 2%;

  width: 100%;

  display: block;

  border-bottom: 0px;

}

.currentLink {

  background-color: white;

}

.currentLink a {

  color: black !important;

}

.sub {

  font-size: 15px !important;

}

/* If you want to style the submenu items differently, you can add more CSS here */



@media screen and (max-width: 1024px) {

  .mainNav{display: none}

  

  .mainNav img {

    margin-left: 50px;

  }

  

}



/* For Tablet View */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .links li {

    padding: 15px 4px;

  }

  .links li a {

    font-size: 14px;

  }

}



/* Scroll Top Button */

#scrollTopBtn {

  position: fixed;

  right: 50px;

  bottom: 103px;

  width: 45px;

  height: 45px;

  opacity: 0;

  z-index: 1000;

  font-size: 20px;

  border-radius: 50%;

  color: #ffffff;

  background-color: #282828;

  overflow: hidden;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -ms-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

}



#scrollTopBtn:hover {

  background-color: #e6ae48;

}



#scrollTopBtn.actived {

  right: 80px;

  opacity: 1;

}





