.anim-left {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    transition: -webkit-clip-path .5s;
    transition: clip-path .5s;
    transition: clip-path .5s, -webkit-clip-path .5s;
    transition-timing-function: ease-in-out
}

.anim-left-s {
    transition: -webkit-clip-path 1s;
    transition: clip-path 1s;
    transition: clip-path 1s, -webkit-clip-path 1s;
    transition-timing-function: ease-in-out;
    -webkit-clip-path: inset(0 0);
    clip-path: inset(0 0)
}

.opacity0 {
    opacity: 0;
    transition: opacity .1s
}

.opacity1 {
    opacity: 1;
    transition: opacity .5s
}

.delay05 {
    transition-delay: .5s !important
}

.delay1 {
    transition-delay: 1s !important
}

.delay15 {
    transition-delay: 1.5s !important
}

.delay2 {
    transition-delay: 2s !important
}

.opacity-d {
    opacity: 0
}

.opacity-d.loaded {
    opacity: 1;
    transition: 1s !important;
    transition-delay: 0s !important
}

.opacity-d-gal {
    opacity: 0
}

.opacity-d-gal.loaded {
    opacity: 1;
    transition: 2s !important;
    transition-delay: .5s !important
}

.fadeInUp {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
    transition: .7s
}

.fadeInUp-a {
    opacity: 1;
    transform: translateZ(0)
}

.anim-clip {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    transition: -webkit-clip-path .7s;
    transition: clip-path .7s;
    transition: clip-path .7s, -webkit-clip-path .7s;
    transition-timing-function: ease-in-out
}

.anim-clip-a {
    -webkit-clip-path: inset(0);
    clip-path: inset(0)
}

.b-fadeInRight {
    opacity: .9;
    transform: translate3d(100%, 0, 0);
    transition: 1.3s
}

.b-fadeInRight-a {
    opacity: 1;
    transform: translateZ(0);
    transition-delay: 2s
}

.b-fadeInLeft {
    opacity: .9;
    transform: translate3d(-100%, -100%, 0);
    transition: 1.3s
}

.b-fadeInLeft-a {
    opacity: 1;
    transform: translateZ(0);
    transition-delay: 1.8s
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth
}

body {
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    color: #000
}

.dis-scroll {
    overflow-x: hidden !important;
    overflow-y: hidden !important
}

img {
    width: 100%
}

a {
    outline: none
}

a,
a:hover {
    color: #000
}

a:hover {
    text-decoration: none
}

a:active,
a:focus,
a:visited {
    outline: none;
    color: #000
}

section {
    margin-left: auto;
    margin-right: auto
}

.page,
.post {
    margin: 0;
    padding: 0
}

.post-content p {
    font-size: 1.6rem
}

.post-content h1 {
    font-size: 5rem
}

.post-content h2 {
    font-size: 4rem
}

.post-content h3 {
    font-size: 3rem
}

.post-content h4 {
    font-size: 2rem
}

#breadcrumbs {
    display: none
}

.site-header {
    position: absolute;
    top: 30px;
    width: 100%;
    margin: 0;
    background: rgba(0, 0, 0, .3);
    height: 70px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%
}

.site-header .logo img {
    width: 220px;
    height: auto
}

@media(min-width:992px) {
    .site-header .logo img {
        width: 235px
    }
}

.site-header nav {
    position: fixed;
    background: #151F2B;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -100%;
    transition: right .3s ease-in-out
}

@media(min-width:992px) {
    .site-header nav {
        margin-top: 15px;
        height: auto;
        width: auto;
        background: none;
        position: static;
        display: flex
    }
}

.site-header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0;
    margin: 150px 0 0
}

@media(min-width:992px) {
    .site-header nav ul {
        margin-top: 0;
        flex-direction: row
    }
}

.site-header nav ul li {
    display: inline-block;
    text-align: center
}

@media(min-width:992px) {
    .site-header nav ul li {
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: left
    }
}

.site-header nav ul li a {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 2.8rem;
    text-align: center
}

@media(min-width:992px) {
    .site-header nav ul li a {
        text-align: left;
        font-size: 1.6rem
    }
}

.site-header nav .social {
    color: #fff;
    font-size: 4.2rem;
    position: absolute;
    bottom: 5%;
    margin: 0;
    padding: 0;
    left: 50%;
    transform: translate(-50%);
    display: flex
}

