.homepage-hero {
    background-color: rgba(0, 26, 51, 1);
    overflow: hidden;
}
.homepage-hero .container {
    position: relative;
}
.homepage-hero .container:before {
    content: '';
    position: absolute;
    display: block;
    width: 520px;
    height: 520px;
    left: -300px;
    top: -110px;
    background-image: url(../img/icon-background-blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
}


/* intro */
.homepage-intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 95px 0;
}
@media screen and (min-width: 992px) {
    .homepage-intro-wrapper {
        flex-direction: row;
    }
}


/* intro content */
.homepage-intro-content,
.homepage-intro-content p {
    color: white;
}
@media screen and (min-width: 992px) {
    .homepage-intro-content {
        flex: 1 1 40%;
    }
}
.homepage-intro-content-title {
    font-size: 32px;
    font-weight: 100;
    padding-right: 180px;
    background: transparent url('../img/logo-white.svg') no-repeat right top 6px;
    background-size: 170px auto;
    padding-bottom: 50px;
    margin-bottom: 50px;
    position: relative;
}
@media screen and (min-width: 992px) {
    .homepage-intro-content-title {
        padding-right: 220px;
        background-position: right 40px top 6px;
    }
}
.homepage-intro-content-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    left: 0;
    bottom: 0;
    background: rgb(0,171,151);
    background: linear-gradient(90deg, rgba(0,171,151,1) 0%, rgba(0,171,151,0.4) 100%);
}
@media screen and (min-width: 992px) {
    .homepage-intro-content-title:after {
        width: calc(100% - 40px);
    }
}
.homepage-intro-content-title strong {
    font-weight: 700;
}
@media screen and (min-width: 767px) {
    .homepage-intro-content-title {
        font-size: 36px;
    }
}
@media screen and (min-width: 1199px) {
    .homepage-intro-content-title {
        font-size: 42px;
    }
}
.homepage-intro-content p {
    font-size: 17px;
}
@media screen and (min-width: 992px) {
    .homepage-intro-content p {
        padding-right: 40px;
    }
}
.homepage-intro-content p + p {
    margin-top: 0;
}
.homepage-intro-ctas {
    margin-top: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    background: transparent url('../img/home-discover-background.svg') no-repeat top right;
    background-size: cover;
    padding: 20px 100px 20px 20px;
}
p.homepage-intro-ctas-label {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
}
@media screen and (min-width: 767px) {
    p.homepage-intro-ctas-label {
        flex: 0 0 auto;
    }
}
.homepage-intro-cta {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 6px 10px;
    border: 1px solid white;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}
.homepage-intro-cta:hover,
.homepage-intro-cta:active,
.homepage-intro-cta:focus {
    color: white;
    text-decoration: underline;
}
.homepage-intro-ctas.--single .homepage-intro-cta {
    font-size: 18px;
    padding: 10px 28px;
}

