/*
 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
*/
/* Home Page slider section */
page-hero-content {
    padding: 20px;
    border: 5px solid rgba(211,211,35,0.2);
    border-radius: 10px;
    max-width: 700px;
}

@media (max-width: 1200px) {
    .page-hero-content {
         padding: 10px;
         margin: auto;
    }
}

.inside-page-hero {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "left right";
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
}

.page-hero-content {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: right;
	margin-top:25%;
}

@media (max-width: 768px) {
    .inside-page-hero {
        display: block;
    }
}

/* Video banner section */

background-video {

}

.page-hero {
  min-height:  100vh;
}

.background-video-content {
    position: relative;
    z-index: 1;
	margin-top:10%;
    margin-left:40%;
}
.background-video-content a {
	text-decoration: none !important;
}


video[poster] {
    object-fit: cover;
}