@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

  }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

nav {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #000000;
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a img {
  padding: 3px;
  margin-top: 30px;
  height:45px; 
  width:90px;
  border-right: 1px #fff solid;
  margin-left: 40px;
}

.wrapper .nav-links {
  display: flex;
  margin-right: 40px;
}

.nav-links li {
  list-style: none;
  position: relative;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #7d7c7c;
}

.nav-links .drop-menu {
  position: absolute;
  background: #000000;
  width: 200px;
  line-height:22px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  z-index: 999;
}


.dropdown:hover .drop-menu {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.dropdown.active .drop-menu {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  display: block;
  padding-left: 15px;
  font-weight: 600;
  text-align: left;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  transition: 0.3s;
}


.tlogo a {
  text-decoration: none;
  color: white;
}

.tlogo-container {
  display: flex;
  align-items: center;
  text-align: left;
  padding-right: 15px;
}

.tlogo-container img {
  height: 45px;
  width: auto;
  margin-left: 40px;
}

.tlogo-text {
  margin-left: 10px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  border-left: 2px white solid;
}

@media screen and (max-width: 970px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: 0.3s;
  }

  nav .wrapper {
    position: relative;
    max-width: 1300px;
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 50px;
  }

  .wrapper {
    width: 100%;
    max-width: 1300px;
    overflow-x: hidden;
  }

  .wrapper .nav-links {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: #000;
    padding: 0px 20px 40px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    overflow-y: auto;
    z-index: 999;
  }

  .wrapper .nav-links.show {
    transform: translateX(0);
    margin-top: 50px;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
    padding: 2px 0;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 13px;
    text-align: left;
    font-weight: 500;
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
  }


  .drop-menu li a {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 16px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
  }

  .nav-links li a:hover,
  .drop-menu li a:hover {
    background: #444;
  }

  .dropdown .drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .drop-menu {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-left: 10px;
  }

  .dropdown.active > .drop-menu {
    max-height: 1000px;
  }

  .tlogo-container {
    display: flex;
    align-items: center;
    text-align: left;
    padding-right: 15px;
  }

  .tlogo-container img {
    height: 30px;
    width: auto;
    margin-left: 40px;
  }

  .tlogo-text {
    margin-left: 10px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    border-left: 2px white solid;
  }

  .no-scroll {
    overflow: hidden;
  }
}



.fa-chevron-down:before{
  content: "\f078";
    margin-left: 8px;
}
