ul li a:hover {
  color: #ffee10;
  text-shadow: 0 0 5px #ffee10;
}

p a:hover {
  color: #ffee10;
  text-shadow: 0 0 5px #ffee10;
}

h5:hover {
  color: #ffee10;
  text-shadow: 0 0 5px #ffee10;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.btn {
    text-transform: uppercase;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-dark {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-primary);
    color: var(--bs-dark) !important;
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../images/background.jpg) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.page-header-2 {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

body {
    background: #333;
  }
  
  .menu-icon-wrapper {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    pointer-events: none;
    transition: 0.1s;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -17px;
    margin-top: -17px;
  }
  
  .menu-icon-wrapper.scaled {
    transform: scale(0.5);
  }
  
  .menu-icon-wrapper svg {
    position: absolute;
    top: -33px;
    left: -33px;
  }
  
  .menu-icon-wrapper svg path {
    stroke: #fff;
    stroke-width: 4px;
    stroke-linecap: round;
    fill: transparent;
  }
  
  .menu-icon-wrapper .menu-icon-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    pointer-events: auto;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
  }
  .menu-icon-wrapper .menu-icon-trigger:active, .menu-icon-wrapper .menu-icon-trigger:focus {
    outline: none;
  }
  