 /* Add here all your CSS customizations */
  .card{
      position:relative;
      display:-ms-flexbox;
      display:flex;
      -ms-flex-direction:column;
      flex-direction:column;
      min-width:0;
      word-wrap:break-word;
      background-color:#0c0c0c;
      background-clip:border-box;
      border:1px solid rgba(0,0,0,.125);
      border-radius:.25rem;
      
  }
  
a{
    color:#d3a13b;
    text-decoration:none;
    background-color:transparent;
    
}
@media (min-width:992px)
{#header .header-nav-main nav > ul > li > a{
    color:#000;
    
}
}



/* video
*/
/* Style the video: 100% width and height to cover the entire window */

#desktop
{
    position:absolute;
    width:100%;
    height:100%;
    
}


#mobile
{
    width:100%;
    height:100%;
    position:absolute;
    
}



/*show video on mobile*/
#mobile{display:none;}

  /* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width:280px)
and (max-device-width:500px)
{
    #mobile
    {
        display:inline;
        
    }

}

/*hide video on mobile*/

#desktop{
    display:inline;
    
}

/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width:280px) and (max-device-width:500px)
{
    #desktop
    {
        display:none;
        
    }
}


/*show logo on mobile*/
.py-2
{
    display:none;
    
}

/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width:210px)
and (max-device-width:500px)
{
    .py-2
    {
        display:inline;
        
    }
}

/*hide logo on mobile*/
.py-3{display:inline;}

/* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width:210px)
and (max-device-width:500px){.py-3{display:none;}
}

/* Style all font awesome icons */
.fa {
  padding: 10px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  text-decoration: none;
}

.socialLinks
{
    width:100%;
    font-size:10px;
    color:#000;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #d3a13b;
}

a:hover {
    color: #d3a13b;
    text-decoration: underline;
}