@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Khand', sans-serif !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  word-break: break-all;
}

img{
  width: 100%;
}

.dop-pages {
  background-color: white;
}

.dop-pages-text {
  text-align: justify;
}

.stayTitl {
  padding-bottom: 19px;
  text-align: center;
  font-weight: bold;
}

.header-contact-lay{
  width: 100%;
  position: relative;
}

.header-contact-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #060606;
  opacity: 0.8;
  z-index: -1;
}


.header-contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  flex-direction: row-reverse;
}

.header-contact p{
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  flex-direction: row;
  gap: 9px;
}

.header-contact-phone a{
  transition: 0.3s ease;
  color: #fff;
}

.header-contact-phone a:hover{
  color: #009A44;
}

.header-contact p i{
  font-size: 21px;
  color: #fff;
}

.header-lay{
  background-color: #fff;
  padding: 9px 0;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

  .logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 21px;
  }

  .logoImg img{
    width: 50px;
  }

  .logo a{
    color: #3B0944; 
    display: flex; 
    align-items: center; 
    gap: 20px;
    transition: color 0.3s ease;
  }

  .logoTitle h2{
    font-size: 18px;
    margin: 0;
  }

.header-nav {
  background-color: #fff;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.topmenu li {
  position: relative;
}

.topmenu a {
  color: #3B0944; 
  text-decoration: none;
  padding: 13px 20px; 
  display: block;
  transition: background-color 0.3s;
}

.topmenu a:hover {
  color: #fff;
  background-color: #555; 
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 280px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu a {
  color: #3B0944;
  padding: 13px 20px;
  display: block;
  transition: background-color 0.3s;
}

.submenu a:hover {
  color: #fff;
  background-color: #555;
}

.topmenu li:hover .submenu {
  display: block;
}

.fixed-header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.3s ease;
}

.header-box-lay{
  background-color: rgb(53 52 50 / 70%);
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  max-height: 1280px;
  min-height: 100vh;
}

.header-box-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/elegant_bg_gyCT0.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.header-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  color: #fff;
}

.header-content-box{
  direction: initial;
}

.header-content-card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: slide-up 1s ease-in-out forwards;
  gap: 20px;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

