@import url('https://fonts.googleapis.com/css2?family=Sanchez:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
*{
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Sanchez', sans-serif !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.block-content{
  width: 100%;
  box-sizing: border-box;
  padding-right: 22px;
  padding-left: 22px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.contact-details-box a {
  color: black;
  word-break: break-all;
}
img{max-width:100%;}

  @media (min-width: 576px){
    .block-content{
      max-width: 535px;
    }
  }

  @media (min-width: 768px){
    .block-content{
      max-width: 718px;
    }
  }

  @media (min-width: 992px){
    .block-content{
      max-width: 960px;
    }
  }

  @media (min-width: 1200px){
    .block-content{
      max-width: 1135px;
    }
  }

  @media (min-width: 1400px){
    .block-content{
      max-width: 1214px;
    }
  }

  .banner-background{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #00a959, #00a76a, #00a478, #00a183, #009e8c);
  }

  .header{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
  }

  .logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 21px;
  }

  .logoImg img{
    width: 40px;
  }

  .logoTitle{
    color: #ffffff;
    margin: 0;
  }

  nav {
    display: table;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

  .header-nav{
    padding:  18px 0;
  }

  .submenu li {
    padding: 6px;
}

.submenu {
    background: #63727d;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    width: 280px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: .5s ease-in-out;
}

.submenu a {
    color: white;
    text-align: left;
    font-size: 13px;
}

.submenu li:last-child a {
    border-bottom: none;
}

  .topmenu:after {
    content: "";
    display: table;
    clear: both;
}

.topmenu>li {
    float: left;
    position: relative;
    padding: 0 18px;
}

.topmenu>li>a {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}
.topmenu>li>a:hover {
    border-bottom: 1px solid;
}

.topmenu>li:hover .submenu {
  opacity: 1;
  transform: scaleY(1);
}

.hedBox{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding: 47px 0;
    gap: 81px;
  }

  .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 52px;
  }

  .box a{
    text-decoration: none;
  }

  .box h1{
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
  }

  .box button{
    width: 100%;
  }

  .imgBox img{
    width: 320px;
  }

  .company-info{
    background-color: rgba(59, 9, 68, 0.2);
    padding: 47px 0;
  }

  .aboutUs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 10px  18px rgba(0, 0, 0, 0.1);
  }

  .about{
    font-size: 25px;
    padding-top: 27px;
  }

  .aboutTitle{
    font-size: 21px;
    padding: 0 27px 27px 27px;
  }

  .catalog{
    padding: 47px 0;
  }

  .cards-catalog{
    display: flex;
    padding-bottom: 47px;
    flex-direction:column;
    gap: 27px;
  }

  .catalogBoxs{
    display: flex;
    flex-direction: row;
    gap: 27px;
  }

  .product {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    padding: 27px;
    gap: 27px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05), 0 5px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: .5s;
    }

    .product:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.2);
    }

    .product-image {
    display: flex;
    flex: 1;
    justify-content: center;
    }

    .input-control__panel-section{
        display: block;
        width: 100%;
        padding: 10px 18px;
        margin: 10px 0px;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.4;
        color: #212529;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 3px;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    .textarea-control__panel-section{
        border: 1px solid #ced4da;
        border-radius: 3px;
        padding: 10px 18px;
        width: 100%;
    }
    .product-image img {
    object-fit: contain;
    height: auto
    width: 100%;
    }

    @media(min-width: 576px){
          .product-image img {
            height: 317px;
          }
    }
    @media(min-width: 768px){
          .product-image img {
            height: 320px;
          }
    }
    @media(min-width: 992px){
          .product-image img {
            height: 447px;
          }
    }

    .product-details {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    }

    .product-details a{
      text-decoration: none;
      color: black;
    }

    .product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-direction: row-reverse;
    }

    .product-buttons {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    flex-direction: row-reverse;
    text-align: center;
    }

    .product-title {
    font-size: 21px;
    }

    .product-price {
      display: flex;
    font-weight: 700;
    font-size: 21px;
    }
   
    .feedback-section{
      background-image: url(media/overlay_q800.png);
      background-position: center;
      background-size: cover;
    }

    .feedback-block {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 47px 0;
    }
    
    .cards-comments {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 47px 0;
      flex-direction: row-reverse;
    }
    
    .card-comm-box {
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 10px  18px rgba(0, 0, 0, 0.1);
      display: flex;
      gap: 22px;
      flex-direction: column;
      align-items: center;
      margin: 18px;
      padding: 18px;
      max-width: 439px;
      text-align: center;
      transition: .5s;
    }

    .card-comm-box:hover{
      transform: translateY(-10px);
      box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.2);
    }
    
    .card-comm-img img {
      width: 144px;
      height: 144px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    
    .card-comm-txt p {
      margin: 0;
    }

    .form-panel{
      margin: 47px 0;
      background: linear-gradient(to top, #00b015, #00ac2f, #00a83f, #00a44c, #009f57);
    }

    .form-frame{
      display: flex;
      padding: 47px 0;
      justify-content: space-between;
      flex-direction: row-reverse;
      align-items: center;
      text-align: center;
      gap: 22px;
    }

    .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-frame h2{
      width: 50%;
    }

    .form {
      background-color: #fff;
      display: block;
      flex-grow: 1;
      padding: 18px;
      border-radius: 3px;
      box-shadow: 0 10px 18px -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 {
      outline: none;
      border: 1px solid #e5e7eb;
      margin: 6px 0;
    }

    .input-container input {
      background-color: #fff;
      padding: 18px;
      padding-right: 30px;
      font-size: 13px;
      line-height: 1.4;
      width: 100%;
      border-radius: 3px;
      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: 10px 0;
    }

    .form-check input {
      width: 10%;
    }

    .submit {
      display: block;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 21px;
      padding-right: 21px;
      background-color: #4F46E5;
      color: #ffffff;
      font-size: 13px;
      line-height: 1.4;
      font-weight: 500;
      width: 100%;
      border-radius: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .1s;
    }

    .submit:hover{
      transform: scale(1.05);
    } 

    .footer-lay{
      background: linear-gradient(to bottom, #00a959, #00a76a, #00a478, #00a183, #009e8c);
      color: #ffffff;
    }
    
    .footer{
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: space-between;
      padding: 47px 0;
    }

    .footer-img {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .footer-img img {
      object-fit: contain;
      max-height: 47px;
      max-width: 161px;
    }

    .footer-politiks {
      display: flex;
      flex-direction: column;
      gap: 22px;
  }

  .footer-politiks a {
    color: #ffffff;
    text-decoration: none;
  }

  .dop-pages {
    background-color: white;
  }

  .dop-pages-text {
    text-align: justify;
  }

  .stayTitl {
    padding-bottom: 22px;
    text-align: center;
    font-weight: 700;
  }

  .container-product-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 47px 0;
    gap: 22px;
  }

  .product-display {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 22px;
}
.product-display-img {
    display: flex;
    justify-content: center;
}
.product-display-img img {
    object-fit: contain;
    height: 320px;
    width: 100%;
}

.pages-main-content {
  flex: 1;
  text-align: justify;
}

.product-display-dop{
  display: flex;
  flex-direction: column;
  padding-top: 47px;
  gap: 22px;
}

.product-box-button{
  max-width: 347px;
  margin: 0 auto;
}

.info-dop{
  display: flex;
  flex-direction: column;
  padding-bottom: 47px;
  gap: 27px;
}

.dop-tovar-page-bloc {
  display: flex;
  gap: 27px;
}
.dop-tovar-page-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 27px;
  padding: 22px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: .5s;
}
.dop-tovar-page-box:hover {
  transform: translateY(-6px);
}
.dop-tovar-page-box-img {
  display: flex;
  justify-content: center;
}
.dop-tovar-page-box-img img {
  object-fit: contain;
  height: 161px;
  width: auto;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
}

.btm-more {
  text-align: center;
  margin: 0 auto;
}

.kontakt {
  display: flex;
  margin: 47px 0;
  background-color: #FFFFFF;
  gap: 27px;
  padding: 22px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  justify-content: space-around;
}

.contact-details-box {
  display: flex;
  flex: 1;
  font-size: 21px;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.contact-details-box-name {
  border-bottom: 1px solid;
}

.contact-details-box-text {
  text-align: center;
}


@media (max-width: 991px) {
  .header {
    flex-direction: column;
  }

  .hedBox {
    flex-direction: column;
  }

  .catalogBoxs{
    flex-direction: column;
  }

  .cards-comments{
    flex-direction: column;
  }

  .form-frame{
    flex-direction: column;
  }

  .form-frame h2{
    width: 100%;
  }

  .form{
    max-width: 100%;
  }

  .kontakt{
    flex-direction: column;
  }

  .forma-video video{
    width: 200%;
  }

  .container-product-card{
    flex-direction: column;
  }

}

@media (max-width: 767px) {
  .topmenu{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .submenu{
    left: -81px;
  }

  .product{
    flex-direction: column;
  }

  .aboutUs{
    width: 100%;
  }

  .dop-tovar-page-bloc{
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .footer{
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

    
.but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
}
.button-1 {
  position: relative;
  display: inline-block;
  padding: 18px 27px;
  font-weight: 700;
  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: 317px;
  height: 317px;
  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: 161px;
    height: 161px;
    opacity: 0;
  }
}

.button-2 {
  display: inline-block;
  padding: 10px 10px;
  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 16px -8px;
}

.button-2:hover::before {
  width: 200%;
  height: 200%;
}

.button-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 35px;
  border-radius: 18px;
  border: 1px solid transparent;
  color: #FFFFFF;
  background-color: #1DC9A0;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all 0.15s linear;
}

.button-3:hover {
  background-color: rgba(29, 201, 160, 0.08);
  border-color: #1DC9A0;
  color: #1DC9A0;
  transform: translateY(-6px) scale(1.05);
}

.button-3:active {
  background-color: transparent;
  border-color: #1DC9A0;
  color: #1DC9A0;
  transform: translateY(6px) scale(0.95);
}

.button-3:disabled {
  background-color: rgba(255, 255, 255, 0.16);
  color: #8E8E93;
  border-color: #8E8E93;
}

.button-4 {
  padding: 10px;
  margin-top: 18px;
  border: 0;
  box-shadow: 0px 0px 35px 0px red;
  font-weight: 700;
  color: white;
  border-radius: 3px;
  background-color: red;
  letter-spacing: .2rem;
}

.button-4:hover {
  animation: changeBg 1s infinite;
  -webkit-animation-duration: 10s;
}

@keyframes changeBg {

  0%,
  100% {
    box-shadow: 0px 0px 35px 0px red;
  }

  25% {
    box-shadow: 0px 0px 35px 0px turquoise;
    background-color: turquoise;
  }

  50% {
    box-shadow: 0px 0px 35px 0px purple;
    background-color: purple;
  }

  75% {
    box-shadow: 0px 0px 35px 0px rgb(191, 204, 11);
    background-color: rgb(191, 204, 11);
  }
}


.button-5 {
  font-size: 17px;
  font-weight: 700;
  border: 0px;
  color: white;
  background-color: #1877f2;
  padding: 10px 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;
  }
}

.dop-pages{
  padding:89px 18px; 
  overflow: hidden;
}

.form-frame{
  justify-content: space-between;

  iframe{
    border: none;
  }
}

.stayTitl{
  color: #111;
  text-align: center;
}

.titleStay .write{
  color: #111;
}