/* font-family: 'Gruppo', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif; 
font-family: 'Italianno', cursive; */
:root{
    --light: #fff;
    --dark: #000;
    --gray: #7c7c7c;

    --block-gray: #8f8f8f;
    --icterine: #f7fe72ff;
    --steel-blue: #3581b8ff;
    --light-blue: #b5d6d6ff;
    --ice-blue: #9cf6f6ff;
    --non-photo-blue: #92dce5ff;
    --atomic-tangerine: #f98948ff;
    --fluorescent-cyan: #1feaeaff;

}
html {
    scroll-behavior: smooth;
} 
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2%;
}
a {
    color: var(--dark);
    text-decoration: none;
}
a:hover {
    transition: 400ms;
}
h1, h2, h3 {
    line-height: 1.25;
}
/* - - - -  HEADER - - - -  */
header {
    background-color: var(--ice-blue);
    font-size: 15px;
}
header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
header ul {
    list-style: none;
}
header ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0;
}
header ul a {
	padding:0px 30px;
    color: var(--dark);
    text-decoration: none;
}
header ul a:hover {
    color: var(--gray);
}
/* - - - - NAV - - - - */
nav .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nav-link[aria-current="page"] {
    color: var(--fluorescent-cyan);
}
nav img {
    width: 130px;
    margin: 0px;
    padding: 0px;
}
nav {
    background-color: var(--light);
    position: sticky;
    top: 0;
    padding: 12px;
    z-index: 1;
}
nav ul {
    list-style: none;
}
nav ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0;
}
nav ul a {
    line-height:32px;
	padding:10px 15px;
    color: var(--dark);
    text-decoration: none;
}
nav ul a:hover {
    color: var(--fluorescent-cyan);
}
/* - - - - MENU MOBILE - - - - */
.hamburger {
    width: 45px;
    display: none;
    cursor: pointer;
}
.line {
    display: block;
    height: 5px;
    background-color: #000000;
    margin: 5px 0;
    border-radius: 30px;
}
.hamburger.is-active .line:nth-child(2){
    opacity: 0;
}
.hamburger.is-active .line:nth-child(1){
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}  
.hamburger.is-active .line:nth-child(3){
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}
.menu-mobile { 
    display: none; 
    position: fixed;
    top: 75px;
    right: 0;
    background-color: var(--gray);
    width: 100%;
    max-width: 350px;
    padding-top: 70px;
    height: 370px;
    font-size: 20px;
    line-height: 50px;
    z-index: 1;
}
.menu-mobile ul {
    list-style: none;
}
/* - - - - FOOTER - - - - */
footer {
    padding: 5px;
    background-color: var(--gray);
    margin-top: 100px;
}
.top-footer img {
    width: 300px;
    margin: -100px -70px;
}
.top-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin: 20px;
}
.dane {
    display: flex;
}
.dane p {
    margin: 40px 60px;
}
footer a:hover {
    color: var(--fluorescent-cyan);
}
.copyrights {
    text-align: center;
}
footer .icon-facebook-squared, footer .icon-instagram {
    font-size: 40px;
}
/* - - - - GO TO TOP - - - - */
.go-to-top {
    background-color: #00000069;
    background-image: url(../img/chevron-up-solid.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;

    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 15px;

    position: fixed;
    right: 10px;
    bottom: 5px;
}
/* - - - - POP-UP - - - - */
#cookies {
    width: 600px;
    height: 400px;
    margin: 100px 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
    position: fixed;
    bottom: 0;
    font-size: 25px;
    background-color: #777777f3;
    color: #fff;
    z-index: 1;
}
#cookies button {
    border: 1px solid #000;
    padding: 7px;
    border-radius: 5px;
    cursor: pointer;
}
/* - - - - MEDIA QUERY - - - - */
@media (max-width: 768px) {
    .container {
        padding: 3px;
        align-items: center;
    }
    iframe {
        width: 100%;
        height: 100%;
    }
    h2 {
        font-size: 18px;
    }
    .hamburger {
        display: block;
    }
    nav .container {
        justify-content: space-between;
    }
    nav ul {
        display: none;
    }
    nav img {
        width: 90px;
    }
    header {
        display: none;
    }
    footer {
        font-size: 13px;
    }
    footer .icon-facebook-squared, footer .icon-instagram {
        width: 25px;
    }
    .top-footer img {
        display: none;
    }
    .top-footer {
        margin: -20px 90px 20px 70px;
    }
    .dane {
        display: block;
    }
    .dane p {
        margin: 20px 20px;
    }
    .go-to-top {
        display: none;
    }
    .copyrights {
        text-align: start;
    }
    #cookies {
        width: 200px;
        margin: 190px 70px;
        font-size: 20px;
    }
}