@media(min-width:992px) {
    .site-header nav .social {
        position: static;
        transform: none;
        margin-left: 120px;
        margin-top: -5px;
        font-size: 2.4rem;
        display: flex
    }
}

.site-header nav .social .mail {
    display: block;
    color: #fff
}

.site-header nav .social .insta {
    color: #fff;
    display: block;
    margin-left: 40px
}

@media(min-width:992px) {
    .site-header nav .social .insta {
        margin-left: 20px
    }
}

.site-header .hamburger {
    margin: 0;
    padding: 10px;
    border: 0;
    background-color: transparent;
    cursor: pointer
}

@media(min-width:1200px) {
    .site-header .hamburger {
        display: none
    }
}

.site-header .hamburger:focus>.hamburger__container {
    box-shadow: 0 0 2px 2px #51a7e8
}

.site-header .hamburger__container {
    display: flex;
    align-items: center;
    position: relative;
    width: 35px;
    height: 30px
}

.site-header .hamburger__bars {
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #fff;
    transition: transform .22s ease-in-out
}

.site-header .hamburger__bars:after,
.site-header .hamburger__bars:before {
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #fff;
    content: ""
}

.site-header .hamburger__bars:before {
    top: -12px;
    transition: top .1s ease-in .25s, transform .22s ease-in-out
}

.site-header .hamburger__bars:after {
    bottom: -12px;
    transition: bottom .1s ease-in .25s, transform .22s ease-in-out
}

.site-header .hamburger--active .hamburger__bars {
    transform: rotate(225deg);
    transition: transform .22s ease-in-out .12s
}

.site-header .hamburger--active .hamburger__bars:before {
    top: 0;
    transition: top .1s ease-out
}

.site-header .hamburger--active .hamburger__bars:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom .1s ease-out, transform .22s ease-in-out .12s
}

.site-header .hamburger:focus,
.site-header .hamburger__container:focus {
    outline: none
}

.site-header .header_contact_btn {
    cursor: pointer
}

.site-header .nav-active {
    right: 0;
    position: fixed;
    overflow: scroll;
    height: 100%
}

.site-header .nav-display {
    display: none
}

#page-banner {
    height: 200px;
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover
}

@media(min-width:992px) {
    #page-banner {
        height: 400px
    }
}

#page-banner .wrapper {
    margin-top: 110px
}

@media(min-width:992px) {
    #page-banner .wrapper {
        margin-top: 220px
    }
}

#page-banner .wrapper h1 {
    font-family: Poppins, sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .075em
}

@media(min-width:992px) {
    #page-banner .wrapper h1 {
        font-size: 6rem
    }
}

.banner-bg {
    background-size: 100% 100% !important
}

#article-banner {
    height: 330px;
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 50%
}

@media(min-width:992px) {
    #article-banner {
        height: 400px
    }
}

#article-banner .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35)
}

#article-banner .wrapper {
    margin-top: 220px
}

#article-banner .wrapper h1 {
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .075em
}

@media(min-width:992px) {
    #article-banner .wrapper h1 {
        font-size: 4.6rem
    }
}

.head-title {
    position: relative;
    height: 100px
}

.head-title h2 {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 5.2rem;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: block;
    font-weight: 400
}

.head-title h2:before {
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translate(-50%, -50%);
    content: "";
    width: calc(100% + 25px);
    height: 30px;
    background: #ccc;
    z-index: -1
}

#breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
    font-size: 1.4rem
}

#breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

#breadcrumbs li a {
    color: #777
}

#breadcrumbs li strong {
    font-weight: 400 !important
}

#breadcrumbs .separator {
    font-weight: 400;
    color: #777;
    padding: 0;
    margin: 0 4px
}

#section-page-main {
    padding-top: 40px;
    padding-bottom: 60px
}

@media(min-width:992px) {
    #section-page-main {
        padding-top: 50px;
        padding-bottom: 80px
    }
}

#section-page-main .text {
    font-size: 2rem;
    line-height: 130%
}

#section-plany {
    background: #151F2B;
    padding-top: 30px;
    padding-bottom: 30px
}

@media(min-width:992px) {
    #section-plany {
        padding-top: 90px;
        padding-bottom: 90px
    }
}

#section-plany .plan {
    padding: 12px;
    height: 490px;
    background: #016684;
    margin: 10px 0 20px
}

@media(min-width:992px) {
    #section-plany .plan {
        margin-top: 50px;
        margin-bottom: 60px
    }
}

