/* Menu nawigacyjne -- Ctrl C + Ctrl V*/
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    min-height: 100vh;
    font-family: Roboto Slab, sans-serif ,arial;
}

a
{
    text-decoration: none;
}

.nawigacja
{
    background-image: linear-gradient(to right, rgb(55, 153, 55) 30%, rgb(25, 201, 25));
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    border-bottom: solid 1px black;
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    z-index: 1;
}

nav
{
    margin:0 auto;
    max-width: 1250px;
    font-weight: 600;
}

nav ul
{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li
{
    height: 65px;
}

nav a
{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    transition: 0.2s;
}

.logo_nazw
{
    margin-left: 18px;
    font-size: large;
    font-weight: 800;
}

nav a:hover
{
    color:yellow;
    font-size: large; 
    transition: 0.2s;
}


nav :first-child
{
    margin-right: auto;
}

.sidebar
{
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 179, 0, 0.473);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
}

.sidebar li
{
    width: 100%;
}

.sidebar a
{
    width: 100%;
}

.menu-button
{
    display: none;
}

/* Section 1 -- let's goo */

section
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
    border-bottom: 1px solid black;
}


.o_nas
{
    background-image:linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20)) ;
}

.o_nas div
{
    width: 80%;
    height: auto;
    margin: 0 10px 0 10px;
}

.o_nas_l h1
{
    font-size: 70px;
}

.o_nas_l p
{
    font-size: 20px;
}

.o_nas_p img
{
    opacity: 0.7;
    max-width: 80%;
    height: auto;
    border-radius:250px 120px 150px 200px;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    transition: 1s;
}

.o_nas_p img:hover
{
    border-radius: 30px;
    opacity: 1;
    -moz-filter: blur(0);
    -o-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
    transition: 1s;
}

section .animate
{
    transition: 1s;
}

.o_nas .animate
{
transform: translateX(-200%);
}

.o_nas.show-animate .animate
{
transform: translateX(0);
}

/*Section 2 -- Mam dość*/

.kontakt
{
    background: rgb(29, 29, 29);
}

.kontakt .animate
{
    transform:translateX(100%) ;
    filter:grayscale(50%);
    
}

.kontakt.show-animate .kontakt_l
{
    background-image: url(kontakt_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: saturation;
    
}

.kontakt.show-animate .animate
{
    transform: translateX(0);
    filter: grayscale(0);
}

.kontakt div
{
    width: 80%;
    min-height: 100vh;
    margin: 0 10px 0 0;
}

.kontakt_l
{
    background-image: linear-gradient(black, black), url(kontakt_bg.jpg );
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: saturation;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 220px 220px 0;
}

.button
{
    max-width: 60%;
    width: 100%;
    margin:20px 0 20px 0;
    padding: 15px 0;
    cursor: pointer;
    border-radius: 30px 5px 30px 5px;
    background: linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20));
    transition: 1s;
    border: 1px solid black;
}

