/* 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;
}
main
{
    border-bottom: 1px solid black;
}


section
{
    width: 100%;
    min-height: 80vh;
    border: 1px solid  black;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section .animate
{
    transition: 1s;
}

.zespol .animate
{
    transform: translateX(200%);
}

.zespol.show-animate .animate
{
    transform: translateX(0);
}

.pojazd .animate
{
    transform: translateX(-200%);
}

.pojazd.show-animate .animate
{
    transform: translateX(0);
}

.klient .animate
{
    transform: translateX(200%);
}

.klient.show-animate .animate
{
    transform: translateX(0);
}

.zespol
{
    background-image:linear-gradient(to right, rgb(8, 8, 8),  rgb(29, 29, 29));
}

.zespol-title
{
    width: 60%;
    min-height: 80vh;
    background: url(O_nas_taxi.jpg);
    border-image: fill 0 linear-gradient(to left, rgba(0, 0, 0, 0.651), #1a19198e);
    background-size:cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.zespol-title p
{
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 10px;
    color: white;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

.zespol-info
{
    width: 40%;
    padding: 0 5% 0 5%;
    min-height: 80vh;
    background: linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20));
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 500;
}

.zespol-info-last
{
    font-size: 25px;
    font-weight: 700;
}

.zespol-info p, .klient-info p, .pojazd-info p
{
    margin: 2vh 0 2vh 0;
}

.zespol-info p:last-child
{
    margin-bottom: 5vh;
    letter-spacing: 2px;
}


.pojazd
{
    background-image:linear-gradient(to right, green, 25%, yellow);    
    flex-direction: row-reverse;
}

.pojazd-title
{
    width: 60%;
    min-height: 80vh;
    background: url(O_autach_taxi.jpg);
    border-image: fill 0 linear-gradient(to left, rgba(0, 0, 0, 0.651), #1a19198e);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.pojazd-title p
{
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 10px;
    color: white;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

.pojazd-info
{
    width: 40%;
    padding: 0 5% 0 5%;
    min-height: 80vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    font-weight: 500;
}

.pojazd-info-last
{
    font-size: 25px;
    font-weight: 700;
}

.pojazd-info p:last-child
{
    margin-bottom: 5vh;
    letter-spacing: 2px;
}

.klient
{
    background-image:linear-gradient(to right, rgb(8, 8, 8),  rgb(29, 29, 29));
}

.klient-title
{
    width: 60%;
    min-height: 80vh;
    background: url(Uslugi.jpg);
    border-image: fill 0 linear-gradient(to left, rgba(0, 0, 0, 0.514), #1a19198e);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
}

.klient-title p
{
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 10px;
    color: white;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

.klient-info
{
    width: 40%;
    padding: 0 5% 0 5%;
    min-height: 80vh;
    background: linear-gradient(300deg, rgb(9, 187, 89), rgb(211, 211, 20));
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 500;
}

.klient-info-last
{
    font-size: 25px;
    font-weight: 700;
}

.klient-info p:last-child
{
    margin-bottom: 5vh;
    letter-spacing: 2px;
}

.klient-info ul
{
    list-style: none;

}

.klient-info  li
{
    margin: 10px 0;
}

.inside
{

    margin-left: 30px;
    list-style: none;
}


 /* 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)
{
    .zespol-info, .pojazd-info, .klient-info
    {
        font-size: 16px;
    }

    .zespol-info-last, .pojazd-info-last, .klient-info-last
    {
        font-size: 20px;
    }

    .zespol-title p, .klient-title p, .pojazd-title p
    {
        font-size: 30px;
    }

}

@media(max-width: 900px) 
{
    .hideOnMobile
    {
        display: none;
    }    

    .menu-button
    {
        display: block;
    }

    nav a:hover
{
    color: black;
    background-color:yellow;
    transition: .3s all ;
}

section, .pojazd
{
    flex-direction: column;
}

.zespol-title, .klient-title, .pojazd-title
{
    width: 100%;
    min-height: 40vh;
    padding-bottom: 45vh;
}

.zespol-info, .klient-info, .pojazd-info
{
    width: 100%;
    min-height: 60vh;
}

.klient-info li
{
    margin: 1.5vh;
}

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%;
        
    }  
    .footer_2 div
{
    margin: 2vh 0 2vh 0;
}

.klient-info p, .pojazd-info p, .zespol-info p
{
    margin: 2.5vh 0;
}

.klient-title, .pojazd-title, .zespol-title
{
    min-height: 30vh;
}

.footer_3
{
    flex-direction: column-reverse;
}

.footer_3 a
{
    font-size: 18px;
}

.footer_3 div
{
    margin: 2vh 0 1vh 0;
}

}