#section-plany .plan .wrapper {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    position: relative
}

#section-plany .plan .wrapper h2 {
    color: #fff;
    font-family: Poppins, sans-serif;
    text-align: center;
    margin: 0;
    padding: 25px 0 0;
    font-weight: 600;
    font-size: 2.6rem
}

#section-plany .plan .wrapper h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0;
    padding: 5px 0 20px
}

#section-plany .plan .wrapper .hr {
    width: 90%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 1px
}

#section-plany .plan .wrapper .cechy {
    font-size: 18px;
    margin: 0;
    padding: 30px 25px 25px;
    list-style-type: none
}

#section-plany .plan .wrapper .cechy li {
    margin: 0;
    padding: 0 0 7px;
    text-indent: -10px
}

#section-plany .plan .wrapper .cechy li:before {
    content: "- ";
    text-indent: -10px
}

#section-plany .plan .wrapper .cena {
    position: absolute;
    bottom: 6%;
    text-align: center;
    width: 100%;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 20px
}

#section-plany .plan .wrapper .cena span {
    font-weight: 400
}

#section-plany .punkty ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    counter-reset: punkty-counter
}

#section-plany .punkty ul li {
    background: #016684;
    padding: 0;
    color: #fff;
    font-size: 2rem;
    counter-increment: punkty-counter;
    display: block;
    margin: 0 0 17px;
    height: 90px
}

#section-plany .punkty ul li .container,
#section-plany .punkty ul li .row,
#section-plany .punkty ul li .text {
    height: 100%
}

#section-plany .punkty ul li .col-12 {
    position: relative
}

#section-plany .punkty ul li .col-12:before {
    font-family: Poppins, sans-serif;
    font-size: 5.4rem;
    font-weight: 600;
    content: counters(punkty-counter, "");
    margin-top: 7px;
    display: block
}

#section-plany .punkty ul li .text {
    position: absolute;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex
}

#section-plany .punkty ul li .text p {
    display: inline-block;
    align-self: flex-end;
    padding: 0 5px 0 0;
    line-height: 17px;
    margin: 0 0 5px 50px;
    font-size: 1.8rem
}

@media(min-width:992px) {
    #section-plany .punkty ul li .text p {
        margin-bottom: 2px;
        margin-left: 60px;
        font-size: 2rem;
        line-height: 27px
    }
}

#o-mnie {
    padding-top: 50px;
    padding-bottom: 30px
}

@media(min-width:992px) {
    #o-mnie {
        padding-top: 90px;
        padding-bottom: 90px
    }
}

#o-mnie .wrapper {
    display: flex;
    flex-direction: column
}

@media(min-width:992px) {
    #o-mnie .wrapper {
        flex-direction: row
    }
}

#o-mnie .wrapper .text {
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

@media(max-width:991px) {
    #o-mnie .wrapper .text {
        background: none !important
    }
}

@media(min-width:992px) {
    #o-mnie .wrapper .text {
        position: relative;
        width: 57%
    }
}

#o-mnie .wrapper .text .text-wrapper {
    padding: 0;
    font-size: 1.6rem
}

@media(min-width:992px) {
    #o-mnie .wrapper .text .text-wrapper {
        padding: 0 40px;
        font-size: 1.8rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }
}

#o-mnie .wrapper .text .text-wrapper h2 {
    font-size: 3rem;
    font-family: Poppins, sans-serif;
    padding-bottom: 5px;
    font-weight: 400
}

@media(min-width:992px) {
    #o-mnie .wrapper .text .text-wrapper h2 {
        padding-bottom: 18px
    }
}

#o-mnie .wrapper .img {
    width: 100%;
    margin-top: 30px
}

@media(min-width:992px) {
    #o-mnie .wrapper .img {
        margin: 0;
        min-height: 635px;
        width: 43%
    }
}

#o-mnie2 {
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 1.7rem
}

@media(min-width:992px) {
    #o-mnie2 {
        padding-bottom: 40px
    }
}

#o-mnie2 h2 {
    font-size: 3rem;
    font-family: Poppins, sans-serif;
    padding-bottom: 5px;
    font-weight: 400
}

@media(min-width:992px) {
    #o-mnie2 h2 {
        padding-bottom: 18px
    }
}

#cert {
    padding-top: 60px;
    padding-bottom: 70px
}

