body {
    margin: 0;
    font-family: "Roboto";
}

body {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

h1,
h2,
a {
    color: #c3112d;
}

h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 53px;
}

a,
a:hover {
    text-decoration: none;
}

header {
    background-color: #fcf3f4;
    padding: 10px 0;
}

.logo-box img {
    width: 180px;
}

.logo-box {
    text-align: center;
}

section.hero_banner {
    background-image: url(https://greaternorthwestchapter.thehutchinsonbell.org/images/thbc.GR-NW.wufoo-banner.png);
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.chapter_title h1 {
    text-align: center;
    margin: 0;
    font-size: 70px;
    line-height: 78px;
}

section.chapter_title {
    background-color: #fcf3f4;
    padding: 100px 0;
}

footer {
    background-color: #c3112d;
    padding: 15px;
    text-align: center;
    color: #fff;
}


.social-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.social-card {
    width: calc(33.33% - 30px);
    transition: all .3s ease;
}

section.social_links {
    padding: 100px 0;
}

section.member .member-link h2 {
    margin: 0;
}

.member-link a {
    background-color: #c3112d;
    padding: 12px 25px 12px 25px;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    transition: all .3s ease;
}

.member-link a:hover {
    background-color: #000;
    transform: translateY(-5px);
}

span.social-link-title {
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 18%);
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    height: 100%;
    border: 1px solid #c3112d;
}

.social-card img {
    width: 100%;
}

section.social_links h2 {
    margin: 0;
    text-align: center;
}

section.member {
    padding: 100px 0;
    text-align: center;
    background-color: #fcf3f4;
}

.member-link p {
    font-size: 18px;
}

@media(max-width:991px) {
    .social-card {
        width: calc(50% - 30px);
    }

    section.chapter_title h1 {
        font-size: 60px;
        line-height: 68px;
    }

    section.hero_banner {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

}

@media(max-width:576px) {
    section.hero_banner {
        min-height: 150px;
    }

    section.chapter_title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    h2 {
        font-size: 35px;
        line-height: 43px;
    }

    .social-card {
        width: 100%;
    }
}

@media(max-width:360px) {
    section.hero_banner {
        min-height: 120px;
    }
}