@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Archivo Narrow', sans-serif !important;
}
*{
  box-sizing: border-box;
}
img{
    max-width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
}
.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding:  13px;
  box-sizing: border-box !important;
}
.button-1 {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 35px;
  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:  16px;
  display: inline-block;
  padding: 14px;
  border: 2px dashed #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:  16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  padding: 13px 21px;
  border: 2px  dashed #ff0072;
  border-radius: 1px;
  position: relative;
  box-shadow: 0 1px 8px 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: 13px;
  font-size: 16px;
  margin-top: 14px;
  border: 0;
  box-shadow: 0px 0px 35px 0px red;
  font-weight: 600;
  color: white;
  border-radius: 8px;
  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 38px 0px red;
  }

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

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

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

.button-5 {
  font-size: 16px;
  font-weight: 800;
  border: 0px;
  color: white;
  background-color: #1877f2;
  padding: 13px 16px;
  border-radius: 13px;
  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;
  }
}


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

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

  .logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 25px;
    a{
      color:#200F21;
      display: flex; 
      align-items: center;
      gap: 18px;
    }
  }

  .logoImg img{
    width: 50px;
  }

  .logoTitle{
    margin: 0;
  }

  nav {
    display: table;
}

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

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

  .submenu li {
    padding: 8px;
}

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

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

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

.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 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #200F21;
    text-decoration: none;
}
.topmenu>li>a:hover {
    border-bottom: 2px solid;
}

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

.header-lay{
  background: url(files/img/fade-overlay-1600x9000.png);
  background-position: center;
  background-size: cover;
  background-color: #eeecda;
}

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

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

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

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

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

.card-box{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.news-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e5e5e5;
  border-radius:  3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #f4f9f9;
  gap: 22px;
}

.news-card:nth-child(2){
  display: flex;
  flex-direction: row;
}

.news-card:nth-child(4){
  display: flex;
  flex-direction: row;
}

.news-card:nth-child(6){
  display: flex;
  flex-direction: row;
}

.product-image {
  max-width: 290px;
  max-height: 290px;
  flex-shrink: 0;
}

.product-image img {
  display: block;
  object-fit: contain;
}

.news-details {
  flex-grow: 1;
  padding: 13px;
}

.news-title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 13px;
  color: #200F21;
}

.news-date,
.news-author {
  font-size: 15px;
  margin: 0;
  color: #777;
}

.news-description {
  font-size: 16px;
  color: #555;
}

.sidebar{
  flex: 0 0 auto;
  width: 33.333%;
}

.sidebar-box{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 22px;
}

.sidebar-box-news {
  background-color: #eeecda;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-box-news h4 {
  color: #200F21;
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 0;
}

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

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

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

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

.sidebar-box-gallery {
  background-color: #eeecda;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-box-gallery h4 {
  color: #200F21;
  font-size: 25px;
  margin-top: 0;
}

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

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

.sidebar-box-gallery li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.sidebar-box-subscribe {
  margin: 25px 0;
  background-color: #eeecda;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-box-subscribe h4 {
  color: #200F21;
  font-size: 25px;
  margin-top: 0;
}

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

.sidebar-box-subscribe .form-control {
  width: 100%;
  padding: 13px;
  border: 2px  dashed #ccc;
  border-radius: 1px;
  margin-bottom: 13px;
  box-sizing: border-box;
}

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

.dop-tovar-page-bloc {
  display: flex;
  gap: 28px;
}
.dop-tovar-page-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  flex: 1;
  gap: 28px;
  padding: 25px;
  box-shadow: 13px 13px  30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  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: 230px;
  width: auto;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 25px;
  a{
    color: #200F21; 
    font-size: 22px;
  }
}

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

.footer-lay{
  background: url(files/img/fade-overlay-1600x9000.png);
  background-position: center;
  background-size: cover;
  background-color: #eeecda;
}

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

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

.footer-politiks a {
color: #200F21;
text-decoration: none;
}

.footer-contskt{
  flex: 1;
  display: flex;
  word-break: break-word;
  flex-direction: column-reverse;
  gap: 25px;
  a{
    color:#200F21;
  }
}
.pad-dl{
  padding:102px 0px; 
  overflow: hidden;
}


.container-news-card {
  max-width: 100%;
  padding: 25px;
  background-color: #f4f9f9;
}

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

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

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

