@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');

html{
  scroll-behavior: smooth;
}

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

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

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

.kontakt a {
  color: black;
}
.footer-contskt-box a {
  color: black;
}
  @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: 1256px;
    }
  }

  .header-lay{
    width: 100%;
    background-color: #00000007;
  }

  .header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 0;
  }

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

  .logoImg img{
    width: 45px;
  }

  .logoTitle{
    margin: 0;
  }

  .header-nav-border{
    border-top: 1px solid;
    border-bottom: 1px solid;
  }

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

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

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

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

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

.topmenu>li>a {
  display: flex;
  align-items: center;
  gap: 9px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: #060930;
    text-decoration: none;
}
.topmenu>li>a:hover {
  text-decoration: underline
}



.main-unit{
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  padding: 41px 0;
  gap: 28px;
}

.main-card-box{
  flex: 0 0 auto;
  width: 60%;
}

.greatings{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 11px 11px 20px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 0;
}

.news-card {
  margin: 9px;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  flex: 1;
  min-width: 40%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  z-index: 0;
}

.news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-card__image {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0;
  padding: 14px;
  color: white;
  transition: background-color 1.5s ease;
}

.news-card__title {
  transition: color 1s ease;
  margin-bottom: 9px;
}

.news-card__post-date {
  font-size: 14px;
  margin-bottom: 9px;
  color: #CCC;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

.news-card:hover .news-card__details-wrapper {
  max-height: 217px;
  opacity: 1;
}

.news-card:hover .news-card__text-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
}

.news-card:hover .news-card__title {
  color: #ece7d6;
}

.news-card:hover .news-card__image {
  transform: scale(1.2);
  z-index: -1;
}

.news-card__excerpt {
  font-size: 12px;
  font-weight: 500;
}