@media(min-width:992px) {
    #cert {
        padding-top: 60px;
        padding-bottom: 100px
    }
}

#cert .cert {
    margin-top: 50px
}

#cert .cert img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: auto
}

@media(min-width:768px) {
    #cert .cert img {
        height: 250px;
        transition: object-position 2s;
        transition: object-position 2s, -o-object-position 2s
    }

    #cert .cert img:hover {
        -o-object-position: bottom;
        object-position: bottom
    }
}

#blog {
    padding-top: 20px;
    padding-bottom: 20px
}

#blog .article-wrapper {
    margin-bottom: 90px
}

@media(min-width:992px) {
    #blog .article-wrapper {
        margin-bottom: 0;
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media(min-width:992px) {
    #blog {
        padding-top: 40px;
        padding-bottom: 30px
    }

    #blog .articles .article-wrapper:nth-child(2n) {
        margin-top: 35px
    }

    #blog .articles .article-wrapper:nth-child(odd) {
        margin-top: -40px
    }
}

#blog article {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
    position: relative;
    margin-bottom: 30px;
    height: 110%
}

@media(min-width:992px) {
    #blog article {
        height: auto;
        margin-bottom: 0
    }
}

#blog article .thumbnail img {
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover
}

#blog article .wrapper {
    padding: 20px 25px
}

@media(min-width:992px) {
    #blog article .wrapper {
        height: 280px
    }
}

#blog article .wrapper h2 {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    margin: 0;
    padding: 0
}

@media(min-width:992px) {
    #blog article .wrapper h2 {
        font-size: 2.6rem;
        padding-top: 10px
    }
}

#blog article .wrapper .entry-content {
    margin: 0;
    padding: 5px 0 0;
    font-size: 1.5rem
}

@media(min-width:992px) {
    #blog article .wrapper .entry-content {
        padding-top: 15px
    }
}

#blog article .entry-meta {
    width: 100%
}

@media(min-width:992px) {
    #blog article .entry-meta {
        position: absolute;
        height: 60px;
        bottom: 0
    }
}

#blog article .entry-meta .hr2 {
    width: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 1px
}

#blog article .entry-meta .meta-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px 0
}

#blog article .entry-meta .meta-wrapper .more-btn {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    font-weight: 600
}

#blog article .entry-meta .meta-wrapper .more-btn:before {
    position: absolute;
    left: 50%;
    bottom: -5%;
    transform: translate(-50%);
    content: "";
    width: calc(100% + 10px);
    height: 12px;
    background: #ccc;
    z-index: -1;
    transition: height .4s
}

#blog article .entry-meta .meta-wrapper .more-btn:hover:before {
    height: 27px
}

#s_article {
    padding-top: 40px;
    padding-bottom: 40px
}

@media(min-width:992px) {
    #s_article {
        padding-top: 50px;
        padding-bottom: 80px
    }
}

#s_article p {
    font-size: 1.7rem
}

#s_article h2 {
    font-size: 2.4rem
}

#s_article h2,
#s_article h3 {
    font-family: Poppins, sans-serif
}

#s_article h3 {
    font-size: 2.2rem
}

#s_article h4 {
    font-size: 1.8rem
}

#s_article h4,
#s_article h5 {
    font-family: Poppins, sans-serif
}

#s_article h5 {
    font-size: 1.6rem
}

#s_article img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block
}

@media(min-width:992px) {
    #s_article img {
        width: 60%
    }
}

#s_article ol li,
#s_article ul li {
    overflow-wrap: break-word
}

#s_article a {
    font-weight: 600;
    text-decoration: underline;
    color: #016684;
    overflow-wrap: break-word
}

#s_article a:hover {
    text-decoration: none;
    font-weight: 600;
    text-decoration: underline;
    color: #016684
}

#s_article a:active,
#s_article a:focus,
#s_article a:visited {
    outline: none;
    font-weight: 600;
    text-decoration: underline;
    color: #016684
}

#przepisy {
    padding-top: 40px;
    padding-bottom: 40px
}

@media(min-width:992px) {
    #przepisy {
        padding-top: 60px;
        padding-bottom: 30px
    }
}

#przepisy .przepis-wrapper {
    display: flex;
    height: 300px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-bottom: 30px
}

#przepisy .przepis-wrapper .thumbnail {
    width: 40%
}

#przepisy .przepis-wrapper .thumbnail img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover
}

