*{
    padding: 0;
    margin: 0;
    border: 0;
   }
   *,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
   }
   :focus,:active{outline: none;}
   a:focus,a:active{outline: none;}
   
   nav,footer,header,aside{display: block;}
   
   html,body{
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
   }
   input,button,textarea{font-family:inherit;}
   
   input::-ms-clear{display: none;}
   button{cursor: pointer;}
   button::-moz-focus-inner {padding:0;border:0;}
   a, a:visited{text-decoration: none;}
   a:hover{text-decoration: none;}
   ul li{list-style: none;}
   img{vertical-align: top;}
   
   h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}




body {
  scroll-behavior: auto;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
}



.wrapper {
  max-width: 3000px;
  margin: 0 auto;
  min-height: 100%;
  overflow: hidden;
}


.content-page-not-header {
  max-width: 3000px;
  margin: 0 auto;
  overflow: hidden;
}
























body.lock {
  overflow: hidden;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1111;
}

.header.active {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1111;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.5);
  transition: all 0.2s;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.header-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
  padding: 10px 100px;
  margin: 0 auto;
}
.header-logo {
  z-index: 111;
}
.logo {
  background: url('/img/16Zvir.svg');
  background-size: 100px auto;
  background-repeat: no-repeat;
  width: 100px;
  height: 61.141px;
}
.logo.active {
  background: url('/img/17Zvir.svg');
  background-size: 100px auto;
  background-repeat: no-repeat;
  width: 100px;
  height: 61.141px;
  z-index: 777;
}
.headerburger {
  display: block;
  position: relative;
  width: 30px;
  height: 20px;
  z-index: 999;
  cursor: pointer;
}
.headerburger::before,
.headerburger::after {
  content: '';
  background-color: rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  z-index: 999;
  transition: all 0.4s ease 0s;
}
.headerburger::before{
  top: 0;
}
.headerburger::after {
  bottom: 0;
}
.headerburger span {
  position: absolute;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  top: 9px;
  z-index: 999;
  transition: all 0.4s ease 0s;
}



.headerburger.active::before {
  background-color: #000;
  transform: rotate(45deg);
  top: 9px;
}
.headerburger.active::after {
  background-color: #000;
  transform: rotate(-45deg);
  bottom: 9px;
}
.headerburger.active span {
  transform: scale(0);
}
.headerburger.change span {
  background-color: #000;
}
.headerburger.change::after {
  background-color: #000;
}
.headerburger.change::before {
  background-color: #000;
}



.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  right: -100%;
  transition: all 0.5s ease 0s;
}
.header-menu.active {
  right: 0;
}
.header-list {
  display: block;
  margin-top: 150px;
  margin-left: 50px;
  position: relative;
  z-index: 999;
}
.header-list li {
  list-style: none;
  margin-bottom: 40px;
}
.header-link {
  color: #000;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 300;
  text-decoration: none;
}
.header-link-language{
  margin-top: 80px;
}
.header-link-language a,
.header-link-language span {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 25px;
  color: #000;
}
.active-text {
  font-weight: 500;
}
a.active-text {
  font-weight: 500;
}

@media (max-width:767px){
  .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    right: -100%;
    transition: all 0.5s ease 0s;
    overflow: auto;
  }
}



.title {
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  font-size: 45px;
  font-weight: 500;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 150px;
  margin-bottom: 80px;
}

.title span {
  display: inline-block;
  vertical-align: middle;
}

.title:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 1px;
  background-color: #000000;
  position: relative;
  margin-top: 5px;
}

.title:after {
  margin-right: -100%;
  right: -50px;
}

.uppercase {
    text-transform: uppercase;
}

  




























.img-brunka {
    max-width: 3000px;
    margin: 0 auto;
}
.brunka-row {
    position: relative;
}
.img-brunka-div {
    width: 100%;
    height: 1000px;
}
.img-brunka-div img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    object-position: 50% 35%;
}
.title-page {
    position: absolute;
    font-weight: 600;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.85);
    top: 400px;
    text-align: center;
    width: 100%;
}




.text-brunka {
    padding: 0 100px;
    padding-top: 150px;
}
.text-brunka p {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}













.slider-2 {
    position: relative;
  }
  .slick-list {
    overflow: hidden;
  }
  .slick-track{
    display: flex;
  }
  
  
  
  
  
  .slider-two {
    background-color: rgb(0, 0, 0);
  }




























