h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 2.5rem;
    }
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

    h2,
    .h2 {
        font-size: 2rem;
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
}

.site-heading {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    line-height: 1;

}

.site-heading .site-heading-upper {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.site-heading .site-heading-lower {
    font-size: 2rem;
    font-weight: 100;
    line-height: 4rem;
}

.page-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    line-height: 25px;
}

.section-heading {

    text-transform: uppercase;
}

.section-heading .section-heading-upper {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.section-heading .section-heading-lower {
    display: block;
    font-size: 3rem;
    font-weight: 100;
}

.bg-faded {
    background-color: #d3f2e9;
}

.button {
    display: inline-block;
    border-radius: 100px;
    background-color: #d3f2e9;
    font-weight: bold;
    border: 2px solid #d3f2e9;
    color: #0a7b79;
    text-align: center;
    font-size: 20px;
    padding: 14px 28px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;

    margin-bottom: 10px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover {
    background-color: transparent;
    color: #0a7b79;
    border: 2px solid #0a7b79;
}

.button:hover span {
    padding-right: 25px;

}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.text-green {
    color: #0a7b79;
}

@media (min-width: 992px) {
    .product-item .product-item-title {
        position: relative;
        z-index: 1;
        margin-bottom: -3rem;
    }

    .product-item .product-item-img {
        position: relative;
        z-index: 0;
        max-width: 60vw;
    }

    .product-item .product-item-description {
        position: relative;
        z-index: 1;
        margin-top: -3rem;
        max-width: 50vw;
    }

    .site-heading {
        margin-top: 5rem;
        margin-bottom: 5rem;
        text-transform: uppercase;
        line-height: 1;

    }

    .site-heading .site-heading-upper {
        display: block;
        font-size: 3rem;
        font-weight: 800;
    }

    .site-heading .site-heading-lower {
        font-size: 2rem;
        font-weight: 100;
        line-height: 4rem;
    }

}

@media (max-width: 441px) {
    .section-heading .section-heading-upper {

        font-size: 0.85rem;

    }

    .section-heading .section-heading-lower {
        display: block;
        font-size: 2rem;
        font-weight: 100;
    }

}