@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
body {
    font-family: "Inter", sans-serif;
}

a, button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}
img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {

    width: 100%;
    /* height: 100%; */
    max-width: 1260px;
    margin: 0 auto;
}
.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}
.heading-xl {
    font-family: inherit;
    font-size: clamp(2.648rem, 6vw, 4.241rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}
.heading-lg {
    font-family: inherit;
    font-size: clamp(2.179rem, 5vw, 3.176rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}
.heading-md {
    font-family: inherit;
    font-size: clamp(1.794rem, 4vw, 2.379rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}
.heading-sm {
    font-family: inherit;
    font-size: clamp(1.476rem, 3vw, 1.782rem);
    font-weight: 600;
    line-height: 1.5;
}
.heading-xs {
    font-family: inherit;
    font-size: clamp(1.215rem, 2vw, 1.335rem);
    font-weight: 500;
    line-height: 1.5;
}
.paragraph {
    font-family: inherit;
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-wrap: balance;
}
.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
}
.btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}
.btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--color-black-200);
    box-shadow: var(--shadow-medium);
}
.btn-neutral {
    padding: 0.75rem 2rem;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
}
.header.on-scroll {
    background: white;
    box-shadow: var(--shadow-medium);
}
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    height: 4.25rem;
    margin: 0 auto;

}
.brand {
    font-family: inherit;
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: var(--color-white-100);
    text-transform: uppercase;
}
.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background-color: var(--color-black-300);
    background-color: #fff;
    /* z-index: -1; */
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
    padding-top: 100px;
}
.menu.is-active {
    top: 0;
    width: 100%;
    height: auto;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
}
.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white-100);
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.header__logo{
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__logo img{
    width: 52px;
    height: 52px;
}
.menu-block {
    display: inline-block;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    padding: 0.65rem 1.5rem;
    border-radius: 3rem;
    text-transform: capitalize;
    color: var(--color-white);
    color: white;
    /* background-color: var(--color-blue-600);
     */
     /* background-color: #000000; */

    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
}
.menu{
    /* z-index: -2; */
}
@media only screen and (min-width: 945px) {
    .menu {
        position: relative;
        top: 0;
        width: auto;
        height: auto;
        padding: 0rem;
        margin-left: auto;
        background: none;
        box-shadow: none;
        /* z-index: -2; */
        /* background-color: #000000; */
   }
    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
        margin: 0 auto;
   }
    .menu-link {
        text-transform: capitalize;
   
   }
   .header__logo{
    z-index: 213;
   }
   .is-active{
    z-index: -1;    
   }
    .menu-block {
        margin-left: 2rem;
        /* z-index: -1; */

   }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}
@media only screen and (min-width: 945px) {
    .burger {
        display: none;
        visibility: hidden;
   }
}
.container{
    padding: 0px 16px;
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: black;
    transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}
.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
    .banner-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
   }
}
@media only screen and (min-width: 64rem) {
    .banner-column {
        grid-template-columns: 1fr max-content;
        column-gap: 4rem;
        margin-top: 3rem;
   }
}
.banner-image {
    display: block;
    max-width: 18rem;
    height: auto;
    margin-top: 2rem;
    object-fit: cover;
    justify-self: center;
}
@media only screen and (min-width: 48rem) {
    .banner-image {
        order: 1;
        max-width: 20rem;
        height: auto;
   }
}
@media only screen and (min-width: 64rem) {
    .banner-image {
        max-width: 25rem;
        height: auto;
        margin-right: 5rem;
   }
}
.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.75rem;
}
.banner-links {
    position: absolute;
    top: 30%;
    right: 1.5rem;
    display: grid;
    justify-items: center;
    row-gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (min-width: 64rem) {
    .banner-links {
        opacity: 1;
        visibility: visible;
   }
}
.banner-links > * {
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--color-white-100);
}
.banner-links::before {
    position: absolute;
    content: "";
    top: -3rem;
    width: 4rem;
    height: 1.5px;
    transform: rotate(90deg);
    background: var(--color-white-100);
}
.banner-links::after {
    position: absolute;
    content: "";
    bottom: -3rem;
    width: 4rem;
    height: 2px;
    transform: rotate(90deg);
    background: var(--color-white-100);
}
.green{
    background-color: #059405;
}
.green-text{
    color: #059405;
}

