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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Montserrat', sans-serif !important;
}
*{
  box-sizing: border-box;
}

a {
 
  text-decoration: none;
  cursor: pointer;
}
 img{
    max-width: 100%;
}

     
.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 15px;
  box-sizing: border-box !important;
}
.button-1 {
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding:  17px  26px;
  font-weight:700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 32px;
  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:  18px;
  display: inline-block;
  padding: 15px;
  border:  1px 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 16px -8px;
}

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

.button-3 {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 12px 24px;
  border: 4px solid #ff0072;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #ff0072;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-3:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #ff0072;
  z-index: -1;
}

.button-3:hover,
.button-3:focus {
  color: white;
}

.button-3:hover:before,
.button-3:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button-3:active {
  transform: scale(0.9);
}

.button-4 {
  padding: 15px;
  font-size:  18px;
  margin-top: 17px;
  border: 0;
  box-shadow: 0px 0px 32px 0px red;
  font-weight: bolder;
  color: white;
  border-radius: 2;
  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 32px 0px red;
  }

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

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

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

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

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

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


.block-content{
  width: 100%;
  box-sizing: border-box;
  padding-right: 19px;
  padding-left: 19px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}



  @media (min-width: 576px){
    .block-content{
      max-width: 540px;
    }
  }

  @media (min-width: 768px){
    .block-content{
      max-width: 720px;
    }
  }

  @media (min-width: 992px){
    .block-content{
      max-width: 960px;
    }
  }

  @media (min-width: 1200px){
    .block-content{
      max-width: 1140px;
    }
  }

  @media (min-width: 1400px){
    .block-content{
      max-width: 1217px;
    }
  }

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

  .logo-head{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 24px;
    a{
      color: #1B262C;
      display: flex;
      align-items: center;
      gap: 19px;
    }
  }

  .logoImg img{
    width: 50px;
  }

  .logoTitle{
    margin: 0;
  }

  nav {
    display: table;
}

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

  .header-nav{
    padding:  17px 0;
  }

  .submenu li {
    padding: 5px;
}

.submenu {
    background: #63727d;
    position: absolute;
    inset-inline-start: 50%;
    top: 100%;
    z-index: 5;
    width: 252px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: .5s ease-in-out;
}

.submenu a {
    text-align: left;
    font-size: 16px;
    color: white;
}

.submenu li:last-child a {
    border-bottom: none;
}

.topmenu{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

  .topmenu:after {
    content: "";
    display: table;
    clear: both;
}

.topmenu>li {
    float: left;
    position: relative;
}

.topmenu>li>a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #1B262C;
    text-decoration: none;
}
.topmenu>li>a:hover {
    border-bottom: 1px solid;
}

.topmenu>li:hover .submenu {
  opacity: 1;
   transform: scaleY(1) translate(-50%);
}

.header-lay{
  background: url(media/transparent_ecM0.png);
  background-position: center;
  background-size: cover;
  background-color: #f8f1f1;
}

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

.header-box-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 76px
}

.header-box-title h2{
  padding: 17px 0;
}

.lasted-news h1{
  text-align: center;
}

