@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

:root {
  --wht-col: #ffffff;
  --grey-col: #ebebeb;
  --grey-d: #64646e;
  --drk-col: rgb(37, 36, 36);


  --color-brend-1: #50e3c2;
  --color-brend-2: #e3b750;
  --color-brend-3: #e350ad;
  --color-brend-4: #748b00;
  --color-brend-5: #9950e3;


  --color-bgd-1: #50e3c3c6;
  --color-bgd-2: #e3b750cd;
  --color-bgd-3: #e350adc1;
  --color-bgd-4: #748b00b4;
  --color-bgd-5: #9950e3a2;

}


body {
direction: ltr;
font-family: 'Roboto Slab', sans-serif !important;
font-size: 16px;
line-height: 1.4;
margin: 0;
padding: 0;  
box-sizing: border-box;
background-color: var(--grey-col);
}

ul {
padding-left: 0;
padding-right: 0;

}
a {
text-decoration: none;
word-break: break-all;
}
li {
  margin: 5px;
}
.container-in {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.container-out {
  padding: 26px 0;
}
.container-in-article{
  padding: 26px 0 55px;
}
.header-sctn{
 background-color: var(--grey-col);
}
.header-menu{
  display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 14px;
    background-color: var(--grey-col);
}
.menu-box{
  display: flex;
  align-items: center;
}
.open-icon svg,
.close-icon svg{
  color: var(--color-bgd-3);
}
.open-icon svg:hover,
.close-icon svg:hover {
  color: var(--color-brend-3);
}
.open-icon,
.close-icon,
.menu-mobile {
  display: none;
}

.menu-mobile.active {
  transform: translateY(0);
}

.menu-mobile .header-menu-items {
  flex-direction: column;
}

.menu-mobile .header-menu-items li {
  margin: 5px 0;
}
.header-menu-items{
  display: flex;
  flex-direction: row;
}
.header-menu-items li{
  list-style: none;
  margin: 0 5px;
}
.header-menu-items li a{
  color: var(--color-brend-3);
}
.logo-site{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-title {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--color-brend-3);
}
.phone-menu-box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.phone-box{
  display: flex;
    align-items: center;
}
.head-btn{
  text-align: center;
}
.phone-header{
  border-bottom: 3px solid var(--color-brend-3);
}
.phone-header a{
  color: #64646e;
}

.head-sctn {
  position: relative;
  background: url('uploads/body-bg-q700.webp') no-repeat center center/cover;
  color: white;
}
.head-title{
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.head-title h1{
 color: #17171a;
  font-size: 50px;
}
.head-title span{
  width: 66px;
  display: flex;
  height: 8px;
  background-color: var(--color-brend-3);
  border-radius: 0px;
  flex-direction: column;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebebeb80; 
  z-index: 1;
}

.head-block {
  position: relative;
  z-index: 2; 
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 19px;
  user-select: none;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #ccc;
  border-radius: 100%;
  background: #e8e8e8;
  box-shadow: 3px 3px 4px #c5c5c5,
              -3px -3px 4px #ffffff;
  transition-duration: 0.5s;
}

.container input:checked ~ .checkmark {
  box-shadow: inset 3px 3px 4px #c5c5c5,
              inset -3px -3px 4px #ffffff;
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
}

.container input:checked ~ .checkmark:after {
  opacity: 1;
}

.container .checkmark:after {
  left: 5px;
  top: 4px;
  width: 4px;
  height: 7px;
  border: solid darkgray;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.login-box {
  position: relative;
    top: -62px;
    z-index: 3;
  width: 65%;
  padding: 30px;
  margin: 18px auto 0;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 18px 30px rgba(0,0,0,.6);

}
.contact-page-block{
  display: flex;
}
.form-box{
  flex: 1;
  padding: 30px;
  margin: 18px auto;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 18px 30px rgba(0,0,0,.6);

}
.login-box p:first-child {
  margin: 0 0 28px;
  padding: 0;
  color: grey;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1px;
}
.login-box .user-box {
  position: relative;
}

.login-box .input-user--holder__item {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: grey;
  margin-bottom: 28px;
  border: none;
  border-bottom: 2px solid grey;
  outline: none;
  background: transparent;
}

.login-box .textarea-user--holder__item {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: grey;
  margin-bottom: 28px;
  border: none;
  border-bottom: 2px solid grey;
  outline: none;
  background: transparent;
}
.input-form{
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: grey;
  margin-bottom: 28px;
  border: none;
  border-bottom: 2px solid grey;
  outline: none;
  background: transparent;
}
.textarea-form{
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: grey;
  margin-bottom: 28px;
  border: none;
  border-bottom: 2px solid grey;
  outline: none;
  background: transparent;
}
.input-field{
  display: flex;
  align-items: center;
}
.form-title{
  text-align: center;
    font-size: 19px;
}
.batton-form{
  text-align: center;
}
.about-sctn {
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; 
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebebeb61;
  z-index: 2; 
}

.about-cont {
  position: relative;
  z-index: 3; 
  padding: 44px;
}

.about-title {
  text-align: center;
    color: #17171a;
    background-color: white;
    padding: 28px;
}
.about-page-title h2{
text-align: center;
}
.about-us-video{
  display: flex;
    justify-content: center;
}
.about-page-sctn{
  background-color: var(--grey-col);
}
.about-page-title{
  border-top: 2px solid #64646e;
  border-bottom: 2px solid #64646e;
  padding: 23px;
  margin: 23px;
}
.about-us-txt{
  margin: 23px;
}
.about-us-video {
  position: relative;
  display: inline-block;
}

.about-us-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); 
  z-index: 2;
  transition: opacity 0.5s ease;
}

.about-us-video video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.about-us-video:hover::before {
  opacity: 0;
}

.privacy-sctn{
  background-color: var(--grey-col);
  border-top: 2px solid white;
}
.privacy-items a{
  color: #494c5b;
}
.service-sctn{
  background-color: var(--grey-col);
}
.service-title,
.articles-title {
  border-top: 2px solid #64646e;
    border-bottom: 2px solid #64646e;
    padding: 23px;
    margin: 23px;
}
.service-title h2,
.articles-title h2 {
  font-size: 34px;
    text-align: center;
}
.service-contents-box{
  display: flex;
    flex-direction: row;
}
.service-contents{
  display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.service-content{
  width: 320px;
    padding: 14px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.service-img img{
  width: 100%;
    height: 357px;
    object-fit: cover;
}

.service-card{
padding: 18px;
}
.service-text a{
  color: #494c5b;
  font-size:  19px;
}
.service-text a:hover{
  color: var(--color-brend-3);
}
.service-text-content {
  display: -webkit-box; 
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  overflow: hidden; 
  text-overflow: ellipsis; 
}


.articles-list {
  display: flex;
    flex-direction: column;
    gap:59px;
}
.articles-card{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.articles-img{
  border-radius: 9px;
  width: 504px;
    position: relative;
    left: 42px;
    height: 240px;
    text-align: center;
   
}
.articles-img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 9px;
  border: 3px solid  var(--color-bgd-3);
}
.card-title a{
  color: white;
  font-size: 22px;
}
.button-art a{
  color: inherit;
}
.card {
  position: relative;
  top: 43px;
  right: 43px;
  width: 540px;
  height: auto;
  box-sizing: border-box;
  background-color: var(--color-bgd-3);
  border: 4px solid var(--color-brend-3);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 14px 23px,
          rgba(0, 0, 0, 0.23) 0px 6px 6px,
          inset rgba(0, 0, 0, 0.19) 0px 14px 23px,
          inset rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}

.card:hover {
  box-shadow: rgba(193, 44, 223, 0.19) 0px 14px 23px,
          rgba(193, 44, 223, 0.23) 0px 6px 6px,
          inset rgba(0, 0, 0, 0.19) 0px 14px 23px,
          inset rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border: 4px solid #b671d6;
}

.card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--grey-d);
  cursor: default;
}

.card-des {
  margin: 0;
  font-size: 16px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
          "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 700;
  color: #fff;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  cursor: default;
}

.card-text {
  margin: 0;
  display: flex;
  align-items: center;
 justify-content: center;
}

.btn-serv-box{
  margin: 30px 0 0;
  text-align: end;
}
.main-text-img {
  float:left; 
  margin: 18px 30px ;
}
.main-title{
  text-align: center;
}
.main-items{
  padding: 18px;
}
.main-text-img img {
  width: 540px; 
  height: auto; 
  object-fit: contain; 
  box-shadow: 0 14px 34px rgba(0, 0, 0, .6);
}
.price-title{
  color: var(--color-brend-3);
  font-size: 19px;
    border-top: 2px solid #64646e;
    border-bottom: 2px solid #64646e;
    padding: 18px;
    margin: 18px;
    text-align: center;
}
.tarif-sctn{
  background-color: var(--grey-col);
}
.tarif-items{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.tarif-item{
  flex: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 2px solid var(--color-brend-3);
  padding: 23px 18px;
  margin:  5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; 
}
.tarif-item:hover {
  transform: translateY(-5px); 
  box-shadow: 0 14px 23px rgba(0, 0, 0, 0.1); 
  background-color: var(--color-bgd-3);
}
.tarif-name{
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin: 0 0  5px 0;
}
.tarif-price{
  padding:  5px;
  border: 2px solid var(--color-brend-3);
  font-size: 30px;
}
.tarif-serv p{
  text-align: center;
  padding:  5px 0;
  margin:  5px 0;
  border-bottom: 2px solid var(--color-brend-3);
}
.contact-page-sctn{
  background-color: rgb(37 36 36 / 70%);
}
.adres-wrap{
  flex: 1;
    margin: 0 28px;
    display: flex;
    align-items: center;
}
.adres-list{
  display: flex;
  flex-direction: column;
    justify-content: space-evenly;
}
.adres-item{
  list-style: none;
    padding: 28px 0;
    border-top: 2px solid var(--grey-col);
}
.adres-item p {
  text-transform: uppercase;
  color: white;
  font-size: 17px;
    font-weight: 900;
}
.adres-item a{
  color: white;
  font-size: 17px;
}

.quiz-sctn {
  background-color: rgb(37 36 36 / 85%);
  margin: 0 auto; 
}
.quiz-title {
  border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 18px;
    margin: 18px;
}

.quiz-title h2{
  font-size: 30px;
  color: white;
  text-align: center;
  margin-bottom: 18px;
}

.quiz-block {
  margin-bottom: 18px;
}

.quiz-block h5 {
  text-align: center;
  font-size: 23px;
  color: var(--color-brend-3);
  margin-bottom: 14px;
}

.answer-block {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-answer {
  flex: 1;
  padding: 5px 14px;
  font-size: 16px;
  color: #fff;
  background-color: rgb(37 36 36 / 40%);
  border: 2px solid var(--color-brend-3);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-answer:hover {
  background-color: var(--color-bgd-3);
  transform: translateY(-2px); 
}

.hidden {
  display: none;
}
.quiz-block.show {
  display: block;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quiz-result {
  display: none;
}

.quiz-result.show {
  text-align: center;
  color: var(--color-bgd-3);
  display: block;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.footer-sctn{
  background-color: var(--grey-col);
}
.logo-menu-footer{
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.logo-box-footer{
  flex: 1;
    margin: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 0;
}
.header-logo-footer{
  display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-image-footer{
  width: 62px;
  margin:  14px;
}
.footer-menu{
  flex: 1;
    margin: 0 18px;
    display: flex;
    border-top: 2px solid white;
}
.footer-serv-art-block{
  flex: 1;
    margin: 0 18px;
    display: flex;
    flex-direction: column;
    border-top: 2px solid white;
}
.adres-footer-block{
  flex: 1;
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid white;
}
.footer-menu-list li,
.serv-art-item,
.adres-item-footer {
  list-style: none;
}
.footer-menu-list li a,
.menu-link-foot,
.adres-title-footer {
  color: var(--drk-col);
  text-transform: uppercase;
  font-weight: 900;

}
.serv-art-item,
.adres-item-footer {
  margin: 14px 0;
}
.adres-item-footer a,
.serv-art-item a{
  color: var(--drk-col);
}
.footer-menu-list li{
  margin: 14px 0;
}
.adres-items-footer{
  width: 80%;
}
.serv-art-menu-footer{
  width: 80%;
}
.privacy-items {
  display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0 18px;
}
.text-hover {
  display: inline-block; 
  transition: transform 0.3s ease; 
}

.text-hover:hover {
  transform: scale(1.1); 
}

.content-page-sctn,
.privacy-page-sctn{
  word-break: break-all;
  overflow: hidden;
  background-color: var(--grey-col);
}
.content-page-block,
.privacy-page-block{
  padding: 23px;
}

.content-page-img img{
  width: 51%;
    object-fit: contain;
    border: 10px solid white;
}
.content-page-img{
  display: flex;
  justify-content: center;
}
.content-page-block h2{
  text-align: center;
}
.content-page-cont{
  display: flex;
  flex-direction: column;
}
.content-page-block{
  display: flex;
    flex-direction:  column;
}



@media screen and (min-width: 480px) {
    .container-in{
      max-width: 480px;
    }
  }
  @media screen and (min-width: 768px) {
    .container-in {
      max-width: 768px;
    }
  }
  @media screen and (min-width: 1200px) {
    .container-in {
      max-width: 1200px;
    }
  }


  @media (min-width: 1200px){
    .service-content {
width: 500px;
    }
  }

  @media (max-width: 1199px) {
    .main-text-img img {
      width: 350px;
    }
    .logo-menu-footer {
flex-direction: column;
    }
  }


  @media (max-width: 768px) {
    .tarif-items {
      flex-direction: column;
    }
.head-title h1{
   font-size: 23px;
 }
.articles-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.articles-img{
width: 70%;
}
.card{
    top: -40px;
    right: 25px;
    width: 70%;
}
 .main-text-img{
  text-align: center;
  float: none;
 }
 .privacy-items{
  flex-direction: column;
 }
 .contact-page-block{
  flex-direction: column-reverse;
 }
 .btn-answer {
  flex-basis: 100%; 
}
}

@media (max-width: 760px){
  .header-menu{
    flex-direction: row;
    align-items: center;
  }
  .phone-box {
    display: none;
  }

  .header-menu-items{
    display: none;
  }
  .serv-title-menu{
    display: flex;
      justify-content: center;
  }
 
  .menu-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey-col);
    padding: 23px;
    box-sizing: border-box;
    transform: translateY(-100%);
    transition: transform 1s ease;
    z-index: 5;
  }
 
  .close-icon{
    display: flex;
    justify-content: flex-end;
  }
  .open-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .header-menu-mob-items{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 2;
  }
  .header-menu-mob-items li{
    list-style: none;
  }
  .header-menu-mob-items li a{
     color: var(--drk-col);
     font-size: 23px;
  }
  .serv-art-menu-heder-menu li{
    border-bottom: 2px solid var(--color-bgd-3);
  }
  
}



@media (max-width: 440px){
  .header-title{
    font-size: 19px;
  }
  .main-text-img img{
    width: 100%;
  }
}


  @media (max-width: 380px){
    .login-box {
      width: 95%;
      padding: 23px;
    }
    .card {
      top: -40px;
      right: 25px;
    }
    .articles-img{
      left: 0;
    }
  }




  .button-1 {
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #17171a, #64646e);
    color: white;
    font-family: "Segoe UI", sans-serif;
    font-weight: 900;
    font-size: 12px;
    border: none;
    border-radius: 0px;
    padding: 18px;
    cursor: pointer;
  
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  
    animation: button-shimmer 2s infinite;
    transition: all 0.3s ease-in-out;
  
  }
  
  .button-1:hover {
    background: linear-gradient(to bottom, #222229, #494c5b);
    animation: button-particles 1s ease-in-out infinite;
    transform: translateY(-2px);
  }
  
  .button-1:active {
    transform: scale(0.95);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes button-shimmer {
    0% {
      background-position: left top;
    }
  
    100% {
      background-position: right bottom;
    }
  }
  
  @keyframes button-particles {
    0% {
      background-position: left top;
    }
  
    100% {
      background-position: right bottom;
    }
  }
  

   .button-2 {
     font-size: 12px;
     color: black;
     font-family: inherit;
     font-weight: 700;
     cursor: pointer;
     position: relative;
     border: 1px solid black;
     padding: 14px;
     background: none;
     text-transform: uppercase;
     transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
     transition-duration: 400ms;
     transition-property: color;
   }
   
   .button-2:focus,
   .button-2:hover {
     color: var(--color-brend-3);
     border: none;
   }
   
   .button-2:focus:after,
   .button-2:hover:after {
     width: 100%;
     left: 0%;
   }
   
   .button-2:after {
     content: "";
     pointer-events: none;
     bottom: -2px;
     left: 50%;
     position: absolute;
     width: 0%;
     height: 2px;
     background-color: var(--color-brend-3);
     transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
     transition-duration: 400ms;
     transition-property: width, left;
   }
  
   
   .button-3 {
    padding: 18px;
    width: auto;
    height: auto;;
     border: 0.5px solid grey;
     transition: all 0.3s;
     cursor: pointer;
     color: #64646e;
     background: white;
     font-size: 22px;
     font-weight:700;
     font-family: 'Montserrat', sans-serif;
   }
   
   .button-3:hover {
     background: var(--color-brend-3);
     color: white;
     font-size: 23px;
   }
  

  .button-4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    padding: 18px 23px;
    border: 1px solid var(--color-brend-3);
    border-radius: 2px;
    background-color: #ffffff8f;
    position: relative;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: var(--color-brend-3);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  }
  
  .button-4:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color:var(--color-brend-3);
    z-index: -1;
  }
  
  .button-4:hover, .button-4:focus {
    color: white;
  }
  
  .button-4:hover:before, .button-4:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
  
  .button-4:active {
    transform: scale(0.9);
  }
   

 .button-5 {
   transition: all 0.3s ease-in-out;
   font-family: "Dosis", sans-serif;
 }
 
 .button-5 {
   width: 140px;
   padding: 14px;
   text-align: center;
   border-radius: 0px;
   background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
   box-shadow: 0 23px 28px -6px rgba(238, 103, 97, 0.5);
   outline: none;
   cursor: pointer;
   border: none;
   font-size: 12px;
   color: white;
 }
 
 .button-5:hover {
   transform: translateY(3px);
   box-shadow: none;
 }
 
 .button-5:active {
   opacity: 0.4;
 }

 .logo-box a .logo-site .logo-image{
    width: 75px;
    margin: 14px;
 }

 .serv-art-menu-heder-menu li a{
    font-size: 17px;
 }

 .log-box-label{
    margin: 18px;
 }

 .log-labelA{
    color: var(--drk-col);
 }

 .maps{
   border: 0;
 }

 .about-title p{
  margin: 28px 0;
 }
