/**
 * Theme Name:     Twenty Twenty-One Child
 * Author:         the WordPress team
 * Template:       twentytwentyone
 * Text Domain:	   twenty-twenty-one-child
 * Description:    Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
 */
@import "css/common.css";
/* HERO BANNER
--------------------------------------------------*/

.bannerBlock{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.bannerVideo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.bannerOverlay{
    position:absolute;
    inset:0;
/*     background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    ); */
}

.banner_content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.banner_content h1{
    color:#fff;
}

.banner-description{
    color:#fff;
    font-size:20px;
    margin:25px 0;
    max-width:650px;
}

/* HIGHLIGHTS
--------------------------------------------------*/

.bannerHighlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:50px 0;
}

.highlightItem{
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    transition:.4s;
	text-align: left;
}

.highlightItem:hover{
    transform:translateY(-10px);
    background:#C7A56A;
}

.highlightIcon{
    font-size:24px;
    margin-bottom:15px;
}

.highlightLabel{
    font-size:12px;
    letter-spacing:2px;
    opacity:.8;
}

.highlightLine{
    width:50px;
    height:2px;
    background:#fff;
    margin:12px 0;
}

.highlightValue{
    font-weight:600;
}

.key-height-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px){
	.bannerHighlights {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 20px;
		margin: 20px 0;
	}
	.site section.bannerBlock{
		height: 100%;
        min-height: 500px;
		padding: 140px 0 50px;
	}
	.key-height-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		position: relative;
		z-index: 2;
	}
	.keyMilestonesSection .heading-block {
		margin-bottom: 0;
	}
}