.news-card__read-more {
  text-align: center;
  display: block;
  padding: 7px 7px;
  border-radius: 2px;
  margin-top: 7px;
  backface-visibility: hidden;
  text-decoration: none;
  width: 113px;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.news-card__read-more i {
  position: relative;
  left: 2px;
  color: #888;
  transition: left 0.5s ease, color 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.news-card__read-more:hover i {
  left: 9px;
  color: #ece7d6;
}

.sidebar{
  display: flex;
  flex-direction: column-reverse;
  flex: 0 0 auto;
  width: 33.333%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-box-gallery {
  padding: 20px;
}

.sidebar-box-gallery h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.sidebar-box-gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-box-gallery li {
  margin-bottom: 18px;
}

.sidebar-box-gallery li a {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  color: #060930;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-box-gallery li a img{
  width: 65px;
  padding-right: 9px;
}

.sidebar-box-gallery li a:hover {
  text-decoration: underline
}

.sidebar-box-gallery li:last-child {
  margin-bottom: 0;
}

.sidebar-box-aboutus {
  padding: 20px;
  border-radius: 9px;
  box-shadow: 11px 11px 20px rgba(0, 0, 0, 0.3);
}

.sidebar-box-aboutus h4 {
  text-align: center;
  color: #060930;
  font-size: 19px;
  margin-bottom: 14px;
}

.sidebar-box-aboutus .about-us-blog {
  color: #282D4F;
  font-size: 14px;
  line-height: 1.5;
}


.sidebar-box-comments{
  padding: 19px;
}

.sidebar-box-comments h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.avatar-box{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sidebar-box-comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 14px;
  display: flex;
  flex-direction: column-reverse;
}

.sidebar-box-comments li {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 5px 0;
  gap: 14px;
}

.sidebar-box-comments li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.sidebar-box-comments li span {
  font-weight: bold;
  margin-right: 5px;
}

.sidebar-box-news {
  padding: 19px;
}

.sidebar-box-news h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.sidebar-box-news ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-box-news li {
  margin-bottom: 14px;
  cursor: pointer;
}

.sidebar-box-news li i{
  padding-right: 9px;
}

.sidebar-box-news li:hover{
  text-decoration: underline
}

.sidebar-box-news li:last-child {
  margin-bottom: 0;
}

.sidebar-two{
  display: flex;
  flex-direction: column-reverse;
  gap: 19px;
  flex: 0 0 auto;
  width: 33.333%;
}

.sidebar-box-gallery-two {
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-box-gallery-two h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.sidebar-box-gallery-two ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-box-gallery-two li {
  margin-bottom: 18px;
}

.sidebar-box-gallery-two li a {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  color: #060930;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-box-gallery-two li a img{
  width: 65px;
  padding-right: 9px;
}

.sidebar-box-gallery-two li a:hover {
  text-decoration: underline
}

.sidebar-box-gallery-two li:last-child {
  margin-bottom: 0;
}

.sidebar-box-comments-two{
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-box-comments-two h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.avatar-box-two{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sidebar-box-comments-two ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 14px;
  display: flex;
  flex-direction: column-reverse;
}

.sidebar-box-comments-two li {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 5px 0;
  gap: 14px;
}

.sidebar-box-comments-two li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.sidebar-box-comments-two li span {
  font-weight: bold;
  margin-right: 5px;
}

.sidebar-box-news-two {
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-box-news-two h4 {
  padding: 9px 0;
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.sidebar-box-news-two ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar-box-news-two li {
  margin-bottom: 14px;
  cursor: pointer;
}

.sidebar-box-news-two li i{
  padding-right: 9px;
}

.sidebar-box-news-two li:hover{
  text-decoration: underline
}

.sidebar-box-news-two li:last-child {
  margin-bottom: 0;
}

.container-news-card-box{
  display: flex;
  flex-direction: column;
}

.container-news-card {
  position: relative; 
  background-color: #f9f3f3; 
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  padding: 20px;
}

.container-news-card::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(232, 234, 235, 0.9); 
}

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

.published-news-card {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.published-news-card span i{
  padding-right: 9px;
}

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

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

.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;
  text-decoration: underline;
  align-items: center;
  justify-content: space-between;
  gap: 43px;
  flex-direction: row;
}

.price-news-card{
  margin: 0 auto;
  font-weight: 500;
}

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

.form {
  margin: 40px 0;
  background-color: #00000007;
  padding: 1rem;
  max-width: 100%;
  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);
}

.title-container{
  text-align: center;
}

.comments-box{
  padding: 40px 0;
}

.comments-box h2{
  text-align: center;
  padding-bottom: 18px;
}

.comments {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.comment {
  align-items: center;
  box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
  flex: 1;
  flex-direction: row;
  padding: 20px;
  border-radius: 9px;
  display: flex;
  gap: 14px;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin-right: 14px;
}

.comment-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.comment-name {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
}

.comment-text {
  font-size: 18px;
}

.comment-date {
  font-size: 12px;
  color: #060930;
}


.input-container {
  position: relative;
}

.input-container input, .form button {
  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%;
}

.check{
  color: #060930;
}

.submit {
  width: 100%;
  font-size: 14px;
  padding: 18px 0;
}

.block-contact{
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 43px;
}

.kontakt {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding: 20px;
  justify-content: space-around;
}

.box-kontakt {
  padding: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex: 1;
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

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

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

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

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

.footer-lay{
  width: 100%;
  background-color: #00000007;
}

.footer{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 50px 0;
  gap: 65px;
}

.footer-contskt{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 102px;
}

.footer-contskt-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.footer-politiks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.footer-politiks a {
  border-bottom: 1px solid;
  color: #060930;
  text-decoration: none;
}

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

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

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

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

.sidebar-box-subscribe{
  width: 50%;
}

.sidebar-box-subscribe h4 {
  text-align: center;
  color: #060930;
  font-size: 20px;
  margin-top: 0;
}

.sidebar-box-subscribe form {
  margin-top: 18px;
  gap: 14px;
  display: flex;
  flex-direction: column;
}

.sidebar-box-subscribe .form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 14px;
}

.faq-block {
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-block h2{
  margin-bottom: 28px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item:last-child {
  display: block;
}

.question {
  border-bottom: 1px solid;
  margin: 9px 0;
  font-size: 17px;
  font-weight: bold;
  color: #060930;
}

.answer {
  margin: 0;
  font-size: 14px;
  color: #282D4F;
}

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

@media (max-width: 1200px) {
  .comments{
    flex-direction: column-reverse;
  }
}

@media (max-width: 991px) {
  .main-unit{
    flex-direction: column;
  }

  .sidebar{
    width: 100%;
  }

  .sidebar-two{
    width: 100%;
  }

  .main-card-box{
    width: 100%;
  }

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

}

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

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

  .sidebar-box-subscribe{
    width: 100%;
  }

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

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

@media (max-width: 600px) {
  .footer-politiks{
    flex-direction: column-reverse;
  }

  .published-news-card h1{
    font-size: 20px;
  }

  .sidebar-box-gallery li a{
    flex-direction: column-reverse;
  }

  .sidebar-box-gallery li a img{
    width: 100%;
  }

  .sidebar-box-gallery-two li a{
    flex-direction: column-reverse;
  }

  .sidebar-box-gallery-two li a img{
    width: 100%;
  }
}

@media (max-width: 576px) {
  .news-card:hover .news-card__title{
    font-size: 14px;
  }

  .news-card__excerpt{
    font-size: 14px;
  }

  .greatings h3{
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .header-nav{
    padding: 18px 0 0;
  }

  .topmenu{
    flex-direction: column;
    gap: 0;
  }

  .topmenu>li>a:first-child{
    padding-bottom: 14px;
  }

  .form-check-label{
    font-size: 14px;
  }
}

@media (max-width: 476px) {
  .news-card:hover .news-card__title{
    font-size: 9px;
  }

  .news-card__excerpt{
    font-size: 9px;
  }

  .news-card__read-more{
    padding: 2px 2px;
  }
}

@media (max-width: 400px) {
  .news-card:hover .news-card__title{
    font-size: 7px;
  }

  .news-card__excerpt{
    font-size: 7px;
  }

  
}

