@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html {
    scroll-behavior:smooth;
}
:root{
    --primary-font-medium: 'Rubik', sans-serif;
    --primary-font: primary-font; 
    --primary-font-semibold: 'Rubik', sans-serif;
    --primary-font-bold: primary-font-bold;
    --color-primary: #fbbb44;
    --color-primary-o30: rgba(251,187,68,0.3);
    --color-primary-o50: rgba(251,187,68,0.5);
    --color-primary-o60: rgba(251,187,68,0.6);
    --color-primary-o90: rgba(251,187,68,0.9);
    --color-text: #5a5a5c;
    --color-white: #efeff1;
    --color-white-o10: hsla(0,0%,100%,0.1);
    --color-white-o20: hsla(0,0%,100%,0.2);
    --color-white-o30: hsla(0,0%,100%,0.3);
    --color-white-o40: hsla(0,0%,100%,0.4);
    --color-white-o50: hsla(0,0%,100%,0.5);
    --color-gray-o40: rgba(0,0,0,0.4);
    --color-black: #000;
    --color-black-o40: rgba(0,0,0,0.4);
    --color-black-o90: rgba(0,0,0,0.9);
    --color-green: #89c74c;
    --color-red: #dc3545;
    --color-blue: #2ba2ea;
    --color-purple: #7e2c85;
    --color-shadow-black: #050505;
    --color-navbar: rgb(105, 105, 105, 0.8);
    --color-gray: rgb(59, 59, 59, 0.7);
    --color-background-primary: #151111;
    --color-background-primary-o95: rgba(21,17,17,0.95);
    --color-background-primary-o70: rgba(21,17,17,0.7);
    --color-background-primary-o49: rgba(21,17,17,0.49);
    --color-background-primary-o15: rgba(21,17,17,0.16);
    --color-background-primary-o9: rgba(21,17,17,0.09);
    --color-background-primary-o5: rgba(21,17,17,0.05);
    --color-background-primary-o0: rgba(21,17,17,0);
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background-color: var(--color-background-primary-o35);*/
    background-color: white;
}
h1, h2, h4{
    font-weight: 500;
}

    /*-ms-overflow-style: none;  IE and Edge 
    scrollbar-width: none;  Firefox 
body::-webkit-scrollbar {
    display: none;
}*/

.header2, .header, .content, .content_news, .content1, .footer, .button-down, .container_introduction{
    transition: all ease 0.3s;
    opacity: 0;
}
.header{
    min-height: 100vh;
    transition: all ease 0.5s;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.header::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 130%;
    height: 96%;
    background: var(--color-navbar);
    opacity: .4;
    z-index: 0;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(18px) rotate(2deg);
}
.header::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 130%;
    height: 95%;
    background: linear-gradient(to top right,var(--color-navbar),rgba(0, 0, 0, 0.6)),url(images/background.jpg) center no-repeat;
    background-size: 100%;
    z-index: 0;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
}
header{
    display: flex;
    height: 80px;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    transition: 0.25s ease-in;
    width: 100%;
}
.sticky{
    transition: 0.3s;
    height: 65px;
    background-color: var(--color-navbar);
}
.nav-links li{
    list-style: none;
}
.nav-links ul a{
    text-decoration: none;
    padding: 5px;
    margin: 10px;
    color: white;
}
.nav-links{
    margin-left: auto; 
    margin-right: 250px;
    margin-top: auto;
    margin-bottom: auto;
}
.nav-links1{
    display: flex;
    list-style: none;
}
.nav-links1 li a{
    display: inline;
    padding-bottom: 3px;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition: background-size 0.25s, background-position 0s 0.25s;
}

.nav-links1 li a:hover{
    background-position: 100% 100%;
    background-size: 100% 1px;
}
.nav-links1 .current a{
    background-position: 100% 100%;
    background-size: 100% 1px;
}
.logo{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 250px;
    font-size: 30px;
    font-family: var(--primary-font-medium);
}
.logo a{
    text-decoration: none;
    color: white;
}
.button-down{
    width: 100%;
}
.btn{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}
.button-down a{
    text-decoration: none;
}
.button-down, .container_introduction{
    z-index: 1;
    position: absolute;
}
.scroll-bottom-btn{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background:-webkit-linear-gradient(transparent 50%, var(--color-gray) 50%);
    border: 2px solid rgb(196, 196, 196);
    background-size: 35px 140px;
    transition: 250ms ease-in-out;
}
.scroll-bottom-btn:hover{
    background-position: 0px -70px;
}

