@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');








body {
  font-family: "Quicksand", sans-serif;
	
	font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	
  color: #535353;
	font-size:16px;
	line-height: 1.5;

  
	
	
}





.responsywny-obrazek {
    max-width: 60%; /* Maksymalna szerokość obrazka to szerokość kontenera */
    height: auto; /* Automatyczna wysokość, aby zachować proporcje obrazka */
    display: block; /* Ustawienie obrazka jako bloku, aby uniknąć białych przestrzeni */
    margin: 0 auto; /* Automatyczne wyśrodkowanie obrazka */
  }


.buttonstyle
{
background-color: #284697; 
	color: white; 
	border: none; 
	border-radius: 10px; 
	width: 250px;
	padding: 20px; 
	text-decoration: none; 
	text-align: center; 
	display: inline-block
	
	}


.foots {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  background-color: #101010;
  align-items: center;
	font-size: 14px;
	color:white;
}

.section-gap {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  background-color: #1d479c;
  align-items: center;
}

.section-gap-white {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  align-items: center;
}



.f2 {
  font-size: 36px;
  color: #ffffff; 
  font-weight: 600;
}




.navbar-menu {
  overflow: hidden;
  padding: 10px 20px;
  background-color: #ffffff;
		

}
.navbar-menu img {
  height: 40px;
  margin-right: 20px;
}
.navbar-menu a {
  float: right;
  display: block;
  color: #141414;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

}
.navbar-menu a:hover {
  color: #3d86b2;
}
.navbar-menu a.logo {
  float: left;
  margin-right: 20px;
}
.menu-icon {
  float: right;
  margin-right: 20px;
  cursor: pointer;
  color: #141414;
}
.menu-icon:hover {
  color: #3d86b2;
}
.gallery {
  display: grid;
  gap: 20px;

}
.gallery img {
  width: 100%;
  height: auto;
}
.image-title {
  text-align: center;
  color: #333;
  font-size: 22px;
  margin-top: 10px;

  font-weight: 700;
}


.logo {padding: 14px 20px;float:left}

/* WEB */
@media screen and (min-width: 600px) {
	
	
	
	
  .navbar-menu a {
    padding: 14px 20px;
  }

	.navbar-toggler{visibility: hidden}
	
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .kontent {

	  padding-left: 250px;
	  padding-right: 250px;
	 
	  
	  background-color: #ffffff;

  }
}


/* MOB */
@media screen and (max-width: 599px) {

  .kontent {
padding: 20px;
  }
	 .navbar {
                flex-direction: column;
                align-items: center;
            }

            .navbar-menu {
				width: 100%;
                display: none;
                position: absolute;
                top: 100px; /* Wysokość paska nawigacyjnego */
                left: 0;
            }

            .navbar-menu.active {
                display: flex;
				flex-direction: column-reverse;
            }

            .navbar-toggler {
                display: block;
                color: #000000;
                font-size: 24px;
                cursor: pointer;
                background: none;
                border: none;
                outline: none;
            }
	 
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
	font-size: 20px;
}

.scroll-to-top.show {
    opacity: 1;
}

.arrow-circle {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.arrow-circle i {
    color: #333;
}



/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #menu {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
	width: 100%;
}

.pagination-item {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-decoration: none;
    color: #000;
}

.pagination-item.active {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}