.compositions-dove {
  margin: 0px 100px 150px 100px;
}
.row-dove {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.image {
  position: relative;
  flex: 2;
  max-width: 400px;
  max-height: 550px;
}
.image a {
  height: 100%;
  width: 100%;
}
.img-div {
  display: flex;
  justify-content: center;
  padding: 10px 10px 0px 10px;
}
.img-div-dove-v1 {
  padding: 10px 30px 0px 30px;
}
.image img {
  position: relative;
  vertical-align: top;
  object-fit: cover;
  object-position: center;
}
.more {
  max-width: 400px;
}
.more-div {
  position: relative;
  bottom: 0;
  margin: 50px 30px 30px 30px; 
}
.more-div p {
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 25px;
  width: 100%;
  height: 100%;
  left: 0;
}
.more-div p:hover {
  display: block;
  color: #6b6b6b;
  font-weight: 600;
  transition: 0.2s;
}
.ppp {
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 185px;
}
.ppp:hover {
  background-image: url(/img/Arrowwww000003.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 185px;
}

.image a:hover .ppp {
  background-image: url(/img/Arrowwww000003.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 185px;
}
.image a:hover .more-div p {
  display: block;
  color: #6b6b6b;
  font-weight: 600;
  transition: 0.2s;
}
.pppp111 {
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 170px;
}
.pppp111:hover {
  background-image: url(/img/Arrowwww000003.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 170px;
}

.image a:hover .pppp111 {
  background-image: url(/img/Arrowwww000003.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 170px;
}

























.button-see-more-home {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

.button-see-more {
  color: #000000;
  box-sizing: border-box;
  outline: 0.1px solid black;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 20px;
  width: 350px;
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 300px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.1s ease;
}

.button-see-more:hover {
  color: #000000;
  outline: 2px solid black;
}














.button-see-more-collection {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.button-see-more {
  color: #000000;
  box-sizing: border-box;
  outline: 0.1px solid black;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 20px;
  width: 350px;
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 300px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.1s ease;
}

.button-see-more:hover {
  color: #000000;
  outline: 2px solid black;
}
























.btn-to-the-top {
  display: block;
  margin-bottom: 80px;
}

.btn-to-the-top > img {
  height: 15px;
  display: block;
  margin: 0 auto;
}

.contact-us-title {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 50px;
  line-height: 32px;
}

.button-request {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.button-leave-a-requese {
  color: #000000;
  display: flex;
}

.button-leave-a-requese a {
  color: #000;
  font-size: 20px;
  outline: 0.1px solid black;
  font-weight: 500;
  padding: 20px 20px;
  width: 470px;
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 427px;
  font-family: 'Montserrat', sans-serif;
}
.button-leave-a-requese a:hover {
  color: #000000;
  outline: 2px solid black;
}























.footer {
  background: #FFFFFF;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.25);
  bottom: 0;
  left: 0;
  z-index: 1111;
  width: 100%;
  height: auto;
}
.footer-row {
  display: flex;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
  padding: 100px 100px;
}
.colom-1, .colom-2, .colom-3 {
  display: block;
  width: 300px;
  margin: 0 auto;
  height: auto;
}
.colom-1 {
  display: block;
  width: 300px;
  height: auto;
}
.colom-1 img {
  display: block;
  max-width: 150px;
margin: 0 auto;
}
.colom-2 h3 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0;
}
.footer-social {
  display: flex;
  justify-content: center;
}
.social-item img {
  max-width: 24px;
}
.social-item:not(:last-child) {
  margin-right: 15px;
}
.footer-contacts-a a {
  color: #000;
}
.footer-contacts-a a:hover {
  color: #474747;
}
.contacts-footer-item-phone {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.contacts-footer-item-email {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.contacts-footer-item-map {
  display: block;
  font-size: 15px;
  font-weight: 300;
  margin-top: 15px;
}

.footer-bottom {
  background-color: rgb(255, 255, 255);
  border-top: solid #cfcfcf 0.5px;
}
.footer-bottom-row {
  max-width: 1920px;
  padding: 20px 0;
  margin: 0 auto;
}
.footer-bottom-row p {
  text-align: center;
  font-size: 15px;
}



































.popup {
  z-index: 11111111111;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.911);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transform: all 0.8s ease 0s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup-content {
  opacity: 1;
}
.popup-body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 50px;
}
.popup-content {
  background-color: #fff;
  color: #000;
  max-width: 800px;
  padding: 50px 100px;
  position: relative;
}
.popup-close {
  position: absolute;
  right: 35px;
  top: 25px;
  font-size: 30px;
  color: #000;
  text-decoration: none;
}
.form {
  max-width: 450px;
  margin: 0 auto;
  color: #000;
  padding: 30px 0;
}
.form-body {
  position: relative;
  padding: 5px;
}
.form-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("/img/Spinner-1.4s-217px.gif") center / 150px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}
.form-body.-sending::after {
  opacity: 1;
  visibility: visible;
}
.form-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
}
.form-item {
  margin-bottom: 35px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: nowrap;
}
.form-label {
  font-size: 18px;
  font-weight: 400;
  margin-right: 15px;
  white-space: nowrap;
}
.form-input {
  height: 30px;
  padding: 0px 20px;
  width: 100%;
  border-bottom: 1px solid rgb(143, 142, 142);
}
.form-input:focus {
  border-bottom: 1px solid #000
}
.form-input.-error {
  border-bottom: 1px solid rgb(219, 3, 3)
}
textarea.form-input {
  min-height: 30px;
  resize: vertical;
}
.file-item {
  position: relative;width: 100%;
  display: flex;
  flex-direction: row;
}
.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-style: 0;
  cursor: pointer;
}
.file-button {
  display: inline-flex;
  min-height: 30px;
  align-items: flex-end;
  font-weight: 600;
  align-items: flex-start;
}
.file-button img {
  top: 0;
  width: auto;
  height: 15px;
  cursor: pointer;
}
.file-preview {
  display: inline-block;
  max-width: 100px;
  padding-top: 15px;
}
.file-preview img {
  max-width: 100%;
}
.form-btn {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.form-button {
  background-color: #fff;
  color: #000000;
  outline: 0.1px solid black;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 20px;
  width: 280px;
  background-image: url(/img/Arrowooo.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 230px;
  font-family: 'Montserrat', sans-serif;
}

.form-button:hover {
  color: #000000;
  outline: 2px solid black;
}























.gallery {
  cursor: pointer;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 85%);
  z-index: 10000;
  user-select: none;
}

.lightbox-img {
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 103px;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  font-weight: 200;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.prev-btn {
  left: 100px;
}

.next-btn {
  right: 100px;
}

.download-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.prev-btn, .next-btn {
  border-radius: 50px;
}










.max-width-title {
  max-width: 1920px;
  margin: 0 auto;
}
