@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

html{
  scroll-behavior: smooth;
}
.input-btn__layout--part{
  margin: 14px 0px;
  display: block;
  width: 100%;
  padding: 7px 15px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border:2px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius:8px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-btn__layout--part{
  border: 2px solid #ced4da;
  border-radius: 8px;
  padding: 7px 15px;
  width: 100%;
  font-size: 17px;
}
body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Dosis', sans-serif !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}
img{
          max-width: 100%;
      }
.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 14px;
  box-sizing: border-box !important;
}
.button-1 {
  font-size: 17px;
  position: relative;
  display: inline-block;
  padding: 13px 23px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 33px;
  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: 17px;
  position: relative;
  display: inline-block;
  padding: 13px 23px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  border-radius: 33px;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.button-2: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-2:hover:before {
  width: 300px;
  height: 300px;
  opacity: 0.4;
  transition: all 0.5s ease-out;
}

.button-2:hover {
  background-color: #fff;
  color: #202960;
  transition: all 0.5s ease-out;
}

.button-2: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-3 {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
      background: aliceblue;
  font-weight: bold;
  padding: 14px 25px;
  border: 3px solid #006F5F;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #006F5F;
  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: #006F5F;
  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 {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
      background: aliceblue;
  font-weight: bold;
  padding: 14px 25px;
  border: 3px solid #006F5F;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #006F5F;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

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

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

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

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


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

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

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

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

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

@keyframes slide {
  100% {
    background-position: 50rem;
  }
}
*{
  box-sizing: border-box;
}

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

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

  .header-box-lay {
    position: relative;
    background: url(files/images/section-bg_OO0.webp);
    background-position: center;
    background-size: cover;
}

.header-box-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}


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

  .logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 24px;
    a{
      color:  #0C2233; 
      display: flex;
      align-items: center;
      gap:  15px;
    }
  }

  .logoImg img{
    width: 50px;
  }

  .logoTitle{
    margin: 0;
  }

  nav {
    display: table;
}

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

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

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

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

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

.topmenu>li>a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
  color: #0C2233;
  text-decoration: none;
  transition: all 200ms linear;
}
.topmenu>li>a:hover {
    border-bottom: 2px solid;
}

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

.header-box{
  color: white;
  position: relative;
  z-index: 1;
  padding: 27px 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 61px;
}

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

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

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

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

.card-box{
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 19px;
}

.news-card {
  width: 39%;
  border-radius: 7px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 15px;
  transition: .5s;
}

.news-card:hover{
  transform: translateY(-10px);
}

.box-img-card{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.news-title {
  font-size: 16px;
  color: #0C2233;
  margin-top: 7px;
  margin-bottom: 7px;
}

.news-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 7px;
}

.news-date i{
  padding-right: 7px;
}

.news-author {
  font-size: 14px;
  color: #888;
  margin-bottom: 7px;
}

.news-author i{
  padding-right: 7px;
}

.news-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 7px;
}


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

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

