/* Hero */

.home-hero {
    aspect-ratio: 21 / 9;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 145px;
    overflow: hidden;
}

.home-hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.33);
}

@media only screen and (max-width: 1080px) {
    .sidr>ul {
        padding-top: 170px;
    }
}


@media only screen and (max-width: 800px) {
    .sidr>ul {
        padding-top: 130px;
    }
    .home-hero { margin-top: 105px; }
}

.home #fifty-split.background-image { margin-top: 0; }


/* Introduction - styled by global _banner.scss via #fifty-split */

/* Key Components */

section.key-components {
    padding: clamp(50px, 10vw, 100px) 0;
    background: #000;
}

section.key-components h2 {
    margin-bottom: clamp(10px, 2vw, 20px);
}

section.key-components > .wrap > p {
    margin-bottom: clamp(30px, 5vw, 60px);
    max-width: 700px;
}

.key-components-grid {
    display: flex;
    gap: 20px;
}

.key-components-card {
    position: relative;
    max-height: 563px;
    height: 55vw;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.key-components-card:hover {
    width: 200%;
}

.key-components-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.key-components-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.key-components-card::before {
    background: linear-gradient(180deg, rgba(80, 81, 38, 0.25) 0%, #505126 85%);
    mix-blend-mode: multiply;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

.key-components-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 100%;
    width: 0;
    height: 0;
    transition: linear 0.5s;
    background: #000;
    z-index: 2;
    opacity: 0.8;
    pointer-events: none;
}

.key-components-card:hover::after {
    width: 2000px;
    height: 2000px;
    left: -500px;
    bottom: -500px;
}

.key-components-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: clamp(15px, 3vw, 30px);
    gap: clamp(10px, 2vw, 20px);
    text-align: left;
    height: 100%;
}

.key-components-card-text {
    max-height: 0;
    /*overflow: hidden;*/
    margin: 0;
    opacity: 0;
    transition: opacity 0s;
}
.key-components-card-text ul li {
    margin-bottom: 10px;
}
.key-components-card-text a.button {
    padding: clamp(5px, 1vw, 8px) clamp(12px, 2vw, 20px);
    align-items: center;
    border-radius: 34px;
    border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00);
    color: #fff;
    margin-top: 20px;
    display: flex;
    width: fit-content;
    transition: 0.6s ease;
    font-size: clamp(13px, 1.5vw, 16px);
}
.key-components-card-text a.button:hover { background: #E36F51; }

.key-components-card:hover .key-components-card-text {
    max-height: 500px;
    opacity: 1;
    transition: opacity 0.5s ease 0.5s;
}

.key-components-card-number {
    color: #FFF;
    text-align: left;
    font-family: Poppins, sans-serif;
    font-size: clamp(24px, 4vw, 44px);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(26px, 4vw, 46px);
    margin-bottom: clamp(5px, 1vw, 10px);
}

.key-components-card-content h3 {
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: clamp(16px, 2.5vw, 28px);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(18px, 2.5vw, 30px);
}

@media (max-width: 1200px) {
    .key-components-card:hover {
        width: 200%;
    }
}

@media (max-width: 980px) {
    .key-components-grid {
        flex-wrap: wrap;
    }

    .key-components-card {
        width: calc(50% - 10px);
        flex: none;
        height: 70vw;
        max-height: 680px;
    }

    .key-components-card:hover {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .key-components-card {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .key-components-card:hover {
        width: 100%;
    }

    .key-components-card::after {
        width: 2000px;
        height: 2000px;
        left: -500px;
        bottom: -500px;
    }

    .key-components-card-text {
        max-height: none;
        opacity: 1;
    }
}

/* Stats */

section.home-stats {
    padding: 0; /*clamp(50px, 10vw, 100px) 0;*/
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    justify-items: center;
}

.home-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
}

.home-stat-svg {
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
}

.home-stat-svg svg {
    width: 100%;
    height: 100%;
}

.home-stat p {
    font-size: clamp(14px, 1.8vw, 18px);
    text-align: center;
}

@media (max-width: 980px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */

section.cta {
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
}

.cta-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-image:after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.65) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
}

.cta-content {
    display: flex;
    gap: clamp(30px, 5vw, 60px);
    padding: clamp(25px, 5vw, 50px);
    background: #000;
    border-radius: 10px;
    position: relative;
}

.cta-content-image img {
    max-width: 437px;
    width: 100%;
}

.cta-content a.button {
    padding: clamp(10px, 2vw, 15px) clamp(25px, 4vw, 40px);
    align-items: center;
    border-radius: 34px;
    border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00);
    color: #fff;
    margin-top: clamp(30px, 5vw, 50px);
    display: flex;
    width: fit-content;
    transition: 0.6s ease;
    font-size: clamp(13px, 1.5vw, 16px);
}

