:root {
    --bpsPrimaryGreen: #213629;
    --cabPrimaryGreen: #616630;
    --clubGreen: #084D32;
}

.h1,
.h2,
.h3,
.h4 {
    font-family: Bebas Neue, Arial, Charcoal, sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    height: auto;
    margin: 0;
}

.h2 {
    font-size: 48px;
    line-height: 38px;
    text-align: center;
}

.h3 {
    font-size: 24px;
    line-height: 24px;
}

.h-white {
    color: #fff;
}

.h-black {
    color: #000;
}

h2.title {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #504E43;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    h2.title {
        margin-top: 1rem;
    }
}

.full-width {
    margin-left: calc(-100vw / 2 + 100% / 2 - 0px) !important;
    margin-right: calc(-100vw / 2 + 100% / 2 - 0px) !important;
    width: calc(100% + (100vw - 100%)) !important;
}

.sContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}

.shop__btn {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    padding: 5px 20px;
    transition: .4s ease-in-out;
    margin: 0;
    cursor: pointer;
}

.shop__btn:hover {
    background-color: transparent;
}

.shop__white {
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
}

.shop__white:hover {
    color: #fff;
    background-color: transparent;
}

.sContainer p {
    font-family: "Open Sans", sans-serif;
}

.p {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    height: auto;
    margin: 0;
}

.p-white {
    color: #fff;
}

.p-black {
    color: #000;
}

@media (min-width: 1441px) {
    .h2 {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (max-width: 1080px) {
    .shop__btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .sContainer {
        margin-top: 1rem;
    }

    .shop-btn {
        font-size: 16px;
    }
}


@media (max-width: 480px) {
    .shop__btn {
        font-size: 14px;
    }

    .h2 {
        font-size: 38px;
        line-height: 38px;
    }
}

/* ================subFeature Styling===================== */

.sub__feature__cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sub__item {
    position: relative;
}

.sub__item>a>img {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .sub__feature__cont {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .sub__item__logo {
        margin-bottom: .5rem;
    }
}

.sub__item img {
    width: 100%;
    display: block;
}

.sub__item .sub__copy {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sub__copy h2 {
    font-size: clamp(30px, 1.420rem + 1.94vw, 60px);
    line-height: 1;
}

.sub__copy .p-white {
    padding-block: .2rem 1rem;
}

/* ================END subFeature Styling===================== */

/* ================MPW STYLES===================== */