/* HEADER */
.flash-ion{
  font-size: 22px;
  margin-right: 10px;
}
 .logo {
    height: 80px !important;
    width: 80px !important;
    margin: 0 auto;
  }
  .brand-url-logo-wrap{
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .brand-url-logo-wrap img{
    height: 100%;
    width: 100%;
  }
  .dropdown-toggle{
    margin-right: 10px;
  }
  .menu-toggle {
    height: 26px;
    width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
  }
  .menu-toggle .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #f7f7f7;
  }
  .menu-toggle .line1 {
    transform-origin: 100% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .menu-toggle .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .menu-toggle .line3 {
    transform-origin: 100% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .menu-toggle.active .line1 {
    transform: rotate(-45deg);
  }
  .menu-toggle.active .line2 {
    transform: scaleY(0);
  }
  
  .menu-toggle.active .line3 {
    transform: rotate(45deg);
  }
  
  .nav > * ~ * {
    margin-top: 30px;
  }
  .nav-link.active {
    color: var(--main) !important;
    font-weight: 600;
  }
  .nav-link{
    font-size: 16px;
  }
  .nav-link:hover{
    color: #F38309;
    text-decoration: underline;
  }
  .brand-url {
    display: flex;
    align-items: center;
  }
  .brand-url-txt {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgb(0, 0, 0), 0 0 10px rgb(0, 0, 0),
      0 0 10px rgb(0, 0, 0);
    display: none;
  }
  .brand-url-txt span {
    transition: all 0.3s ease-in-out;
    color: white;
    display: inline-block;
  }
  .brand-url-logo-wrap:hover .brand-url-txt{
    color: orange;
    transform: rotate(-3deg);
  }

  .navbar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.5, 0, 0.5, 1);
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    background-color: #1e1e1e;
    z-index: 1;
    display: flex;
  }
  .nav-link{
    padding: 0.5rem 0.6rem !important;
  }
  .divider {
    margin: 10px 0;
    width: 50px;
    height: 1px;
    background-color: #fff;
  }
  .navbar-wrap.active {
    transform: translateX(25%);
  
  }
  .navbar-wrap .nav .nav-item {
    text-align: center;
  }
  .nav-link {
    transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  }
  .nav-link:hover:not(.active) {
    color: var(--main) !important;
  } 
.form-select{
  background-image: url('../../assets/arrow-down.svg') !important;
}

  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
    
