* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgb(194, 192, 192) 95%);
}


.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

/* NAWIGACJA */

nav {
    position: sticky;
    top: 0;
    height: 60px;
    line-height: 60px;
    background-color: rgb(194, 192, 192);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.nav-desktop {
    display: block;
} 

.nav-desktop li {
    list-style: none;
    display: inline-block;
}

.nav-desktop li a {
    text-transform: uppercase;
    padding: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color .5;
}

.nav-desktop li a:hover {
    color: #cc0066;
}

/* HEADER */

.header-img {
    position: relative;
    height: 350px;
    background-image: url('../img/fokus.png');
    background-repeat: no-repeat;
    background-position: center;
}

/* MAIN */

main h2 {
    font-size: 28px;
    margin: 20px;
    text-align: center;
    text-transform: uppercase;
}

.ul {
    position: relative;
}

.line {
    position: absolute;
    left: calc(50% - 60px);
    bottom: -5px;
    width: 120px;
    height: 3px;
    background-color: #0099cc;
}

section {
    margin: 80px 40px;
}

#ryobi {
    background-image: url(/img/ryobi_small.jpg);
    height: 300px;
    width: auto;
    background-repeat: no-repeat;
    background-position: center;
}

#about-us p {
    font-size: 22px;
    margin: 30px;
    text-align: center;
}

#motto {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact {
    text-align: center;
}

.contact h3 {
    margin: 20px 0 5px;
    text-transform: uppercase;
}

.contact i {
    font-size: 20px;
    margin-right: 10px;
    line-height: 160%;
}

.contact div {
    display: inline-block;
    padding: 0 40px;
}

#map {
    text-align: center;
}


/* FOOTER */

footer {
    height: 80px;
    background-color: rgb(194, 192, 192);
    line-height: 80px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid rgb(73, 73, 73);
}

.copy-link {
    text-decoration: none;
    color: black;
}

.podkreslenie {
    position: relative;
}

.linia {
    position: absolute;
    left: calc(50% - 60px);
    bottom: -10px;
    width: 120px;
    height: 8px;
    background-color: rgb(0, 140, 255);
}

@media (min-width: 400px) {
    .header-text p {
        font-size: 18px;
    }

    .header-text h1 {
        margin-bottom: 10px;
        font-size: 36px;
    }

    .product-text {
        font-size: 30px;
    }
}