header {
  --text-color: #fff;
  --main-color: #f3af17;
  background-color: var(--main-color);
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d3d3d3;
  z-index: 1000;
}


.navbar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 110px;
  z-index: 1001;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-wrapper .nav-item {
  padding: 30px 1.5rem;
  font-size: 16px;
  position: relative;
}

.main-links {
  color: rgb(13, 13, 13);
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  font-family: Gilroy-Light;
   cursor: pointer;
}

.main-links:hover {
  color: white;
 
}
.drop-wrapper{
  position: absolute;
  top: 100%;
  left: 0;
  height: 0;
  background-color: #f8bd3e;
 transition: .5s ease-in-out;
  border-radius: 5px;
  padding: 0 40px;
  z-index: 100;
  min-width: 300px;
  overflow: hidden;
}
.drop-wrapper li{
  padding: 10px 0;
  font-size: 16px;
  position: relative;
}
.drop-wrapper a{
  display: block;
  color: rgb(13, 13, 13);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
    font-family: Gilroy-Light;
    border-bottom: 1px solid transparent;
    position: relative;
}
.drop-wrapper a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #ffae00;
  background-color: #ffffff;
  transition:  0.5s ease-in-out;

}
 .drop-icon i{
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.5s ease-in-out;
  transform: rotate(90deg);
}

.drop-wrapper a:hover{
  color: #ffffff;
}
.drop-wrapper a:hover::after{
  width: 100%;
}


.menu-icon {
  font-size: 24px;
  cursor: pointer;
  color: #000;
  display: none;
  z-index: 1001;
}

@media (min-width: 800px) {
  .navbar-wrapper .nav-item:hover> .drop-wrapper {
      height: auto;
      padding: 20px 40px;
  }
  .navbar-wrapper .nav-item:hover .drop-icon i{
    transform: rotate(-90deg);
    color: white;
  }

}
/* Mobile menu styles */
@media (max-width: 800px) {
  .menu-icon {
      display: block;
  }
  


.navbar-wrapper{
  padding: 10px 0;
}
.logo {
  width: 75px;
  z-index: 1001;
}
.navbar-wrapper
  .menu {
    position: fixed;
    top: 55px;
    right: -100%;
    width: 300px;
    /* height: 100vh; */
    background-color: #f3af17;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 30px;
    /* padding-top: 20px; */
    overflow: hidden;
    overflow-y: scroll;
      
  }
  
  .menu.active {
      right: 0;
  }
.main-links{
  display: block;
  text-align: start;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(249, 217, 149);
}
.drop-links{
  display: flex;
  justify-content: space-between;
}
  
  .navbar-links {
      flex-direction: column;
      width: 100%;
      text-align: center;
  }
  
  .navbar-wrapper .nav-item {
      padding: 15px 0;
      width: 100%;
  }
  
  .btn-black {
      margin: 20px 0 0 0;
      display: inline-block;
  }

  .drop-wrapper.open{
    position: relative;
    top: -2px;
    height: auto;
    background-color: #f8b41b;
    padding: 0 10px;
  }
  .drop-wrapper a{
    text-align: start;
  }
  .navbar-wrapper .nav-item .drop-icon.arrow-up i{
    transform: rotate(-90deg);
  }
}





/* footer */

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 30px;
}
.f-container {
  display: flex;
  justify-content: space-between;
}

.footer-heading {
  font-size: 40px;
  font-family: Gilroy-Light;
  margin-bottom: 30px;
  line-height: 1.2;
}
.footer-heading span {
  font-family: Gilroy-Light;
  color: #f6aa04;
  display: block;
  line-height: 1.2;
}
.footer-heading span {
  color: #f6aa04;
}

.footer-email {
  color: #f6aa04;
  font-size: 30px;
  font-family: Gilroy-Light;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-email:hover {
  color: #f6aa04;
  text-decoration: underline;
}

.footer-right {
  text-align: end;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;

  display: block;
  margin: 15px 0;
  transition: all 0.3s;
}

.footer-logo {
  width: 70px;
  margin: 20px 0;
  margin-left: auto;
}
.footer-link:hover {
  color: #f6aa04;
}

.copyright {
  margin-top: 30px;
  opacity: 0.6;
  font-size: 12px;
}

@media (max-width: 768px) {
  .f-container{
    flex-wrap: wrap;
    padding: 0 ;
  }

  .footer-right {
    text-align: start;
    margin-top: 20px;
  }
  .footer-logo {
  display: none;
  }
  .footer-heading {
    font-size: 2.2rem;
  }

  .footer-email {
    font-size: 1.2rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
  }

  .footer-link {
    margin-bottom: 15px;
    margin-right: 0;
  }
}