#przepisy .przepis-wrapper .text {
    width: 60%;
    padding: 25px;
    position: relative
}

#przepisy .przepis-wrapper .text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: Poppins, sans-serif
}

@media(min-width:992px) {
    #przepisy .przepis-wrapper .text h2 {
        font-size: 2.6rem
    }
}

#przepisy .przepis-wrapper .text p {
    margin: 0;
    padding: 10px 0 0;
    line-height: 140%;
    font-size: 1.4rem
}

#przepisy .przepis-wrapper .text .info {
    position: absolute;
    bottom: 25px;
    font-size: 1.4rem
}

#przepisy .przepis-wrapper .text .info .trudnosc {
    margin-top: 5px
}

#przepisy .przepis-wrapper .text .info span {
    font-weight: 600
}

#przepisy .przepis-wrapper .text .more-btn {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 1.8rem;
    position: absolute;
    display: inline-block;
    font-weight: 600;
    bottom: 20px;
    right: 20px;
    z-index: 0
}

#przepisy .przepis-wrapper .text .more-btn:before {
    position: absolute;
    left: 50%;
    bottom: -5%;
    transform: translate(-50%);
    content: "";
    width: calc(100% + 10px);
    height: 12px;
    background: #ccc;
    z-index: -1;
    transition: height .4s
}

#przepisy .przepis-wrapper .text .more-btn:hover:before {
    height: 27px
}

#s_przepis {
    padding-top: 40px
}

@media(min-width:992px) {
    #s_przepis {
        padding-top: 50px
    }
}

#s_przepis p {
    font-size: 1.8rem
}

#s_przepis .info {
    margin-top: 30px
}

#s_przepis .info span {
    font-weight: 600
}

#s_przepis .info .trudnosc {
    margin-top: 10px
}

#s_przepis h1 {
    font-size: 3.2rem;
    margin-bottom: 20px
}

@media(min-width:992px) {
    #s_przepis h1 {
        font-size: 4.5rem
    }
}

#warianty {
    padding-top: 30px
}

#warianty h2 {
    font-size: 2.8rem;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    padding-bottom: 20px
}

@media(min-width:992px) {
    #warianty h2 {
        font-size: 4.2rem
    }
}

#warianty .more-btn {
    padding: 0;
    position: relative;
    font-family: Poppins, sans-serif;
    font-size: 1.7rem;
    display: inline-block;
    font-weight: 500;
    z-index: 0;
    margin: 0 0 15px 10px
}

@media(min-width:992px) {
    #warianty .more-btn {
        font-size: 2.4rem
    }
}

#warianty .more-btn:before {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%);
    content: "";
    width: calc(100% + 10px);
    height: 9px;
    background: #ccc;
    z-index: -1;
    transition: height .4s
}

@media(min-width:992px) {
    #warianty .more-btn:before {
        bottom: 4%;
        height: 14px
    }
}

#warianty .more-btn:hover {
    cursor: pointer
}

#warianty .more-btn:hover:before {
    height: 34px
}

.s_przepis_full {
    padding-bottom: 40px
}

@media(min-width:992px) {
    .s_przepis_full {
        padding-bottom: 80px
    }
}

.s_przepis_full h2 {
    font-size: 4.2rem;
    padding-bottom: 60px
}

.s_przepis_full h2,
.s_przepis_full h3 {
    font-family: Poppins, sans-serif;
    font-weight: 400
}

.s_przepis_full h3 {
    font-size: 2.4rem
}

.s_przepis_full ul li:nth-child(2n) {
    background: #f8f8f8
}

.s_przepis_full ul {
    list-style: none;
    width: 100%;
    background: #eee;
    padding: 0;
    margin: 20px 0 80px
}

.s_przepis_full ul li {
    margin: 0;
    padding: 0 15px;
    height: 54px;
    position: relative
}

.s_przepis_full ul li .text {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    font-size: 1.7rem;
    line-height: 120%
}

.s_przepis_full .przepis-text-zdjecie {
    padding-top: 25px
}

.s_przepis_full .przepis-text-zdjecie .text {
    font-size: 1.7rem
}

.s_przepis_full .przepis-zdjecie {
    padding-top: 70px
}

.s_przepis_full .przepis-zdjecie img {
    -o-object-fit: cover;
    object-fit: cover
}

.s_przepis_full .przepis-text {
    padding-top: 40px
}

