.header-section {
    font-family:'MuseoSlab300';
    background-size: cover;
    min-height: 500px;
    padding: 125px 50px 50px 50px;
    color: #fff;
    margin: 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    max-width: 2000px;
    margin:0 auto;
}
.header-section.has-background-image {
    align-self: center;
    background-size: cover;
    background-position: center;
}
.header-section.has-background-image[data-background-image] {
    background-image: url(attr(data-background-image));
}
.header-section .underlineSubhead {
    width: fit-content;
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--boingo-light-gray);
}
.header-section h1 {
    font-family: 'Figtree-Bold';
    font-size: 41px;
    margin-bottom: 38px;
}
.header-content {
    width: 100%;
    max-width: 1140px;
    padding:0 15px;
}
.header-content .header-buttons {
    font-family: 'Figtree-Regular';
    font-size:18px;
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    padding:13px 13px 13px 0px;
}
.header-content .header-buttons a {
    min-width: 240px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-content .header-buttons a:visited, .header-content .header-buttons a:hover, .header-content .header-buttons a:focus {
    color: #fff;
}
.header-content .header-buttons a.first-selection {
    color: #fff;
    background-color: var(--boingo-red);
    border: 1px solid var(--boingo-red);
    transition: background-color 100ms linear;
}
.header-content .header-buttons a.first-selection img {
    width: 8px;
    margin-right: 5px;
}
.header-content .header-buttons a.first-selection:hover {
    background-color: #A53428;
    border-color: var(--boingo-dark-red);
    color: #fff;
}
.header-content .header-buttons a.second-selection {
    color: #fff;
    border: 1px solid white;
    transition: border-color 100ms linear;
}
.header-content .header-buttons a.second-selection:hover {
    border-color: #ccc;
    color:#fff;
}
.second-selection:visited {
	color: #fff;
}

@media screen and (max-width: 1024px){
    .header-buttons {
        padding:0px!important;
    }
	.header-section {
		min-height: 0px;
		padding: 120px 25px 120px 25px;
	}
    .header-content {
        padding:0px;
    }
    .header-content .header-buttons a {
        width: 100%;
        font-size: 18px;
        min-width:0px;
    }
}