/*  HERO  */
.hero {
    background: url(/assets/hero/about-us-hero-mobile.jpg), var(--green);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100svh;
    margin: 0 0 50px 0;
    background-position: center;
}
/*  HERO END  */

/*  CONTENT  */
.orange {
color: var(--orange) !important;
padding: 30px 0 25px 0;
}
.midGrey {
color: var(--midGrey);
}
.midGrey {
color: var(--darkGrey);
}
.title {
display: inline-block;
color: var(--darkBlue);
font-size: var(--fs-subheading);
padding: 25px 0;
}
.content {
display: flex;
flex-direction: column;
}
.content .contentTitle {
padding: 15px;
}
.content .contentTitle span.active {
color: var(--darkBlue);
}
.content .contentTitle span {
font-size: var(--fs-overview);
padding: 10px 0;
display: block;
color: var(--midGrey);
text-transform: uppercase;
}
.content .contentBody {
padding: 0 15px
}
.content .contentBody p {
font-size: var(--fs-body);
line-height: var(--lh-body);
padding: 0 0 25px 0;
}
.content .contentBody img.wideImage {
width: 100%;
padding: 25px 0 50px 0;
}
.tableofcontents {
display: none;
}
/*  CONTENT END  */

/*  PARTNERS  */
.partners {
display: flex;
justify-content: center;
padding: 50px 15px;
column-gap: 20px;
row-gap: 20px;

flex-wrap: wrap;
}
.partners span {
display: flex;
}
.partners span img {
height: 100px;
}
/*  PARTNERS END  */
.heading {
display: flex;
justify-content: center;
font-size: 12.82em;
/* line-height: 2.5rem; */
color: var(--darkBlue);
padding: 25px 15px;
}
.exploreLink a:before {
content: "Explore ";
color: var(--darkBlue);
}
.exploreLink a {
color: var(--orange);
text-decoration: none;
font-size: 5.13em;
border-bottom: 1px solid var(--orange);
}
.exploreLink {
display: flex;
height: 100px;
align-items: center;
width: calc(100% - 30px);
margin: 0 15px;
padding: 5px 0;
}

/*   
GET INSPIRED
*/

.getInspired {
/* background: var(--inspired); */
/* padding: 50px 0 0; */
}
.getInspired .heading {
color: var(--darkBlue);
font-size: 12.82em;
}
.getInspired .carousal {
display: flex;
overflow: hidden;
overflow-x: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
/* margin: 50px 0 0; */
scroll-snap-type: x mandatory;
}
.getInspired .carousal .carousalSlide {
width: 100vw;
scroll-snap-align: center;
}
.getInspired .carousal img {
aspect-ratio: 1 / 1;
height: 100vw;
object-fit: cover;
}

.carousalSlide a {
position: relative;
height: 100vw;
width: 100vw;
display: flex;
}

.carousalSlide a span {
    opacity: 1;
    transition: opacity 1s ease-in;
    font-size: 4em;
}


.carousalSlide a:hover img {
filter: brightness(30%);
z-index: 2;
}

.carousalSlide span {
display: flex;
align-items: end;
padding: 0 0 10% 10%;
position: absolute;
font-size: var(--fs-subheading);
color: white;
width: calc(100% - 10%);
z-index: 5;
left: 0;
height: calc(100% - 10%);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
text-transform: uppercase;
}



.exploreLink {
display: flex
;
height: 100px;
align-items: center;
width: calc(100% - 30px);
margin: 0 15px;
padding: 5px 0;
}

/*   
GET INSPIRED END
*/

/*    LARGE SCREEN    */
@media only screen and (min-width: 650px) 
{
/*  HERO  */
.hero {
    background: url(/assets/hero/about-us-hero-desktop.jpg), var(--green);
    background-size: cover;
    background-repeat: no-repeat;
}
/*  HERO END  */

/*  CONTENT  */
.content {
    flex-direction: row;
}
.contentTitle {
    width: 30%;
    padding: 0 0 0 25px !important;
}
.contentBody {
    width: 70%;
}
.content .contentBody .ceoMessage {
    font-size: 1.33em;
}
.content .contentBody p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    padding: 0 15% 25px 0;
}
.content .contentTitle span {
    font-size: var(--fs-overview);
}
.tableofcontents span {
    text-transform: uppercase;
}
.tableofcontents {
    display: block;
    position: sticky;
    top: 100px;
    text-transform: uppercase;
}
span[data-anchor] {
    cursor: pointer;
}
span[data-anchor]:hover {
    color: black;
}
/*  CONTENT END  */

/*  PARTNERS  */
.partners {
    justify-content: space-evenly;
}

/*   
    GET INSPIRED
*/
.getInspired .carousal .carousalSlide {
    width: calc(100% / 3);
    scroll-snap-align: center;
}
.getInspired .heading {
    display: block;
    font-size: 11em;
    text-align: center;
    width: calc(100% - 30px);
}
.carousalSlide a {
    height: auto;
    width: 100%;
}
.getInspired .carousal img {
    height: fit-content;
    width: calc(100vw / 3);
}
.exploreLink {
    padding: 5px 35px;
    width: fit-content;
}
.exploreLink a {
    font-size: 1.33em;
}

/*   
    GET INSPIRED END
*/
.carousalSlide a span {
    opacity: 0;
    transition: opacity 1s ease-in;
    font-size: 1.5em;
}

.carousalSlide a:hover span {
    opacity: 1;
}

}