.s_przepis_full .przepis-text .text {
    font-size: 1.7rem
}

#section-front {
    overflow: hidden;
    position: relative;
    height: 82vh;
    background: #fff;
    margin-bottom: 100px;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

@media(max-width:991px) {
    #section-front {
        background: #151F2B !important;
    }
}

@media(min-width:992px) {
    #section-front {
        height: 103vh
    }
}

#section-front img {
    position: absolute;
    bottom: 1%;
    left: 50%;
    height: 55vh;
    transform: translate(-50%);
    width: auto
}

@media(min-width:992px) {
    #section-front img {
        left: unset;
        transform: none;
        bottom: 1%;
        right: 8%;
        height: 80vh
    }
}

#section-front .text {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 20%;
    color: #fff;
    text-align: center
}

@media(min-width:992px) {
    #section-front .text {
        text-align: left;
        transform: none;
        left: 12%;
        top: 30%
    }
}

#section-front .text h2 {
    font-size: 2.4rem;
    font-weight: 400;
    padding: 0;
    margin: 0
}

@media(min-width:992px) {
    #section-front .text h2 {
        font-size: 2.9rem
    }
}

#section-front .text h1 {
    font-size: 4rem;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    letter-spacing: 5px;
    padding: 0;
    margin: 10px 0 0
}

@media(min-width:992px) {
    #section-front .text h1 {
        margin-top: 20px;
        font-size: 6rem
    }
}

#section-front .text p {
    font-size: 1.8rem;
    font-family: Poppins, sans-serif;
    padding: 0;
    margin: 15px 0 0
}

@media(min-width:992px) {
    #section-front .text p {
        margin-top: 25px;
        font-size: 2rem
    }
}

#section-front .social {
    display: none;
    color: #fff;
    position: absolute;
    bottom: 5%;
    left: 13%;
    font-family: Poppins, sans-serif;
    font-size: 1.6rem
}

@media(min-width:992px) {
    #section-front .social {
        display: flex
    }
}

#section-front .social .mail {
    position: relative;
    display: block;
    color: #fff
}

#section-front .social .mail i {
    display: block;
    font-size: 2.4rem;
    position: absolute;
    left: -5px
}

#section-front .social .mail .s-text {
    margin-left: 30px
}

#section-front .social .insta {
    display: block;
    position: relative;
    margin-left: 150px;
    color: #fff
}

#section-front .social .insta i {
    display: block;
    font-size: 2.4rem;
    position: absolute;
    left: -5px
}

#section-front .social .insta .s-text {
    margin-left: 30px
}

#front-przepisy {
    margin-top: 30px;
    padding-bottom: 30px
}

@media(min-width:992px) {
    #front-przepisy {
        margin-top: 80px;
        padding-bottom: 120px
    }
}

#front-przepisy .przepis-wrapper {
    display: flex;
    height: 420px;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

#front-przepisy .przepis-wrapper .thumbnail {
    display: none
}

@media(min-width:992px) {
    #front-przepisy .przepis-wrapper .thumbnail {
        display: block;
        width: 50%
    }
}

#front-przepisy .przepis-wrapper .thumbnail img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
    object-fit: cover
}

@media(min-width:992px) {
    #front-przepisy .przepis-wrapper .text {
        width: 50%;
        padding: 25px 35px
    }
}

#front-przepisy .przepis-wrapper .text h2 {
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 3.4rem;
    display: inline-block;
    font-weight: 400;
    position: relative;
    z-index: 0;
    margin: 60px 0 0 7px
}

#front-przepisy .przepis-wrapper .text h2:before {
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translate(-50%, -50%);
    content: "";
    width: calc(100% + 15px);
    height: 18px;
    background: #ccc;
    z-index: -1
}

#front-przepisy .przepis-wrapper .text p {
    line-height: 140%;
    font-size: 1.7rem;
    margin: 20px 0 0;
    padding: 10px 50px 0 0
}

#front-przepisy .przepis-wrapper .text .more-btn {
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.2rem;
    display: inline-block;
    font-weight: 600;
    z-index: 0;
    position: relative;
    margin: 40px 0 0 7px
}

#front-przepisy .przepis-wrapper .text .more-btn:before {
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translate(-50%);
    content: "";
    width: calc(100% + 13px);
    height: 13px;
    background: #ccc;
    z-index: -1;
    transition: height .4s
}

