/* 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 all;
}

.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, 128, 0, 0.336);
    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 */

main
{
    background-image:linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20)) ;
}

.kontakt
{
    min-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid black;
}

.kontakt-main
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 90vh;
}

.kontakt-title
{
    min-height: 5vh;
    margin-top: 10vh;
    max-width: 1400px;
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.kontakt-title p
{
    font-size: 38px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    letter-spacing: 5px;
    backdrop-filter: blur(5px);
    position: relative;
    width: max-content;
}

.kontakt-title p::after
{
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background-image: linear-gradient(to right, rgb(31, 31, 31), rgb(90, 90, 90));
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 1s all;
}

.kontakt-title p:hover::after
{
    width: 100%;
    transition: 1s;
}

.kontakt_1, .kontakt_2, .kontakt_3
{
    width: 390px;
    height: 390px;
    margin: 10vh 2%;
    padding: 10px;
    border: 1px solid black;
    border-radius: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: linear-gradient(rgb(73, 73, 73), rgb(24, 24, 24));
    -webkit-box-shadow: 0px 0px 47px -9px rgb(49, 49, 49) ;
    -moz-box-shadow: 0px 0px 47px -9px rgb(49, 49, 49);
    box-shadow: 0px 0px 47px -9px rgb(49, 49, 49);
    transition: 1s all;
    position: relative;

    ul,p
    {
        font-size: 15px;
        font-weight: 600;
        list-style:none;
        transition: 1s all;
    }
}

.kontakt_1:hover, .kontakt_2:hover, .kontakt_3:hover
{
    width: 420px;
    height: 420px;
    transition: 1s all;

    ul,p
    {
        font-size: 18px;
        transition: 1s all;
    }

}


.colored_font
{
    background: linear-gradient(250deg, rgb(9, 187, 89), rgb(211, 211, 20));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.after
{
    position: relative;
    width: max-content;
}

.after:hover::after
{
    width: 100%;
    transition: 0.5s all;
}

.after::after
{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-image: linear-gradient(to right, yellow, green);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s 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)
{
    .kontakt_1, .kontakt_2, .kontakt_3
{
    width: 340px;
    height: 340px;
    margin: 5vh 2%;
    padding: 10px;
    transition: 1s all;

    h1
    {
        font-size: 20px;
    }

    ul,p
    {
        font-size: 15px;
        font-weight: 600;
        list-style:none;
        transition: 1s all;
    }
}

.kontakt-title p
{
    font-size: 25px;
}

.kontakt-title p::after
{
    height: 3px;
}

.kontakt-title
{
    margin-top: 10vh;
    margin-bottom: 20px;
}

.kontakt_1:hover, .kontakt_2:hover, .kontakt_3:hover
{
    width: 370px;
    height: 370px;
    transition: 1s all;

    ul,p
    {
        font-size: 18px;
        transition: 1s all;
    }

}
}

@media(max-width: 900px) 
{
    .hideOnMobile
    {
        display: none;
    }    

    .menu-button
    {
        display: block;
    }

    nav a:hover
{
    color: black;
    background-color:yellow;
    transition: .3s all ;
}

.kontakt-title p
{
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
}

.kontakt-title p::after
{
    height:0;
    transition: 0;
}

.kontakt_1, .kontakt_2, .kontakt_3
{
    width: 290px;
    height: 290px;
    margin: 5vh 2%;
    transition: 1s all;

    ul,p
    {
        font-size: 14px;
        font-weight: 600;
        list-style:none;
        transition: 1s all;
    }
}

.kontakt_1:hover, .kontakt_2:hover, .kontakt_3:hover
{
    width: 290px;
    height: 290px;

    ul,p
    {
        font-size: 14px;
    }

}

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%;
        
    }  

    .kontakt_1:hover, .kontakt_2:hover, .kontakt_3:hover
{
    width: 290px;
    height: 290px;

    ul,p
    {
        font-size: 14px;
    }

}

    .footer_2 div
{
    margin: 2vh 0 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;
}

}