.about-banner {
    background-image: url('https://storage.googleapis.com/giffycms-adirondack/images/about/hero%20(1).png');
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    color: white;
    width: 100%;
    margin-top: 6rem;
}

.legacy-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 100vh;
    align-items: center;
}

.text-section {
    padding: 40px;
    justify-content: flex-start;
    margin-left: 6%;
}

.text-content {
    /* max-width: 500px; */
}

.text-content h1 {
    font-size: 4.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 2.2rem;
    line-height: 1.5;
}

.scroll-down-arrow {
    padding-top: 2rem;
    width: 3%;
}

.image-section img {
    display: none;
    width: 100%;
    height: auto;
}

/* second section */

.future-section {
    padding: 5rem 0 0rem;
    background-color: #fff;
}

.future-title {
    text-align: left;
    margin-bottom: 40px;
}

.future-title h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1C5739
}

.future-title p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Third section */

.technology-title {
    text-align: left;
    margin-bottom: 40px;
}

.technology-title h3 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.technology-title p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 8rem;
}

.technology-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.technology-card {
    display: grid;
    grid-template-columns: 25% 75%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    align-items: center;
    align-content: space-between;
}

.technology-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.technology-card .icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.technology-card .icon img {
    max-width: 100%;
    height: auto;
}

.technology-card .technology-content {
    flex: 1;
    padding-left: 16px;
}

.technology-card .technology-content-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C5739;
    margin-bottom: 8px;
}

.technology-card .technology-content-text {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.4;
}

.technology-section {
    padding: 0rem 0 7rem;
    background-color: #fff;
}

.industry-img img {
    width: 60%;
}

.community-section {
    background-color: #1C5739;
    color: #fff;
}

.community-title {
    font-size: 5.5rem;
    font-weight: 300;
    margin-top: 8rem;
    margin-bottom: 3.5rem;
}

.community-text {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 7rem;
}

/* our mission section */

.our-mission {
    padding-top: 3rem;
}

.our-mission .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 5rem;
    /* align-items: center; */

}

.our-mission h3 {
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
}

.our-mission .grid-wrapper .left-col p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.6;
}

.our-mission .grid-wrapper .left-col .value-block {
    margin-bottom: 3rem;
}

.our-mission .grid-wrapper .left-col .value-block .value-title {
    color: #1C5739;
    font-weight: 700;
    margin-bottom: 5px;
}

.our-mission .grid-wrapper .right-col img {
    width: 75%;
    height: auto;
    justify-self: end;
}

.our-mission-desc {
    font-size: 2rem;
    margin-top: 2rem;
}

.our-mission-divider-arrow img {
    margin-top: 4rem;
    margin-bottom: 4rem;
    width: 25%;
}

/* about feature section */

.about-feature-section {
    margin: auto;
}

