@charset "UTF-8";
.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: #fff;
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 2em;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: rgb(45, 38, 32);
  letter-spacing: 2px;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 8em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 10em 2em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
}

.heading {
  font-family: "Cinzel", serif;
  font-weight: 600;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
  background-color: #fff;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
  background-color: #fff;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
  background-color: #fff;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-image: linear-gradient(45deg, rgb(45, 38, 32), rgb(45, 38, 32));
  z-index: 100;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: rgb(229, 217, 211);
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  background-color: rgb(229, 217, 211);
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: rgb(46, 46, 46);
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 75vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), url("../img/azizmale.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
}
.header__heading {
  height: 100px;
}
.header__text {
  font-size: 1.4rem;
}
.header__btn {
  margin-top: 0;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: rgb(229, 217, 211);
  border: none;
  border-radius: 8px;
  color: rgb(45, 38, 32);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.header__btn::before {
  background-color: #eee;
}
.header .white-block {
  background-color: rgb(229, 217, 211);
}

.price {
  background-color: rgb(229, 217, 211);
}
.price__box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 3em 0;
}
.price__box-img {
  flex: 1;
  display: flex;
}
.price__box-img .price__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.price__box-img--right {
  order: unset;
}
.price__box-text {
  flex: 1;
  border-radius: 10px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price__title {
  text-align: center;
  margin-bottom: 1em;
  font-size: 2rem;
  color: rgb(45, 38, 32);
}
.price__note {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1em;
  color: rgba(45, 38, 32, 0.8);
}
.price table {
  width: 100%;
  border-collapse: collapse;
  color: rgb(45, 38, 32);
}
.price tr {
  border-bottom: 2px solid rgba(45, 38, 32, 0.3);
}
.price td {
  padding: 1.2em 0.6em;
  font-size: 1.4rem;
  line-height: 1.6;
}

.gallery {
  position: relative;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), url("../img/hc-digitmale.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.gallery .section-heading {
  color: #fff;
}
.gallery .white-block {
  background-color: rgb(229, 217, 211);
}
.gallery .gallery-slider {
  position: relative;
  margin-top: 30px;
}
.gallery .gallery-slider .slick-slide {
  margin: 0 6px;
  transition: transform 0.3s ease;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery .gallery-slider img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery .gallery-slider img:hover {
  transform: scale(1.05);
}
.gallery .gallery-slider .slick-prev,
.gallery .gallery-slider .slick-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  opacity: 1;
}
.gallery .gallery-slider .slick-prev {
  left: 10px;
}
.gallery .gallery-slider .slick-next {
  right: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox::after {
  content: "✕";
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.rules {
  position: relative;
  background-color: rgb(229, 217, 211);
  overflow: hidden;
}
.rules .white-block-left {
  background-color: rgb(45, 38, 32);
}
.rules .rules-content {
  background: #fff;
  padding: 2em 2em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.rules .rules-content p,
.rules .rules-content ol,
.rules .rules-content li {
  font-size: 1.3rem;
  line-height: 1.6;
}
.rules .rules-content .rules-content-container {
  text-align: center;
  margin-top: 2em;
}
.rules .rules-content .read-more-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em;
  width: 100%;
  color: #fff;
  background-color: rgb(45, 38, 32);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s;
}
.rules .rules-content .read-more-btn:hover {
  color: #000;
}
.rules .rules-content .read-more-btn::before {
  background-color: rgb(229, 217, 211);
}

.footer {
  background-color: rgb(45, 38, 32);
  color: rgb(229, 217, 211);
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  padding: 3em 2em;
}
.footer .wrapper .footer-item {
  margin: auto;
  padding: 10px 0;
}
.footer .wrapper .footer-item .title {
  text-transform: uppercase;
  padding: 10px 0px;
}
.footer .wrapper .footer-item .footer__text {
  padding: 5px 0;
  font-size: 18px;
}
.footer .wrapper .footer-item .footer__text i {
  padding-right: 8px;
}
.footer .wrapper .footer-item .footer__text a {
  color: rgb(229, 217, 211);
  text-decoration: none;
}
.footer .wrapper .maps {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.footer .wrapper .maps iframe {
  width: 100%;
  border-radius: 12px;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
}

@media (min-width: 576px) {
  .footer .wrapper .maps iframe {
    width: 70%;
    border-radius: 12px;
  }
}
@media (min-width: 601px) {
  .gallery .gallery-slider .slick-prev,
  .gallery .gallery-slider .slick-next {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    top: 55%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 0.9;
  }
  .gallery .gallery-slider .slick-prev {
    left: 15px;
  }
  .gallery .gallery-slider .slick-next {
    right: 15px;
  }
  .gallery .gallery-slider .slick-slide {
    height: 340px;
  }
}
@media (min-width: 768px) {
  .white-block {
    height: 50px;
    width: 45%;
  }
  .header__heading {
    height: 150px;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .price__box {
    flex-direction: row;
  }
  .price__box-img--right {
    order: 2;
  }
  .footer .wrapper {
    flex-direction: row;
  }
  .footer .wrapper .footer-item {
    margin: 1em 1.4em;
    white-space: nowrap;
  }
  .footer .wrapper .maps iframe {
    width: 100%;
    height: 250px;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), url("../img/azizduze.webp");
  }
  .header__heading {
    font-size: 10rem;
  }
  .nav__item {
    font-size: 4.8rem;
  }
  .gallery {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), url("../img/hc-digitduze.webp");
  }
  .rules .rules-content {
    padding: 3em 3em;
  }
  .rules .rules-content p,
  .rules .rules-content ol,
  .rules .rules-content li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media (min-width: 1030px) {
  .gallery .gallery-slider .slick-prev,
  .gallery .gallery-slider .slick-next {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 0.9;
  }
  .gallery .gallery-slider .slick-prev {
    left: 10px;
  }
  .gallery .gallery-slider .slick-next {
    right: 10px;
  }
}
@media (min-width: 1301px) {
  .gallery .gallery-slider .slick-prev,
  .gallery .gallery-slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
  }
  .gallery .gallery-slider .slick-prev:hover,
  .gallery .gallery-slider .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
  }
  .gallery .gallery-slider .slick-prev {
    left: -60px;
  }
  .gallery .gallery-slider .slick-next {
    right: -60px;
  }
  .gallery .gallery-slider .slick-slide {
    height: 400px;
  }
}/*# sourceMappingURL=photo.css.map */