@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;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: 'Saira Condensed', sans-serif !important;
}

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

.block-content{
  width: 100%;
  box-sizing: border-box;
  padding-right: 17px;
  padding-left: 17px;
  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: 1218px;
    }
  }

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

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

  .logoImg img{
    width: 45px;
  }

  .logoTitle{
    margin: 0;
  }

  nav {
    display: table;
}

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

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

  .submenu li {
    padding: 10px;
}

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

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

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

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

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

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

.topmenu>li>a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: black;
    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(pics/OpacityBg_2025-03-26_11-47-490.png);
  background-position: center;
  background-size: cover;
  background-color: #f1f3f8;
}

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

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

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

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

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

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

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

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

.news-details {
  padding: 20px;
}

.news-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  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: bold;
  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: 20px;
  text-align: center;
  margin-bottom: 20px;
}

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

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

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



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

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

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

.pop-categories h1 {
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  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: 1px solid black;
  font-size: 26px;
  color: #333333;
}

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

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

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

.footer-lay{
  background: url(pics/OpacityBg_2025-03-26_11-47-490.png);
  background-position: center;
  background-size: cover;
  background-color: #f1f3f8;
}

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

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

.footer-politiks a {
color: black;
text-decoration: none;
}

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

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

.form-control{
  background-color: #fff;
  padding: 0.7rem;
  padding-right: 3rem;
  font-size: 0.875rem;
  box-sizing: border-box;
  line-height: 1.25rem;
  width: 300px;
  border: none;
  margin: 20px;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

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

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

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

.images-news-card img {
  max-width: 389px; 
  height: auto;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px;
}

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

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

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

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

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

.kontakt {
  display: flex;
  margin: 50px 0;
  background-color: #FFFFFF;
  gap: 26px;
  padding: 17px;
  box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  justify-content: space-around;
}

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

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

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

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

.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: 450px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 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 solid #e5e7eb;
  margin: 8px 0;
}

.input-container input, .input-container textarea {
  background-color: #fff;
  padding: 1rem;
  padding-right: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 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: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #160F30;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  width: 100%;
  border-radius: 0.5rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .1s;
}

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

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

.dop-tovar-page-bloc {
  display: flex;
  gap: 26px;
}
.dop-tovar-page-box {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  gap: 26px;
  padding: 17px;
  box-shadow: 11px 11px 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: 200px;
  width: auto;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 17px;
}

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

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

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

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

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

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

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

  .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: 28px;
  }

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

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

  .form{
    max-width: 100%;
  }

  .forma-video{
    width: 100%;
  }

  iframe{
    width: 100%;
  }

  .kontakt{
    flex-direction: column-reverse;
  }
}

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

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

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

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

  .row-news-card{
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

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

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

  
}

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

  .submenu{
    right: -130px;
  }

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

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

