html,body{
  min-height: 100vh;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color:#00ad5f black;
  scroll-behavior: smooth;
  user-select: none;
  padding:0;
  margin: 0;
}

/*------------------------------------------------------------------------------------------------*/
body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;
    background-color: black;
    
}

body::-webkit-scrollbar
{
    width: 12px;
    background-color: rgb(5, 5, 5);
}
body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #00ad5f;
}
.hero{
  background-image:linear-gradient(rgba(0, 0, 0, 0.508), rgba(0, 0, 0, 0.404)), url(../images/bg10.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  

  height:100vh;
  width:auto;

  }

  @media only screen and (max-width: 600px) {
    
    .hero{
      background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/mediabg.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      
    }
    
  }


nav a {
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  font-family: 'Sansita Swashed';
  padding: 5px 15px 10px 15px;
  transition: all 0.3s;

}

.about:hover {
 
  background:
  linear-gradient(
    to right,
    rgba(82, 224, 0, 0.432) 0%,
    rgba(82, 224, 0, 0.432) 5px,
    transparent
  );
  color: rgb(221, 221, 221);
  

}
.logo{
  display: block;
  text-align: center;
  margin: 0 auto;
  padding:20px 0 20px 0; /*-------------------Logo position--------------------------------------------------*/
}

.logo img{
  width:auto;
  height:15%;
}


.hamburger {
  background-color: transparent;
  border: 0;
  color: #FFF;
  display: none;
  margin-top: 20px;
  cursor: pointer;
 
}



.hamburger:focus {
  outline: none;
  text-decoration: none;
}




@media only screen and (max-width:600px) {
  .hamburger {
    display: block;
    float: right;
  }

  nav {
    display: none;
    text-decoration: none; 
    position: absolute;
    background-color:#4d3319;
    top: 0;
    bottom: 0;
    left:0;
    opacity: 1;
    animation: fadeIn;
    animation-duration: 1s;
    width: 50%;
    height: 100%;
    z-index: 100;
    overflow: hidden;

  
  }
  nav a {
    color: white;
    padding-bottom: 1em;
    
  }
  .about:hover{
    background: none;
    outline: none;
    text-decoration: underline;
  }

  nav a:nth-child(1){
    margin-top: 2em;
  }
  nav.show-nav {
    display: flex;
    flex-direction: column;
  }
  .logo{
    padding:30px;
    
  }
  .logo img {
    height: 10%;
  }
}



.time-fries{
 
  text-align: center;
  color: white;
  margin-bottom: -85px;
  font-family: 'Patrick Hand', cursive;
  font-size:2.0em;
}

@media only screen and (max-width:600px) {
  .time-fries {
    font-size: 1.3em;
  }
}

.hero-text{

text-align: center;
position: relative;
top:15%;  /* for setting margin from top for------------- "Time fries.."------------------------  */
left: 50%;
transform: translate(-50%, -50%);
color: white;
padding-left: 10px;
padding-right: 10px;
font-family: 'Lobster', cursive;
}



/*-------------------------------------------------------------------------------------------------*/
.s130{
  /* min-height: 100vh; */
  display: -ms-flexbox;
  display: flex;
    /* -ms-flex-pack: center;  */
      justify-content: center;
  font-family: 'Poppins', sans-serif;
   padding-top:80px;   /*------------- for adjusting position of Search-Box ------------------------*/

}
.s130 form {
  width: 100%;
  max-width: 790px;
  padding-top: 24vh;
  
}

.s130 form .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 34px;
  overflow: hidden;
  margin-bottom: 10px;/* --------------radio button position-------------------------------------- */
}

.s130 form .inner-form .input-field {
  height: 68px;
}

.s130 form .inner-form .input-field input {
  height: 100%;
  background: transparent;
  
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: rgb(0, 0, 0);
}
/*-----------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 600px) {
  .s130 form .inner-form .input-field input {
    font-size: 0.5em;
    color: rgb(58, 58, 58);
  }
  
  .s130 form {
    padding-right:20px;
    padding-left:20px;
  }

  
  
}



.s130 form .inner-form .input-field input.placeholder {
  color: #222;
  font-size: 16px;
}


.s130 form .inner-form .input-field input:hover, .s130 form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}

.s130 form .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #fff;
}

.s130 form .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.s130 form .inner-form .input-field.first-wrap .svg-wrapper {
  min-width: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.s130 form .inner-form .input-field.first-wrap svg {
  width: 36px;
  height: 36px;
  fill: #222;
}

.s130 form .inner-form .input-field.second-wrap {
  min-width: 216px;
}

.s130 form .inner-form .input-field.second-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #00ad5f;
  transition: all .2s ease-out, color .2s ease-out;
  font-weight: 300;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:hover {
  background: #009451;
}

.s130 form .inner-form .input-field.second-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
}

.s130 form .info {
  font-size: 15px;
  color: #ccc;
  padding-left: 26px;
}

@media screen and (max-width: 992px) {
  .s130 form .inner-form .input-field {
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .s130 form .inner-form .input-field.first-wrap .svg-wrapper {
    min-width: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 10px;
  }
  .s130 form .inner-form .input-field.first-wrap svg {
    width: 26px;
    height: 26px;
    fill: #222;
  }
  .s130 form .inner-form .input-field.second-wrap {
    min-width: 100px;
  }
  
     /* -----------------------------find me eat me---------------------------------*/
   
}

/* sourceMappingURL=Searchs_130.css.map */
/*------------------------------------------DROPDOWN------------------------------------------------*/

.dropdown {
  float: left;
  overflow: hidden;
  
}

.dropdown .dropbtn {
  height:68px;
  font-size: 16px;  
  border: none;
  outline: none;
  color: gray;
  background-color:#fff;
 /*  padding: 14px 16px; */
  margin: 0;
}
.dropdown:hover .dropbtn {
  background-color: #d4d4d4;
  transition:0.5s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}



.dropdown:hover .dropdown-content {
  display: block;
  /*transition: 0.5s; */
  animation: zoomIn;
  animation-duration: 0.3s;
}
option:hover{
  background-color: indianred !important;
}

.dropbtn select{
  display: none;

}

@media only screen and (max-width:980px){
  .dropdown .dropbtn{
    height: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .dropdown {
    float: left;
    overflow: hidden; 
  }
.dropdown .dropbtn{
  height:5em;
  font-size:10px;
  /* padding:25px; */  
}
.dropdown{
  max-width: 60px;
}
.dropdown .dropbtn .dropdown-content option{
  padding-right:5px;
}
.dropdown-content option{
  padding:5px;
}

}
/* ---------------------------------------------------------------------------------------------- */
/* -------------------------------------- RADIO BUTTON ------------------------------------------ */

@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,);
* {
  box-sizing: border-box;
 }

 .vertical-align {
  animation:fadeIn;
  animation-duration: 1s;
  display: none; 
}
 
.button-link {
  text-decoration: none; 
}
  /* -------for setting size of radio buttons--------------------- */
  @media only screen and (max-width: 600px) {
    .vertical-align{
        width:auto;
    }
    .vertical-align .btns .btn{
      font-size: 0.7em;
    }

  }
