@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');




.about-top-container {
    position: relative;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url('/images/crosslands-top.JPG');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}


.text-overlay-a {
    max-width: 90%;
    transform: translateY(-100%);
}

.text-overlay-a h1 {
    font-size: 5rem;
    font-weight: 500;
    color: var(--white);
    z-index: 1;
    font-family: var(--font-family);
}

.fade-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
  
.fade-in {
    opacity: 1;
}

.main-content {
    background: var(--maroon);
    overflow-x: hidden;
}




.a-info-container {
    background: var(--maroon);
}


.a-info-welcome-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    font-family: var(--font-family);
    background: var(--maroon);
    color: var(--silver);
    padding: 2% 0;
}


.a-info-sub-welcome p {
    margin-left: 7%;
    margin-right: 5%;
    padding-left: 3%;
    border-left: 2px solid #eed285;
    color: #e3e1d7;
    font-family: 'Encode Sans', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    opacity: .2;
}

.come-in {
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    -webkit-animation: come-in 1s ease forwards;
    animation: come-in 1s ease forwards;
}

/* .come-in.in-view {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
} */

@keyframes come-in {
    0% {
        opacity: .2;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


.a-info-collection {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-align: center;
    font-family: var(--font-family);
    background: var(--maroon);
    color: var(--white);
    padding: 3% 0 4% 0;
}


.a-info-collection h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out
}

.visible-info-collection {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.a-info-collection h2::before {
    content: "";
    position: absolute;
    display: flex;
    width: 45%;
    height: 3px;
    background-color: var(--silver);
}

.a-info-collection h2::after {
    content: "";
    position: relative;
    display: flex;
    width: 45%;
    height: 3px;
    left: 60%;
    background-color: var(--silver);
}

/* @media only screen and (max-width: 2400px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 42%;
        background-color: var(--silver);
    }
}

@media only screen and (max-width: 2100px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 41%;
        background-color: var(--silver);
    }
}
@media only screen and (max-width: 1900px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 40%;
        background-color: var(--silver);
    }
}
@media only screen and (max-width: 1700px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 39%;
        background-color: var(--silver);
    }
}
@media only screen and (max-width: 1500px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 37%;
        background-color: var(--silver);
    }
}
@media only screen and (max-width: 1440px) {
    .a-info-collection h2::after {
        content: "";
        position: absolute;
        display: flex;
        width: 11%;
        height: 3px;
        right: 37.3%;
        background-color: var(--silver);
    }
} */

.a-info-sub-coll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.visible-sub-coll {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.a-info-sub-coll-one {
    display: flex;
    height: 100vh;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--silver);
    font-family: var(--font-family);
    font-size: 1.7rem;
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out
}
.a-info-coll-img {
    background: url('/images/wallaby-bottom-side.png');
    background-position: center;
    background-size: cover;
}


i {
    font-size: 2rem;
    color: var(--rosegold);
}


.a-info-sub-coll-two {
    grid-column: 2;
    display: flex;
    height: 100vh;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--silver);
    font-family: var(--font-family);
    font-size: 1.7rem;
    opacity: 0;
    transform: translateX(300px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}
.a-info-coll-img-two {
    grid-row: 2;
    background: url('/images/orca-bottom.png');
    background-position: center;
    background-size: cover;
}


/* .a-info-sub-coll-three {
    grid-column: 1;
    display: flex;
    height: 90vh;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--silver);
    font-family: var(--font-family);
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}
.a-info-coll-img-three {
    background: url(/images/dw-classic.jpg);
    background-position: center;
    background-size: cover;
} */



.a-info-story h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-family: var(--font-family);
    color: var(--white);
    padding: 4% 0 3% 0;
    height: inherit;
    opacity: 0;
    transition: opacity 2s ease-out;
}

.visible-story {
    opacity: 1 !important;
}

.a-info-story {
    background-image: url(/images/cargo.jpeg);
    background-color: black !important;
    background-attachment: fixed;
    height: 90vh;
    background-size: cover;
    background-position: center;
    text-align: center;
    opacity: .9;
}

.story-info-p {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    padding: 2% 5% 5% 5%;
    height: 95vh;
    font-family: var(--font-family);
    font-size: 1.12rem;
    color: var(--silver);
    text-align: justify;
    justify-content: center;
}

.story-info-p-one {
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 0.6s ease-out, transform 1.3s ease-out
}

.story-info-p-two {
    opacity: 0;
    transform: translateX(300px);
    transition: opacity 0.6s ease-out, transform 1.3s ease-out
}


.visible-story-p {
    opacity: 1 !important;
    transform: translateX(0) !important;
}


.a-team {
    background: var(--white);
}


.a-title-team {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-align: center;
    font-family: var(--font-family);
    background: var(--white);
    color: var(--maroon);
    padding: 3% 0 4% 0;
}



.a-title-team h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out
}

.visible-title-team {
    opacity: 1 !important;
    transform: translateY(0) !important;
}




.a-title-team h2::before {
    content: "";
    position: absolute;
    display: flex;
    width: 45%;
    height: 3px;
    background-color: var(--rosegold);
}

.a-title-team h2::after {
    content: "";
    position: relative;
    display: flex;
    width: 45%;
    height: 3px;
    left: 56%;
    background-color: var(--rosegold);
}





.a-team {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2%;
    padding: 1% 2% 5% 2%;
    font-family: var(--font-family);
    font-size: 1.2rem;
    color: var(--silver);
    text-align: center;
    overflow: hidden;
}

.a-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--maroon);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    height: 27rem;
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 2s ease, transform 2s ease;
}

.a-team-member-fade {
    opacity: 1;
    transform: translateY(0);
}

.a-team-member-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.a-team-member h2 {
    font-size: 1.7rem;
    font-weight: 500;
    padding: 6%;
}

.a-team-member p {
    padding-bottom: 5%;
    font-size: 1.2rem;
}


.team-img-one {
    background-image: url(images/new-tech.jpg);
}

.team-img-one:hover {
    background-image: url(images/contact-image.jpg);
}

.team-img-two {
    background-image: url(images/new-cfo.jpg);
}

.team-img-three {
    background-image: url(images/new-ceo.jpg);
}

.team-img-four {
    background-image: url(images/new-cmo.jpg);
}

.team-img-five {
    background-image: url(images/isabella-davis-current.png);
    background-size: cover;
}