* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h3 {
  font-size: 2.2rem;
}

.header-top {
  padding: 10px 0px 10px 0px;
  background-color: #000000;
  transition: transform 0.3s;
}
.top-main {
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: center;
  font-family: "SF Regular", Helvetica, Arial, sans-serif;
}
.top-main-a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}
.arrows-imgs {
  background-color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrows-imgs img {
  padding-top: 1px;
  width: 14px;
}
.top-main ul {
  display: flex;
  column-gap: 16px;
  margin-right: 6px;
  margin-bottom: 0px !important;
}
.top-main ul li {
  color: white;
  font-size: 14px;
  background-color: red;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-main ul li a {
  color: white;
  font-size: 14px;
}
.second-container {
  width: 100%;
  max-width: 90%;
  margin: auto !important;
}
.svg-icon {
  background-color: white;
  width: 18px;
  height: 18px;
  padding: 5px;
  position: relative;
  bottom: 26%;
  border-radius: 50%;
}
.navigation {
  height: auto;
  background-color: #000000;
  font-family: "SF Regular", Helvetica, Arial, sans-serif;
  display: flex;
  padding-bottom: 10px;
}

.brand a,
.brand a:visited {
  color: #ffffff !important;
  text-decoration: none;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: end;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a,
nav ul li a:visited {
  display: block;
  background: black;
  color: #ffffff !important;
  text-decoration: none;
}

nav ul li a:not(:only-child):after {
  padding-left: 10px;
  content: "\f078";
  font-family: "FontAwesome";
}

nav ul li ul li {
  min-width: 170px;
}

nav ul li ul li a {
  padding: 10px 16px;
  line-height: 24px;
}
.header-svg-icon {
  background-color: red;
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  margin-left: 4px;
}

.nav-dropdown {
  text-align: start;
  position: absolute;
  display: none;
  top: 100%;
  right: -10%;
  z-index: 99;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #000000;
  height: 40px;
  width: 92px;
}
@media (max-width: 1400px) {
  .arrows-imgs img {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .nav-mobile {
    display: block;
  }

  .nav-container {
    display: block;
    text-align: start;
  }
  nav ul li ul li a {
    line-height: 18px;
    text-align: center;
  }

  nav {
    width: 100%;
  }
  nav ul li a,
  nav ul li a:visited {
    border-bottom: 1px solid #949494;
  }

  nav ul {
    display: none;
    text-align: center;
  }

  nav ul li {
    float: none;
  }

  nav ul li a {
    padding: 10px;
    line-height: 16px;
    font-size: 16px !important;
  }
  .nav-dropdown {
    position: static;
  }
}

@media screen and (min-width: 991px) {
  .nav-list {
    display: flex;
    column-gap: 1.4rem;
    margin-right: -8px;
  }
}

#nav-toggle {
  position: absolute;
  left: 34px;
  top: 80px;
  cursor: pointer;
  padding: 0px 37px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 20px;
  background: #ffffff;
  position: absolute;
  display: block;
  top: 0%;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 734px) {
  .logo img {
    width: 80px;
  }
  .nav-mobile {
    width: 82px;
  }
}
@media (max-width: 520px) {
  .top-main ul {
    column-gap: 4px;
    border-radius: 2px;
    padding: 0px 4px;
    margin-right: 0px;
    margin-bottom: 0px !important;
  }
  .top-main ul li a {
    font-size: 12px;
  }
  .svg-icon {
    width: 14px;
    height: 14px;
    padding: 3px;
  }
  .nav-mobile {
    width: 74px;
  }
  .arrows-imgs {
    width: 13px;
    height: 13px;
  }
  .arrows-imgs img {
    width: 11px;
    padding-top: 0px;
  }
  .top-main ul li {
    padding: 3px 4px;
  }
}