#front-przepisy .przepis-wrapper .text .more-btn:hover:before {
    height: 32px
}


.site-footer .copyright {
    font-family: Poppins, sans-serif;
    color: #fff;
    font-size: 1.2rem;
    padding-top: 17px
}

.form {
    background: #f8f8f8
}

form input,
form textarea {
    color: #333
}

form input::-moz-placeholder,
form textarea::-moz-placeholder {
    color: #777
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    color: #777
}

form input::placeholder,
form textarea::placeholder {
    color: #777
}

form {
    font-size: 1.4rem
}

form,
form label {
    width: 100%
}

form .l50,
form .l50f {
    width: 45%;
    float: left
}

form .l50f {
    margin-right: 10%
}

form input,
form textarea {
    width: 100%;
    background: none;
    margin-top: 10px;
    padding: 7px;
    border: none;
    border-bottom: 1px solid #ccc
}

form input[type=checkbox] {
    width: 30px;
    height: 15px;
    border: 4px solid #016684;
    box-shadow: none
}

form .wpcf7-list-item-label {
    font-size: 1.2rem
}

form .wpcf7-submit {
    background: #016684;
    color: #fff;
    padding: 8px 45px;
    position: relative;
    border-radius: 5px;
    border: none
}

.k-title h2 {
    padding: 0;
    font-family: Poppins, sans-serif;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: block;
    font-weight: 400;
    font-size: 3rem;
    margin: 0 0 20px
}

@media(min-width:992px) {
    .k-title h2 {
        font-size: 5.2rem;
        margin-bottom: 20px
    }
}

.k-title h2:before {
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translate(-50%, -50%);
    content: "";
    width: calc(100% + 25px);
    height: 17px;
    background: #ccc;
    z-index: -1
}

@media(min-width:992px) {
    .k-title h2:before {
        bottom: -30%;
        height: 30px
    }
}

#kontakt {
    padding-top: 40px;
    padding-bottom: 40px
}

@media(min-width:992px) {
    #kontakt {
        padding-top: 80px;
        padding-bottom: 120px
    }
}

#kontakt .kontakt-info {
    text-align: center;
    padding-top: 70px
}

#kontakt .kontakt-info h2 {
    font-size: 4.2rem;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    padding-bottom: 30px
}

#kontakt .kontakt-info p {
    font-size: 1.8rem;
    margin: 0;
    padding: 0 0 5px
}

#top-new {
    padding-top: 20px;
    position: relative;
    background: #fff;
    margin-top: -15px;
    padding-bottom: 0;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px
}

@media(min-width:992px) {
    #top-new {
        margin-bottom: 60px;
        padding-top: 110px
    }
}

#top-new .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 100%, .85)
}

@media(min-width:992px) {
    #top-new .overlay {
        background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff 70%)
    }
}

#top-new .img {
    position: relative
}

#top-new .img img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

#top-new .img .cytat {
    position: absolute;
    width: 350px;
    left: -50px;
    bottom: 20px;
    background: hsla(0, 0%, 100%, .95);
    font-size: 18px;
    padding: 40px 35px 30px 50px;
    font-style: italic
}

#top-new .img .cytat i {
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 50px;
    color: #016684;
}

#top-new .img .cytat span {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 7px;
    font-size: 12px;
    font-style: normal;
    color: #111
}

#top-new .text-wrap {
    position: relative
}

#top-new .text-wrap .text {
    margin-bottom: 120px
}

@media(min-width:992px) {
    #top-new .text-wrap .text {
        margin-bottom: 30px
    }
}

#top-new .text-wrap .text h3 {
    font-size: 2.3rem;
    color: #016684;
    margin-bottom: 10px
}

@media(min-width:992px) {
    #top-new .text-wrap .text h3 {
        font-size: 3.5rem;
        margin-bottom: 15px
    }
}

#top-new .text-wrap .text p {
    font-size: 17px;
    color: #016684;
    text-indent: 20px;
    margin-bottom: 0
}

#top-new .text-wrap .buttons {
    position: absolute;
    bottom: 3px;
    text-align: center
}

@media(min-width:992px) {
    #top-new .text-wrap .buttons {
        display: block;
        bottom: 35px;
        left: 20px;
        margin-left: -10px;
        display: flex;
        justify-content: center;
        align-items: center
    }
}

