@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

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

img{
  width: 100%;
}

  .header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 25px 0;
  }

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

  .logoImg img{
    width: 55px;
  }

  .logo a{
    color: #000000; 
    display: flex; 
    align-items: center; 
    gap: 20px;
  }

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

  .header-nav {
    font-family: Arial, sans-serif;
    color: #000000;
  }
  
  .topmenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .topmenu li {
    position: relative; 
  }
  
  .topmenu a {
    text-decoration: none;
    color: #000000;
  }
  
  .submenu-link .sub {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000000; 
    transition: transform 0.3s;
}

.submenu-link:hover .sub {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.submenu {
  width: 343px;
  display: block !important;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #070739;
  list-style: none;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform-origin: left center;
  transform: translateY(5px);
  transition: opacity 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s;
}



.submenu li {
  margin: 14px 0;
}

.submenu a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: white;
  letter-spacing: 0.5px;
  
  position: relative; 
}

.submenu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: -5px; 
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.submenu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-content-lay{
  padding: 39px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.header-content-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(photo/illustration_header_69d4bdb30f6103.14561894.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

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

.header-text{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  color: white;
  gap: 20px;
}

.header-text h2{
  font-weight: 800;
}

.osn-form{
  background-color: #36394354;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 39px 0;
  border-radius: 14px;
  padding: 20px;
  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 5px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.titleStay{
  text-align: center;
  margin-bottom: 25px;
}


.input-container {
    position: relative;
}

.submit-form{
  margin: 0 auto;
}

.input-container .input-formsection--input, .input-container .textarea-formsection--input, .form button {
  outline: none;
  border: 2px solid #F5F5F5;
  margin: 8px 0;
  color: white;
}

.input-container .input-formsection--input::placeholder, .input-container .textarea-formsection--input::placeholder{
  color: white;
}

.input-container label{
  color: white;
}

.input-container .input-formsection--input {
  background-color: #00000024;
  border-color: #BDBDBD00;
  padding: 18px;
  padding-right: 41px;
  font-size: 16px;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.input-container .textarea-formsection--input {
  background-color: #00000024;
  border-color: #BDBDBD00;
  padding: 18px;
  padding-right: 41px;
  font-size: 16px;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

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

.form-check {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    padding: 18px 0;
}

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


.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: #000000;
}

.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: 100%;
  height: auto;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: #bbbbbb;
  box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.menu__item:hover {
  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;
}

.blockcard-header-lay{
  background-color: #070739;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blockcard-header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-direction: row;
  padding: 20px;
}

.blockcard {
  display: flex;
  flex-direction: column;
  width: 33.3%;
  align-items: center;
}

.blockcard i {
  font-size: 34px;
  margin-bottom: 14px;
  color: #fffaf6; 
}

.blockcard p {
  font-size: 21px;
  color: #fffaf6;
  text-align: center;
}

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

.about-us-img {
    position: relative;
    width: 50%;
    text-align: center;
}

.about-us-img img {
  border-radius: 14px;
}

  .about-us-img-one {
    position: relative;
    max-width: 343px;
    object-fit: cover;
  }

  .about-us-img-two {
    position: absolute;
    max-width: 212px;
    object-fit: cover;
    top: 60%;
    right: 60%;
  }

.about-us-text {
  width: 50%;
}

.about-us-text h3 {
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 18px;
  color: #000000;
}

.about-us-text p {
  font-size: 21px;
  color: #000000;
} 


.article{
  padding: 39px 0;
}

.article-box{
  background: url(uploads/2026_03/fade-ze0.png);
  background-position: center;
  background-size: cover;
  border-radius: 14px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 25px;
  padding: 18px;
}

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

.picture-article-img {
  border-radius: 14px;
  float: left;
  width: 40%;
  margin: 39px;
  margin-top: 0;
  margin-left: 0;
}

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

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

.our-service{
  padding: 39px 0;
}

.our-service h2{
  font-weight: 800;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 21px;
  text-align: center;
}

.our-service-box {
  display: flex;
  justify-content: space-between;
  gap: 20px; 
}

.our-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: calc(33.3% - 10px); 
  border: 2px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 18px;
  transition: transform 0.2s ease-in-out;
}

.our-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  }

.our-card-icon img {
  width: 100%;
  height: 281px;
  object-fit: contain;
}

.our-card-content h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.our-card-content h3 a {
  color: #000000;
}

.our-card-content p {
  font-size: 16px;
  color: #040303;
  margin-bottom: 18px;
}

.our-card-content a {
  display: inline-block;
  font-size: 16px;
  color: #070739; 
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.our-card-content a:hover {
    color: #009500; 
  }

  .our-articles{
    padding: 39px 0;
  }
  
  .our-articles h2{
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #000000;
  }
  
  .our-articles-box{
    display: flex;
    gap: 14px;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .our-card-articles{
    display: flex;
    flex-direction: column;
    width: calc(33.3% - 10px); 
    gap: 18px;
  }

  
  .our-card-icon-articles img{
    object-fit: contain;
    max-width: 100%;
    height: 281px;
  }

  .our-card-content-articles h3 {
    font-weight: 800;
    font-size: 21px;
    margin-bottom: 10px;
  }
  
  .our-card-content-articles h3 a {
    color: #000000;
  }
  
  .our-card-content-articles p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 18px;
  }
  
  .our-card-content-articles a {
    display: inline-block;
    font-size: 16px;
    color: #070739; 
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  
  .our-card-content-articles a:hover {
      color: #009500; 
    }

    .teams-bloks{
      margin: 39px 0;
      background-color: #00000009;
    }

    .team{
      display: flex;
      flex-direction: column;
      padding: 20px 0;
    }

    .team h2{
      margin-bottom: 25px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 800;
      color: #000000;
    }

    .team-box{
      display: flex;
      justify-content: space-between;
      gap: 25px;
      flex-direction: row;
    }

    .team-card{
      display: flex;
      flex-direction: column;
      width: calc(25% - 10px);
      gap: 14px;
    }

    .team-img{
      object-fit: cover;
      max-width: 100%;
    }

    .team-content{
      display: flex;
      flex-direction: column;
      align-items: start;
    }

    .team-content h3{
      font-weight: 800;
      font-size: 21px;
      color: #000000;
    }

    .team-content p{
      font-size: 18px;
      color: #000000;
    }

    .comment{
      padding: 20px 0;
    }

    .comment h2{
      margin-bottom: 25px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 800;
      color: #000000;
    }

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

    .comment-card{
      display: flex;
      padding: 39px;
      border-radius: 14px;
      width: calc(50% - 10px);
      gap: 14px;
      flex-direction: column-reverse;
      justify-content: space-between;
    }

    .comment-card:first-child{
      background-color: #00000009;
    }

    .comment-card:last-child{
      background-color: #070739;
    }


    .comment-img{
      display: flex;
      gap: 18px;
      align-items: center;
      flex-direction: row;
    }

    .comment-img img{
      width: 75px;
      height: 75px;
      border-radius: 50%;
    }

    .comment-img h3{
      font-weight: 800;
      font-size: 21px;
      color: #000000;
    }

    .coment-title{
      color: white !important;
    }

    .comment-content p{
      font-size: 21px;
      color: #000000;
    }

    .comment-content-title{
      color: white !important;
    }


    .var-raiten{
      margin-top: 39px;
      background-color: #070739;
    }

    .top{
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-direction: row;
      padding: 20px 0;
    }

    .top-card{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: calc(25% - 10px);
      gap: 14px;
      text-align: center;
    }

    .top-card i{
      font-size: 35px;
      color: white;
    }

    .top-card h3{
      font-weight: 800;
      font-size: 30px;
      color: white;
    }

    .top-card p{
      font-size: 21px;
      color: white;
    }


    .partners-bloks{
      margin: 39px 0;
      background-color: #070739;
    }

    .partners-img{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      gap: 14px;
      flex-direction: row;
    }

    .partners-img img{
      max-width: 100%;
    }

.footer-lay{
  background-color: #00000009;
}

.footer {
display: flex;
flex-direction: column;
gap: 25px;
color: #000000;
padding: 39px 0;
}

.footer-box {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.menu-footer{
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
width: 33.3%;
}

.menu-footer ul {
  text-align: start;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.menu-footer li {
margin-bottom: 14px;
}

.menu-footer a {
text-decoration: none;
color: #000000;
transition: color 0.3s ease;
}

.menu-footer a:hover {
color: #8b5e83;
}

.contact-footer {
width: 33.3%;
gap: 14px;
color: #000000;
display: flex;
flex-direction: column;
}

.contact-footer a{
  color: inherit;
  text-decoration: none;
  transition: all 0.5ms;
  cursor: auto !important;
}
.contact-footer a:hover,.contact-footer a:focus{
  color: #8b5e83;
}
.aboutus-footer{
display: flex;
flex-direction: column;
gap: 18px;
width: 33.3%;
}

.aboutus-footer a{
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.aboutus-footer a:hover{
  color: #8b5e83;

}


.contact-footer i {
  color: #8b5e83;
  font-size: 24px;
  margin-right: 14px;
}

.dovn-man {
border-top: 2px solid;
padding: 20px 0;
}

.container-politics{
  justify-content: space-between;
  flex-direction: row;
  text-align: center;
  display: flex;
}

.footer-politik-privacy a {
text-decoration: none;
color: #000000;
}

.footer-politik-privacy a:hover {
text-decoration: underline;
}

.kontact{
  margin: 39px 0;
  padding: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-direction: column-reverse;
}

.kontact-box{
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 39px;
  flex-direction: row;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 25px;
  background-color: #000000;
  border-radius: 6px;
}

.kontact-box-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #fffaf6;
  padding: 25px;
  flex: 1;
  text-align: center;
  gap: 18px;
}

.kontact-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto
}

.kontact-item h3{
  font-size: 18px;
}

.kontact-box i{
  font-size: 30px;
}
.kontact-item a{
  color: inherit;
}

.form-kontact{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  flex: 2;
}

.input-container .inputs {
  background-color: #fff;
  padding: 18px;
  padding-right: 41px;
  font-size: 16px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.input-container .inputs{
  outline: none;
  border: 2px solid #F5F5F5;
  margin: 14px 0;
}

.flex-style{
  display: flex;
  flex-direction: column-reverse;
}

.dop-tovar-page-bloc {
  display: flex;
  padding: 39px 0;
  flex-direction: row;
  gap: 25px;
}
.dop-tovar-page-box {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  gap: 25px;
  padding: 25px;
  box-shadow: 12px 12px 38px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: .5s;
}
.dop-tovar-page-box:hover {
  transform: translateY(-10px);
}
.dop-tovar-page-box-img {
  display: flex;
  justify-content: center;
}
.dop-tovar-page-box-img img {
  object-fit: contain;
  height: 212px;
  max-width: 100%;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 25px;
}

.btm-more {
  text-align: center;
  margin: 0 auto;
}


  
@media (max-width: 1199px) {
  .our-service-box{
    flex-wrap: wrap;
  }

  .our-articles-box{
    flex-wrap: wrap;
  }

  .our-card{
    width: calc(50% - 10px);
  }

  .our-card-articles{
    width: calc(50% - 10px);
  }

  .team-box{
    flex-wrap: wrap;
  }

  .team-card{
    width: calc(48% - 10px);
  }

  .about-us-text{
    width: 40%;
  }
}


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

  .hamburger-menu{
    display: block;
  }

  .header-content{
    flex-direction: column-reverse;
  }

  .header-text{
    width: 100%;
    align-items: center;
    text-align: center;
    flex: none;
  }

  .header-images{
    flex: none;
    max-width: 447px;
  }

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

  .about-us-text{
    width: 100%;
    text-align: center;
  }

  .picture-article-img{
    width: 100%;
    float: none;
    margin: 18px auto;
  }

  .footer-box{
    text-align: center;
    gap: 25px;
    flex-direction: column-reverse;
  }

  .aboutus-footer{
    align-items: center;
    width: 100%;
  }

  .menu-footer{
    width: 100%;
  }

  .contact-footer{
    width: 100%;
  }

  .menu-footer ul{
    text-align: center;
  }

  .container-politics{
    flex-direction: column-reverse;
    gap: 20px;
  }

  .comment-box{
    flex-wrap: wrap;
  }

  .comment-card{
    width: 100%;
  }

  .top{
    flex-wrap: wrap;
  }

  .top-card{
    width: calc(50% - 10%);
  }

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

  .kontact-box-card {
    flex-direction: column !important;
  }

  .dop-tovar-page-bloc{
    flex-direction: column-reverse;
  }

  .osn-form{
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blockcard-header{
    flex-direction: column-reverse;
  }

  .blockcard{
    width: 100%;
  }

  .our-card{
    width: 100%;
  }

  .our-articles-box{
    gap: 39px;
  }

  .our-card-articles{
    width: 100%;
  }

  .team-box{
    padding: 0 39px;
  }



  .team-card{
    width: 100%;
  }
}

@media (max-width: 575px) {
  .top-card{
    width: 100%;
  }

  .partners-img{
    flex-direction: column-reverse;
  }

  .about-us-img-two{
    right: 40%;
  }
}


.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 14px;
  box-sizing: border-box !important;
}
.button-1 {
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding: 18px 25px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 41px;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.button-1:before {
  transition: 1s;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.button-1:hover:before {
  width: 300px;
  height: 300px;
  opacity: 0.4;
  transition: all 0.5s ease-out;
}

.button-1:hover {
  background-color: #fff;
  color: #202960;
  transition: all 0.5s ease-out;
}

.button-1:hover:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #255ea4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.button-2 {
  font-size: 13px;
  display: inline-block;
  padding: 14px;
  border: 2px solid #4a5568;
  background-color: #4a5568;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.button-2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  opacity: 0.2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.button-2:hover {
  background-color: #fff;
  color: #4a5568;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 18px -8px;
}

.button-2:hover::before {
  width: 200%;
  height: 200%;
}

.button-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18px 38px;
  border-radius: 18px;
  border: 2px solid transparent;
  color: #ffffff;
  background-color: #1dc9a0;
  font-size: 13px;
  letter-spacing: 2px;
  transition: all 0.15s linear;
}

.button-3:hover {
  background-color: rgba(29, 201, 160, 0.08);
  border-color: #1dc9a0;
  color: #1dc9a0;
  transform: translateY(-5px) scale(1.05);
}

.button-3:active {
  background-color: transparent;
  border-color: #1dc9a0;
  color: #1dc9a0;
  transform: translateY(5px) scale(0.95);
}

.button-3:disabled {
  background-color: rgba(255, 255, 255, 0.16);
  color: #8e8e93;
  border-color: #8e8e93;
}

.button-4 {
  padding: 14px;
  font-size: 13px;
  margin-top: 18px;
  border: 0;
  box-shadow: 0px 0px 41px 0px red;
  font-weight: 800;
  color: white;
  border-radius: 0.3rem;
  background-color: red;
  letter-spacing: 0.2rem;
}

.button-4:hover {
  animation: changeBg 1s infinite;
  -webkit-animation-duration: 10s;
}

@keyframes changeBg {
  0%,
  100% {
    box-shadow: 0px 0px 41px 0px red;
  }

  25% {
    box-shadow: 0px 0px 41px 0px turquoise;
    background-color: turquoise;
  }

  50% {
    box-shadow: 0px 0px 41px 0px purple;
    background-color: purple;
  }

  75% {
    box-shadow: 0px 0px 41px 0px rgb(191, 204, 11);
    background-color: rgb(191, 204, 11);
  }
}

.button-5 {
  font-size: 13px;
  font-weight: 800;
  border: 0px;
  color: white;
  background-color: #1877f2;
  padding: 14px 18px;
  border-radius: 18px;
  cursor: pointer;
}

.button-5:hover {
  background-image: linear-gradient(90deg, #b799ff 0%, #acbcff 50%, #aee2ff 75%, #e6fffd 100%);
  color: black;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  100% {
    background-position: 50rem;
  }
}


.dopsPadd{
  padding: 81px 0px;
}

.dop-tovar-page-box-titles{
  color: #000000;
}

.mapContact{
  border: 0;
}

.form-kontact .formTitleOne{
  text-align: center;
}

.form-kontact button{
  max-width: 100%; 
  margin: 0 auto;
}

.whiteText{
  color: white;
}

.our-card-content-articles .our-card-dopStyle{
  text-transform: uppercase; 
  letter-spacing: 2px; 
  border: 2px solid;
  padding: 6px;
}




.form-input_6789012, .form-select_7890123 {
       background-color: #00000024;
    border-color: #BDBDBD00;
    padding: 18px;
    padding-right: 41px;
    font-size: 16px;
    line-height: 1.25rem;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
        color: #fff;

    }

    .osn-form::placeholder,
    .osn-form input::placeholder{

        color: #fff;
    }

    

    .osn-form select {
       background-color: #00000024;
    border-color: #BDBDBD00;
    padding: 18px;
    padding-right: 41px;
    font-size: 16px;
    line-height: 1.25rem;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
    color: #fff;
    }

    .osn-form select option{
      color: #000000;
    }



    .form-row_3456789 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    
    @media (max-width: 1100px) {
      .dopst{
        grid-template-columns: repeat(1, 1fr) !important;
      }
    }

    @media (max-width: 767px) {
        .form-row_3456789 {
             grid-template-columns: repeat(1, 1fr);
        }
    }

    .form-group_4567890 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group_5678901 label ,
    .form-group_4567890 label{
        font-size: 14px;
        font-weight: 500;
       color: white !important;
    }

    .form-input_6789012,
    .form-select_7890123 {
        background-color: #00000024;
    border-color: #BDBDBD00;
    padding: 18px;
    padding-right: 41px;
    font-size: 16px;
    line-height: 1.25rem;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
    }

   .art-content p{
    padding: 15px;
   }

.art-content p a{
  background: #000000;
  color: #fff;
  padding: 15px;

}



  
  
  


