@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img{
  width: 100%;
}

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

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

.stayTitl {
  padding-bottom: 17px;
  text-align: start;
  font-weight: 700;
}

.header-cont{
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
}

.header-content-lay {
  background: linear-gradient(45deg, #00C9B1 0%,#9FCCB7 29%,#e4bad4 66%,#007580 100%);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
height: 100vh;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-evenly;
overflow: hidden;
position: relative; 
}

.header-content-lay::before, 
.header-content-lay::after {
content: "";
width: 70vmax;
height: 70vmax;
position: absolute;
background: rgba(255, 255, 255, 0.07);
left: -20vmin;
top: -20vmin;
animation: morph 15s linear infinite alternate, spin 20s linear infinite;
z-index: 1;
will-change: border-radius, transform;
transform-origin: 30% 30%;
pointer-events: none; 
}

.header-content-lay::after {
  width: 70vmin;
  height: 70vmin;
  left: auto;
  right: -10vmin;
  top: auto;
  bottom: 0;
  animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
  transform-origin: 10% 10%; 
}

@-webkit-keyframes Gradient {
0% {
  background-position: 0 50%
}
50% {
  background-position: 100% 50%
}
100% {
  background-position: 0 50%
}
}

@-moz-keyframes Gradient {
0% {
  background-position: 0 50%
}
50% {
  background-position: 100% 50%
}
100% {
  background-position: 0 50%
}
}

@keyframes Gradient {
0% {
  background-position: 0 50%
}
50% {
  background-position: 100% 50%
}
100% {
  background-position: 0 50%
}
}

@keyframes morph {
0% {
  border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
100% {
  border-radius: 40% 60%; } 
}

@keyframes spin {
to {
  transform: rotate(1turn); 
} 
}
.st0{display:none;}
.st1{display:inline;}
.st2{opacity:0.29;}
.st3{fill:#FFFFFF;}
.st4{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
.st5{clip-path:url(#SVGID_4_);}
.st6{clip-path:url(#SVGID_6_);}
.st7{clip-path:url(#SVGID_8_);}
.st8{clip-path:url(#SVGID_10_);}
.st9{fill:none;}
.st10{clip-path:url(#SVGID_12_);}
.st11{opacity:0.7;}
.st12{clip-path:url(#SVGID_14_);}
.st13{opacity:0.2;}
.st14{clip-path:url(#SVGID_16_);}
.st15{opacity:0.3;fill:#FFFFFF;enable-background:new    ;}

.header-lay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.header-content{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 61px;
}

.header-content-title{
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.header-content-img{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header-content-img img{
  max-width: 324px;
}

.header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 10px 0;
}

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

.logoImg img{
  width: 45px;
}

.logo a{
  color: black; 
  display: flex; 
  align-items: center; 
  gap: 19px;
  transition: color 0.2s ease;
}

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

.header-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  position: relative; 
}

.topmenu li {
  position: relative;
}

.topmenu-link {
  color: black; 
  text-decoration: none;
  padding: 10px 19px; 
  display: block;
  transition: 0.2s ease;
  position: relative; 
}

.topmenu-link:hover{
  color: #00C9B1;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 55px 55px, rgba(0, 0, 0, 0.12) 0px -10px 30px, rgba(0, 0, 0, 0.12) 0px 5px 6px, rgba(0, 0, 0, 0.17) 0px 10px 10px, rgba(0, 0, 0, 0.09) 0px -2px 5px;  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.2s ease 0s forwards;
  transition: all 0.2s ease;
}

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

.submenu-a {
  color: #070739;
  padding: 10px 19px;
  display: block;
  transition: 0.2s ease;
}

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

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

.fixed-header {
  background-color: #fff;
  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.8s ease, background-color 0.8s ease; 
}

.reasons{
  padding: 44px 0;
}

.reasons h2{
  text-align: center;
  margin-bottom: 26px;
}

.prichina-corobka{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.prichina-boxinga {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.prichina-boxinga::before,
.prichina-boxinga::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00C9B1;
  transition: all 0.4s ease-out;
}

.prichina-boxinga::before {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #007580 0%, #e4bad4 100%);
}

.prichina-boxinga::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #00C9B1;
}

.prichina-boxinga:hover::before {
  width: 100%;
}

.prichina-boxinga:hover::after {
  width: 100%;
}


.prichina-boxinga i{
  color: #007580;
  font-size: 34px;
}

.prichina-boxinga h5{
  font-weight: 700;
}

.art-lay{
  margin: 44px 0;
  background-color: #f5f5f5;
}

.art{
  padding: 44px 0;
}

.titleArt {
  font-size: 21px;
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 44px;
}

.picture-art-img {
  filter: grayscale(1);
  transition: 0.5s ease;
  border-radius: 10px;
  float: left;
  width: 37%;
  margin: 44px;
  margin-top: 0;
  margin-left: 0;
}

.art-lay:hover .picture-art-img{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;  
  filter: grayscale(0);
}

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

.art-price {
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: start;
  font-size: 21px;
  margin-top: 44px;
  font-weight: 700;
}

.scroll-to-top {
  position: fixed;
  z-index: 1;
  bottom: 21px;
  right: 21px;
  width: 40px;
  height: 40px;
  background-color: #007580;
  color: white;
  border-radius: 5px;
  font-size: 25px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  display: none;
}

.service{
  padding: 44px 0;
}

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

.rabochaya-corobka{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.rabochaya-corobka-block{
  display: flex;
  transition: 0.5s ease;
  flex-direction: column;
  gap: 10px;
  padding: 19px;
}

.rabochaya-corobka-block:hover{
  width: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(assets/img/overlay-2025-06-28_17-410.png);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;
}

.rabochaya-corobka-block-img i{
  color: #007580;
  font-size: 34px;
}

.rabochaya-corobka-block-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rabochaya-corobka-block-text h3{
  font-weight: 700;
  transition: 0.2s ease;
  color: #070739;
  font-size: 21px;
}

.rabochaya-corobka-block-text h3:hover{
  color: #007580;
}

.rabochaya-corobka-block-text p{
  color: #070739;
  font-size: 16px;
}

.articles{
  padding: 44px 0;
}

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

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

.articles-card{
  display: flex;
  flex-direction: column;
  position: relative;
}

.articles-card-img{
  overflow: hidden;
}

.articles-card-img img{
  width: 100%;
  transform: scale(1);
  transition: 0.5s ease;
  height: 343px;
  object-fit: cover;
}

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

.articles-card-box{
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: #fff;
  margin: 0 19px;
  gap: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  position: relative;
  top: -34px;
  position: relative;
  overflow: hidden;
}

.articles-card-box::before,
.articles-card-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00C9B1;
  transition: all 0.4s ease-out;
}

.articles-card-box::before {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #007580 0%, #e4bad4 100%);
}

.articles-card-box::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #00C9B1;
}

.articles-card-box:hover::before {
  width: 100%;
}

.articles-card-box:hover::after {
  width: 100%;
}

.articles-card-date{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.articles-card-date i{
  color: #007580;
}

.articles-card-date p{
margin: 0;
}

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

.articles-card-text a{
  transition: 0.2s ease;
  font-weight: 700;
  color: #070739;
  font-size: 21px;
}

.articles-card-text a h3{
  font-weight: 700;
  transition: 0.2s ease;
  color: #070739;
  font-size: 21px;
}

.articles-card-text a:hover{
  color: #007580;
}

.articles-card-text a h3:hover{
  color: #007580;
}

.articles-card-text p{
  color: #070739;
}

.about-us-lay{
  margin: 44px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.about-us-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(assets/img/overlay-2025-06-28_17-411.png);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-us-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 44px 0 ;
}

.about-us-box h2{
  text-align: center;
  color: #070739;
}

.about-us-box p{
  text-align: center;
  color: #070739;
}

.about-us{
  display: flex;
  flex-direction: column;
  align-items: center;
}

video{
  width: 80%;
  border: 19px solid #7C7C7C4F;
  border-top: 0;
}

.workers{
  padding: 44px 0;
}

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

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

.workers-card {
  position: relative;
  overflow: hidden;
}

.workers-card:hover .workers-card-text {
  opacity: 1;
}

.workers-card-img {
  position: relative;
}

.workers-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.workers-card-text {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  padding: 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.workers-card-text::before {
  content: "";
  position: absolute;
  width: 0;
  height: 6px;
  background: #007580;
  transition: all 0.5s ease-out;
}

.workers-card-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 6px;
  background: #007580;
  transition: all 0.5s ease-out;
}

.workers-card-text::before {
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

.workers-card-text::after {
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}

.workers-card-text:hover::before {
  width: 30%;
}

.workers-card-text:hover::after {
  width: 30%;
}

.workers-card-text h5{
  font-weight: 700;
}

.workers-card-text h5,
.workers-card-text p {
  margin: 0;
}

.comments-lay{
  margin-top: 44px;
  background-color: #f5f5f5;
}

.comments{
  padding: 44px 0;
}

.comments h2{
  text-align: center;
  margin-bottom: 26px;
}

.comments-box{
  padding: 0 26px;
  direction: initial;
}

.comments-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  text-align: center;
  background-color: #fff;
  gap: 10px;
  padding: 19px;
}

.rating{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.rating i{
  color: #00C9B1;
}

.comments-card p{
  text-align: center;
  color: #070739;
}

.comments-card img{
  object-fit: cover;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

.comments-card h5{
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #070739;
}

.comments-box .slick-dots{
  position: relative;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  outline: none;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•'; 
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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; 
}

.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: 10px;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

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

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

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

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

.input-container {
  position: relative;
}

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

.input-container .input-fieldwrapper_group:focus, .input-container .textarea-fieldwrapper_group:focus{
  background-color: white;
}

.input-container .input-fieldwrapper_group {
  background-color: #f6f6f6;
  padding: 19px;
  padding-right: 48px;
  font-size: 13px;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

.input-container .textarea-fieldwrapper_group {
  background-color: #f6f6f6;
  padding: 19px;
  padding-right: 48px;
  font-size: 13px;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

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

.check:hover{
  color: #00C9B1;
}

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

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

.submit-form {
  margin: 0 auto;
}

.footer-lay{
  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(assets/img/overlay-2025-06-28_17-412.png);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.footer{
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 44px 0;
}

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 26px;
  flex-direction: row-reverse;
}

.subscribe-footer{
  flex: 1;
}

.form-subscribe{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.form-subscribe h5{
  font-weight: 700;
  flex: 1;
}

.footer-input{
  flex: 1;
  overflow: hidden;
  width: 100%;
  height: 50px;
  background: #FFF;
  border: 2px solid #F6F6F6;
  display: flex;
  align-items: center;
}

.form-subscribe input{
  background: none;
  border: none;
  padding: 0 19px;
  width: 100%;
  color: #333;
  outline: none;
}

.form-subscribe button{
  margin: 0;
  border-radius: 0;
  text-align: center;
}

.menu-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
}

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

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

.menu-footer-link{
  transition: 0.2s ease;
  color: black;
}

.menu-footer-link:hover{
  color: black;
  text-decoration: underline;
}

.contact-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-footer div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.contact-footer div i{
  font-size: 21px;
  color: #070739;
}

.contact-footer div a{
  transition: 0.2s ease;
  color: #070739;
}

.contact-footer div a:hover{
  color: #00C9B1;
}

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

.footer-politic a{
  color: black;
}

.footer-politic a:hover{
  text-decoration: underline;
  color: black;
}

.footer-bottom{
  display: flex;
  align-items: center;
  gap: 19px;
  flex-direction: row-reverse;
  justify-content: space-between;
  border-top: 2px solid #fff;
  padding-top: 26px;
}

.footer-bottom p{
  margin: 0;
  color: #070739;
}

.art-decription-page-lay{
  background-color: #f5f5f5;
}

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

.art-decription-titleArt {
  font-size: 21px;
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 44px;
}

.art-decription-img {
  filter: grayscale(1);
  transition: 0.5s ease;
  border-radius: 10px;
  float: left;
  width: 37%;
  margin: 44px;
  margin-top: 0;
  margin-left: 0;
}

.art-decription-page-lay:hover .art-decription-img{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;  
  filter: grayscale(0);
}

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

.art-decription-price {
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: start;
  font-size: 21px;
  margin-top: 44px;
  font-weight: 700;
}

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

.dop-tov-page-box{
  padding: 44px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.dop-tov-page-card{
  display: flex;
  flex-direction: column;
  position: relative;
}

.dop-tov-page-box-img{
  height: 343px;
  width: 100%;
  overflow: hidden;
}

.dop-tov-page-box-img img{
  object-fit: cover;
  height: 343px;
  width: 100%;
  transform: scale(1);
  transition: 0.5s ease;
}

.dop-tov-page-card:hover .dop-tov-page-box-img img{
  transform: scale(1.05);
}

.dop-tov-page-box-content{
  display: flex;
  flex: 1;
  position: absolute;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255,0.8);
  gap: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  overflow: hidden;
}

.dop-tov-page-box-content h3{
  font-size: 15px;
  font-weight: 700;
  color: #070739;
}

.dop-tov-page-box-content p{
  color: #070739;
}





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

.kontact-card{
  text-align: center;
  flex: 1;
  padding: 19px;
  display: flex;
  gap: 10px;
  background-color: #00C9B1;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kontact-card:nth-child(2), .kontact-card:nth-child(4){
  background-color: #1f2021;
}

.kontact-card h5{
  font-size: 15px;
}

.kontact-card i{
  font-size: 24px;
}

.kontact-card p{
  margin: 0;
  font-size: 13px;
}

.kontact-form{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 44px 0;
}

.title-kontact-form{
  text-align: center;
  margin-bottom: 26px;
}

.input-position{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.input-kontact-form .inputs-kontact {
  background-color: #f6f6f6;
  padding: 19px;
  padding-right: 48px;
  font-size: 13px;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  
}

.input-kontact-form .inputs-kontact{
  outline: none;
  border: 2px solid #f6f6f6;
  margin: 8px 0;
}

.input-kontact-form .textarea-kontact{
  background-color: #f6f6f6;
  padding: 19px;
  padding-right: 48px;
  font-size: 13px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  height: 150px;
}

.input-kontact-form .textarea-kontact:focus, .input-kontact-form .inputs-kontact:focus{
  background-color: white;
}

.input-kontact-form .textarea-kontact{
  outline: none;
  border: 2px solid #f6f6f6;
  margin: 8px 0;
}

.submit{
  margin: 0 auto;
  width: auto;
}

.contact-form-box{
  display: flex;
  flex-direction: column;
}

.kontact-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  padding: 44px 0;
}

.kontact-box-card{
  overflow: hidden;
  position: relative;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 19px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  a{
    word-break: break-all;
  }
}

.kontact-box-card::before,
.kontact-box-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00C9B1;
  transition: all 0.4s ease-out;
}

.kontact-box-card::before {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #007580 0%, #e4bad4 100%);
}

.kontact-box-card::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #00C9B1;
}

.kontact-box-card:hover::before {
  width: 100%;
}

.kontact-box-card:hover::after {
  width: 100%;
}

.kontact-box-card i{
  transition: 0.2s ease;
  font-size: 36px;
  color: #070739;
}

.kontact-box-card:hover i{
  color: #00C9B1;
}

.kontact-box-card a{
  transition: 0.2s ease;
  color: #070739;
}

.kontact-box-card a:hover{
  color: #00C9B1;
}


.hamburger-menu{
  display: none;
}

#menu__toggle {
  opacity: 0;
}

.menu__btn {
  z-index: 12;
  display: flex;
  align-items: center;
  position: relative;
  top: -10px;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #070739;
}

.menu__btn>span::before {
  content: '';
  top: -10px;
}

.menu__btn>span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: absolute;
  visibility: hidden;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.2);
}

.menu__item {
  text-align: start;
  display: block;
  padding: 10px 20px;
  color: #070739;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.submenu__item {
  padding: 0 10px;
  margin: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.submenu__link {
  text-align: start;
  display: block;
  padding: 10px 0;
  color: #070739;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.submenu__link:hover {
  color: #070739;
  background-color: #cfd8dc;
}

#submenu-toggle.active + #submenu {
  max-height: 500px; 
}

.menu__item:hover {
  color: #070739;
  background-color: #cfd8dc;
}

#menu__toggle:checked~.menu__btn>span {
  top: 0;
  transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked~.menu__btn>span::after {
  top: -2px;
  transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
  visibility: visible;
  right: 0;
}



@media (max-width: 1199px) {
  .dop-tov-page-card{
    align-items: center;
  }

  .dop-tov-page-box-img{
    height: 200px;
  }

  .dop-tov-page-box-img img{
    height: 200px;
  }

  .dop-tov-page-box-content{
    position: relative;
    left: unset;
    transform: none;
    background-color: #fff;
    width: 90%;
    height: 100%;
    top: -26px;
  }
}

@media (max-width: 991px) {
  

  .header-content-lay{
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-between;
  }

  .header-content-lay svg{
    height: 100vh;
  }

  .header-content{
    gap: 26px;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .header-content-title{
    align-items: center;
  }

  .header-content-title h2{
    font-size: 21px;
  }

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

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

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

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

  .footer-top{
    text-align: center;
    align-items: stretch;
    flex-direction: column;
  }

  .menu-footer{
    gap: 10px;
  }

  .contact-footer{
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .footer-bottom{
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

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

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

  .hamburger-menu{
    display: block;
  }

  .picture-art-img{
    margin: 0 0 44px 0;
    width: 100%;
  }

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

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

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

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

  video{
    border-top: 19px solid #7C7C7C4F;
    width: 100%;
  }

  .about-us-lay::before{
    height: 100%;
  }

  .about-us{
    padding-bottom: 44px;
  }

  .comments-box{
    padding: 0;
  }

  .workers-card{
    max-width: 70%;
    margin: 0 auto;
  }

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

@media (max-width: 575px) {
  .header-content-img img{
    max-width: 243px;
  }

  .footer-politic{
    flex-direction: column;
  }

  .contact-footer div{
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .menu__box{
    width: 100%;
  }
}



.but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
}

.button-1 {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-1:hover {
  color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 20px;
  background-color: #2980b9;
}

.button-2 {
  background-color: #e74c3c;
  color: #fff;
  padding: 19px 26px;
  border: 2px solid #c0392b;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.button-3 {
  background-color: #2ecc71;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.button-3:hover {
  color: #fff;
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
}

.button-4 {
  background-color: #f39c12;
  color: #fff;
  padding: 10px 26px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.button-4:hover {
  border: 2px solid #9c4307;
  color: #fff;
  color: #d35400;
}

.button-5 {
  background-color: #9b59b6;
  color: #fff;
  padding: 19px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: border-radius 0.2s ease;
}

.button-5:hover {
  color: #fff;
  border-radius: 10px;
}



.dop-pages-mainPriv, .dop-pages-mainAbout{
  padding:110px 0px;
}


.dop-pages-mainPriv a{
  color: black;
  transition: 1s ease;
}

.dop-pages-mainPriv a:hover{
  color: #00C9B1;
}


iframe{
  border:0;
}






  
  
  


