article{
    min-height: 100vh;
}
section{
    padding:5rem;
    position: relative;
}
section:before {
    content: '';
    position: absolute;
    top: 66%;
    left: 26%;
    background-image: url('/static/theme/img/logoicon.svg');
    -moz-background-size: contain;
      -o-background-size: contain;
         background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 10rem;
    height: 10rem;
    z-index: -1;
}
.col1{
    width: 30%;
    position: relative;
}
.col2 {
    width: 70%;
    padding-left: 5%;
}
.image{
    aspect-ratio:9/13;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    -webkit-border-radius:.571rem;
    -moz-border-radius:.571rem;
    border-radius:.571rem;
    margin-bottom:1rem;
    position:relative;
    overflow:hidden
}
.image:before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    z-index:1;
    background:-webkit-gradient(linear,left top,left bottom,from(rgba(196,156,126,.6)),to(rgba(255,255,255,0)));
    background:-webkit-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:-moz-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:-o-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:linear-gradient(180deg,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%)
}
.border{
    border:1px solid #c49c7e;
    -webkit-border-radius:.571rem;
    -moz-border-radius:.571rem;
    border-radius:.571rem;
    position:absolute;
    aspect-ratio:8/10;
    width:100%;
    height:auto;
    z-index:2;
    top:2rem;
    right:1rem
}
.border .btn{
    position:absolute;
    bottom:1rem;
    right:1rem;
    width:100%;
    max-width:12rem
}
.text{
    padding:2rem 2rem 1rem;
    position:relative
}
.text:before{
    content:'';
    position:absolute;
    background:rgba(246,237,232,.9);
    -webkit-border-radius:.571rem;
    -moz-border-radius:.571rem;
    border-radius:.571rem;
    top:0;
    left:0;
    right:0;
    height:60%;
    z-index:-1
}
.back{
    position: absolute;
    right:-1rem;
    top:-1rem;
    cursor: pointer;
}
.back svg{
    width: 3rem;
    height: 3rem;
}
.back svg .circle{
    fill: #2d160e;
}
.back:hover svg .circle{
    fill: #c49c7e;
}
.cardfoot{
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -moz-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -moz-box-align:center;
    -ms-flex-align:center;
    -ms-grid-row-align:center;
    align-items:center;
    padding:0 2rem
}
.cardfoot div{
    -webkit-box-align:center;
    -webkit-align-items:center;
    -moz-box-align:center;
    -ms-flex-align:center;
    -ms-grid-row-align:center;
    align-items:center
}
.cardfoot .like{
    cursor:pointer
}
.cardfoot .like svg{
    width:1.3rem;
    margin-right:.5rem;
    height:1rem
}
.cardfoot .like svg .emptyheart{
    fill:#2d160e
}
.cardfoot .like svg .heart{
    fill:transparent;
    fill-rule:nonzero
}
.share {
    width: 1.57rem;
    height: 1.45rem;
    cursor: pointer;
}
.share path{
    fill: #2d160e;
}
.cardfoot .like:hover svg .heart, .cardfoot .like:hover svg .emptyheart, .share:hover path{
    fill:#c49c7e
}
#likemodal h4, #likemodal small, #likemodal input{
    text-align: center;
}
#likemodal h4{
    margin-bottom: 2rem;
}
#likemodal button{
    margin:auto;
}
/* #likecount{
    display: none;
} */
@media screen and (max-width: 1000px){
section {
    padding: 5rem 2rem;
}
}
@media screen and (max-width: 700px){
    section {
        padding: 2rem 1rem 2rem 2rem;
        }
   h1 {
    font-size: 1.829rem;
  }
  .col1 {
    width: 100%;
    margin-bottom: 1rem;
  }
  .col2 {
    width: 100%;
    padding: 0;
  }
  .text {
    padding: 1rem;
  }
  .cardfoot {
    padding: 0 1rem;
  }
  .back {
    right: -.5rem;
    }
}