.images-news-card img {
  max-width: 50%; 
  height: auto;
  margin: 25px;
  float: left;
}
.images-news-card img{
  margin-top: 0px;
}

.content-news-card {
  font-size: 16px;
  line-height:1.4;
  margin-bottom: 25px;
}

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

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

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

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

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



.titleStay{
  text-align: center;
}

.input-container {
  position: relative;
}

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

.input-container input, .input-container textarea {
  background-color: #fff;
  padding: 15px;
  padding-right: 18px;
  font-size: 16px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 1px  2px 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.flex-rewBoxLEE{
  display: flex;
  gap: 41px;
  flex-direction: column-reverse;
}
.pad-sectionXPU{
  padding: 41px 0;
}
.flex-rewBoxLEE .main-unit{
  padding: 0;
  margin: 0;
}
.form-check {
  display: flex;
  justify-content: flex-start;
  padding:  13px 0;
}

.form-check input {
  width: 10%;
}
.form {
  background-color: #f4f9f9;
  display: block;
  padding: 15px;
  margin-top: 41px;
  max-width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px  13px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.submit {
  width: 100%;
  font-size: 13px;
  padding: 16px 0;
}

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

.kontakt {
  display: flex;
  background-color: #FFFFFF;
  gap: 28px;
  padding: 25px;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  justify-content: space-around;
}

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

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

.box-kontakt-text {
  text-align: center;
  word-break: break-word;
  a{
    color:  #200F21;
  }
}
.meta-box{
  display: flex;
  gap: 8px;
  flex-direction: column-reverse;
}
.dop-pages {
  background-color: white;
}

.dop-pages-text {
 
  word-break: break-word;
      p {
        margin-bottom: 8px;
        text-indent: 2ch;
    }

}
.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:  18px;
  list-style: inside;
}
.dop-pages-text h1{
  font-weight: 600;
  text-align: center;
  margin-bottom:  30px;
}
.dop-pages-text h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:20px ;
}
.dop-pages-text table,.dop-pages-text a{
  word-break: break-word;
  color: inherit !important;
}

.stayTitl {
  padding-bottom: 25px;
  text-align: center;
  font-weight: 800;
  color:  #200F21; 
}

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

.comments{
  padding: 41px 0;
}

.review-box-new {
  display: flex;
  flex-direction:row;
  gap: 25px;
}

.review {
  max-width: 100%;
  display: flex;
  flex: 1;
  background-color: white;
  padding: 25px;
  gap: 25px;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.review-box {
  display: flex;
  flex-direction:column-reverse;
  width: 100%;
  gap: 25px;
  justify-content: space-around;
}

.review-name {
  color: #261C2C;
   font-size: 16px;
}
.review-img {
  flex-shrink: 0;
}
.review-img i {
  font-size: 80px;
  color: #261C2C;
}
.review-img-new {
  height: 89px;
  border-radius:50%;
}
.review-text-new {
  padding: 25px 0;
}
.review-bop {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.blokc {
  display: none;
}
  

@media (max-width: 1199px) {
  

  .news-description{
    font-size: 13px;
  }
}

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

  .main-card{
    width: 100%;
  }

  .sidebar{
    width: 100%;
  }

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

  .review-box-new{
    flex-direction: column-reverse;
  }

  .images-news-card img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px 0;
  }
}

@media (max-width: 767px) {
  .header-box-title h2{
    font-size: 12px;
  }

  .news-card{
    height: auto;
    flex-direction: column-reverse;
  }

  .product-image{
    padding: 8px 0;
  }

  .news-card:nth-child(2){
    height: auto;
    flex-direction: column-reverse;
  }
  
  .news-card:nth-child(4){
    height: auto;
    flex-direction: column-reverse;
  }
  
  .news-card:nth-child(6){
    height: auto;
    flex-direction: column-reverse;
  }

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

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

  .footer{
    text-align: center;
    flex-direction: column-reverse;
    gap: 54px;
  }
  .sidebar-box-subscribe{
    padding: 22px 0;
  }
}

@media (max-width: 575px){
    button{
        width: 100%;
    }
    .container-news-card h1{
      font-size: 22px;
    }
}

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

@media (max-width: 400px) {
  .product-image{
    max-width: 230px;
    max-height: 230px;
  }
}