/**********************************
 * company identification styling *
 **********************************/
.company-logo {
}

.company-name {
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    text-transform: uppercase;
}

/***********************
 * page header styling *
 ***********************/
.page-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: no-wrap;
    max-width: calc(960px - 2em);
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 3px solid #242424;
}

@media (max-width: 960px) {
    .page-header {
        max-width: 100%;
    }
}

.page-header a {
    text-decoration: none;
}

.page-title {
    font-size: 48px;
    line-height: 52px;
    padding: 16px 16px 16px 8px;
}

.page-title a {
    display: flex;
}

.page-title .company-logo {
    height: 48px;
    display: block;
    margin-right: 8px;
}

/*******************
 * block styling *
 *******************/
.benefits {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.shopinfo {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

/***************
 * box styling *
 ***************/
.box {
    margin: 0 1em 3em 1em;
}

.box-third {
    width: calc(33.3333% - 2em);
}

@media (max-width: 960px) {
    .box-third {
        width: calc(50% - 2em);
    }
}

@media (max-width: 640px) {
    .box-third {
        width: calc(100% - 2em);
    }
}

.box-title {
    font-weight: 700;
    line-height: 1.5em;
    padding: 8px 0;
    margin-bottom: 8px;
}

.box-benefit {}

.box-benefit p {
    text-align: center;
    line-height: 1.5em;
}

.box-benefit .box-title {
    text-align: center;
}

/******************
 * button styling *
 ******************/
.button {
    text-decoration: none;
    padding: 1em 1.25em;
    text-transform: uppercase;
    font-size: .875em;
    font-weight: 700;
}

/***********************
 * bold button styling *
 ***********************/
.button-bold {
    background-color: #242424;
    border: 3px solid #242424;
}

.button-bold .label {
    color: #efefef;
}

/***********************
 * nude button styling *
 ***********************/
.button-nude {
    background-color: transparent;
    border: 3px solid #242424;
}

.button-nude .label {
    color: inherit;
}

/**********************
 * cta button styling *
 **********************/
.button-cta {
    background-color: #377013;
    border: 3px solid #377013;
}

.button-cta .label {
    color: #efefef;
}

/***************
 * map styling *
 ***************/
.map {
    display: block;
    width: 100%;
    height: auto;
}