header {
  height: 170px;
  background-color: white;
  color: rgb(106, 103, 103);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header-content {
  width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .logo {
  width: 120px;
  height: 120px;
  margin-right: 10px;
  flex-shrink: 0;
}
header .header-content .logo img {
  max-width: 100%;
  max-height: 100%;
}
header .header-content .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-content .menu ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  gap: 40px;
}
header .header-content .menu ul li {
  margin-bottom: 10px;
}
header .header-content .menu ul li a {
  text-decoration: none;
  color: #777;
  font-size: 20px;
  font-weight: 700;
}
header .header-content .menu ul li a.active {
  color: #FF0B0B;
}
footer {
  height: 300px;
  width: 100%;
  margin-top: 100px;
}
footer .footer-upper-part {
  height: 75%;
  background-color: #222;
  display: flex;
  justify-content: center;
}
footer .footer-upper-part .footer-menu, footer .footer-upper-part .footer-contacts {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
footer .footer-upper-part .footer-menu h6, footer .footer-upper-part .footer-contacts h6 {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
footer .footer-upper-part .footer-menu p, footer .footer-upper-part .footer-contacts p {
  color: #BBB;
  font-size: 19px;
  font-weight: 400;
}
footer .footer-upper-part .footer-menu ul {
  list-style: none;
}
footer .footer-upper-part .footer-menu ul a {
  text-decoration: none;
  color: #BBB;
  font-size: 19px;
  font-weight: 400;
  line-height: 40px;
}
footer .footer-upper-part .footer-contacts {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-upper-part .footer-contacts p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 40px;
}
footer .footer-upper-part .footer-contacts img {
  max-width: 100%;
  max-height: 100%;
}
footer .footer-lower-part {
  height: 25%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-lower-part p {
  margin-top: 0;
  margin-bottom: 0;
  color: white;
}

body {
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "ui-sans-serif", system-ui, sans-serif;
}

.stripe {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-bottom: 70px;
}

.page-width {
  width: 1200px;
  margin: 0 auto;
  height: 100%;
}
.page-width h1 {
  text-align: center;
  color: #444;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 70px;
  margin-top: 70px;
}
.page-width body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.page-width .gallery {
  text-align: center;
}
.page-width .gallery h1 {
  margin-bottom: 20px;
}
.page-width .gallery .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  flex-direction: row;
}
.page-width .gallery .images img {
  cursor: pointer;
  transition: opacity 0.3s;
  box-sizing: border-box;
  max-width: calc(25% - 10px);
  width: 100%;
  object-fit: contain;
}
.page-width .gallery .images img:hover {
  opacity: 0.8;
}
.page-width .gallery .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.page-width .gallery .lightbox .close-btn {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.page-width .gallery .lightbox #lightbox-image {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.page-width .gallery .lightbox .prev-btn,
.page-width .gallery .lightbox .next-btn {
  background-color: transparent;
  color: #fff;
  font-size: 30px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-width .gallery .lightbox .prev-btn {
  left: 15px;
}
.page-width .gallery .lightbox .next-btn {
  right: 15px;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/*# sourceMappingURL=fotogalerie.css.map */