.sidebar-box-gallery {
  background-color: #00000006;
  padding: 24px;
  border-radius: 7px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.sidebar-box-gallery h4 {
  color: #0C2233;
  font-size: 24px;
  margin-top: 0;
}

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

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

.sidebar-box-gallery li a {
  font-size: 17px;
  color: #0C2233;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-box-gallery li a i{
  padding-right: 7px;
}

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

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

.sidebar-box-aboutus{
  display: none;
  background-color: #00000006;
  padding: 24px;
  border-radius: 7px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.sidebar-box-aboutus h4 {
  color: #0C2233;
  font-size: 24px;
  margin-top: 0;
}

.sidebar-box-news {
  background-color: #00000006;
  border-radius: 7px;
  padding: 19px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

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

.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:hover{
  text-decoration: underline
}

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

.sidebar-box-comments{
  background-color: #00000006;
  border-radius: 7px;
  padding: 19px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.sidebar-box-comments h4 {
  color: #0C2233;
  font-size: 24px;
  margin-top: 0;
}

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

.sidebar-box-comments li {
  margin-bottom: 14px;
}

.sidebar-box-comments li i{
  padding-right: 7px;
}

.email-subscribe{
  background-color: #e8eaeb;
  padding: 24px 0;
  text-align: center;
}

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

.form-control{
  background-color: #fff;
  padding: 14px;
  padding-right:23px;
  font-size:  14px;
  line-height: 1.25rem;
  width: 308px;
  border: none;
  margin: 24px;
  border-radius:  14px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

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

.container-news-card {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  padding: 24px;
  background-color: #00000006;
}

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

.published-news-card {
  margin-bottom: 24px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
}

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

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

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

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

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

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

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

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

.form {
  
  display: flex;
  flex-direction: column;
  gap:  13px;
  padding: 15px;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}


.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap:  14px;
}

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

.input-container input,.input-container textarea {
  background-color: #fff;
  padding: 17px;
  padding-right: 23px;
  font-size: 13px;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

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

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

.comments{
  padding:  50px 0;
}

.review-box-new {
  display: flex;
  flex-direction:row-reverse;
  gap: 23px;
}
.box-map{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 271px;
  iframe{
    width: 100%;
    height: 100%;
  }
}
.review {
  max-width: 100%;
  display: flex;
  flex: 1;
  background-color: white;
  padding: 23px;
  gap: 23px;
  box-shadow: 14px 14px  36px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
}
.review-box {
  display: flex;
  flex-direction:column;
  width: 100%;
  gap: 23px;
  justify-content: space-around;
}

.review-name {
  color: #293B5F;
   font-size: 17px;
}
.review-img {
  flex-shrink: 0;
}
.review-img i {
  font-size: 61px;
  color: #293B5F;
}
.review-img-new {
  height: 71px;
  border-radius:0%;
}
.review-text-new {
  padding: 23px 0;
}
.review-bop {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  align-items: center;
}
.blokc {
  display: flex;
}

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

.dop-tovar-page-bloc {
  display: flex;
  gap: 27px;
}
.dop-tovar-page-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
  gap: 27px;
  padding: 23px;
  box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  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: 248px;
  width: 100%;
}
.dop-tovar-page-box-content {
   display: flex;
  flex-direction: column;
  gap: 23px;
}

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

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

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

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

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

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





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

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

.flex-colBoxHP{
  display: flex;
 width: 100%;
 flex-direction: column;
  gap: 50px;
 
}
.footer-box{
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.footer-box-logo {
  flex: 1;
}
.footer-politiks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 23px;
}

.footer-politiks a {
  border-bottom: 2px  solid;
  color: #0C2233;
  text-decoration: none;
}

.footer-contskt{
  display: flex;
  flex-direction: column;
  gap: 23px;
  a{
    word-break: break-word;
    color:  #0C2233;
  }
}

.dop-pages {
  background-color: #e8eaeb;
  padding:110px 0px;
  overflow: hidden;
}

.dop-pages-text{
 word-break: break-word;
 
}
.dop-pages-text p{
  margin-bottom: 7px;
  text-indent: 2ch;
}
.dop-pages-text h1{
  font-weight: 700;
  text-align:  left;
  margin-bottom:  23px;
}
.dop-pages-text h2{
  font-weight: 700;
  text-align:  left;
  margin-bottom:15px ;
}
.dop-pages-text table,.dop-pages-text a{
  word-break: break-word;
  color: inherit;
}
.dop-pages-text ul,.dop-pages-text li,
.dop-pages-text ol,.dop-pages-text li {
  margin-bottom: 5px;
}
.dop-pages-text ul,
.dop-pages-text ol {
  margin-bottom: 15px;
  padding-left:  20px;
  list-style: inside;
}

.box-titleWP {
  padding-bottom: 23px;
  text-align: center;
  font-weight: 700;
}
.relat-title{
  color:  #0C2233; 
  font-size: 19px;
}

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



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

  .main-unit{
    flex-direction: column;
  }

  .main-card{
    width: 100%;
  }

  .sidebar{
    width: 100%;
  }

  .footer-box{
    align-items: center;
    gap: 34px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

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

  .kontakt{
    flex-direction: column;
  }

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

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

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

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

  .row-news-card{
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .container-news-card h1{
    font-size:  20px;
  }
}

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

  .published-news-card{
    gap: 7px;
    flex-direction: column;
  }
}

@media (max-width: 575px){
    button{
        width: 100%;
    }
    .dop-tovar-page-box-img img{
      height: auto;
      
    }
}

@media (max-width: 500px) {
  .form-control{
    width: 248px;
    
  }

  .topmenu{
    flex-direction: column;
  }

  .review-bop{
    align-items: stretch;
    flex-direction: column;
  }
}