.to-top {
    background: var(--color-gray);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}
.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}
.to-top:hover{
    background: var(--color-background-primary-o95);
}
.mobile_lines{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
    display: none;
}
.mobile_lines{
    cursor: pointer;
}
.mobile_lines div{
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
.un {
    position: relative;
}
.un:after {
    content: '';
    width: 0px;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    transition: .2s;
    margin-top: 1px;
}

.un:hover:after {
    width: 100%;
}

.un:not(:hover):after {
    right: 0;
    left: auto;
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
.container_introduction{
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 190px;
}
.introduction h1, h4, p, a{
    margin: 0;
}
.introduction{
    width: 50%;
}
.introduction h1{
    font-size: 54px;
    margin-bottom: 20px;
}
.introduction h4{
    font-size: 25px;
    color: rgb(218, 218, 218);
}
.introduction p{
    margin-top: 20px;
    margin-bottom: 50px;
    color: rgb(218, 218, 218);
}
.introduction button{
    width: 150px;
    height: 50px;
    outline: none;
    border: var(--color-gray) 2px solid;
    background-color: var(--color-navbar);
    border-radius: 10px;
    color: white;
    transition: 0.350s ease-in;
    cursor: pointer;
}
.introduction button:hover{
    background-color: gray;
}
.introduction_image{
    width: 50%;
    text-align: right;
}
.introduction_image img{
    z-index: 1000;
    width: 400px;
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgb(0 0 0 / 10%);
    object-fit: cover; 
    height: 450px;
}
.footer{
    margin-top: auto;
}
.footer_background{
    background-color: var(--color-navbar);
    height: auto;
    display: flex;
    font-size: 14px;
    text-align: center;
}
.footer_rights{
    font-weight: 400;
    padding: 25px;
    margin-right: auto;
    margin-left: 150px;
}
.footer_madeby {
    margin-left: auto;
    margin-right: 150px;
    font-weight: 400;
    padding: 25px;
}
.footer_madeby a{
    text-decoration: none;
    font-weight: 600;
    color: rgb(11, 82, 23);
    transition: all .25s ease-in-out;
}
.footer_madeby a:hover{
    color: rgb(13, 105, 75);
}

/* form style */
.contact__form{
    color: black;
    margin-bottom: 150px;
}
.contact__form h1{
    text-align: center;
}
.contact_group {
    margin-top: 15px;
    font-size: 13px;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.contact_group label{
    position: relative;
    left: 15px;
    background-color: white;
    height: 30px;
    padding: 1px 10px 2px 10px;
    top: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.contact_group input{
    width: 350px;
    height: 50px;
    border-radius: 10px;
    outline: none;
    border: 1px rgba(82, 82, 82, 0.3) solid;
    padding: 2px 15px 0px 15px;
    font-size: 16px;
}
.contact_group textarea{
    width: 350px;
    height: 150px;
    border-radius: 10px;
    outline: none;
    border: 1px rgba(82, 82, 82, 0.3) solid;
    padding: 12px 15px 0px 15px;
    font-size: 16px;
    font-family: sans-serif;
}
.contact_group button{
    width: 100px;
    height: 45px;
    background-color: rgb(105, 105, 105);
    outline: none;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all .2s ease;
}
.contact_group .invalid{
    border: 1px rgb(235, 54, 54) solid;
    transition: all .3s ease;
}
/*.contact_group .valid{
    border: 1px rgb(27, 185, 54) solid;
    transition: all .3s ease;
}*/
.contact_group .invalid_b{
    cursor:not-allowed;
    background-color: rgba(170, 170, 170, 0.8);
}
.contact{
    color: black;
    padding-top: 100px;
}
.contact h1{
    font-size: 40px;
    text-align: center;
    margin-bottom: 100px;
}
.contact_container{
    display: flex;
    width: 1340px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
}
.contact_text{
    width: 60%;
    margin-bottom: 0;
    margin-left: 50px;
}
.contact__form{
    width: 40%;
}
.contact_text h4{
    font-size: 20px;
    margin-bottom: 15px;
}
.contact_text p{
    margin-bottom: 15px;
}
.name, .email, .phonenum, .instagram {
    display: flex;
}
.contact_info i{
    font-size: 30px;
    margin-top: 2px;
    margin-right: 8px;
}
.data a{
    color: black;
    font-weight: 600;
    text-decoration: none;
}
/* exercises */
.exercises{
    background-color: whitesmoke;
}
.exercises h1{
    color: black;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}
.exercises p{
    color: black;
    margin-bottom: 10px;
    text-align: center;
}

/* Recipes */
.recipes{
    padding-top: 70px;
    padding-bottom: 150px;
    margin-left: 150px;
    margin-right: 150px;
}
.recipes h1{
    color: black;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}
.recipes p{
    color: black;
    margin-bottom: 10px;
    text-align: center;
}
.home_recipes{
    margin: -16px 0 0 -16px;
    width: calc(100% + 16px);
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.recipe__item {
    position: relative;
    margin: 40px 0 0 16px;
    width: calc(20% - 16px);
    display: block;
    cursor: pointer;
    background-color: var(--color-background-primary);
    border-radius: 11px;
    overflow: hidden;
    color: var(--color-white);
    text-decoration: none;
}
.recipe__preview {
    position: relative;
    padding-bottom: 125%;
}
.recipe__preview:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(180deg,var(--color-background-primary-o0) 65%,var(--color-background-primary) 100%);
}
.recipe__preview img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}
.recipe__title {
    padding: 8px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.recipe__price {
    margin-bottom: 8px;
    font-size: 18px;
    text-align: center;
}
.recipe__overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background-color: rgba(0,0,0,0);
    border: 1px solid var(--color-background-primary);
    transition: all .3s ease;
}
.recipe__overlay1 {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background-color: rgba(0,0,0,50%);
    border: 1px solid var(--color-background-primary);
    transition: all .3s ease;
}
.recipe__overlay1:hover{
    opacity: 1;
}
.recipe__overlay1:hover{
    border: 1px solid var(--color-gray);
}
.recipe__overlay:hover > *{
    opacity: 1;
}
.recipe__overlay:hover{
    border: 1px solid var(--color-gray);
}
.recipe__goods {
    position: absolute;
    left: 0;
    top: 0;
    padding: 4px 9px;
    opacity: 0;
    font-size: 14px;
    background-color: var(--color-primary-o60);
    border-bottom-right-radius: 11px;
    transition: opacity .3s ease;
}
.recipe__btn {
    padding: 6px 16px 4px;
    opacity: 0;
    background-color: var(--color-primary);
    font-size: 18px;
    color: var(--color-black);
    border-radius: 11px;
    transition: opacity .3s ease,background-color .3s ease;
}
.recipe__btn:hover{
    opacity: 1;
    background-color: white;
}
.recipe_back{
    margin-bottom: 40px;
    transition: .3s ease-in-out;
    width: min-content;
    padding: 5px;
}
.recipe_back:hover{
    background-color: #e6e6e6;
    border-radius: 5px;
}
.recipe_back a{
    text-decoration: none;
    color: black;
    display: flex;
    height: 30px;
}
.recipe_back h3{
    font-weight: 400;
    font-size: 24px;
    margin-left: 10px;
    width: max-content;
}
.recipe_back a svg{
    height: 30px;
}

/* About */
.about_me {
    color: black;
    background-color: whitesmoke;
    padding-bottom: 100px;
    padding-top: 150px;
}
.about_me h1{
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}
.about_me h5{
    margin-top: 0;
    font-size: 20px;
    color: var(--color-gray);
    text-align: center;
}
.about_text{
    width: 60%;
    margin-right: 150px;
    margin-left: 20px;
}
.about_images{
    width: 40%;
    margin-left: 150px;
}
.about_images img{
    border-radius: 20px;
    width: 450px;
}
.about_container{
    display: flex;
}
.about_youtube, .about_instagram{
    display: flex;
    padding: 10px 0 10px 0;
    margin-top: 0;
}
.about_socials i{
    font-size: 28px;
    margin-top: 2px;
    margin-right: 8px;
}
.about_socials h2{
    margin-bottom: 10px;
}
.about_info p{
    margin-top: 30px;
}


/* Recipes page */



.header2{
    transition: all ease 0.5s;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.content1 {
    position: relative;
    width: 50%;
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    left: -100px;
}
.food_container{
    padding: 10px 0px 10px 0px ;
    width: 550px;
    background-color: gray;
    text-align: center;
    margin-top: 250px;
    border-radius: 30px;
}
.gallery {
    margin-top: 50px;
    position: relative;
}  
.gallery img{
    width: 450px; 
    height: 450px; 
    object-fit: cover; 
    /* object-position: 90% 30%; */
    border-radius: 2px;
}
.recipe_name h1{
    font-size: 35px;
    margin-top: 0;
    margin-bottom: 5px;
}
.recipe_name p {
font-size: 20px;
color: gray;
}
.recipe_prep{
background: linear-gradient(var(--color-background-primary-o15), transparent);
border-radius: 5px;
margin-top: 50px;
padding: 20px;
}
.recipe_prep::before{
content: "Recipe";
border: 1.25px dashed gray;
font-family: Roboto,Helvetica,sans-serif;
font-weight: 700;
font-size: .875rem;
line-height: 1.1428;
display: flex;
align-items: center;
text-align: center;
letter-spacing: .0625rem;
text-transform: uppercase;
color: #222;
position: absolute;
padding: 10px 19px;
margin-top: -38px;
}
.recipe_name_prep{
font-size: 35px;
margin: 10px 0 0 15px;
}
.recipe_desciprion_prep{
margin: 10px 0 0 10px;
}
.recipe_desciprion_prep h4{
font-size: 17px;
text-transform: uppercase;
}
.recipe_desciprion_prep p, .note_prep{
font-size: 18px;
}
.prep_time{
margin-top: 10px;
}
.prep_servings{
margin-top: 10px;
}
.prep_time h4{
color: rgb(78, 78, 78);
}
.prep_servings{
display: flex;
margin-bottom: 20px;
}
.servings{
margin-right: 40px;
}
.recipe_przepis{
padding: 25px;
}
.recipe_przepis h1{
font-size: 30px;
font-weight: 400;
margin-top: 20px;
}
.ingredients, .preparing{
    margin-top: 20px;
}
.ingredients ul, .preparing ul {
list-style: none;
padding-left: 20px;
}

.ingredients ul li::before, .preparing ul li::before {
content: "\2022";
color: gray;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.recipe_przepis{
font-size: 18px;
font-weight: 100;
margin-bottom: 120px;
}


/* Media style */
@media screen and (max-width:1324px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        margin-right: 50px;
    }
    .logo{
        margin-left: 100px;
    }
    header{
        background-color: var(--color-navbar);
        height: 65px;
    }
    .nav-links1{
        position: absolute;
        right: 0;
        margin-top: -5px;
        height: 100vh;
        top: 70px;
        background-color: var(--color-navbar);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links1 li {
        opacity: 0;
        padding: 25px;
    }
    .top_links{
        margin-left: auto;
        margin-right: 30px;
    }
    .mobile_lines{
        display: block;
    }
    .nav_active{
    transform: translateX(0%);
    }
    .container_introduction{
        width: 100%;
        margin-right: 10px;
        margin-top: 160px;
    }
    .introduction{
        margin-left: 50px;
    }
    .introduction_image{
        margin-right: 50px;
        margin-left: 10px;
        text-align: right;
    }
    .contact_container{
        display: inline;
        width: 100%;
    }
    .contact_text{
        text-align: center;
    }
    .contact__form, .contact_text{
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .contact_info i{
        margin-left: auto;
    }
    .contact_info div{
        margin-right: auto;
    }
    .contact_text p{
        padding-left: 10px;
        padding-right: 10px;
    }
    .about_text{
        margin-right: 50px;
    }
    .about_images{
        margin-left: 50px;
        margin-top: auto;
        margin-bottom: auto;
    }
    .about_images img{
        width: 100%;
    }
    .recipes{
        margin-left: 50px;
        margin-right: 50px;
    }
    .content1{
        position: static;
        left: 0;
        width: 90%;
    }
    .gallery img{
        width: 350px;
        height: 350px;
    }
}
@media screen and (max-width:1024px){
    .recipe__item{
        width: calc(50% - 16px);
    }
}
@media screen and (max-width:1124px){
    .header::after{
        background-size: 220%;
    }
}
@media screen and (max-width:950px){
    .recipes{
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media screen and (max-width:850px){
    .scroll-bottom-btn{
        display: none;
    }
    .container_introduction{
        display: inline-block;
    }
    .introduction{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 50px;
        width: 90%;
        margin-top: 100px;
    }
    .container_introduction{
        width: 100%;
        margin-right: 10px;
        margin-top: 10px;
    }
    .introduction h1{
        font-size: 30px;
    }
    .introduction h4{
        font-size: 20px;
    }
    .introduction p{
        font-size: 14px;
    }
    .introduction_image{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .introduction_image img{
        width: 241px;
    }
    .about_container{
        display: inline;
    }
    .about_text{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 90%;
    }
    .about_socials i{
        margin-left: auto;
    }
    .about_socials .data{
        margin-right: auto;
        text-align: left;
    }
    .about_images{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }
    .recipe_preview img{
        width: 100%;
    }
    .recipe_name{
        font-size: 16px;
    }
    .footer_rights{
        margin-left: 50px;
    }
    .footer_madeby {
        margin-right: 50px;
    }
}
@media screen and (max-width:405px){
    .gallery img{
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width:850px) and (min-height:500px) and (max-height:700px){
    .introduction{
        margin-top: 70px;
    }
    .introduction p{
        margin-bottom: 10px;
    }
}

@media screen and (max-width:850px) and (min-height:700px) and (max-height:870px){
    .introduction{
        margin-top: 70px;
    }
}
@media screen and (max-width:850px) and (max-height:1000px){
    .introduction{
        margin-top: 70px;
    }
    .introduction p{
        margin-bottom: 5px;
    }
    
}
@media screen and (max-width:850px) and (min-height:1000px) and (max-height:1400px){
    .introduction{
        margin-top: 150px;
    }
    .scroll-bottom-btn{
        top: 50px;
    }
}

@media screen and (max-width:650px){
    .logo{
        font-size: 25px;
        margin-left: 50px;
    }
    .about_images{
        width: 80%;
    }
}
@media screen and (max-width:580px){
    .introduction_image img{
        width: 80%;
    }
    .footer_madeby, .footer_rights{
        font-size: 12px;
        padding: 15px;
    }
    .footer_rights{
        margin-left: 0px;
    }
    .footer_madeby {
        margin-right: 0px;
    }
}
@media screen and (max-width:470px){
    .logo{
        font-size: 20px;
        margin-left: 35px;
    }
    .nav-links1 li {
        padding: 15px;
        font-size: 13px;
    }
    .introduction_image img{
        width: 100%;
    }
}
@media screen and (max-width:420px){
    .contact_group input, .contact_group textarea{
        width: 300px;
    }
    .contact_group{
        width: 300px;
    }
}
@media screen and (max-width:300px) and (max-height: 700px){
    .introduction{
        margin-top: 50px;
    }
}
.current[data-content]{
    display: block;
}
.content_news{
    position: relative;
    color: black;
    margin-top: 200px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.content_news hr{
    opacity: 0.3;
}
.content_news h1{
    text-transform: uppercase;
    font-size: 30px;
}
.content_news h1, .date{
    font-weight: 400;
}
.news_header hr{
    margin: 15px 0 15px 0;
}
.news_container{
    margin-bottom: 100px;
}
.news_container p{
    color: black;
    margin-bottom: 10px;
}
.button_news a{
    padding: 7px 15px 7px 15px;
    text-decoration: none;
    color: black;
    border-radius: 6px;
    margin-top: 30px;
    float: right;
    font-size: 13px;
    transition: all ease .3s;
    outline: 1px var(--color-navbar) solid;
}
.button_news a:hover{
    background-color: var(--color-gray);
    outline: 1px var(--color-gray-o40) solid;
    color: white;
}
.news_change_page{
    position: relative;
    text-align: center;
    font-size: 17px;
    margin-bottom: 150px;
}
.news_change_page a{
    text-decoration: none;
    color: rgb(71, 71, 71);
}
.pagination a {
    margin-left: 20px;
}
.pagination .pagging_first{
    margin-left: auto;
}
.pagging_last{
    margin-right: auto;
}

.pagination li{
    list-style: none;
    padding: 15px;
}
.pagination a{
    text-decoration: none;
    color: gray;
    font-size: 16px;
}
.pagination li{
    margin-top: 15px;
    transition: all .15s ease-in;
    border-radius: 8px;
    cursor: pointer;
}
.pagination li:hover{
    background-color: #e0e9ff;
}
.pagination {
    margin-bottom: 150px;
}
.selected{
    background-color: var(--blue-light-12);
    border-radius: 8px;
    margin-right: 10%;
}
.selected i, .selected{
    color: var(--blue-100);
}
.change_page_off{
    color: rgb(197, 197, 197);
}
.news_content{
    display: flex;
}
.news_text{
    padding-left:25px;
    width: 70%;
}
.news_image{
    width: 30%;
}
.news_image img{
    width: 100%;
    border-radius: 8px;
}
@media screen and (max-width:1400px){
    .content_news{
        width: 85%;
    }
}
@media screen and (max-width:750px){
    .news_content{
        display: block;
    }
    .news_text, .news_image{
        width:auto;
        padding: 15px 0 0 0;
    }
    .news_image img{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width:800px){
    .content_news{
        width: 80%;
    }
    .introduction_image img {
        height: 300px;
    }
}


.recipesElement{
    margin-top: 100px;
    padding-bottom: 30px;
    border-radius: 18px;
    transition: all .5s ease-in;
    margin-left: auto;
    margin-right: auto;
}
.recipesElement h3{
    color: black;
    text-align: center;
    font-size: 34px;
    font-weight: 500;
    clear: both;
    overflow: hidden;
    white-space: nowrap;
}
.recipe__item{
    transition: all .5s ease-in;
}

.goBack_recipe{
    transition: all .15s ease-out;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-background-primary-o49);
    margin-top: 40px;
    cursor: pointer;
}
.goBack_recipe:hover{
    background: var(--color-background-primary-o15);
}
.home_recipes_dodatek{
    flex-wrap: unset;
}
.disable_recipes1{
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    margin-top: 0;
    padding-bottom: 0;
}

.disable_recipes{
    width: 0;
}

/* Fade in left */
.fadeInDown{
    -webkit-animation: fadeInDown 1.2s both; /* Safari 4+ */
    -moz-animation: fadeInDown 1.2s both; /* Fx 5+ */
    -o-animation: fadeInDown 1.2s both; /* Opera 12+ */
    animation: fadeInDown 1.2s both; /* IE 10+, Fx 29+ */
  } 
  
  /* Safari 4+ */
  @-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
  }
  
  /* Fx 5+ */
  @-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
  }
  
  /* Opera 12+ */
  @-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
  }
  
  /* IE 10+, Fx 29+ */
  @keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  
  /* Fade in top */
  .fadeInTop {
    -webkit-animation: fadeInTop 1.2s both; /* Safari 4+ */
    -moz-animation: fadeInTop 1.2s both; /* Fx 5+ */
    -o-animation: fadeInTop 1.2s both; /* Opera 12+ */
    animation: fadeInTop 1.2s both; /* IE 10+, Fx 29+ */
  } 
  
  @-webkit-keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
  }
  
  @-moz-keyframes fadeInTop {
    0% {
        opacity: 0;
        -moz-transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
  }
  
  @-o-keyframes fadeInTop {
    0% {
        opacity: 0;
        -o-transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
  }
  
  @keyframes fadeInTop{
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
.fade-bottom{
    transform: translateY(70px);
    opacity: 0;
    transition: opacity 1s, transform 0.5s;
}

/* New recipe bliner */
.text-danger-glow {
    color: #da2121;
    text-shadow: 0 0 10px #f00, 0 0 20px #f00, 0 0 30px #f00, 0 0 40px #f00, 0 0 50px #f00, 0 0 60px #f00, 0 0 70px #f00;
}
.new__recipe span{
    color: white;
    margin-left: 5px;
}

.blink {
    animation: blinker 1.5s cubic-bezier(.5, 0, 1, 1) infinite alternate;  
}
.new__recipe{
    position: absolute;
    z-index: 10000;
    margin: 10px;
}
@keyframes blinker {  
    from { opacity: 1; }
    to { opacity: 0; }
}


/* button for recipes */
.button_container{
    position: relative;
    display: flex;
    margin-top: 30px;
}
.btn__recipes button {
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #d69723;
    transition: .3s ease-in-out;
    color: rgb(51, 51, 51);
    font-weight: 500;
}
.btn__recipes button:hover{
    background-color: #ffb52a;
}
.btn__recipes .active_button{
    background-color: rgb(250, 191, 103);
}
.news_text img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width:550px){
    .news_text img {
        width: 100%;
    }
}