@font-face {
  font-family: TungstenNarrow-Medium;
  src: url("font/TungstenNarrow-Medium.otf") format("opentype");
} 

@font-face {
  font-family: TungstenNarrow-Light;
  src: url("font/TungstenNarrow-Light.otf") format("opentype");
} 

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

:root {
  --slider_transform: 15px;
  --rc_light_grey: #b1b6b2;
  --rc_dark_grey: #33393e;
  --rc_red: #841e31;
  --rc_red_lite: #a16772;
  --rc_title_font: TungstenNarrow-Medium;
  --rc_body_font: gotham rnd;
  --dropdown_duration: 0.5s;
  --nav_height: 70px;
}

  body {
    background: #f5f5f7;
    margin-top: 7em;
    min-height: 100%;
    height: 100%;
    width: 100%;
    overflow-x:hidden;
  }

  footer {
    background-color: #1F2326;
    opacity: 1;
    bottom: 0;
    width: 101%;
    position: absolute;
  }

  /* body min height */ 
  div#page-container {
    position: relative;
    min-height: 100vh;
  }

  div#content-wrap {
    padding-bottom: 30em;    
  }
  
  
  img.logo {
    width:230px;
    height:50px;
  }

  div.title {
    display: flex;
    justify-content: center;
    z-index: 0;
  }

  h1, h2, h4, p {
    color:#131212;
  }

  h1.title {
    color: #1b1a1a !important;
    font-family: TungstenNarrow-Light;
    font-size: 5em;
    font-weight: 300;
    line-height: 50px;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 50px;
    z-index: 0;
  }
  

  
  nav.navbar {
    padding: 0px;
    height: var(--nav_height);
    background-color: #ffffff;
    margin-bottom: 50px;
    font-family:var(--rc_title_font);
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 2px; 
    transition: top 0.2s ease-in-out;
  }

  div.collapse, div.navbar-nav, li.dropdown {
    height: var(--nav_height);
  }
  li.dropdown{
    padding: 0px;
    margin: 0px;
  }


  /* navbar menu options */
  .navbar a.nav-item {
    padding-top: 20px;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  div.navbar-nav .nav-item {
    color:#000000; 
    opacity: 0.8;
    margin-right: 0.3em; 
    display: block;
    border-bottom: 10px solid rgba(0,0,0,0);
  }

  div.navbar-nav .nav-item:hover {
    color:#000000;
    opacity: 1; 
    text-decoration: none;
    height:100%;
    border-bottom: 10px solid var(--rc_red);
  }

  /* dropdown items */
  @media all and (min-width: 992px) {
    .navbar .dropdown .dropdown-menu{ 
      font-family: TungstenNarrow-Light;
      height:0;
      max-height:0;
      display: block;
      overflow: hidden;
      top: -100px;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
    }
    .navbar .dropdown:hover .dropdown-menu{ 
      height: auto;
      max-height: 1000px;
      overflow: hidden;
      top: 60px;
      transition: max-height 1.5s;
    }

  }


  
  li.dropdown a.dropdown-item:not(:last-child){
    margin-bottom: 0.5em;
    font-size: 1.6em;
  }

  li.dropdown a.dropdown-item:last-child {
    font-size: 1.6em;
  }

  li.dropdown a.dropdown-item:hover{
    background: rgb(233, 232, 232) !important;  
    color:var(--rc_red);
    transition: all 0.15s ease-in;
  }

  
  .content-section {
    background: #ffffff;
    padding: 10px 20px;
    border: 8px solid #fffdfd;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 65%;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    position: relative;
    margin-top: 20px;
    background-color: #f1efef;
    color: #9b2438;
    border: 1.5px solid #9b2438;
    margin-bottom: 10px;
  }

  .btn:hover {
    background-color: #720808;
    border: 1.5px solid #9b2438;
    color:azure;
  }

  .btn:active {
    box-shadow: 0 0 0 3px rgba(236, 132, 132, 0.5) !important;
  }

  a.explainer_info {
    color:#000000;
  }

  a.explainer_info:hover {
    color:#0464ff;
  }

  div.noData {
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }