.container {
  max-width: 960px;
}

/*
 * Custom translucent site header
 */

 .site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

 .product-device {
  position: absolute;
  right: 5%;
  bottom: -30%;
  width: 300px;
  height: 540px;

  border-radius: 30px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}


.product-device-2 {
  top: -25%;
  left: 2%;
  bottom: 0;

}


/*
 * Extra utilities
 */

 .flex-equal > * {
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    flex: 1;
  }
}

.overflow-hidden { overflow: hidden; }



.block:hover {
  -webkit-transform: scale(1.05,1.05);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 100ms;
  -moz-transform: scale(1.05,1.05);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 100ms;
}


#footer {
 background-color: rgba(0, 0, 0, .85);
}
#footer h5{
  padding-left: 10px;
  border-left: 3px solid #eeeeee;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color:#ffffff;
}


@media (max-width:767px){
  #footer h5 {
    padding-left: 0;
    border-left: transparent;
    padding-bottom: 0px;
    margin-bottom: 10px;
  }
}


body {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 15.5px;
}

* {
  box-sizing: border-box;
}

.response {
  margin: 23px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  grid-auto-rows: 200px;
  grid-auto-flow: row dense;
  grid-gap: 23px;
  justify-content: center;
  font-size: 13px;
}

.card-top, .card-right, .card-bottom, .card-left {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  border-radius: 95.2380952381px;
  box-shadow: 0px 3px 9px 1px rgba(0, 10, 20, 0.2);
}

.card-top {
  flex-direction: column;
  grid-column: auto / span 1;
  grid-row: auto / span 2;
}

.card-right {
  flex-direction: row-reverse;
  grid-column: auto / span 2;
  grid-row: auto / span 1;
}

.card-bottom {
  flex-direction: column-reverse;
  grid-column: auto / span 1;
  grid-row: auto / span 2;
}

.card-left {
  flex-direction: row;
  grid-column: auto / span 2;
  grid-row: auto / span 1;
}

.card-image {
  display: flex;
}

.card-top .card-image, .card-bottom .card-image {
  height: 50%;
  width: 100%;
}

.card-left .card-image, .card-right .card-image {
  height: 100%;
  width: 50%;
}

.card-image img {
  width: 100%;
  object-fit: cover;
}

.card-top img {
  border-radius: 95.2380952381px 95.2380952381px 0 0;
}

.card-right img {
  border-radius: 0 95.2380952381px 95.2380952381px 0;
}

.card-bottom img {
  border-radius: 0 0 95.2380952381px 95.2380952381px;
}

.card-left img {
  border-radius: 95.2380952381px 0 0 95.2380952381px;
}

.card-text {
  align-self: center;
  padding: 23px;
}

.card-top .card-text {
  height: auto;
  width: auto;
  padding-bottom: 36.8px;
}

.card-right .card-text {
  height: auto;
  width: 50%;
  padding-left: 36.8px;
}

.card-bottom .card-text {
  height: auto;
  width: auto;
  padding-top: 36.8px;
}

.card-left .card-text {
  height: auto;
  width: 50%;
  padding-right: 36.8px;
}

.card-text p {
  margin: 0;
  line-height: 1.35em;
  color: #334455;
}

@media (max-width: 720px) {
  .card-top {
    flex-direction: row;
    grid-column: auto / span 2;
    grid-row: auto / span 1;
  }

  .card-bottom {
    flex-direction: row-reverse;
    grid-column: auto / span 2;
    grid-row: auto / span 1;
  }

  .card-top .card-image, .card-bottom .card-image {
    height: 100%;
    width: 50%;
  }

  .card-top img {
    border-radius: 95.2380952381px 0 0 95.2380952381px;
  }

  .card-bottom img {
    border-radius: 0 95.2380952381px 95.2380952381px 0;
  }

  .card-top .card-text {
    height: auto;
    width: 50%;
    padding-right: 36.8px;
  }

  .card-bottom .card-text {
    height: auto;
    width: 50%;
    padding-left: 36.8px;
  }
}
@media (max-width: 400px) {
  .card-image {
    width: 38% !important;
  }

  .card-text {
    width: 62% !important;
  }
}




*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-top: 30px;
}

.product {
  margin-bottom: 30px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  box-shadow: 0px 3px 9px 1px rgba(0, 10, 20, 0.2);
}

.product--card {
  border: 1px solid #ddd;
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product .product--image {
  padding-bottom: 81.88%;
  position: relative;
  border-bottom: 1px solid #ddd;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  overflow: hidden;
  height: 0;
}

.img-responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product--title {
  display: block;
  color: #333;
  padding-bottom: 0 !important;
  text-decoration: none;
  padding: 5%;
  margin: 0;
}

.product--brand {
  color: #777;
  display: block;
  padding-top: 0 !important;
  padding: 5%;
  flex: 1 0 auto;
  margin: 0;
}

.product a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.product .product--price {
  padding-top: 0 !important;
  padding: 5%;
}

.product .price--sell-price, 
.product .price--discount-price {
  font-size: 1.5rem;
}

.price--sell-price {
  color: #28a528;
}

.product .product--price .was-price, 
.product .product--price .price--rrp {
  font-size: 1rem;
}

.price--sell-price.was-price, 
.price--rrp {
  color: #777;
  font-weight: 100;
  text-decoration: line-through;
}

.price--discount-price {
  color: #0074d9;
}

.tags {
    display: block;
    position: absolute;
    z-index: 2;
    text-align: right;
    bottom: 6px;
    right: 12px;
}
.tags > .availability {
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    padding: 4px 5px;
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 6px;    
  font-size: 0.75rem;
}

.tags > .availability.almost-gone {
    background-color: #ff9600;
}

.tags > .availability.discount {
    background-color: #0074d9;
}

.tags > .availability.sold-out {
    background-color: #ff0000;
}