.btns {
  background-color: #ff9035;
  background-image: linear-gradient(100deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
  z-index: 0;
  height: 40px;
  float: none;
  margin: 0 auto;
  width: 650px;
  max-width: 100%;
  border-radius: 40px;
  display: block;
  box-shadow: 0 2px 4px -1px rgba(25, 25, 25, 0.2); }
  .btns input {
    display: none; }
  .btns label {
    display: table;
    float: left;
    padding: 0;
    width: 33%;
    height: 100%;
    margin: 0;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05); }
    .btns label:first-child {
      border-left: none;
      border-radius: 40px 0 0 40px; }
    .btns label:last-child {
      border-radius: 0 40px 40px 0; }
  .btns .btn {
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    font-weight: 300;
    color: #FFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 30px 20px -20px rgba(255, 255, 255, 0.15);
    transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22); }
    

    .btns .btn:hover {
      box-shadow: inset 0 30px 30px -20px rgba(50, 50, 50, 0.02);
      transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1); }
    .btns .btn:after {
      content: '\2714';
      margin-left: -10px;
      display: inline-block;
      transform: scale(0);
      transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  .btns .first {
    border-radius: 40px 0 0 40px; }
  .btns .last {
    border-radius: 0 40px 40px 0; }
  .btns input:checked + .btn {
    color: #5f6982;
    text-shadow: none;
    background-image: linear-gradient(to top, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
    box-shadow: inset 0 10px 50px rgba(25, 25, 25, 0.08);
    transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms; }
    .btns input:checked + .btn:after {
      margin-left: 12px;
      transform: scale(1.25);
      transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms; }






/* error image and message */
.food_err{
  margin-top: 3em;
  padding-top: 30px;
  display:block;
  margin-left: auto;
  margin-right: auto;
  width:auto;
  height:50%;
}
.food_err_text{
  text-align: center;
  font-weight: 300;
  font-family: 'Patrick Hand', cursive;
  color: #4d4d4d;
  margin-bottom: 4em;
}


/* --------------------------loader-------------------------- */

/* .loading-container{
  margin: 4em auto;
  
}
 */
.loader {
  
  position: relative;
  top: 50%;
  justify-content: center;
  padding-top: 6em;
  display: flex;
  z-index: 1000;
}
.loading-text {
  display: block;
  text-align: center;
  padding-top: 1.4em;
  margin-bottom: 4em;
  font-weight: bold;
  font-size: 1.4em;
  letter-spacing: 3px;
  font-family: 'Patrick Hand', cursive;
  color: #4d4d4d;
  
}

.dash {
  margin: 0 15px;
  width: 35px;
  height: 15px;
  border-radius: 8px;
  background: #00ad5f;
  box-shadow: 0 0 10px 0 #1a1919;
}

@media only screen and (max-width:600px){
  .dash{
    background: #4d3319;
  }
}

.uno {
  margin-right: -18px;
  transform-origin: center left;
  animation: spin 3s linear infinite;  
}

.dos {
  transform-origin: center right;
  animation: spin2 3s linear infinite;
  animation-delay: .2s;
}

.tres {
  transform-origin: center right;
  animation: spin3 3s linear infinite;
  animation-delay: .3s;
}

.cuatro {
  transform-origin: center right;
  animation: spin4 3s linear infinite;
  animation-delay: .4s;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(360deg);
  }
  30% {
    transform: rotate(370deg);
  }
  35% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-180deg);
  }
  35% {
    transform: rotate(-190deg);
  }
  40% {
    transform: rotate(-180deg);
  }
  78% {
    transform: rotate(-180deg);
  }
  95% {
    transform: rotate(-360deg);
  }
  98% {
    transform: rotate(-370deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes spin3 {
  0% {
    transform: rotate(0deg);
  }
  27% {
    transform: rotate(0deg);  
  }
  40% {
    transform: rotate(180deg);
  }
  45% {
    transform: rotate(190deg);
  }
  50% {
    transform: rotate(180deg);
  }
  62% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  80% {
    transform: rotate(370deg);
  }
  85% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin4 {
  0% {
    transform: rotate(0deg);
  }
  38% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(-360deg);
  }
  65% {
    transform: rotate(-370deg);
  }
  75% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* --------------------------------------------------------------- */
.wine-list {
  padding: 1em 3em;
  
  color: #4d4d4d;
  font-size: 1.2em;
}

.wine-list-start {
  font-weight: 600;
  font-size: 1.3em;
}

@media only screen and (max-width:600px) {
  .wine-list{
    font-size: 1.1em;
  }
}

/* ---------------------------------------------------------------------------------------------- */
/* ------------------------------------------CARDS---------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

 .cards{ 

  padding: 0px 0px;
  margin:0px -80px;

}
@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@300&display=swap');
.most-popular{
  color: rgb(48, 47, 47);
  font-family: 'Sansita Swashed', cursive;
  font-style: normal;
  font-weight: 550;
  font-size:40px;
  text-align: center;
}


.error-padding {
  padding: 4em;
  font-size: 30px;
}

@media only screen and (max-width:600px) {
  .most-popular {
    font-size: 25px;
    margin: 2em auto;
    font-weight: bold;
  }
  .error-padding{
    font-size: 20px;
  }
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 900;
  src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdr.ttf) format('truetype');
}

a.btn {
  background: #00ad5f;/*  #0096a0; */
  border-radius: 4px;
  box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.25);
  color: #ffffff;
  display: inline-block;
  padding: 6px 30px 8px;
  position: relative;
  text-decoration: none;
  transition: all 0.1s 0s ease-out;
}

@media only screen and (max-width:600px) {
  a.btn {
    background: chocolate;
  }
}
.no-touch a.btn:hover {
  background: #00a2ad;
  box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075);
  transform: translateY(-2px);
  transition: all 0.25s 0s ease-out;
}
.no-touch a.btn:active,
a.btn:active {
  background: #008a93;
  box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.25);
  transform: translate3d(0, 1px, 0);
  transition: all 0.025s 0s ease-out;
}
div.cards {
  margin: 0px auto;
  max-width: 1450px;
  text-align: center;
}
div.card {
  background: #ffffff;
  display: inline-block;
  margin: 30px;                                /*-------------space b/w cards------------*/

  -webkit-box-shadow: 7px 7px 22px 0px rgba(53, 50, 50, 0.75);
-moz-box-shadow:    7px 7px 22px 0px rgba(53, 50, 50, 0.75);
box-shadow:         7px 7px 22px 0px rgba(53, 50, 50, 0.75);

  max-width: 300px;
  perspective: 1000;
  position: relative;
  text-align: left;
  transition: all 0.3s 0s ease-in;
  width: 300px;
  z-index: 1;
    
}
div.card:nth-child(even){
  animation:lightSpeedInLeft;
  animation-duration: 2s;
}
div.card:nth-child(odd){
  animation:lightSpeedInRight;
 animation-duration: 2s;
}
div.card img {
  max-width: 300px;
}
div.card .card__image-holder {
  background: rgba(0, 0, 0, 0.1);
  height: 0;
  padding-bottom: 75%;
}
div.card div.card-title {
  background: #ffffff;
  padding: 6px 15px 10px;
  position: relative;
  z-index: 0;
}
div.card div.card-title a.toggle-info {
  border-radius: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 32px;
  
}
div.card div.card-title a.toggle-info span {
  background: #ffffff;
  display: block;
  height: 2px;
  position: absolute;
  top: 16px;
  transition: all 0.15s 0s ease-out;
  width: 12px;
  
}
div.card div.card-title a.toggle-info span.left {
  right: 14px;
  transform: rotate(45deg);
}
div.card div.card-title a.toggle-info span.right {
  left: 14px;
  transform: rotate(-45deg);
}
div.card div.card-title h2 {
  font-size: 24px;
  font-weight: 400;
  font-family:  'Yanone Kaffeesatz', sans-serif;
  letter-spacing: -0.005em;
  margin: 0;
  padding: 0;
}
div.card div.card-title h2 small {
  display: block;
  font-size: 18px;
  
  font-weight: 300;
  letter-spacing: -0.025em;
}
div.card div.card-description {
  padding: 0 15px 10px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
div.card div.card-actions {
  box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
  padding: 10px 15px 20px;
  text-align: center;
}
div.card div.card-flap {
  background: #d9d9d9;
  position: absolute;
  width: 100%;
  transform-origin: top;
  transform: rotateX(-90deg);
  -webkit-box-shadow: 7px 7px 22px 0px rgba(53, 50, 50, 0.75);
-moz-box-shadow:    7px 7px 22px 0px rgba(53, 50, 50, 0.75);
box-shadow:         7px 7px 22px 0px rgba(53, 50, 50, 0.75);
}
div.card div.flap1 {
  transition: all 0.3s 0.3s ease-out;
  z-index: -1;
}
div.card div.flap2 {
  transition: all 0.3s 0s ease-out;
  z-index: -2;
}
div.cards.showing div.card {
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.88);
}
.no-touch div.cards.showing div.card:hover {
  opacity: 0.94;
  transform: scale(0.92);
}
div.card.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}
div.card.show div.card-title a.toggle-info {
  background: #ff6666 !important;
}
div.card.show div.card-title a.toggle-info span {
  top: 15px;
}
div.card.show div.card-title a.toggle-info span.left {
  right: 10px;
}
div.card.show div.card-title a.toggle-info span.right {
  left: 10px;
}
div.card.show div.card-flap {
  background: #ffffff;
  transform: rotateX(0deg);
}
div.card.show div.flap1 {
  transition: all 0.3s 0s ease-out;
}
div.card.show div.flap2 {
  transition: all 0.3s 0.2s ease-out;
}
 


 /* ------------------------wine-pairing-card---------------------------------------------- */
 .big-card {
  --box-x-padding: 2rem;
  --box-y-padding: 1rem;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 40em) {
  .big-card {
    --box-y-padding: 4rem;
  }
}
@media (min-width: 60em) {
  .big-card {
    --box-x-padding: 3rem;
    --box-y-padding: 4rem;
  }
}
@media (min-width: 40em) {
  .big-card section {
    display: grid; 
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 4fr 4fr 5fr; 
    grid-template-areas: '. . title' 'img img content' 'img img .';  
    max-width: 900px;
    margin-right: 150px;
    margin-left: auto; 
  } 

  .big-card section::after {
    content: '';
    grid-column: 2/-1;
    grid-row: 1/3;
    position: relative;
    z-index: -1;
    background: #fff;
    box-shadow: 0 0.2em 1em rgba(61,48,41,0.2);
  }
  .wine-card h1 {
    grid-area: title;
    padding-top: var(--box-y-padding);
    padding-left: var(--box-x-padding);
  }
  .content {
    grid-area: content;
    padding-bottom: var(--box-y-padding);
    padding-left: var(--box-x-padding);
    padding-right: var(--box-x-padding);
  }
  .img {
    grid-area: img;
  }
}
  @import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

  .wine-card h1 {
    font-size: 2.5em;
    margin: 0 0 1rem;
    font-family: serif;
    position: relative;
  }
  .wine-card h1::after {
    content: '';
    position: absolute;
    /* width: 6rem; */
    background-color: #ccc;
    height: 2px;
    top: 0;
    left: 0;
  }

  @media only screen and (max-width: 600px){
    .wine-card{
      margin: 1em;
    }
    .wine-card h1 {
      font-size: 2em;
    }
  
  }
  @media (min-width: 40em) {
    .wine-card h1::after {
      left: var(--box-x-padding);
      top: var(--box-y-padding);
    }
  
  }
  
  .content {
    color: #4d4d4d;
    margin-bottom: var(--box-y-padding);
  }
  @media (min-width: 40em) {
    .content {
      margin-bottom: 0;
    }
  }
  .wine-card p {
    margin-top: 0;
    margin-bottom: var(--box-y-padding);
    line-height: 1.5;
  }
