/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


.page__banner_section {
  width: 100%;
  position: relative;
  top: 0px;
  height: 400px;
}

.page__banner_section .banner_thumb {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.page__banner_section .banner-container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page__banner_section .banner-content {
  text-align: center;
  position: relative;
  color: #FFF;
  padding: 40px 30px;
  width: 100%;
}

.page__banner_section .banner_thumb img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.page__banner_section .banner-content .banner-heading {
  color: #FFF;
  position: relative;
  padding: 5px 10px;
}

.custom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-menu li {
    position: relative;
}

.custom-menu li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    background-color: #011336;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    z-index: 1000;
    min-width: 180px;
}

.custom-menu li:hover > ul {
    display: block;
}

/* Optional: basic styling for items */
.custom-menu li a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: #fff;
    background:transparent!important;
	text-transform: uppercase;
  	font-size: 1em !important;
  	font-weight: 600;
	text-align: center;
}

.custom-menu li ul li a {
    background-color: #fff;
}

.custom-menu li a:hover {
    background-color: #eee;
}