body {
    background: black;
    background-size: cover; /* Ensure the image covers the entire body */
    width: 100%;
    margin: 0; /* Remove default margin */
}

  /*======================================
  //--//-->   NAVBAR
  ======================================*/
  
  .navbar {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 0; 
  }
  
  .navbar-nav li a {
    color: white;
    padding: 10px 20px;
  }
  
  .navbar-nav li a:hover {
    transition: all .5s ease-in-out;
    background-color: rgba(45, 45, 45, 0);
    color: rgba(255, 255, 255, 0.388);
  }
  
  /* Dropdown Menu */
  .navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .navbar-nav .dropdown-item {
    color: whitesmoke;
    padding: 10px 20px;
  }
  
  .navbar-nav .dropdown-item:hover {
    background-color: rgba(45, 45, 45, 0);
    color: rgba(255, 255, 255, 0.388);
  }

/*======================================
//--//-->   BANNER
======================================*/

#head h1 {
    text-align: center;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 20px;
    font-weight: 600;
}

#content {
    background: none repeat scroll 0 0 #fff;
    padding: 5em 0;
    border-bottom: 1px solid #f0f0f0;
}

#content h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 1em 0 0.3em;
    text-transform: none;
}

#content i:hover {
    color: #f4bc51;
}

#map-block iframe {
    display: block;
}

.contact-page p {
    font-size: 1em;
    font-style: normal;
}

.contact-page i {
    background: none repeat scroll 0 0 rgb(0, 30, 34);
    border-radius: 100px;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    margin: 0.3125em 0.3125em 0.3125em 0;
    text-align: center;
    width: 35px;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    padding: 10px; 
    margin-top: 20px;
}


@media screen and (max-width: 768px) {
    body {
        background: none repeat scroll 0 0 rgb(0, 30, 34);
    }
    #content {
        text-align: left;
    }
}

/*======================================
//--//-->   FOOTER SECTION
======================================*/

.footer {
    padding: 12px;
    background-color: #000000;
    color: #fff;
}

.footer-content {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center items vertically */
    max-width: 1200px; /* Optional: limit the width */
    margin: 0 auto; /* Center the footer content */
    padding-left: 20px;
    padding-right: 15px;
}

.footer-text {
    margin: 0 10px; /* Add some margin for spacing */
    font-size: 12px;
}