@media only screen and (max-width:600px){
  .wine-card p {
    font-family: robotoo;
    text-align: left;
    padding: 1em;
    background-color: white;
    /* font-weight: 600; */
  }
}

  .content a {
    text-decoration: none;
    border: 1px solid #b3b3b3;
    border-radius: 1em;
    padding: 1em 2em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: inherit;
    display: inline-block;
    background-color: #fff;
  }
  .img {
    position: relative;
  }
  .img a {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .wine-img {
    max-width: 100%;
    vertical-align: middle;
    box-shadow: 0 0.2em 1em rgba(61, 48, 41, 0.281);
  }

  .attribution {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ea4c89;
    color: #fff;
    padding: 0.5em 1em;
  }

 /* -------------------------------------------------------------------------------------- */
 
/* ----------------------- wine description--------------------- */



.wine-desc {
  margin: 6em auto;
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  min-width: 500px;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.925);
  text-align: left;
  -webkit-box-shadow: -6px -6px 10px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    -6px -6px 10px 0px rgba(50, 50, 50, 0.75);
box-shadow:         -6px -6px 10px 0px rgba(50, 50, 50, 0.75);
 
  transition: all .7s;
  border-radius: 20px;

  
}


.wine-desc:hover {
  transform: scale(1.1);
  -webkit-box-shadow: -10px -10px 15px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    -10px -10px 15px 0px rgba(50, 50, 50, 0.75);
box-shadow:         -10px -10px 15px 0px rgba(50, 50, 50, 0.75);

}