.cta-content a.button:hover {
    opacity: 0.9;
    background: #E36F51;
}

.cta-content p {
    max-width: 514px;
    font-size: clamp(14px, 1.5vw, 16px);
}

.cta-content h2 {
    margin-bottom: clamp(10px, 2vw, 15px);
    font-size: clamp(24px, 4vw, 40px);
}

@media (max-width: 980px) {
    .cta-content {
        flex-direction: column;
    }
}

/* Capabilities */

section.home-capabilities {
    padding: clamp(50px, 8vw, 80px) 0;
}

section.home-capabilities h2 {
    margin-bottom: clamp(25px, 4vw, 40px);
}

.home-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 40px);
}

.home-capabilities-card {
    background: #2B2B2B;
    padding: clamp(30px, 5vw, 50px);
    position: relative;
    border-radius: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-capabilities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.home-capabilities-header h4 {
    font-weight: 300;
    padding-right: 40px;
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0;
}

.home-capabilities-header img {
    width: 50px;
    height: 50px;
    position: relative;
    top: -15px;
}

.home-capabilities-card ul {
    margin: 0;
    padding: 0 0 0 clamp(15px, 2vw, 20px);
    list-style: none;
}

.home-capabilities-card ul li {
    margin: 0 0 clamp(4px, 0.5vw, 8px);
    font-size: clamp(13px, 1.5vw, 16px);
    color: #fff;
    list-style-type: disc;
    list-style-position: outside;
}

.home-capabilities-card ul li::marker {
    color: #E36F51;
}

.home-capabilities-btn {
    border: 2px solid #E36F51;
    color: #fff;
    padding: clamp(10px, 1.5vw, 16px) clamp(25px, 3vw, 40px);
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 300;
    line-height: 21px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
}

.home-capabilities-btn:hover {
    background-color: #E36F51;
    color: #fff;
}

@media (max-width: 980px) {
    .home-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-capabilities-card {
        padding: 30px;
    }
}

/* Speak */

section.home-speak {
    padding: clamp(50px, 10vw, 100px) 0;
    background: #000;
}

.home-speak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.home-speak-content {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 40px);
}

.home-speak-content h2 {
    margin: 0;
}

.home-speak-btn {
    padding: clamp(10px, 1.5vw, 15px) clamp(25px, 4vw, 40px);
    border-radius: 100px;
    border: 2px solid #E36F51;
    background: transparent;
    color: #fff;
    font-weight: 300;
    font-size: clamp(13px, 1.4vw, 14px);
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.home-speak-btn:hover {
    background-color: #E36F51;
    color: #fff;
}

.home-speak .expert-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    background: #2b2b2b;
    border-radius: 8px;
    height: 100%;
}

.home-speak .expert-card > div {
    flex-direction: column;
    flex: 1;
    margin: 1px;
    display: flex;
    justify-content: flex-start;
    height: 100%;
}

.home-speak .expert-content {
    padding: clamp(30px, 4vw, 50px);
    width: 50%;
}

.home-speak .expert-content h3 {
    font-weight: 300;
    color: #fff;
}

.home-speak .expert-content h4 {
    font-size: 18px;
    color: #E36F51;
    font-weight: 400;
}