.about-feature-title {
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-feature-grid-item {}

.about-feature-grid-item img {
    max-width: 60%;
    margin-bottom: 1rem;
}

.about-feature-card-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-feature-description {
    font-size: 1.8rem;
    line-height: 1.5;
}

.about-feature-blank {
    display: none;
}

.btn-wrapper {
    margin-top: 5rem;
    display: flex;
    margin-bottom: 6rem;
}

.cta-btn {
    position: relative;
    padding: 8px 30px;
    border: 0.5px solid black;
    background: transparent;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.35s ease-in-out;
}

.btn-wrapper a {
    color: #000;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1C5739;
    transition: left 0.35s ease-in-out;
    z-index: -1;
    border-radius: inherit;
}

.cta-btn:hover::after {
    left: 0;
}

.btn-wrapper a:hover {
    color: white;
}


.feature-divider-arrow img {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
    width: 25%;
}

@media (min-width: 2561px) {
    .text-content h1 {
        font-size: 7rem;
        line-height: 1.2;
    }

    .text-content p {
        font-size: 4.7rem;
        line-height: 1.3;
    }

    .text-content {
        max-width: 75rem;
    }

    .scroll-down-arrow {
        width: 4%;
    }

    .future-title h2 {
        font-size: 6.5rem;
        margin-bottom: 3rem;
    }

    .future-title p {
        font-size: 4.2rem;
        line-height: 1.3;
    }

    .technology-title h3 {
        font-size: 6.5rem;
    }

    .technology-title p {
        font-size: 4.3rem;
        line-height: 1.3;
    }

    .technology-card .technology-content-heading {
        font-size: 4.5rem;
    }

    .technology-card .technology-content-text {
        font-size: 3.7rem;
        line-height: 1.4;
    }

    .community-title {
        font-size: 7.5rem;
        margin-bottom: 3.5rem;
    }

    .community-text {
        font-size: 4rem;
        line-height: 1.5;
    }

    .our-mission h3 {
        font-size: 6.5rem;
    }

    .our-mission-desc {
        font-size: 4rem;
    }

    .our-mission .grid-wrapper .left-col p {
        font-size: 4rem;
        line-height: 1.5;
    }

    .about-feature-title {
        font-size: 7.5rem;
    }

    .about-feature-card-title {
        font-size: 4.5rem;
    }

    .about-feature-description {
        font-size: 3.8rem;
        line-height: 1.5;
    }

    .cta-btn {
        font-size: 3.8rem;
        border-radius: 3rem;
    }
}

@media (min-width: 1920px) and (max-width: 2560px) {
    .text-content h1 {
        font-size: 6rem;
        line-height: 1.2;
    }

    .text-content p {
        font-size: 3.7rem;
        line-height: 1.3;
    }

    .text-content {
        max-width: 70rem;
    }

    .scroll-down-arrow {
        width: 4%;
    }

    .future-title h2 {
        font-size: 5.5rem;
        margin-bottom: 3rem;
    }

    .future-title p {
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .technology-title h3 {
        font-size: 5.5rem;
    }

    .technology-title p {
        font-size: 3.3rem;
        line-height: 1.3;
    }

    .technology-card .technology-content-heading {
        font-size: 3.5rem;
    }

    .technology-card .technology-content-text {
        font-size: 2.7rem;
        line-height: 1.4;
    }

    .community-title {
        font-size: 6.5rem;
        margin-bottom: 3.5rem;
    }

    .community-text {
        font-size: 3rem;
        line-height: 1.5;
    }

    .our-mission h3 {
        font-size: 5.5rem;
    }

    .our-mission-desc {
        font-size: 3rem;
    }

    .our-mission .grid-wrapper .left-col p {
        font-size: 3rem;
        line-height: 1.5;
    }

    .about-feature-title {
        font-size: 6.5rem;
    }

    .about-feature-card-title {
        font-size: 3.5rem;
    }

    .about-feature-description {
        font-size: 2.8rem;
        line-height: 1.5;
    }

    .cta-btn {
        font-size: 2.8rem;
        border-radius: 3rem;
    }

}

/* Tablet view */
@media (max-width: 1024px) {

    .about-banner {
        background-image: url('https://storage.googleapis.com/giffycms-adirondack/images/about/about-background.png');
        background-attachment: scroll;
    }

    .text-content h1 {
        font-size: 3.8rem;
    }

    .legacy-container {
        grid-template-columns: 1fr;
    }

    .image-section {
        background: none;
    }

    .image-section img {
        display: block;
    }

    .legacy-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-feature-blank {
        display: block;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .about-banner {
        background-image: url('https://storage.googleapis.com/giffycms-adirondack/images/about/about-background.png');
        background-attachment: scroll;
    }

    .text-content h1 {
        font-size: 3.5rem;
        margin-top: 4rem;
    }

    .text-section {
        justify-content: center;
        margin-left: 0%;
    }

    .text-content p {
        font-size: 1.8rem;
    }

    .image-section {
        background: none;
    }

    .image-section img {
        display: block;
    }

    .legacy-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    /* second section responsiveness */

    .technology-cards {
        grid-template-columns: 1fr;
    }

    .technology-card {
        flex-direction: column;
        text-align: center;
    }

    .technology-card .technology-content {
        padding-left: 0;
        padding-top: 12px;
    }

    .community-title {
        font-size: 5rem;
        margin-bottom: 4rem;
    }

    .community-text {
        margin-bottom: 10rem;
    }

    /* our mission section */

    .our-mission .grid-wrapper {
        grid-template-columns: 1fr;
    }

    .our-mission .grid-wrapper .right-col img {
        width: 100%;
        justify-self: unset;
    }

    .our-mission-divider-arrow img {
        margin-top: 4rem;
        margin-bottom: 4rem;
        width: 50%;
    }

    /* about feature section */

    .about-feature-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-feature-btn-wrapper {
        justify-content: flex-start;
    }

    .about-feature-title {
        font-size: 5rem;
    }

    .feature-divider-arrow img {
        margin-bottom: 1rem;
        width: 50%;
    }
}