.wine-desc h2 {
  display: block;
  padding-left: 1em;
  letter-spacing: 1.3px;
  font-family: 'Sansita Swashed' ,sans-serif;
}

.wine-desc p {
  display: block;
  margin-top: -1em;
  padding: 1em;
  line-height: 1.8;
  word-spacing: 2px;
  font-size: 1em;
  font-family: 'Roboto';
  color:rgba(39, 39, 39, 0.863);

}
.wine-desc img {
  
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 200px;
  width:auto;
  display: flex;
  
}


@media only screen and (max-width:600px) {
  .wine-desc {
     min-width: 90%;
     margin: auto; 
     margin-bottom: 4em;
    text-align: center;
    
     
  }
  .wine-desc:hover{
    transform: none;
  }

  .wine-desc p {
      
      text-align: left;
      font-size: 1em;
      line-height: 1.4;
  }
  .wine-desc h2 {
      padding: 0 1em 1em 1em;
      font-size: 1.5em;
  }
  
}



/* ------------------------------------------footer---------------------------------------------- */  
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
* {
  font-family: Roboto;
}
footer{
  margin-top:-50px;
  
}
.footer-distributed {
 
 
  background: rgb(0,173,95);
  background: radial-gradient(circle, rgba(0,173,95,1) 0%, rgba(17,32,14,1) 100%);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  font: normal 16px sans-serif;
  padding: 10px 50px;
  margin-right:-8px ;
  margin-top:-15px;
  
  
}
@media only screen and (max-width:600px){
  .footer-distributed{
    background: rgb(38,13,12);
    background: linear-gradient(90deg, rgba(38,13,12,1) 0%, rgba(190,125,61,1) 100%); 
  }
}

.footer-distributed .footer-left p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}
.footer-distributed p.footer-links a:hover{
  text-decoration:underline;
  transition: .4s ease-in-out;
}

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center; }

  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px; }

  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8; }
}