video {
  width: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.closes {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.art-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.art-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/misty-frame_2025-03-03_19-190.png);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.art{
  padding: 34px 0;
}

.titleArt {
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 34px;
}

.picture-art-img {
  transition: 0.5s ease;
  border-radius: 13px;
  float: left;
  width: 35%;
  margin: 34px;
  margin-top: 0;
  margin-left: 0;
}

.picture-art-img:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.art-content {
  font-size: 15px;
}

.art-price {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: 21px;
  margin-top: 34px;
  font-weight: bold;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-direction: row-reverse;
  padding: 34px 0;
}

.about-us-img {
  overflow: hidden;
  flex: 2;
  border-radius: 21px;
  text-align: center;
}

.about-us-img img {
  transition: 0.5s ease;
  transform: scale(1);
  max-width: 100%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 21px;
}

.about-us-img img:hover{
  transform: scale(1.05);
}

.about-us-box {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 13px;
  padding: 29px;
}

.about-us-box h2 {
  font-weight: bold;
  color: #3B0944;
}

.about-us-box p {
  font-size: 18px;
  color: #3B0944;
}

.service{
  padding: 34px 0;
}

.service h2{
  text-align: center;
  margin-bottom: 34px;
}

.working-blocks{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.working-boxes{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.5s ease;
  padding: 34px 21px;
  position: relative;
  overflow: hidden;
  gap: 20px;
  border: 1px solid #eeeeee;
}

.working-boxes:hover{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.working-boxes-img img{
  width: 124px;
}

.working-boxes-text{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.working-boxes-text h3{
  font-weight: bold;
  font-size: 21px;
  color: #3B0944;
}

.working-boxes-text p{
  color: #3B0944;
}

.working-boxes-read{
  transform: scale(1);
  transition: 0.5s ease;
  color: #060606;
}

.working-boxes-read:hover{
  transform: scale(1.05);
  color: #eabf9f;
}

.working-boxes-button{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 9px;
}

.open-form-button{
  font-size: 14px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.form-container {
  display: none;
  max-height: 90%;
  overflow: auto;
  width: 80%;
  padding: 20px;
  background-color: white;
  position: fixed;
  border-radius: 13px;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.close {
  color: black;
  position: fixed;
  top: 0;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.osn-form {
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 29px;
  text-align: center;
}

.title-container h3{
  margin: 0;
  font-weight: bold;
}

.input-container {
  position: relative;
}

.input-container .input-form__element_element, .input-container .textarea-form__element_element, .form button {
  outline: none;
  border: 1px solid #f6f6f6;
  margin: 8px 0;
}

.input-container .input-form__element_element {
  background-color: white;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0px 2px 7.68px 0.32px rgba(13, 13, 13, 0.05);
}

.input-container .textarea-form__element_element {
  background-color: white;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0px 2px 7.68px 0.32px rgba(13, 13, 13, 0.05);
}

.check{
  text-decoration: underline;
  color: #3B0944;
}

.check:hover{
  color: #009A44;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.submit-form {
  margin: 0 auto;
}

.articles{
  padding: 34px 0;
}

.articles h2{
  text-align: center;
  margin-bottom: 34px;
}

.bloga-boxes{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.bloga-areas{
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  gap: 13px;
}

.bloga-areas:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;}

.bloga-areas-img img{
  width: 100%;
}

.bloga-areas-box{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 13px;
  padding-top: 0;
  gap: 13px;
}

.bloga-areas-autor{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.bloga-areas-autor p{
  margin: 0;
  font-size: 14px;
}

.bloga-areas-text{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bloga-areas-text h3{
  font-weight: bold;
  font-size: 21px;
  color: #3B0944;
}

.bloga-areas-text p{
  margin: 0;
  color: #3B0944;
}

.bloga-areas-button{
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 13px;
}

.bloga-areas-read{
  transition: 0.5s ease;
  color: #060606;
}

.bloga-areas-read:hover{
  margin-left: 9px;
  color: #eabf9f;
}

.stats-lay{
  background-color: rgb(53 52 50 / 70%);
  margin: 34px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.stats-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/elegant_bg_gyCT1.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  padding: 34px;
}

.stats-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.stats-card i{
  color: #aab9c2;
  font-size: 36px;
}

.stats-card h2{
  color: #fff;
  font-weight: bold;
}

.stats-card p{
  color: #fff;
  font-size: 18px;
}

.workers{
  padding: 34px 0;
}

.workers h2{
  margin-bottom: 34px;
  text-align: center;
}

.workers-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.workers-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top-right-radius: 19px;
  border-top-left-radius: 19px;
  transition: 0.5s ease;
  border: 1px solid #eeeeee;
  gap: 20px;
}

.workers-card:hover{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.workers-card-img{
  border-top-right-radius: 19px;
  border-top-left-radius: 19px;
  overflow: hidden;
  position: relative;
}

.workers-card-img img{
  transform: scale(1);
  width: 100%;
  transition: 0.5s ease;
  height: auto;
  border-top-right-radius: 19px;
  border-top-left-radius: 19px;
}

.workers-card-img img:hover{
  transform: scale(1.1);
  width: 100%;
  height: auto;
}

.workers-card-text{
  padding: 0 13px;
}

.workers-card-text h4{
  font-weight: bold;
}

.part-lay{
  background-color: rgb(53 52 50 / 70%);
  margin: 34px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.part-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/elegant_bg_gyCT2.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.part{
  padding: 34px 0;
}

.part h2{
  color: #fff;
  margin-bottom: 29px;
  text-align: center;
}

.part-box{
  direction: initial;
}

.part-card{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 140px;
  margin: 0 13px;
}

.part-card img{
  transition: 0.5s ease;
  transform: scale(1);
  object-fit: cover;
  max-width: 140px;
}

.part-card img:hover{
  transform: scale(1.05);
}

.comment{
  padding: 34px 0;
}

.comment h2{
  text-align: center;
  margin-bottom: 29px;
}

.comment-box{
  padding: 34px 0;
  direction: initial;
}

.comment-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 21px;
}

.comment-card i{
  opacity: 0.15;
  font-size: 59px;
}

.comment-card p{
  padding: 0 21px;
  font-size: 21px;
}

.comment-card h3{
  font-weight: bold;
}

.comment-card img{
  border-radius: 50%;
  object-fit: cover;
  max-width: 107px;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.slick-prev:before, .slick-next:before{
  font-size: 20px !important;
}

 .slick-prev:before {
  content: '\2190';
  color: black;
}

.slick-next, .slick-prev{
  z-index: 2;
}

.slick-next:before {
  content: '\2192';
  color: black; 
}

.footer-lay{
  background-color: rgb(53 52 50 / 70%);
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.footer-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/elegant_bg_gyCT3.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 29px;
  padding: 34px 0;
}

.footer-top{
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
}

.footer-top a{
  font-size: 18px;
  color: #fff;
}

.footer-top a:hover{
  border-bottom: 1px solid;
  color: #fff;
}

.footer-bottom{
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 29px;
}

.footer-bottom p{
  color: #fff;
  font-size: 18px;
}

.animate-element {
  opacity: 0;
  transform: translateY(25px); 
  transition: opacity 3s ease, transform 3s ease;
}

.animate-element.visible {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.art-decription-page{
  padding: 34px 0;
}

.art-decription-titleArt {
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 34px;
}

.art-decription-img {
  transition: 0.5s ease;
  border-radius: 13px;
  float: left;
  width: 35%;
  margin: 34px;
  margin-top: 0;
  margin-left: 0;
}

.art-decription-img:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.art-decription-content {
  font-size: 15px;
}

.art-decription-price {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: 21px;
  margin-top: 34px;
  font-weight: bold;
}

.art-decription-button{
  display: flex;
  align-items: center;
  margin-top: 21px;
  justify-content: center;
}

.art-decription-page-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.art-decription-page-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/misty-frame_2025-03-03_19-191.png);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.form-kontact{
  flex: 1;
  display: flex;
  border-radius: 13px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  border-radius: 9px;
  padding: 19px;
}

.input-container .inputs {
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.2rem;
}

.input-container .inputs, .input-container .textarea-kontact{
  outline: none;
  border: none;
  border-bottom: 1px solid #757575;
  margin: 13px 0;
}

.input-container .textarea-kontact {
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.2rem;
}

.kontact-lay{
  padding: 34px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.kontact-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(files/images/misty-frame_2025-03-03_19-192.png);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.kontact{
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: space-between;
}

.kontact-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.kontact-box div{
  flex: 1;
  display: flex;
  gap: 13px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  color: #3B0944;
  font-size: 21px;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 13px;
  padding: 13px;
}

.kontact-box div a{
  transition: 0.5s ease;
  color: #3B0944;
  font-size: 21px;
}

.kontact-box div a:hover{
  color: #009A44;
}

.kontact-box div i{
  color: #eabf9f;
  font-size: 29px;
}

.menu-btn {
  display: none;
	width: 30px;
	height: 30px;
	position: relative;
	z-index:100;
	overflow: hidden;
}

.menu-btn span {
	width: 20px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #222222;
	transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 7px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 7px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

.menu {
  z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 15px;
  opacity: 0.9;
  background: #fff;
	transform: translateY(-100%);
	transition: transform 0.5s; 
}

.menu.active {
	transform: translateX(0);
}

.menu nav{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.menu ul{
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: center;
  padding: 0;
}

.menu li {
	list-style-type: none;
}

.menu li a{
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 25px;
	color: #3B0944;
}

.menu li a:hover{
  color: #009A44;
  border-bottom: 1px solid;
}



@media (max-width: 991px) {
  .header-nav{
    display: none;
  }

  .menu-btn{
    display: block;
  }

  .about-us{
    flex-direction: column;
  }

  .bloga-boxes{
    grid-template-columns: repeat(2, 1fr);
  }

  .stats{
    grid-template-columns: repeat(2, 1fr);
  }

  .workers-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .working-blocks{
    grid-template-columns: repeat(2, 1fr);
  }

  .kontact{
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .picture-art-img{
    margin: 0 0 34px 0;
    width: 100%;
  }

  .art-decription-img{
    margin: 0 0 34px 0;
    width: 100%;
  }

  .header-contact{
    text-align: center;
    gap: 9px;
    flex-direction: column-reverse;
  }

  .bloga-boxes{
    grid-template-columns: repeat(1, 1fr);
  }

  .stats{
    grid-template-columns: repeat(1, 1fr);
  }

  .workers-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .working-blocks{
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-top{
    flex-direction: column-reverse;
  }
}

@media (max-width: 575px) {
  .workers-card{
    margin: 0 34px;
  }

  .header-box-lay::before{
    background-attachment: inherit;
  }

  .art-lay::before{
    background-attachment: inherit;
  }

  .stats-lay::before{
    background-attachment: inherit;
  }

  .part-lay::before{
    background-attachment: inherit;
  }

  .footer-lay::before{
    background-attachment: inherit;
  }

  .art-decription-page-lay::before{
    background-attachment: inherit;
  }

  .kontact-lay::before{
    background-attachment: inherit;
  }
}

















  
  
  


