@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --dark: #111111;
    --black: #303030;
    --grey: #4f4f51;
    --white: #ffffff;
    --orange: #ff5a00;
    --green: #6caa35;
    --red: #d5262b;
    --ease: all 0.3s ease 0.02s;
    --yellow: #ffa200;
    --yellow-2: #ffde00;
    --light: #f0f0f0;
    --unset: unset !important;
}

html, body {
    height: 100%;
}

body {
    margin: 0px;
    font-size: 14px;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1490px;
}

h1 {
    font-weight: 700;
}

h2, h3, h4, h5, h6 {
    font-weight: 500 !important;
}

h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: 500 !important;
}

button, a {
    text-decoration: none !important;
    transition: all 0.3s ease 0.02s;
    -webkit-transition: all 0.3s ease 0.02s;
}

a:hover {
    color: var(--orange) !important;
}

header {
    padding: 30px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey);
}

footer {
    width: 100%;
    text-align: center;
    padding: 40px 0 35px 0;
    background-color: var(--grey);
    font-size: 12px;
    color: #b8b8b8;
}

footer .copyright {
    margin: 32px 0 10px 0;
}

footer a {
    color: #b8b8b8;
    font-weight: 700;
}

footer span {
    color: #3dbcc9;
    font-weight: 700;
}

.page-wrapper {
    min-height: calc(100vh - 136px - 204px);
    background-image: url(../img/bg.png);
    /* background-size: cover; */
    background-position: center 40px;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.store-list .list {
    display: flex;
    flex-wrap: wrap;
}

.store-list .list .item {
    flex: 0 0 100%;
    max-width: calc(25% - 25px * 3 / 4);
    margin: 0 25px 40px 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(217, 217, 217);
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    height: 250px;
    transition: var(--ease);
    -webkit-transition: var(--ease);
    overflow: hidden;
}

.store-list .list .item:nth-child(4n+4) {
    margin-right: 0;
}

.store-list .list .item:hover {
    border-color: rgb(61, 188, 201);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.22);
}

.store-list .list .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.store-list .list .item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.bh-sl-container {
    min-height: calc(100vh - 136px - 204px);
}

.sales-points {
    padding: 30px 0 90px 0;
}

.sales-points .title {
    display: flex;
    /* justify-content: space-between; */
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.sales-points .title a {
    text-decoration: underline !important;
}

.sales-points h1 {
    color: #000000;
    text-align: center;
    padding: 0 0;
    font-size: 50px;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .sales-points h1 {
        color: #000000;
        font-size: 24px;
        margin: 0px;
        padding: 0px;
    }
}

.sales-points .header {
    margin-bottom: 40px;
}

.sales-points .header p {
    font-size: 16px;
    line-height: 1.53;
}