body,html{
    background-color: #F6F9FC;
}
header{
    height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    box-shadow: 0px 10px 25px 0px rgba(170, 178.99999999999994, 217, 0.12156862745098039);

    border-style: solid;
    border-width: 4px 0px 0px 0px;
    border-color: #00afef;
}
header .icon{
    width: 100px;
}
.nav-me {
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
header ul li{
    margin: 7px;
}
header ul{
    flex-direction: row-reverse;
    display: flex;
    padding: 0;
    list-style-type: none;
    align-items: center;
    margin: 0 14px 0 0;
}
header ul a {
    color: #56678D;
}
header ul a:hover{
    color: #1a7ee1;
}
a{
    text-decoration: none !important;
}
.btn-shop{
    transition: 200ms;
    background: #00afef;
    padding: 11px 18px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    margin-left: 40px;
}
.rtl *{
    direction: rtl;
    text-align: right;
}
.cat-list{
    margin: 37px 0;
}
.cat-list ul li a{
    border-radius: 99px;
    background: #00afef;
    color: white;
    font-size: 12px;
    padding: 7px 12px 9px;
    box-shadow: 0 0 5px 0 rgb(13 37 88 / 25%);
    margin: 2px;
}
.cat-list ul{
    display: flex;
    list-style-type: none;
}
.post-box {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-box .img{
    position: relative;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-box .img img{
    height: 100%;
}
.post-box .body{
    padding: 13px 16px;
}
.post-box .body .title{
    font-weight: 600;
    line-height: 30px;
    color: black;
}
.post-box .body .description{
    font-size: 13px;
    margin-top: 9px;
    line-height: 24px;
    color: #565656;
}
.btn-blue {
    border: none;
    background: #0053f7;
    border-radius: 20px;
    margin: 13px auto 0;
    width: 82px;
    transition: all .3s ease-in-out;
    box-shadow: 0 3px 1px rgb(0 0 0 / 11%);
    text-align: center;
    color: white;
    padding-bottom: 7px;
    font-size: 13px;
    padding-top: 2px;
}
button.btn-blue:hover {
    width: 105px;
}
.btn-shop:hover {
    color: white;
    background: #0056b3;
}
.post-box .img:before {
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.32), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 400ms;
}
.post-box:hover .img:before {
    opacity: 0;
}
.bg-img{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(/images/blog/bg-dotted2.svg);
    background-repeat: no-repeat;
    margin-top: 25px;
    padding-top: 61px;
}
.bg-img .title {
     font-size: 21px;
     color: #0d9cf2;
     font-weight: 600;
    margin: 9px 0 56px;
}
.bg-img img {
    max-width: 700px;
    max-height: 580px;
    box-shadow: 0px 6px 31px 0px rgba(0, 0, 0, 0.050980392156862744);
    border-radius: 25px;
        width: 77%;

}
.info-b{
    display: flex;
    justify-content: center;
    margin: 28px 0;
}
.info-b > div {
    margin: 0 15px;
    font-size: 13px;
    color: #5e5e5e;
}
.info-b > div >i{
    color: black;
    font-size: 17px;
}
.body-info{
    direction: rtl;
    text-align: right;
    max-width: 700px;
    margin: auto;
    box-shadow: -40px 0 35px -50px rgb(0 0 0 / 20%), 40px -10px 35px -50px rgb(0 0 0 / 20%);
    background: white;
    border-radius: 17px;
    padding: 22px 28px;
    line-height: 33px;
}
.body-info img{
    max-width: 100%;
        height: auto !important;

}
.stars{
    margin-top: 20px;
    display: flex;
}
.stars >div{
    margin-right: 10px;
}
.stars .fa-star{
    color: gold;
}
@media (max-width: 600px) {
    header ul{
        display: none;
    }
    header{
        height: 62px;
    }
    header .icon {
        width: 70px;
    }
}
