/**
* Basic reset
**/
html {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #111;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/**
* grid
**/
.container {
    max-width: 1200px;
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto
}

.row {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

/**
* Helpers
**/
.text-center {
    text-align: center;
}

.section-padding {
    padding: 3rem 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 5rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin: 0 auto;
    width: 100%;
}

/**
* Sections
**/

/* Header */
.header .desc-columns .header-columns__col-1 {
    display: flex;
    flex: 1 0 90%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    margin: 0.5rem;
    margin-bottom: 0.8rem;
    background-color: #0f2b4b;
}

.header .desc-columns .header-columns__col-2 {
    flex: 1 0 29%;
    margin: 0rem 0.5rem 0.5rem 0.5rem;
}

.header .desc-columns .header-columns__col-3 {
    flex: 1 0 29%;
    margin: 0rem 0.5rem 0.5rem 0;
}

.header__content-wrapper {
    max-width: 400px;
}

.header__breadcrumbs {
    font-size: 0.8rem;
    color: #ddd;
}

.header__title {
    font-size: 3rem;
    color: #fff;
}

.header__content {
    font-size: 2rem;
    color: #fff;
}
/* END Header */

/* Content */
.content {
    background-color: #0f2b4b;
}
/* END Content */

/* Map */
.map__title {
    font-size: 2rem;
    color: #86c13f;
}

.map_responsive {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}

.map_responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
/* END Map */

/* Why */
.why__title {
    font-size: 2rem;
    color: #fff;
}

.why__boxes {
    display: flex;
    flex-wrap: wrap;
}

.why__boxes .box {
    flex: 1 0 94%;
    margin-bottom: 30px;
    padding: 0;
    border: none;
}

.why__boxes .box__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.why__boxes .box__image {
    display: block;
    margin-bottom: 1rem;
}

.why__boxes .box__description {
    color: #fff;
}
/* END Why */

/* Player */
.player {
    position: relative;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.player__logo {
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
}
/* END Player */

/* Bestsellers */
.bestsellers__title {
    font-size: 2rem;
    color: #fff;
}

.bestsellers__boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bestsellers__boxes .box {
    flex: 1 0 46%;
    padding: 0;
    background-color: #fff;
    position: relative;
}

.bestsellers__boxes .box a {
    color: #111;
}

.bestsellers__boxes .box a:hover {
    color: #333;
}

.bestsellers__boxes .box__img {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.bestsellers__boxes .box__add_to_cart {
    background-color: #fff;
    margin-left: -2px;
    padding-bottom: 15px;
    width: 101.2%;
    display: block;
    position: relative;
}

.box:hover .box__add_to_cart {
    display: inline-block;
}


.bestsellers__boxes .box__add_to_cart a {
    color: #fff;
}

.bestsellers__boxes .box__availbility {
    font-size: 13px;
    margin: 1.5em 0;
    height: 36px;
}

.bestsellers__boxes .box__availbility .availability-in-stock {
    color: #e11c6c;
}

.bestsellers__boxes .box__title {
    min-height: 76px;
    padding: 1rem;
    font-weight: bold;
    background-color: #ddd;
}

.bestsellers__boxes .box__price {
    color: #e11c6c;
    font-weight: 700;
    font-size: 23px;
}

.bestsellers__boxes .box__old_price {
    text-decoration: line-through;
    font-weight: 700;
    font-size: 13px;
}

.bestsellers__boxes .box__sku {
    font-size: 13px;
    padding-top: 2em;
    display: none;
    position: absolute;
    background-color: white;
    margin-left: -2px;
    width: 102%;
}

.bestsellers__boxes .box:hover .box__sku {
    display: block;
}

.bestsellers__boxes .box__title.box__title--product {
    font-weight: normal;
    background-color: transparent;
    font-size: 15px;
}

.bestsellers__desc .box {
    padding: 1rem 4rem;
}

.bestsellers__desc .box p, .bestsellers__desc .box li {
    color: #fff;
}

.bestsellers__desc .box__list li::before {
    content: "\2022";
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    color: #86C13F;
    font-weight: bold;
}
/* END Bestsellers */

/**
* Components
**/
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #86c13f;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
}

.btn:hover {
    background-color: #78AD38;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.box {
    padding: 2rem 1rem;
    margin: 0.5rem;
    border: 2px solid #fff;
    color: #fff;
}

.bg-heading {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
}

.desc-columns {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.desc-columns__col-1 {
    flex: 1 0 93%;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 0.5rem;
    margin-bottom: 12px;
    background-color: #0f2b4b;
}

.desc-columns__col-1 .col__title {
    font-size: 1.5rem;
    color: #fff;
}

.desc-columns__col-2 {
    flex: 1 0 20%;
    margin: 0 0.5rem 0 0.5rem;
}

.desc-columns__col-3 {
    flex: 1 0 20%;
    margin: 0 0.5rem 0 0;
}

.desc-columns__col-4 {
    flex: 1 0 20%;
    margin: 0rem 0.5rem 0 0;
}

.go-to-top__wrapper {
    margin-top: 40px;
}

.go-top-top__link {
    display: block;
    text-align: center;
    line-height: 30px;
    color: #4e83b9;
}

.go-to-top__icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: #4e83b9;
    border-radius: 50%;
}

.go-to-top__icon:before {
    content: '';
    display: inline-block;
    margin-top: 10px;
    width: 12px;
    height: 12px;
    border: 2px solid #102B4B;
    border-left: 0;
    border-top: 0;
    transform: rotate(225deg);
}


/* Responsive */
@media (min-width: 768px) {
    .why__boxes .box {
        flex: 1 0 32%;
    }

    .bestsellers__boxes .box {
        flex: 1 0 21%;
        padding: 0;
    }

    .desc-columns__col-1 {
        flex: 1 0 25%;
    }

    .desc-columns__col-2 {
        flex: 1 0 22%;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }

    .desc-columns__col-3 {
        flex: 1 0 22%;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }

    .desc-columns__col-4 {
        flex: 1 0 22%;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }

    .player__logo {
        max-width: 100%;
        bottom: -198px;
    }

    .bestsellers__boxes .box:hover .box__sku {
        display: none;
    }
}

@media (min-width: 992px) {
    .header__title {
        font-size: 4rem;
    }

    .map__title {
        font-size: 3rem;
    }

    .why__title {
        font-size: 3rem;
    }

    .why__boxes .box__title {
        min-height: 68px;
    }

    .bestsellers__title {
        font-size: 3rem;
    }

    .bestsellers__boxes .box {
        flex: 1 0 20%;
        padding: 0;
    }

    .bestsellers__boxes--kitchen .box {
        max-width: 24%
    }

    .bg-heading {
        font-size: 2rem;
    }

    .desc-columns__col-1 .col__title {
        font-size: 1.5rem;
        color: #fff;
    }
}

@media (min-width: 1280px) {
    .bestsellers__boxes .box__add_to_cart {
        width: 101.7%;
    }
    .bestsellers__boxes.bestsellers__boxes--fixed_width .box__add_to_cart {
        width: 101.9%;
    }

    .header .desc-columns .header-columns__col-1 {
        flex: 1 0 29%;
        margin: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .header .desc-columns .header-columns__col-2 {
        flex: 1 0 29%;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }

    .header .desc-columns .header-columns__col-3 {
        flex: 1 0 29%;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }

    .why__boxes .box {
        flex: 1 0 21%;
    }

    .why__boxes .box__title {
        min-height: 68px;
    }

    .bestsellers__boxes .box {
        flex: 1 0 1%;
        padding: 0;
    }

    .bestsellers__boxes--kitchen .box {
        max-width: 13%
    }
}