* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
    
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-image: linear-gradient(rgba(5,7,12,0.75), rgba(5,7,12,0.75)),
    url('../images/fondo.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover; 

   
  } 
  
  /* Header/logo Title */
  .header {
    background-image: url("../images/appointments.jpg");
    padding: 80px;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    text-align: center;
    color: white;
    
  }
  
 
  
  /* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
  .navbars {
    overflow: hidden;
    background-color: #2055a8;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0px;
  }
  
  /* Style the navigation bar links */
  .navbars a{
    float: left;
    display: block;
    padding: 15px 10px;
    color: white;
    text-align: center;
    text-decoration: none;
  }
  
  
  /* Right-aligned link */
  .navbars a.right {
    float: right ;
  }
  
  /* Active/current link */
  .navbars a.active { 
    background-color: #FFA200 ;
    color: white;
    
  }

  /* Change color on hover */
  .navbars a.active:hover {
    background-color: #2BBB1A;
    color: white; 
  }
    /* Change color on hover */
  .navbars a.right:hover {
    background-color: #12203E;
    color: white; 
  }
  
  /* Footer */
  .footer { 
    padding: 15px;
    text-align: center;
    background: #2055a8;
    color: white; 
    position: static;
    margin: auto;

  }
.btn.btn-primary1{
    background:#FFA200;
    color:white;
}
.btn.btn-primary1:hover {
    background-color: #2BBB1A;
    color: white; 
  }
 



  
  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row {   
      flex-direction: column;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .navbar a {
      float: none;
      width: 100%;
    }
  }
 
  /* #################################################################################################################################################### */
  
 