.home-speak .expert-content p {
    color: #fff;
    margin-bottom: 15px;
}

.home-speak .expert-image {
    line-height: 0;
}

.home-speak .expert-image img {
    width: 100%;
    height: 100%;
    max-width: 200%;
    object-fit: cover;
}

@media (max-width: 980px) {
    .home-speak-grid {
        grid-template-columns: 1fr;
    }

    .home-speak .expert-card {
        flex-direction: column;
    }

    .home-speak .expert-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .home-speak .expert-content {
        padding: 30px;
    }
}

/* Sustainability */

section.home-sustainability {
    padding: clamp(50px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.home-sustainability-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.home-sustainability-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: #fff;
}

.home-sustainability-content {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.70);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-sustainability-content h2 {
    margin: 0;
}

.home-sustainability-content p {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 16px);
}

.home-sustainability-emissions {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.70);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-sustainability-emissions-heading {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 300;
    margin: 0;
}

.home-sustainability-emissions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.home-sustainability-emission h3 {
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: clamp(40px, 9vw, 90px);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 clamp(5px, 1vw, 10px) 0;
}

.home-sustainability-emission p {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 300;
    margin: 0;
}

.home-sustainability-btn {
    padding: clamp(10px, 1.5vw, 15px) clamp(25px, 4vw, 40px);
    border-radius: 100px;
    border: 2px solid #E36F51;
    background: transparent;
    color: #fff;
    font-weight: 300;
    font-size: clamp(13px, 1.4vw, 14px);
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.home-sustainability-btn:hover {
    background-color: #E36F51;
    color: #fff;
}

@media (max-width: 750px) {
    .home-sustainability-grid {
        grid-template-columns: 1fr;
    }

    .home-sustainability-emissions-grid {
        grid-template-columns: 1fr;
    }
}



#banner-home { max-width: 1500px; margin: 0 auto;
    background-size: cover; background-position: center right; background-repeat: no-repeat;    
}
.banner-home-inner { width: 94%; max-width: 1500px; padding: 80px 0; box-sizing: border-box; margin: 0 auto; display: flex; flex-flow: row nowrap; gap: 4%; }
.banner-home-left { flex: 1 1 auto; max-width: 470px; }
.banner-home-left .banner-home-text i { font-style: normal; color: #E36F51; }
.banner-home-text h2 { line-height: 130%; }
.banner-home-cta-row { display: flex; flex-flow: row nowrap; align-items: center; gap: 20px; }
.banner-home-cta { padding: clamp(10px, 2vw, 15px) clamp(25px, 4vw, 40px);
    align-items: center; border-radius: 34px; border: 2px solid #E36F51;
    background: rgba(255, 113, 13, 0.00); color: #fff; margin: 0; display: flex;
    width: fit-content; transition: 0.6s ease; font-size: clamp(13px, 1.5vw, 16px); }
.banner-home-cta + img { height: auto; width: 200px; display: block; }
.banner-home-cta:hover { background-color: #E36F51; color: #fff; }
.banner-home-cta-logo {  }
.banner-home-middle { flex: 0 0 190px; display: flex; flex-flow: column wrap; justify-content: space-evenly; }
.banner-home-right { align-self: center; flex: 1 1 auto; min-width: 500px; }


@media (max-width: 1250px) {
   .banner-home-inner { gap: 6%; flex-flow: row wrap; padding: 60px 0 50px; }
   .banner-home-left { max-width: none; width: 100%; margin: 0 0 20px; }
   .banner-home-text { max-width: 768px; }
   .banner-home-middle { flex: 0 0 200px; }
   .banner-home-right { flex: 1; min-width: 0; }
   .banner-home-right img { width: 100%; max-width: 770px; }
}

@media (max-width: 799px) {
    .banner-home-middle { flex: 0 0 100%; gap: 3%; margin: 10px 0 30px; flex-flow: row nowrap; }
    .banner-home-middle img { flex: 1 1 0; min-width: 0; width: 100%; height: auto; }
    .banner-home-cta + img { width: 160px; }
}


 