:root {
    --main-color: #fff;
    --elrawda-color: #41B06E;
    --text-larg: #141E46;
    --text-small: #6295A2;
}


header .banner-recipes {
    background-image: url(../images/banner-recipes.jpg);
    width: 100%;
    height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
header .recipes-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}
.ms-recipes {
    position: absolute;
    top: 45%;
    left: 10%;
    width: 80%;
    color: var(--main-color);
    letter-spacing: 2px;
}
.ms-recipes h2 {
    font-size: 22px;
    margin-bottom: 10px;
    
}
.ms-recipes p {
    font-size: 16px;
    padding-left: 25px;
}
main {
    padding: 80px 20px;
    position: relative;
}

.recipes-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.recipes-icons .re-icon {
    flex-basis: 100%;
    padding: 10px;
    font-size: 26px;
    font-weight: 600;
    color: #312f2f;
    margin-bottom: 15px;
    border: 1px solid #6295A2;
    cursor: pointer;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.recipes-items .back-to {
    position: absolute;
    top: 20px;
    left: 20px;
}
.recipes-items .back-to a {
    display: inline-block;
    padding: 15px;
    font-size: 16px;
    background-color: #41B06E;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.recipes-items .item-img {
    width: 300px;
    height: 350px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.recipes-items .item-img img{
    width: 100%;
    height: 100%;
}
.recipes-items .item-text h2{
    font-size: 24px;
    color: #141E46;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}
.recipes-items .item-text h3 {
    font-size: 20px;
    color: #41B06E;
    padding: 0 0 30px 40px;
}
.recipes-items .item-text .inlin-text {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}
.recipes-items .item-text .inlin-text p {
    font-size: 15px;
    color: #141E46;
    padding: 5px 0;

}
.recipes-items .item-text .inlin-text div {
    font-size: 16px;
    margin-right: 15px;
    padding: 8px;
    background-color: #41B06E;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.recipes-items .item-text .ingred {
    margin-bottom: 30px;
}

.hide-show {
    display: none;
}
@media (min-width: 576px){
    .ms-recipes {
        left: 15%;
    }
    .ms-recipes h2 {
        font-size: 26px;
        
    }
    .ms-recipes p {
        font-size: 18px;
    }
    .recipes-items .back-to {
        left: 60px;
    }
    .recipes-icons .re-icon {
        flex-basis: 48%;
        margin-left: 1%;
        margin-right: 1%;
    }
}
@media (min-width: 992px){
    .recipes-icons .re-icon {
        flex-basis: 32%;
        margin-left: .5%;
        margin-right: .5%;
    }
}
