@font-face {
    font-family:"Iransans";
    src: url(../font/IRANSans-web.woff);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    box-sizing: border-box;
    font-size: 100%;
    font-family: sans-serif;
}

*, *::after, *::before {
    box-sizing: inherit;
}

body {
    line-height: 1.6;
    font-size: 1rem;
    font-family:"Iransans";
}

/*

-- Reset Style --

*/

a {
    text-decoration: none !important;
    color: inherit;
}

.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.store {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(237, 238, 238);
    max-width:24rem;
    margin: 1rem auto ;
    position: relative;
    background-color: #f5f5f55b;
    color: #212529;
}

.store__image {
    height: 18rem;
    width:100%;
    object-fit: cover;
    object-position: center;
}

.store__information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding:1rem;
    text-align:center;
    align-items: center;
}

.store__detail{
    border-radius: .5rem;
    padding: .6rem;
    max-width: 26rem;
}

.store__information--title {
    font-weight: 900;
    margin-bottom: .5rem;
}

.gold{
    color: #E1A140;
}

.store__detail--content {
    font-size:12px;
    margin-bottom: .5rem;
    color: #606060;
}

.store__links {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
}
.store__link--btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
    width: 7rem;
    height: 2.5rem;
    background-color: #000;
    color: #fff;
    transition: all .2s ease;
    font-size: 12px;
}
.store__link--btn:hover{
    background-color: #979797;
    color:#fff;
}
.store__link--btn:last-child{
    margin-left: 0;
}

@media only screen and (min-width: 768px) {
    .store{
        flex-direction: row;
        max-width: 48rem;
    }
    .store__information{
        text-align: right;
        align-items:flex-start;
    }
    .store__image{
        height:16rem;
        width:16rem ;
    }
    .store__information {
        padding: 2rem;
    }
}


