.products {
    padding: 20px 0;
}
.anchor {
    display: block;
    position: relative;
    top: -87px;
    visibility: hidden;
}
.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.boxes {
    display: flex;
    justify-content: center;
}
.product-single {
    position: relative;
    margin: 0 10px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    border: 5px solid #818181;
    transition-duration: 400ms;
}
.save {
    font-weight: 300;
    padding: 0 0;
    border-radius: 13px 13px 0 0;
    color: #fff;
    background: #818181;
    font-size: 30px;
    margin-top: -1px;
    margin-left: -1px;
    margin-right: -1px;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01a2e0', endColorstr='#105888',GradientType=0 );
    transition: all 0.4s;
}
.price_hide {
    display: none;
}
.product-image {
    position: relative;
    max-width: 360px;
    display: block;
    margin: 0 auto;
}
.product-image img {
    width: 90%;
    border-radius: 15px;
}
.product-info {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border-radius: 0 0 20px 20px;
}
.product-info h3 {
    color: #000;
    font-size: 26px;
    margin-bottom: -4px;
    font-weight: 700;
}
.product-info p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: -10px;
}
.product-info p span {
    color: #ffc600;
    font-weight: bold;
}
.old_price {
    color: #346D9F;
    text-decoration: line-through;
    font-weight: 500;
}
.product-info .btn-booknow {
    padding: 10px 20px 10px;
    font-size: 25px;
    margin-top: 8px;
}
.btn-booknow {
    display: inline-block;
    background: #FFD800;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px 8px;
    border: 2px solid #FFD800;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
    position: relative;
    -webkit-box-shadow: 0px 3px 5px 0px rgb(50 50 50 / 75%);
    -moz-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 3px 5px 0px rgb(50 50 50 / 75%);
}
.product-info p span {
    color: #000;
    font-weight: bold;
}
.product-single .new_price {
    color: red;
    font-size: 30px;
}
.product-single:hover .new_price, .selectedBox .new_price {
    color: red;
}
.product-single:hover .btn-booknow, .btn-booknow:hover, .selectedBox .btn-booknow {
    box-shadow: none;
    background-color: #FFD800;
    border: 2px solid #FFD800;
}
.selectedBox, .product-single:hover  {
    border: 5px solid #00b359;
}
.selectedBox .save, .product-single:hover .save  {
    background: #00b359;
}
.no-gutters {
    justify-content: center;
}
@media (max-width: 767px) {

    .product-image figure{
        margin: 12px 8px 0;
    }
    .product-image {
        width: 50%;
    }
    .product-info {
        width: 50%;
    }
    .boxes {
        display: block;
    }
    .box-body {
        display: flex;
    }

    .product-info .btn-booknow {
        font-size: 22px;
    }
    .product-single {
        margin: 12px 10px;
    }
}
@media (max-width: 680px) and (min-width: 600px) {
    .save {
        font-size: 24px;
    }
    .product-info .btn-booknow {
        font-size: 18px;
    }
}

@media (max-width: 499px) {
    .product-image figure{
        margin: 20px 8px 0;
    }
    .product-single .new_price{
      font-size: 26px;
    }
    .product-single{
      margin: 10px 10px;
    }
    .product-info{
      padding: 0px 0 5px 0;
    }
    .product-info p{
      margin-bottom: 0px;
      margin-top: -10px;
      font-size: 18px;
      text-align: center;
    }
    .product-info .btn-booknow{
      margin-top: 0px;
    }
    .product-info h3{
      padding: 0;
      margin-bottom: 10px;
    }
    .save{
      padding: 0 0;
      font-size: 21px;
      text-align: center;
    }
    .product-info .btn-booknow {
        font-size: 18px;
    }
    .product-image img {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .product-info h3 {
        font-size: 22px;
    }
    .product-info .btn-booknow {
        margin-bottom: 8px;
    }
    .product-info {
        width: 65%;
    }
    .product-image {
        width: 45%;
    }
}