#top-new .text-wrap .buttons .more-btn {
    background: #016684;;
    padding: 10px 20px;
    display: inline-block;
    color: #fff;
    opacity: .9;
    transition: opacity .3s;
    text-align: center;
    width: 100%
}

#top-new .text-wrap .buttons .more-btn:hover {
    opacity: 1
}

@media(min-width:992px) {
    #top-new .text-wrap .buttons .more-btn {
        width: 210px
    }
}

#top-new .text-wrap .buttons .more-btn i {
    margin-left: -5px;
    margin-right: 5px;
    font-size: 19px
}

#top-new .text-wrap .buttons .more-btn2 {
    margin-top: 15px;
    border: 1px solid #016684;;
    padding: 10px 20px;
    display: inline-block;
    color: #333;
    transition: opacity .3s;
    text-align: center;
    width: 100%
}

@media(min-width:992px) {
    #top-new .text-wrap .buttons .more-btn2 {
        width: 210px;
        margin-top: 0;
        margin-left: 15px
    }
}

#top-new .text-wrap .buttons .more-btn2:hover {
    opacity: 1
}

#top-new .cytat2 {
    position: relative;
    background: #fff;
    font-size: 18px;
    padding: 50px 35px 30px 50px;
    margin-top: 30px;
    color: #fff;
    font-style: italic
}

@media(min-width:992px) {
    #top-new .cytat2 {
        display: none
    }
}

#top-new .cytat2 i {
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 50px;
    color: #016684
}

#top-new .cytat2 span {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 12px;
    font-style: normal;
    color: #fff
}

.na-blogu1 {
    position: relative;
    height: 50px
}

.na-blogu1 h2 {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    font-size: 3.3rem;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: block;
    font-weight: 400
}

.na-blogu1 h2:before {
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translate(-50%, -50%);
    content: "";
    width: calc(100% + 25px);
    height: 18px;
    background: #ccc;
    z-index: -1
}

@media(min-width:1500px) {
    .container-big {
        max-width: 1400px
    }
}


.site-footer {
    height: 50px;
    background: #151F2B;
}

#banner-front {
    padding-top: 200px;

}

@media (max-width: 992px) {
    #banner-front {
        padding-top: 0;
    }
}


/* 
#banner-front .circle {
    position: relative;
    background: #f8f8f8;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

#banner-front .circle:before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
    background: #016684;
    border-radius: 50%;
    z-index: -1;
    clip-path: circle(50% at 58% 55%);
}

#banner-front .circle .img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;

}

#banner-front .circle .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;

} */

#banner-front .img {
    position: relative;
    width: 100%;
    height: 100%;

}

/* blur background */
#banner-front .img:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #016684;
    filter: blur(150px);
    z-index: -1;
    border-radius: 100%;
}

#banner-front .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;

}

#banner-front .text {
    width: 85%;
    margin-top: 100px;
}

#banner-front .text h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 4.2rem;
    color: #15192b;
    margin-bottom: 20px;
}

#banner-front .text p {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #15192b;
    margin-bottom: 20px;
}

#banner-front .text .buttons {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 100px;
}


#banner-front .text .buttons .m-btn {
    background: #016684;
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    font-size: 1.8rem;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 60px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-right: 30px;

}

#banner-front .text .buttons .m-btn:hover {
    background: #15192b;
    color: #fff;
}

#banner-front .text .buttons .m-btn2 {
    background: none;
    border: 1px solid #E5E9EE;
    color: #15192b;
}

@media (max-width: 992px) {
    #banner-front .text .buttons {
        display: block;
        margin-top:0;
        margin-bottom:100px;
        padding-bottom: 50px;
    }
    #banner-front .text .buttons .m-btn {
        margin-bottom:10px;
    }
}

#banner-front .social {
    position: absolute;
    bottom: 50px;
    left: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}

#banner-front .social a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    font-size: 1.6rem;
    transition: all 0.3s ease-in-out;
    color: #15192b;
}


#banner-front .social a:hover {
    color: #016684;
}

#banner-front .social a i {
    margin-right: 10px;
    margin-top: -1px;
    font-size: 1.8rem;
}

@media (max-width: 992px) {
    #banner-front .social {
        display:block;
        justify-content: left;
        align-items: center;
    }
    #banner-front .social a {
       justify-content: left;
       margin-bottom: 5px;
    }
    
}


#page-banner {
    background-color: #151F2B !important;
    background-repeat: repeat !important;
    background-position: center center !important;
    background-size: cover;
}