.lasted-news-card {
  padding: 41px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-card {
  width: calc(33.33% - 10px);
  display: flex;
  margin-bottom: 24px;
  background-color: #f7f7f7;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.news-card:hover{
  transform: translateY(-10px);
  box-shadow: 12px 12px 31px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
      height: 252px;
      object-fit: contain;
      object-position: center;
}

.news-details {
  padding: 19px;
}

.news-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

.news-date {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
  color: #888888;
}

.news-author {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
  color: #888888;
}

.news-description {
  margin-top: 0;
  font-size: 18px;
  color: #555555;
}


.pop-news h1 {
  font-weight: 800;
  text-align: center;
}

.pop-news-box {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.pop-news-box-card {
  flex-basis: 23%;
  background-color: #f9f9f9;
  padding: 19px;
  text-align: center;
  margin-bottom: 19px;
}

.pop-news-box-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.pop-news-box-card a {
  display: block;
  color: #333;
  font-weight: 800;
  text-decoration: none;
}

.pop-news-box-card a:hover {
  text-decoration: underline;
}



.pop-categories {
  margin:  41px 0;
  border-radius: 15px;
  box-shadow: 12px 12px 19px rgba(0, 0, 0, 0.1);
  transition: .5s;
}

.pop-categories:hover{
  transform: translateY(-10px);
  box-shadow: 12px 12px 31px rgba(0, 0, 0, 0.2);
}

.pop-categories-box{
  padding: 41px 0;
}

.pop-categories h1 {
  padding-top: 41px;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  font-weight:  800;
  color: #333333;
}

.pop-categories-box ul {
  list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
}

.pop-categories-box li {
  border-bottom: 0px dashed #1B262C;
  font-size: 24px;
  color: #333333;
}

.pop-categories-box li i{
  padding-right: 15px;
}

.pop-categories-box li i svg{
  width: 24px;
  height: 24px;
}

.pop-categories-box li:last-child {
  margin-bottom: 0;
}

.footer-lay{
  background: url(media/transparent_ecM0.png);
  background-position: center;
  background-size: cover;
  background-color: #f8f1f1;
}

.footer{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0;
}

.footer-politiks {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.footer-politiks a {
color: #1B262C;
text-decoration: none;
}

.footer-contskt{
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer-contskt a {
  color: #1B262C;
  word-break: break-word;
}
.box-kontakt  a {
  color: #1B262C;
}
.email-subscribe{
  background-color: rgba(0, 30, 100, 0.1);
  padding:  19px 0;
  text-align: center;
}

.email-subscribe h3{
  padding-bottom:  19px;
}

.form-control{
  background-color: #fff;
  padding: 5px;
  padding-right: 33px;
  font-size:  18px;
  box-sizing: border-box;
  line-height: 1.25rem;
  width: 300px;
  border: none;
  margin: 19px;
  border-radius: 12px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.container-news-card {
  max-width: 100%;
  margin: 41px 0;
  padding: 19px;
  background-color: #f0f0f0;
}

.container-news-card h1 {
  text-align: center;
}

.published-news-card {
  margin-bottom: 19px;
}

.published-news-card span {
  font-size: 18px;
  color: #555555;
}

.images-news-card  {
   max-height: 361px;
  object-fit: contain;
  border-radius: 20px;
  float: right;
  width: 38%;
  margin: 17px;
  margin-top: 0;
  margin-right: 0; 
}
@media (max-width: 768px){
.images-news-card {
    float: none;
    width:100%;
    margin: 0 0 19px 0; 
  }
}

.content-news-card {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 19px;
}

.col-news-card {
  display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
}

.comm-news-card{
  display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.view-news-card{
  display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.row-news-card{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 49px;
  flex-direction: row-reverse;
}

.kontakt {
  display: flex;
  margin: 41px 0;
  background-color: #FFFFFF;
  gap: 26px;
  padding: 19px;
  box-shadow: 12px 12px 31px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  justify-content: space-around;
}

.box-kontakt {
  display: flex;
  flex: 1;
  font-size: 18px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.box-kontakt-icon svg {
  width: 29px;
  height: 29px;
}

.box-kontakt-text {
  text-align: center;
  word-break: break-word;
}

.from-box{
  display: flex;
  padding: 41px 0;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  text-align: center;
  gap: 19px;
}

.forma-video{
  width: 50%;
  display: flex;
  justify-content: center;
}

.forma-video video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}

.form {
  background-color: #fff;
  display: block;
  padding: 1rem;
  max-width: 411px;
  border-radius: 12px;
  box-shadow: 0 5px  15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.input-container {
  position: relative;
}

.input-container input, .form button,  .input-container textarea{
  outline: none;
  border: 1px dashed #e5e7eb;
  margin: 5px 0;
}

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

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

.form-check input {
  width: 10%;
}

.submit {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 17px;
  padding-right: 17px;
  background-color: #1B262C;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25rem;
  font-weight: 700;
  width: 100%;
  border-radius: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .1s;
}

.submit:hover{
  transform: scale(1.05);
} 

.info-dop{
  display: flex;
  padding: 41px 0;
  flex-direction: column;
  padding-bottom: 41px;
  gap: 26px;
}

.dop-tovar-page-bloc {
  display: flex;
  gap: 26px;
}
.dop-tovar-page-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 26px;
  padding: 19px;
  box-shadow: 12px 12px 31px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  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: 252px;
  width: auto;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 19px;
}

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

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

.dop-pages-text {
  text-align: justify;
  word-wrap: break-word;
}
.dop-pages-text p{
  margin-bottom: 5px;
  text-indent: 2ch;
  
 
}
.dop-pages-text h1{
    font-weight: 700;
    text-align: center;
    margin-bottom:  22px;
}
.dop-pages-text h2{
    font-weight:700;
    text-align: center;
    margin-bottom:17px ;
}
.dop-pages-text table,.dop-pages-text a{
    word-break: break-word;
    color: inherit;
}
.dop-pages-text ul li,
.dop-pages-text ol li {
  margin-bottom: 5px;
}
.dop-pages-text ul,
.dop-pages-text ol {
  margin-bottom: 14px;
  padding-left:  19px;
  list-style: inside;
}
.pad-sect{
  overflow: hidden;
  padding:117px 0px;
}
.stayTitl {
  color: #1B262C;
  padding-bottom: 19px;
  text-align: center;
  font-weight: 800;
}

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

@media (max-width: 991px) {
  .header{
    flex-direction: column;
  }
  
  .pop-categories-box li i{
    display: none;
  }

  .pop-categories-box ul{
    flex-direction: column;
    gap: 17px;
  }

  .header-box{
    padding: 0;
  }

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

  .pop-news-box {
    flex-direction: column;
  }

  .pop-news-box-card {
    flex-basis: 100%;
  }

  .pop-news-box-card a{
    font-size: 29px;
  }

  .footer{
    text-align: center;
    flex-direction: column;
    gap: 49px;
  }

  .from-box{
    flex-direction: column;
  }

  .form{
    max-width: 100%;
  }

  .forma-video{
    width: 100%;
  }

  iframe{
    width: 100%;
  }

  .kontakt{
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .news-card{
    width: calc(100% - 10px);
  }

  .images-news-card img{
    max-width: 100%;
  }

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

  .price-news-card-button{
    margin: 0 auto;
  }

  .row-news-card{
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
}
 @media (max-width: 575px){

          button{
              width: 100%;
          }
      }
@media (max-width: 550px) {
  .pop-news-box-card a{
    font-size: 17px;
  }

  .header-box-title h2{
    font-size: 18px;
  }

  
}

@media (max-width: 500px) {
  .topmenu{
    flex-direction: column;
  }

  .submenu{
    right: -130px;
  }

  .form-control{
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .header-box-title h2{
    font-size: 17px;
  }
}