.hero {
    width: 100%;
    height: 1000px;
}

.container__body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20PX;
}
.container__body h1{
    font-size: 50px;
    width: 500px;
}
.green-text {
}
.hero__btn {
    padding-top: 24px;
    display: flex;

}
.btn__contact {
    padding: 10px 28px;
    color: white;
    border-radius: 12px;
    gap: 20px;
    font-size: 16px;
    line-height: 20px;

    
}
.btn__contact2{
    padding: 8px 28px;
    color: rgb(0, 0, 0);
    border-radius: 12px;
    font-size: 16px;
    line-height: 20px;

    gap: 20px;
    background-color: #fff;
    border-radius: 100px; 
    border: 1px soldi rgba(0, 0, 0, 0.477);
}
.btn__contact2 div{
    display: flex;
    align-items: center;
    gap: 12px;
}
.container__body__text {
    width: 50%;
}
.header__maijn__text  h2{
    font-weight: 400;
    padding-top: 4px;
    color: #565656;
    padding-bottom: 40px;
    /* text-align: center; */
}
.header__uppertext h1{
    font-weight: 700;
}

.trust__1 {
    width: 100%;
    height: 200px;
    color: rgba(0, 0, 0, 0.21);
}
.container {
}
.trust__column p{
    color: rgba(0, 0, 0, 0.21);
}
.trust__1 .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trust__1 h1{
    font-size: 70px;
}

.zalety {
    width: 100%;
    /* height: 100%; */
    padding-bottom: 56px;
}

.zalety__body {
    width: 100%;

}
.zalety__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0px 0 27px 0;
}
.zalety__header h2{
    font-size: 36px;
    line-height: 42px;
    width: 239px;
}
.zalety__header p{
    font-size: 16px;
    line-height: 20px;
}
.zalety__info {
    width: 100%;
    display: flex;
    gap: 30px;
}
.zalety__image {
    width: 50%;
    height: 634px;
    background: url(./img/Rectangle\ 59.png) no-repeat;
    /* background: url(./img/Rectangle\ 59.png) no-repeat; */
}
.zalety__image2 {
    width: 49%;
    height: 634px;
    background: url(./img/extruder.png) no-repeat;
    /* background: url(./img/Rectangle\ 59.png) no-repeat; */
}
.zalety__text {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;

}
.zalet__text__header {
    width: 100%;
    height: auto;
    border-left: 4px solid #059405;
    padding: 20px 0 20px 20px;
}
.card__icons{
    display: flex;
    gap: 12px;
}
p{
    font-size: 16px;
    line-height: 20px;
    color: #122712;
}
.zalety__features {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
}
.azlety__row {
    width: 100%;
    /* height: 112px; */
    display: flex;
    align-items: center;
    padding: 20px;
    background: #a3eca530;
    border-radius: 10px;
}
.azlety__row img{
    padding-right: 24px;
}
.wiecej_btn{
    padding: 20px;
    display: flex;
    gap: 10px;
}
.video{
    width: 100%;
    padding: 56px 0;
}
.video__body {
    width: 100%;
}