/* intro business tiles */
.homepage-intro-tiles {
    max-width: 830px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 2fr 1fr;
    gap: 6px;
    grid-template-areas: "wt wt bo bo co co"
                         "se se se be be be";
}
@media screen and (min-width: 768px) {
    .homepage-intro-tiles {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 1fr 1fr;
        grid-template-areas: "wt wt wt bo bo bo co co co se se se"
                             "wt wt wt bo bo bo co co co be be be";
    }
}
@media screen and (min-width: 992px) {
    .homepage-intro-tiles {
        flex: 1 1 60%;
    }
}
.homepage-intro-tile {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.homepage-intro-tile:after {
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.homepage-intro-tile .homepage-intro-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage-intro-tile .homepage-intro-tile-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 80%;
    padding: 10px 20px;
    background: rgba(247,185,0,1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage-intro-tile .homepage-intro-tile-logo {
    max-width: unset;
    height: 14px;
}
@media screen and (min-width: 768px) {
    .homepage-intro-tile .homepage-intro-tile-logo {
        height: 24px;
    }
}
.homepage-intro-tile.westrac {
    grid-area: wt;
}
.homepage-intro-tile.westrac:after {
    background: linear-gradient(0deg, rgba(247,185,0,0.5) 0%, rgba(247,185,0,0) 100%);
}
.homepage-intro-tile.westrac:hover:after,
.homepage-intro-tile.westrac:focus:after{
    background: linear-gradient(0deg, rgba(247,185,0,0.8) 0%, rgba(247,185,0,0) 100%);
}
.homepage-intro-tile.westrac .homepage-intro-tile-title {
    background: rgba(247,185,0,1);
}
.homepage-intro-tile.boral {
    grid-area: bo;
}
.homepage-intro-tile.boral:after {
    background: linear-gradient(0deg, rgba(41,139,52,0.5) 0%, rgba(41,139,52,0) 100%);
}
.homepage-intro-tile.boral:hover:after,
.homepage-intro-tile.boral:focus:after{
    background: linear-gradient(0deg, rgba(41,139,52,0.8) 0%, rgba(41,139,52,0) 100%);
}
.homepage-intro-tile.boral .homepage-intro-tile-title {
    background: rgba(41,139,52,1);
}
.homepage-intro-tile.coates {
    grid-area: co;
}
.homepage-intro-tile.coates:after {
    background: linear-gradient(0deg, rgba(233,99,15,0.5) 0%, rgba(233,99,15,0) 100%);
}
.homepage-intro-tile.coates:hover:after,
.homepage-intro-tile.coates:focus:after{
    background: linear-gradient(0deg, rgba(233,99,15,0.8) 0%, rgba(233,99,15,0) 100%);
}
.homepage-intro-tile.coates .homepage-intro-tile-title {
    background: rgba(233,99,15,1);
}
.homepage-intro-tile.sgh-energy {
    grid-area: se;
}
.homepage-intro-tile.sgh-energy:after {
    background: linear-gradient(0deg, rgba(89,166,193,0.7) 0%, rgba(89,166,193,0) 100%);
}
.homepage-intro-tile.sgh-energy:hover:after,
.homepage-intro-tile.sgh-energy:focus:after{
    background: linear-gradient(0deg, rgba(89,166,193,0.95) 0%, rgba(89,166,193,0) 100%);
}
.homepage-intro-tile.sgh-energy .homepage-intro-tile-image {
    object-position: right;
}
.homepage-intro-tile.sgh-energy .homepage-intro-tile-logo {
    height: 14px;
}
@media screen and (min-width: 768px) {
    .homepage-intro-tile.sgh-energy .homepage-intro-tile-logo {
        height: 20px;
    }
}
.homepage-intro-tile.sgh-energy .homepage-intro-tile-title {
    background: rgba(89,166,193,1);
}
.homepage-intro-tile.beach-energy {
    grid-area: be;
}
.homepage-intro-tile.beach-energy:after {
    background: linear-gradient(0deg, rgba(89,166,193,0.7) 0%, rgba(89,166,193,0) 100%);
}
.homepage-intro-tile.beach-energy:hover:after,
.homepage-intro-tile.beach-energy:focus:after{
    background: linear-gradient(0deg, rgba(89,166,193,0.95) 0%, rgba(89,166,193,0) 100%);
}
.homepage-intro-tile.beach-energy .homepage-intro-tile-image {
    object-position: left;
}
.homepage-intro-tile.beach-energy .homepage-intro-tile-logo {
    height: 24px;
}
@media screen and (min-width: 768px) {
    .homepage-intro-tile.beach-energy .homepage-intro-tile-logo {
        height: 30px;
    }
}
.homepage-intro-tile.beach-energy .homepage-intro-tile-title {
    background: rgba(89,166,193,1);
}

/* video wrapper */
.homepage-video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 95px 0;
}
@media screen and (min-width: 992px) {
    .homepage-video-wrapper {
        flex-direction: row;
    }
}

/* video embed */
.homepage-video-embed {
    max-width: 830px;
    align-self: center;
}
@media screen and (min-width: 992px) {
    .homepage-video-embed {
        flex: 1 1 50%;
    }
}

/* video content */
.homepage-video-content p {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.2;
}
.homepage-video-content p + .btn {
    margin-top: 20px;
}
@media screen and (min-width: 767px) {
    .homepage-video-content p {
        font-size: 36px;
    }
}
@media screen and (min-width: 992px) {
    .homepage-video-content {
        flex: 1 1 50%;
    }
}
@media screen and (min-width: 1199px) {
    .homepage-video-content p {
        font-size: 42px;
    }
}

