/**
* Updated: Sep 18 2023 with Bootstrap v5.3.2
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #090528;
    --primary-accent-color: #1d1a39;
    --secondary-color: #f77231;
    --secondary-accent-color: #f29c4f;

    --white-color: #fffeff;
    --dark-color: #282046;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--white-color);
  /* background: linear-gradient(98deg, #003C1D 1.52%, var(--primary-color) 57.45%);; */
  background: var(--primary-color);
}

a {
    font-family: 'Poppins', sans-serif;
  color: var(--white-color);
  text-decoration: none;
  transition: 0.5s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.clearfix {
    clear: both;
    height: 100px;
}

h2 {
    font-size: 22px;
    font-weight: bold;
}

h4 {
    font-size: 16px;
    font-weight: bold;
}

p {
    font-size: 14px;
    white-space: pre-line;
}

ul li {
    font-size: 14px;
}

table.border tr th {
    font-weight: bold;
}

table.border tr th, table.border tr td {
    border: 1px solid var(--white-color);
    padding: 5px 20px;
}

.list-unstyled {
    list-style: none !important;
}

.download:hover * {
    color: var(--secondary-color) !important;
}

/*--------------------------------------------------------------
  # Custom Scrollbar
  --------------------------------------------------------------*/
  *::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: linear-gradient(150deg, var(--primary-color) 0%, var(--dark-color) 65%);
}

*::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 25vw;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    background: var(--alt-color);
    overflow-y: auto;
  }

  #main {
    margin-left: 25vw;
    background: rgba(0, 0, 0, 0.3);
  }

  .container,
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  @media (max-width: 768px) {
    #header {
      left: -50vw;
      width: 50vw;
    }

    #main {
      margin-left: 0;
    }

    .container,
    .container-fluid {
      padding-left: 12px;
      padding-right: 12px;
    }
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu {
    padding: 30px 0 0 0;
  }

  .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: disc;
    white-space: normal;
  }

  .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
  }

  .nav-menu a,
  .nav-menu a:focus {
    display: flex;
    align-items: center;
    color: var(--white-color);
    /* padding: 0 15px; */
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 15px;
  }

  .nav-menu a:hover,
  .nav-menu .active,
  .nav-menu .active:focus,
  .nav-menu li:hover>a {
    text-decoration: none;
    color: var(--secondary-color);
  }

  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    background-color: var(--white-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active #header {
    left: 0;
  }