.video__video {
    width: 100%;
    /* height: 604px; */
    /* background-color: rgba(0, 0, 0, 0.179); */
    border-radius: 17px;
}
.video article:hover{
    box-shadow: none;
}
.video__card-txt{
    padding-left: 24px;
}
.video__card-txt h2{
    padding-bottom: 4px;
}
.video__cards {
    padding: 32px 0 0 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.video__card {
    flex-grow: 1;
    width: 450px;
    height: 207px;
    display: flex;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    
}
.video__card img{
    height: 48px;
    width: 48px;
    gap: 20px;
}
.video main article{
    box-shadow: none;
}
.products {
    width: 100%;
    padding: 56px 0;

}

.products__body {
    width: 100%;
}

.products__cards {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}
.product__card {
    width: 333px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.product__card__image {
    width: 191px;
    margin: 0 auto;
    height: 191px;
    background: url(./img/ziarno.png);
}
.product__card:nth-child(2) .product__card__image{
    background: url(./img/nasionaslon.png);
}
.product__card:nth-child(3) .product__card__image{
    background: url(./img/jacz.png);

}
.product__card:nth-child(4) .product__card__image{
    background: url(./img/owies.png);

}
.product__card__text {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding: 16px;
}
.product__card--upper {
    width: 100%;
    align-items:baseline;
    display: flex;
    height: auto;   
    justify-content: space-between;
    padding-bottom: 8px;
}
.product__card--upper-name {
    font-size: 26px;
    line-height: 28px;
    font-weight: bold;
}
.card__buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 4px;
}

.contact {
    width: 100%;
    padding: 56px 0 116px 0;
}

.contact__body {
    width: 100%;
}

.contact__cards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact__card {
    display: flex;
    gap: 12px;
}
.contact__card img{
    width: 36px;
    height: 36px;
}
.contact__card-text {
}
.contact__card-text h3{
    font-size: 22px;
    line-height: 28px;
}


.footer {
    width: 100%;
    padding: 100px 0;
    border: 1px solid black;
}

.footer__body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__body a{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: black;
}
.footer__body a img{
    width: 52px;
    height: 52px;
}
.footer__links {
    display: flex;
    gap: 20px;

}
.list__item {
    gap: 20px;
}

.porownanie {
    width: 100%;
    padding: 56px 0;
}

.porownanie__body {
    width: 100%;

}

.poro__table {
    width: 100%;
    display: flex;
}
.poro__table img{
    width: 100%;
}
.contact__page {
    width: 100%;
    padding: 116px 0;
}

.contact__body {
    width: 100%;
}
.contact__header {
    width: 100%;
    text-align: center;
    padding: 116px 0 56px 0;
}
.contact__header{
    font-size: 46px;
}
.contact__lover__block {
    display: flex;
    width: 100%;
    /* flex-wrap: wrap; */
    gap: 40px;
}
.contact__image {
    width: 50%;
    height: 600px;
    background: url(./img/Rectangle\ 58.png) no-repeat;
    background-size: cover;
}
.contact__text {
    width: 50%;
    background-color: #ebf7eb7a;
    /* height: 600px; */
    height: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 12px;
}
.contact__text__card:nth-child(1){
    padding: 12px;
    border-radius: 12px;
    /* align-items: center; */
    background-color: rgba(0, 128, 0, 0.154);
}
.contact__text__card img{
    width: 32px;
    height: 32px;
}

.contact__text__card {
    display: flex;
    gap: 12px;
}
.contact__info__text{
    display: flex;
    gap: 4px
;
flex-direction: column;
}
.container__body__img{
    width: 45%;
}
.contact__info__text h3{
    font-size: 25px;
}
@media only screen and (max-width: 1460px) {
    .container__body__img{
        display: none;

    }
    .container__body__img{
        justify-content: end;
        align-items: end;
    }
    .container__body__text{
        width: 100%;
    }
}
@media only screen and (max-width: 1368px) {
    .zalety__image{
        display: none;
    }
    .zalety__image2{
        display: none;
    }
    .zalety__text{
        width: 100%;
    }
    .footer__links{
        flex-wrap: wrap;
    }
    .contact__text{
        width: 100%;
    }
}
@media only screen and (max-width: 645px) {
    .container__body h1 {
        font-size: 40px;
    }
}
