*{ margin:0; padding:0;}

img{ max-width:100%;}

a{ text-decoration:none !important; cursor: pointer;}

:hover{  transition: 0.5s;}

p{ font-size: 0.9em; font-weight:400; margin-bottom:10px;}

h1{ font-size: ; font-weight:700; margin-bottom:15px;}

h2{ font-size:  ; font-weight:  ; margin-bottom:15px;}




button{ border:0px; outline: none; cursor: pointer;}
input{ border:0px; outline: none; }

.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0,0,0,.7);
}



li{ list-style:none;}

.carousel-item img{ width:100%; height:auto; min-height:200px;}


#mid{ width:100%; height:auto; float:left;}

.heading{ position:relative; font-weight:700; font-size:30px; text-align:center;}
.heading:after{ position:absolute; left:0; top:45px; right:0; content:""; width:150px; height:2px; background:#999; text-align:center; margin:auto; }
footer{ width:100%; float:left;}

footer ul li a{ color:#333;}


 /* Navbar container */
 .navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Mega Menu header, if needed */
  .dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    padding: 10px;
    background-color: #ccc;
    height: 250px;
  }
  
  /* Style links inside the columns */
  .column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a background color on hover */
  .column a:hover {
    background-color: #ddd;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  } 