@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  :root{
  
      --color1: #d7a449;
      --color2: #0e0707;
      --color3: #f1f1f1;
      --color4: #ACA22E;
      --color8: #E07250;
      --color10: #234848;
  
  
      --color-text:  #282828;
      --dark-clr: #111;

      --primary-color: rgba(13, 110, 139, 0.75);
  }


body{
    direction: ltr;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0px;
    line-height:1.5;
    direction: ltr;
}

img{
    max-width: 100%;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

li, p{
  padding: 7px 0;
}

a {
    text-decoration: none;
}

.container{
  max-width: 1218px;
  margin: 0 auto;
}


.inr-main{
  display: flex;
}

.inr-left{
  width: 25%;
}

.inr-left-logo-block{
    padding: 48px 0;
}

.inr-left-logo-block a img{
  width: 62px;
  height: 62px;
}

.inr-left-logo-block a h2{
  font-size: clamp( 12px,2vw,20px);
  font-weight:800;
  transition: .5s;
  color: #f1f1f1;
}

.inr-left-logo-block a h2:hover{
  color: var(--color1);
}

.menu-holder {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background-color: #040807;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  padding: 48px 0;
}

.menu-item {
  position: relative;
  font-size: clamp(12px, 5vw, 18px);
  padding: 7px 22px;
  transition: all 0.2s;
  background-color: var(--color-text);
  border: 1px solid #040807;
  word-break: break-all;
}

.dop-color{
  font-size: clamp(12px, 5vw, 16px);
  background-color: var(--color2) !important;
}

.menu-holder a{
  transition:  0.5s;
}

.menu-holder a:hover{
  color: var(--color1);
}


.menu-holder a{
  color: #f1f1f1;
}

.menu-toggle-checkbox {
  display: none;
}

.menu-toggle-label {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #040807;
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}


.inr-left-sub{
  position: relative;
  background-color: var(--primary-color);
}

.inr-left-sub:before {
  content: "";
  background: url(content/images/section-bg-1920x10800.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.inr-left-sub-title h5{
  font-size: clamp(12px,2vw,20px);
  font-weight: 800;
  color: #f1f1f1;
}

.inr-left-sub-inner label{
  color: #f1f1f1;
}

.inr-left-sub-inner .form{
  text-align: center;
  padding: 48px;
  color: #f1f1f1;
}

.inr-left-sub-inner .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap:  18px;
  padding-top: 29px;
}

.inr-left-sub-inner input{
  border-radius: 0px;
  padding-left:  18px;
  font-size: 12px;
  color: var(--color1);
  line-height: 40px;
  height: 40px;
  background-color: inherit;
  border: 1px solid var(--color1);
}

.inr-left-sub-inner input::placeholder{
  color: var(--color3);
}

.inr-left-sub-btn{
  display: inline-block;
  padding-top: 19px;
}


.inr-left-contact-t{
  font-size: clamp(12px, 5vw, 18px);
  padding: 7px 22px;
  transition: all 0.2s;
  background-color: var(--color-text);
  border: 1px solid #060606;
  word-break: break-all;
}

.inr-left-contact-t a, .inr-left-contact-t span{
  color: var(--color3);
}


.inr-right{
  width: 75%;
}

.inr-top {
  background-color: var(--primary-color);
  color: var(--color3);
  position: relative;
  padding:  65px;
}

.inr-top:before {
  content: "";
  background: url(content/images/section-bg-1920x10801.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.inr-top-block{
  display: flex;
  flex-direction: row;
  gap: 22px;
}

.inr-top-image{
  flex: 1;
}

.inr-top-content{
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inr-top-image img{
  border: 1px solid var(--color1);
  border-radius: 50%;
  width: 182px;
  height: 182px;
}

.inr-top-content h2{
  font-weight: 800;
  color: var(--color1);
  font-size: clamp(16px,5vw, 31px);
}

.inr-top-content h4{
  font-size: clamp(15px,5vw,19px);
  font-style: italic;
  font-weight: 700;
}

.inr-top-content svg{
  width: 55px;
  height: 55px;
}

.inr-section-one{
  background-color: var(--color3);
  padding:  65px;
}

.inr-section-one-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.inr-section-one-title h5{
  font-size: clamp(22px,5vw, 31px);
  color: var(--color1);
  font-weight: 800;
}

.inr-section-one-main{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inr-section-one-block{
  padding: 22px 10px;
  width: 100%;
}

.inr-section-one-block a img{
  width: 100%;
  object-fit: cover;
  height: 317px;
  transition: .5s;
}

.inr-section-one-block .in-img:hover > img {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.inr-section-one-box span{
  text-transform: uppercase;
  font-size:  12px;
  letter-spacing: 1px;
  color: var(--color1);
}

.inr-section-one-box h3{
  font-size: 22px;
  font-weight: 800;
}

.inr-section-one-box h3 a{
  color: var(--color2);
  transition: .5s;
}

.inr-section-one-box h3 a:hover{
  color: var(--color1);
}

.inr-section-one-box-author .inr-section-one-box-info {
  width: calc(100% - 60px);
}

.inr-section-one-box-info  h3 span{
  color: #000000;
}

.inr-section-one-box-author{
  display: flex;
  gap: 10px;
  align-items: center;
}

.inr-section-one-bottom-content{
  width: 100%;
  display: block;
}

.inr-section-one-bottom-inner-content{
  width: 100%;
}

.inr-section-one-bottom-inner-content p{
  display: flex;
}

.inr-section-one-bottom-inner-content p span{
  margin: 0 7px;
  color: #b3b3b3;
}

.inr-section-one-bottom-inner-content p span svg{
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.inr-section-one-btn{
  width: 100%;
}

.inr-section-one-btn p a{
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.inr-section-r{
  background-image: url(content/images/mask-bg-2025-06-16_13-33-310.png);
  background-color: var(--color-text);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:  65px;
}


.inr-section-r-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.inr-section-r-title h5{
  color: var(--color1);
  font-size: clamp(22px,5vw, 31px);
  font-weight: 800;
}

.inr-section-r-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inr-section-r-block{
  position: relative;
  width: 100%;
  margin: 10px;
}
.inr-section-r-block input{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  visibility: 0;
}
.inr-section-r-block h1{
  background:var(--primary-color);
  color:white;
  padding: 10px;
  position: relative;
  font-size: clamp(18px,2vw,25px);
  word-break: break-all;
}
.inr-section-r-block h1 label::before{
  content:"";
  display: inline-block;
  border: 10px solid transparent;
  border-left:19px solid white;
}
.inr-section-r-block h1 label{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.inr-section-r-text{
  max-height:0px;
  overflow: hidden;
  transition:max-height 0.5s;
  background-color: white;
  box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.inr-section-r-text p {
  padding: 10px;
}
.inr-section-r-block input:checked ~ h1 label::before{
  border-left:15px solid transparent;
  border-top:20px solid white;
  margin-top:12px;
  margin-right:10px;
}
.inr-section-r-block input:checked ~ h1 ~ .inr-section-r-text{
  max-height:500px;
}

.inr-section-gal{
  background-color: var(--color3);
  padding:  65px;
}

.inr-section-gal-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.inr-section-gal-title h5{
  font-size: clamp(22px,5vw,31px);
  color: var(--color1);
  font-weight: 800;
}

.inr-section-gal-main{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.inr-section-gal-block{
  overflow: hidden;
  width: 25%;
  height: 280px;
  position: relative;
  padding: 4px;
  border-radius:  8px;
  cursor: pointer;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background-size: 200%;
  animation: pan 6s infinite linear;
  z-index: 1;
}

.inr-section-gal-block span{
  position: absolute;
  z-index: 3;
  color: var(--color1);
  opacity: 0;
  font-size: clamp(15px,5vw,22px);
}

.inr-section-gal-block:hover span{
  opacity: 1;
}

.inr-section-gal-block:before {
  content: "";
  position: absolute;
  transition: opacity 600ms, scale 600ms;
  opacity: 0;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  border-radius: inherit;
  background: linear-gradient(
    transparent 1%,
    black 90%
  );
  z-index: 3;
}

.inr-section-gal-block:after {
  content: "";
  opacity: 0;
  font-size: 1.4rem;
  padding-bottom: 3px;
  position: absolute;
  transition: opacity 600ms, scale 600ms;
  align-self: flex-end;
  color: white;
  font-family: cursive;
  z-index: 4;
  margin-bottom: 7px;
}

@keyframes pan {
  from {
    background-position: 0%;
  }
  
  to {
    background-position: -200%;
  }
}


.inr-section-gal-block img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  border-radius: inherit;
  z-index: 2;
  transition: scale 600ms;
}

.inr-section-gal-block:hover:before,
.inr-section-gal-block:hover:after,
.inr-section-gal-block:hover > img {
  opacity: 1;
  scale: 1.03;
}

.inr-voda-section{
  background-color: var(--primary-color);
  padding:  25px;
  position: relative;
}

.inr-voda-section:before {
  content: "";
  background: url(content/images/section-bg-1920x10802.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}


.inr-voda-section-main{
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.inr-voda-section-block{
  flex: 1;
}

.inr-voda-section-inner{
  margin: 10px;
}

.inr-voda-section-inner h2 {
  color: var(--color1);
  margin-bottom: 33px;
  font-size: clamp(15px,5vw,19px);
  font-weight: 800;
  letter-spacing: 1px;
}

.inr-voda-section-inner ul{
  list-style: none;
}

.inr-voda-section-inner ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  position: relative;

}

.inr-voda-section-inner ul li a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.inr-voda-section-inner ul li a:hover {
  color: var(--color1) !important;
}

.inr-voda-section-inner ul li a span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.inr-voda-section-inner ul li a hover {
  color: var(--color1) !important;
}

.inr-voda-section-inner ul li a span{
  position: absolute;
    right: 0;
    top: 0;
}

.artCl ul li a {
  display: flex;
  gap: 10px;
}

.artCl  ul li a img {
  width: 71px;
  height: 71px;
}

.inr-voda-section-text h4{
  font-size: clamp(12px,2vw,17px);
  color: rgba(255, 255, 255, 0.5);
  transition: .5s;
}

.inr-voda-section-text h4:hover{
  color: var(--color1);
}

.inr-voda-section-d span{
  position: inherit !important;
  font-size: 12px;
  color: #b3b3b3;
}


.inr-section-fo{
  background-color: #040807;
  padding: 30px;
}

.inr-section-main-co{
  display: flex;
  flex-direction: column;
  padding: 10px; 0;
  width: 100%;
}

.inr-section-main-co-block, .inr-section-main-co-text{
  width: 100%;
}

.inr-section-main-co-text{
  display: flex;
  justify-content: center;
}


.inr-section-main-co-block ul li a, .inr-section-main-co-text div{
  font-size:  18px;
  font-weight: 700;
  color: var(--color3);
  transition: .5s;
}

.inr-section-main-co-block ul{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.inr-section-main-co-block ul li a:hover {
  color: var(--color1);
}


.facts{
  padding:  65px;
  background-color: var(--color3);
}

.facts-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.facts h5{
  font-size: clamp(22px,5vw, 31px);
  text-align: center;
  color: var(--color1);
  font-weight: 800;
}

.facts-main{
  display: flex;
  padding-bottom: 10px;
  flex-direction: column-reverse;
}

.facts-image, .facts-content{
  flex: 1;
  margin: 10px;
}

.facts-content h2{
  font-size: 17px;
}

.facts-content{
  padding: 10px;
  color: var(--color2);
  flex: 1;
  margin: 10px;
  a,table{
    color: inherit;
    
}
 p{ 
  text-indent: 3ch;
  }
}


.facts-content ul li,
.facts-content ol li {
  margin-bottom: 5px;
}
.facts-content ul,
.facts-content ol {
  margin-bottom: 15px;
  padding-left:  19px;
  list-style: inside;
}


.facts-image img{
  width: 100%;
  height: 513px;
  object-fit: contain;
}

.facts-content-i{
  width: 100%;
}

.facts-content-i p{
  display: flex;
  justify-content: center;
  align-items: center;
}

.facts-content-i p span{
  margin: 0 7px;
  color: #b3b3b3;
}

.facts-content-i p span svg{
  fill: #b3b3b3;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.facts-others-content{
  width: 100%;
}

.facts-others-content-text{
  display: flex;
  padding: 10px 0;
  font-size:  19px;
  font-weight: 700;
  color: var(--primary-color);
}


.facts-contact-us{
  background-color: var(--color-text);
  padding:  22px;
}

.facts-contact-us-form label{
  color: var(--color3);
  font-size: 12px;
  font-style: italic;
}

.facts-contact-us-form {
  width: 100%;
}

.facts-contact-us-form .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.facts-contact-us-form .field .input-custom-layoutblock{
  border-radius: 0px;
  padding-left: 10px;
  font-size: 12px;
  color: #f1f1f1;
  background-color: var(--color-text);
  border: 1px solid var(--color1);
  outline: none;
  border-left: none;
  border-top: none;
  box-shadow: none;
  line-height: 48px;
}

.facts-contact-us-form .field .input-custom-layoutblock::placeholder{
  color: var(--color3);
}

.facts-contact-us-form .textarea-custom-layoutblock{
  border-radius: 0px;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 12px;
  color: #f1f1f1;
  background-color: var(--color-text);
  border-bottom: 1px solid var(--color1);
  outline: none;
  border-left: none;
  border-top: none;
  box-shadow: none;
  margin-bottom: 18px;
}

.facts-contact-us-form .textarea-custom-layoutblock::placeholder{
  color: var(--color3);
}

.facts-contact-us-form .facts-contact-us-check{
  align-items: center;
  text-align: left;
  display: flex;
  gap: 18px;
  padding: 18px 0;
}

.facts-contact-us-form .facts-contact-us-check a{
  text-decoration: underline;
  color: var(--color1);
}

.facts-contact-us-phoneBtn{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.facts-client{
  background-color: var(--primary-color);
  padding:  25px;
  position: relative;
}

.facts-client:before {
  content: "";
  background: url(content/images/section-bg-1920x10802.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}


.facts-client-feed{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.facts-client-feed-block{
  filter: drop-shadow(2px 4px 6px var(--color-text));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color-text));
  width: 100%;
  padding: 10px 0;
}

.facts-client-feed-inner{
  margin: 10px;
  padding: 10px;
}

.facts-client-img img{
  border: 1px solid var(--color1);
  border-radius: 50%;
  width: 124px;
  height: 124px;
}

.facts-client-feed-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

.facts-client-feed-text h2{
  font-size: 19px;
  color: var(--color1);
}

.facts-client-feed-text div{
  font-size: 18px;
  color: var(--color3);
}


.facts-client-icon{
  display: flex;
  padding: 10px 0;
  gap: 10px;
}

.facts-client-icon svg{
  fill: var(--color1);
  width: 26pxpx;
  height: 26pxpx;
}

.getintouch{
  background-color: var(--color3);
  padding:  65px;
}

.getintouch-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.getintouch h5{
  font-size: clamp(22px,5vw,  31px);
  color: var(--color1);
  font-weight: 800;
}

.getintouch-form label{
  color: var(--color2);
}

.getintouch-form {
  width: 100%;
}

.getintouch-form .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.getintouch-form .field input{
  border-radius: 0px;
  padding-left: 18px;
  font-size:  12px;
  color: var(--color2);
  border-bottom: 1px solid var(--color1);
  background-color: var(--color3);
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  line-height: 40px;
  margin-bottom: 18px;
}

.getintouch-form .field input::placeholder{
  color: var(--color2);
  font-size: 14px;
  font-weight:200;
  font-style: italic;
}

.getintouch-form textarea{
  border-radius: 0px;
  padding-left: 18px;
  padding-top:  10px;
  font-size: 12px;
  color: var(--color2);
  border-bottom: 1px solid var(--color1);
  background-color: var(--color3);
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  margin-bottom: 18px;
}

.getintouch-form textarea::placeholder{
  color: var(--color2);
  font-size: 14px;
  font-weight:200;
  font-style: italic;
}


.getintouch-form .getintouch-form-check{
  align-items: flex-start;
  padding-top: 7px;
  text-align: left;
  padding-top: 7px;
}

.getintouch-form .getintouch-form-check a{
  text-decoration: underline;
  color: var(--color1);
}

.getintouch-btn{
  display: inline-block;
  padding-top: 18px;
}

.getintouch-map{
  padding: 65px 0;
}

.getintouch-info-contact{
  padding: 65px 0;
}

.getintouch-info-contact-main{
  background-color: var(--primary-color);
  padding:  25px;
  position: relative;
}

.getintouch-info-contact-main:before {
  content: "";
  background: url(content/images/section-bg-1920x10804.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}


.getintouch-info-contact-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px;
}

.getintouch-info-contact-box svg{
  fill: var(--color1);
  width:  55px;
  height:  55px;
}

.getintouch-info-contact-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}

.getintouch-info-contact-cont div, .getintouch-info-contact-cont a{
  font-size: clamp(12px,2vw,19px);
  font-weight:800;
  color: var(--color3);
  transition: .5s;
}

.getintouch-info-contact-cont a:hover{
  color: var(--color1);
}

.getintouch-cg{
  display: flex;
  gap: 65px;
  flex-direction: column-reverse;
}

.section-rule{
  padding: 100px 100px;
  color: var(--color2);
  background-color: var(--color3);
}

.section-rule-main{
  overflow: hidden;
  word-break: break-all;
  padding: 28px;
  p{ 
  text-indent: 3ch;
  }
  li, p{
  padding: 7px 0;
}
 a,table{
    color: inherit;
    
  }
  ul, ol {
   margin-bottom: 15px;
    padding-left:  29px;
      list-style: inside;
  }
}

.section-rule h1.section-rule-title{
  font-size: 24px;
  font-weight: 800;
  color: var(--color2);
}

.section-rule h1,h2,h3{
  font-size: 19px;
  font-weight:800;
  color: var(--color2);
}

.section-rule  a{
  text-decoration: underline;
  color: var(--color2) !important;
}

.section-rule ol li {
  color: var(--color2) !important;
}

.section-rule ul{
  list-style: disc !important;
}


.button-1 {
  padding: 10px 18px;
  font-size:  18px;
  font-weight: 800;
  background: #040807;
  color: #fff;
  border-radius: 0.5rem;
  border-bottom: 1px solid var(--color1);
  border-right: 1px solid var(--color1);
  transition-duration: 1s;
  transition-property: border-top, border-left, border-bottom, border-right,
    box-shadow;
  cursor: pointer;
  outline-color: transparent;
  text-decoration: none;
  text-align: center;
}

.button-1:hover {
  color: #fff;
  box-shadow: rgb(189, 164, 131, 0.4) 5px 5px, rgb(189, 164, 131, 0.3) 10px 10px,
    rgb(189, 164, 131, 0.2) 15px 15px;
}


.button-2 {
  color: #fff;
  font-size: 18px;
  background-color: #040807;
  border:  4px solid transparent;
  transition: .5s ease;
  border-radius: 30px;
  padding: 10px;
}

.button-2:hover {
color: #fff;
background-color: var(--color2);
transform: scale(1.1);
border: 4px solid var(--color1);
}

.button-3 {
border-color: #00C9B1;
border:  1px solid;
color: #fff;
transition: all 0.5s;
font-size: 18px;
background-color: #040807;
padding: 10px 18px;
text-align: center;
}

.button-3:hover {
box-shadow: inset 0 0 0 2em var(--color1);
border-color: var(--color2);
color: #fff;
}


.button-4 {
padding: 10px 18px; 
text-align: center;
background-color: #040807;
border-color: var(--color1);
color: #fff;
font-size: 18px;  
}
.button-4:hover {
color: #fff;
transition-delay: 0.2s;
animation: ani500 0.6s forwards;
background: radial-gradient(circle, var(--color1) 0.2em, transparent 0.3em) 6em 6em/1em 1em, radial-gradient(circle, var(--color2) 0.2em, transparent 0.3em) 0 0/1em 1em;
}
@keyframes ani500 {
100% {
    background-size: 2.375em 2.375em, 0.1em 0.1em;
}
}

.button-5{
text-align: center;
font-size: 18px;
display: inline-block;
padding:  10px  18px;
text-decoration: none;
transition: .5s;
color:#fff;
background: #040807;
font-weight: 800;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}

.button-5:hover {
color: #fff;
background: var(--color2);
border: 1px solid var(--color1);
}



 

@media (max-width: 992px) {
  .menu-holder {
    position: absolute;
    transform: translateX(-100%);
    width: 100%;
    z-index: 9;
  }

  .menu-toggle-label {
    display: block;
    position: absolute;
    border: 1px solid var(--color1);
  }

  .menu-toggle-checkbox:checked + .menu-toggle-label + .menu-holder {
    transform: translateX(0);
  }

  .inr-right{
    width: 100%;
  }

  .inr-left{
    width: 0;
  }

  .inr-section-one-block{
    width: 50%;
  }

  .inr-section-main-co-block ul{
    flex-direction: column;
    text-align: center;
  }

  .inr-voda-section-main{
    flex-direction: column;
  }

  .facts-main{
    flex-direction: column;
  }

  .facts-client-feed{
    flex-direction: column;
  }
  
  .facts-client-feed-block{
    width: 100%;
  }

  .inr-top-block{
    flex-direction: column;
  }

  .inr-section-gal-block{
    width: 50%;
  }

  .inr-top-main{
    padding-top: 65px;
  }

  .inr-left-sub{
    display: none;
  }
  
}


@media(max-width: 768px){
  .inr-section-one-block{
    width: 100%;
  }

  .inr-section-gal-block{
    width: 100%;
  }

  .facts-image img{
    height: 280px;
  }
}


@media(max-width: 600px){
    .section-rule {
      padding: 48px 0;
  }
}


@media (max-width: 575px) {
    button {
        width: 100%;
    }
    .facts-image img{
      height: auto;
    }
}

@media (max-width: 425px){
  .inr-top , .inr-section-one, .inr-section-r, .inr-section-gal, .facts, .getintouch{
    padding: 65px 22px;
  }

  .inr-top-main{
    padding-top: 65px;
  }

  
}