.kontakt_l a
{
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.button:hover
{
    max-width: 70%;
    border-radius: 5px 30px 5px 30px;
    box-shadow: 0px 5px 15px 0px yellowgreen;
    transition: 1s;
}

.kontakt_p h1
{
    font-size: 70px;
}

.kontakt_p
{
    font-size: 25px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.colored_font
{
    background: linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section 3 -- Pora na większe wyzwanie */

.uslugi
{
    background-image: radial-gradient(yellow, green);
    min-height: 85vh;
    flex-wrap: wrap;
}

.uslugi.show-animate .card
{
    transform: translateX(0);
    transition-delay: calc(.2s * var(--i));
}

.uslugi .card
{
    margin: 10vh 5vh 10vh 5vh;
}

.uslugi span
{
    align-items: center;
    justify-content: center;
}

.card
{
    max-width: 320px;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    border: 8px solid rgb(48, 48, 48);
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 15px 0;
    transform: translateX(-400%);
}

.card-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-click
{
    display: none;
}

.card-body
{
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background: rgba(24, 185, 24, 0.178);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: #fff;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
}

.card:hover .card-body
{
    right: 0;
}

.card-title
{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
}

.card-sub-title
{
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
}

.card-info
{
    font-size: 18px;
    line-height: 22px;
    margin: 20px 0;
    font-weight: 400;
}

.card-btn
{
    width: 120px;
    background: yellow;
    padding: 10px 20px;
    border-radius: 20px 5px ;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .6s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-btn:hover
{
    width: 140px;
    box-shadow: 0px 5px 15px 0px yellowgreen;
    transition: .3s;
}

.card-btn span
{
    color: #1f3d47;
    font-size: 13px;
    font-weight: 600;
}

/* Section 4 -- Dobry Boże.. */

.biznes
{
    justify-content: center;
    background: rgb(29, 29, 29);
    flex-wrap: wrap;
}

.prc .prc-title, .wsp .wsp-title
{
    margin: 20px 0 0 0;
}

.prc .prc-info, .wsp .wsp-info
{
    font-size: 14px;
    line-height: 25px;
    margin: 15px 0 0 0;
    font-weight: 400;
}

.prc .prc-btn, .wsp .wsp-btn
{
    width: 280px;
    background: yellow;
    margin: 30px 0 0 0;
    padding: 10px 0px;
    border-radius: 20px 5px ;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .6s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.prc-btn span, .wsp-btn span
{
    font-size:18px;
    font-weight: 600;
    color: black;
}


.biznes img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(75%);
}


.biznes_l:hover img, .biznes_p:hover img
{
    filter: blur(0);
    transition: 1s all;
}

.biznes_l:hover .prc, .biznes_p:hover .wsp
{
    bottom:0;
}

.wsp, .prc
{
   width: 100%;
    height: 60%;
    bottom: -40%;
    position: absolute;
    background: rgba(238, 255, 0, 0.103);
    backdrop-filter: blur(5px);
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 1s;
}

.wsp .wsp-sub-info, .prc .prc-sub-info
{
    margin: 40px 0 0 0;
}

.wsp .wsp-btn:hover, .prc .prc-btn:hover
{
    width: 320px;
    box-shadow: 0px 5px 15px 0px yellowgreen;
    transition: .3s;
}

.biznes_p, .biznes_l
{
    max-width: 600px;
    width: 100%;
    margin: 5vh;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: 1s all;
    color: #fff;
}


.biznes_p:hover, .biznes_l:hover
{
    border-radius: 80px 80px 0 0;
    transition: 1s all;
}

/*footer*/

footer
{
    width: 100%;
    min-height: 40vh;
    background-image: linear-gradient(to right, rgb(55, 153, 55) 30%, rgb(25, 201, 25));
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.footer_2
{
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    flex-direction: row;
    padding: 2.5vh 0;
}


.footer_2 div
{
    max-width: 33%;
    width: 100%;
    margin: 2vh 0 2vh 0;
}
.footer_2-sr
{
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.footer_2 div a
{
    font-size: 30px;
    color: black;
    font-weight: 500;
}

.footer_2 div a:hover
{
    color: yellow;
    transition: .3s all;
}

.content
{
    max-width: 1400px;
    width: 100%;
    min-height: 50px;
    padding: 10px 0;
    overflow: hidden;

}

.footer_marquee 
{
    position: relative;
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
  
  .marquee 
  {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 10s linear infinite;
  }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

.footer_3 
{
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2.5vh 0;
}

.footer_3 div
{
    max-width: 50%;
}

.footer_3 a
{
    color: black;
}
.footer_3 a:hover
{
    color: yellow;
    transition: .3s;
}

@media(max-width:1200px)
{
    .button
{
    max-width: 55%;
    width: 100%;
    margin:20px 0 20px 0;
    max-height: 60px;
    height: 100%;
    display:block;
    cursor: pointer;
    border-radius: 30px 5px 30px 5px;
    background: linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20));
    transition: 1s;
    border: 1px solid black;
}

.kontakt_l a
{
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.button:hover
{
    max-width: 60%;
    border-radius: 5px 30px 5px 30px;
    box-shadow: 0px 5px 15px 0px yellowgreen;
    transition: 1s;
}
}

@media(max-width: 900px) 
{
    .hideOnMobile
    {
        display: none;
    }    

    .menu-button
    {
        display: block;
    }

    nav a:hover
{
    color: black;
    background-color:yellow;
    transition: .3s all ;
}


section
{
    flex-direction: column;
    justify-content:flex-start;
    align-items:center;
    text-align: center;
}


.o_nas div
{
    margin: 10vh  0;  
}


.o_nas_l h1
{
    font-size: 50px;
    
}

.o_nas_l p
{
    font-size: medium;
}

.o_nas_p img
{
    max-width: 100%;
    border-radius: 30px 30px 30px 30px;
    opacity: 1;
    -moz-filter: blur(0);
    -o-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
    transition: 1s;
}

.kontakt
{
    flex-direction: column-reverse;
    justify-content:auto;
}

.kontakt div
{
    margin: 0; 
    min-height: 20vh;
}

.kontakt .kontakt_p
{
    margin: 10vh 0 30vh 0;
}

.kontakt_p h1
{
    font-size: 50px;
}

.kontakt_p
{
    font-size: medium;
    justify-content: center;
    align-items:center;
    min-width: 60%;
    min-height: 50%;
}

.kontakt_l
{
    border-radius: 120px 120px 0 0;
    min-width: 100%;
}

    .card-click
{
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: rgba(24, 185, 24, 0.075);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: yellow;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
}

.card:hover .card-click
{
    bottom:-50%;
} 

.button
{
    max-width: 50%;
    width: 100%;
    margin:40px 0 20px 0;
    height: 75px;
    margin: 10px 0 10px 0;
}

.button span
{
    font-size: 18px;
}

.button:hover
{
    max-width: 55%;
}

.biznes_l, .biznes_p
{
    min-width: 380px;
    width: 100%;
    height: 400px;
    margin: 5vh 0;
}

.prc
{
    height: 70%;
    bottom: -50%;
}

.prc .prc-title
{
    font-size: 20px;
    margin: 2px 0 0 0;
}

.prc .prc-sub-info
{
    font-size: 20px;
}

.prc .prc-info
{
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

.prc .prc-btn
{
    width: 120px;
    background: yellow;
    margin: 15px 0 0 0;
    padding: 10px 0px;
    border-radius: 20px 5px ;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .6s;
}

.prc .prc-btn:hover
{
    width: 140px;
}

.prc-btn a
{
    font-size: 13px;
}


.wsp
{
    height: 65%;
    bottom: -45%;
    
}

.wsp .wsp-title
{
    font-size: 20px;
    margin: 2px 0 0 0;
}

.wsp .wsp-sub-info
{
    font-size: 20px;
}

.wsp .wsp-info
{
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

.wsp .wsp-btn
{
    width: 160px;
    background: yellow;
    margin: 15px 0 0 0;
    padding: 10px 0px;
    border-radius: 20px 5px ;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .6s;
}

.wsp .wsp-btn:hover
{
    width: 180px;
}

.prc-btn span, .wsp-btn span
{
    font-size: 16px;
}

footer
{
    min-height: auto;
}

.footer_2
{
    flex-direction: column;
}

.footer_2 div
{
    max-width: 70%;
    margin: 3vh 0 3vh 0;
    border: 0;
}

.footer_2 div a
{
    font-size: 25px;
    font-weight: 800;
    margin: 5vh 0
}

.footer_2 div h3
{
    font-size: 16px;
    font-weight: 500;
}


.footer_3
{
    margin: 2vh 2vh 3vh 2vh;
}

}


@media(max-width:400px)
{
    .sidebar
    {
        width: 100%;
        overflow: auto;
    }  
    
    .o_nas_l h1
    {
       font-size:40px;
    }

    .o_nas_l p
    {
        font-size: 18px;
    }
    
    div
    {
        margin: 0;
    }

    .kontakt_p h1
{
    font-size: 40px;
}

.kontakt_p p
{
    font-size: 18px;
}

.kontakt_l
{
    border-radius: 40px 40px 0 0;
}

    .button
    {
        padding: 20px 0;
        max-width: 200px;
        width: 80%;
    }

    .button:hover
    {
        max-width: 200px;
        width: 100%;
    }

    .button span
    {
        font-size:16px;
    }


    .uslugi .card 
    {
        margin: 5vh 0 5vh 0;
    }

    .card
    {
        max-width: 240px;
        height: 420px;
    }

    .card-body
{
    padding: 5px;   
}

    .card-title
{
    font-size: 25px;
    font-weight: 600;
}

.card-sub-title
{
    font-size:14px;
    font-weight: 300;
}

.card-info
{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.card-btn
{
    width: 120px;
    background: yellow;
    padding: 10px 10px;
    border-radius: 20px 5px ;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .6s;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.card-btn:hover
{
    width: 140px;
    box-shadow: 0px 5px 15px 0px yellowgreen;
    transition: .3s;
}

.card-btn a
{
    color: #1f3d47;
    font-weight: 500;
}

.biznes_l, .biznes_p
{
    min-width: 255px;
    width: 100%;
    height: 380px;
}

.prc, .wsp
{
    height: 75%;
    bottom: -55%;
}

.prc-btn span, .wsp-btn span
{
    font-size: 14px;
}

.prc .prc-title, .wsp .wsp-title
{
    font-size: 16px;
    margin: 2px 0 0 0;
    font-weight: 600;
}

.prc .prc-sub-info, .wsp .wsp-sub-info
{
    font-size: 14px;
}

.prc .prc-info, .wsp .wsp-info
{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.prc .prc-btn, .wsp .wsp-btn
{
    width: 140px;
    background: yellow;
    margin: 15px 0 0 0;
    padding: 10px 0px;
    border-radius: 20px 5px ;
}

.prc .prc-btn:hover, .wsp .wsp-btn:hover
{
    width: 160px;
}

.footer_2 div
{
    margin: 2vh 0;
}
 
.footer_2 div a
{
    font-size: 20px;
}

.footer_3
{
    flex-direction: column-reverse;
}

.footer_3 a
{
    font-size: 18px;
}

.footer_3 div
{
    margin: 2vh 0 1vh 0;
}

}

@media (max-width:283px)
{
    .wsp
    {
        height: 80%;
    }
}