@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

:root {
  --white: #fff;
  --black: #060606;
  --white-section: #fcfcfc;
  --color-blok-1 :#fff5cf;
 --color-blok-2 : #e68422;
 --color-blok-3:#c8ad01;
 --color-blok-4: #ffcc00;
  --color-blok-5:transparent;
  --accent-color: #8d6e63;
  --dark-text:   #999999;  
  

  
}
.btn-1 {
  display: block;  
  width: fit-content;
  border: 4px solid var(--black);
  background-color: #fff;
  border-radius: 10px;
  font-weight:400;
  text-align: center;
  color: var(--black);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}

.btn-1:hover,.btn-1:active {
  background-color: #ffdd00;
 
}




.btn-2 {
  position: relative;
  display: block;  
  width: fit-content;
  text-align: center;
  background-color: #fff6be;
  border-radius:10px;
  border:  4px solid var(--black); 
  padding: 14px 26px;
  font-size:  17px;
  color: var(--black);   
 
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.btn-2::before{
  display: block;
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  content: '';
  background-color: #ffdd00;
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
 
} 
 .btn-2:hover:before{
    inset-inline-end: auto;
    inset-inline-start: 0;
    width: 0;
 }  



.btn-3 {
  position: relative;
  padding:  10px 26px;
  border-radius: 14px;
  border: none;
  width: fit-content;
  background-color: rgb(255, 136, 0);
  color: white;
  box-shadow: 0px 10px 10px rgb(255, 198, 146) inset,
  0px 5px 10px rgba(5, 5, 5, 0.212),
  0px -10px 10px rgb(255, 102, 0) inset;
  cursor: pointer;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
 font-weight: 400;
}

.btn-3::before {
  width: 80%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.678);
  content: "";
  filter: blur(1px);
  top: 0px;
  border-radius: 50%;
}

.btn-3::after {
  width: 80%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.137);
  content: "";
  filter: blur(1px);
  bottom: 0px;
  border-radius: 50%;
}

.btn-3:hover {
  animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}




.btn-4 {
  padding: 14px 26px;
  border-radius: 10px;
  border: 4px black solid;
  box-shadow: 1px 1px 1px;
  display: block;
  font-weight: 700;
  font-size: 17px;
  background-color: #01aaba68;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
}

.btn-4::after {
  content: "";
  position: absolute;
  background-color: #199fab;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in;
  z-index: -1;
}

.btn-4:hover::after {
  transform-origin: center;
  transition: all .3s ease-in;
  width: 200px;
  height: 200px;
}



.btn-5 {
  padding: 17px  26px;
  border: none;  
  display: block;
  width: fit-content;
  background: #5c5959;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
   color: #ffffff;
  transition: all 500ms;
  font-size: 17px;
  position: relative;
  overflow: hidden;
  outline: 1px solid #888;
}

.btn-5:hover {
  color: #ffffff;
  transform: scale(1.05);
  outline: 1px solid #3e3e3e;
  box-shadow: 1px 3px 10px -1px #999999;
}

.btn-5::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #999999;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 500ms;
}

.btn-5:hover::before {
  width: 200%;
}
.priv-new {
  overflow: hidden;
  word-break: break-all;
}
body{
  direction: ltr;
  font-family: 'DM Mono', sans-serif !important;
  font-size:  17px;
  margin: 0;
  padding: 0px;
  line-height: 1.5; 
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}           
input:focus, textarea:focus, select:focus {
  outline: none;
}
h2{
font-size: clamp(21px,4vw,36px)!important;
}
img, video{
  max-width: 100%;
}
ul{
  list-style: none;               
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
.privacy-wrapperKJ p{
  margin-bottom: 9px;
  text-indent: 2ch; 
 
}
.privacy-wrapperKJ h1{
  font-weight: 700;
  text-align: center;
  margin-bottom:  30px;
}
.privacy-wrapperKJ h2{
  font-weight: 400;
  text-align: center;
  margin-bottom:20px ;
}
.privacy-wrapperKJ table,.privacy-wrapperKJ a{
  word-break: break-word;
  color: inherit;
}
.privacy-wrapperKJ ul li,
.privacy-wrapperKJ ol li {
  margin-bottom: 5px;
}
.privacy-wrapperKJ ul,
.privacy-wrapperKJ ol {
  margin-bottom: 14px;
  padding-left:  20px;
  list-style: inside;
}
.wrapper-section{
  width: 100%;
  max-width: 1170px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.header-fn{
  background-color: #fff;
  border-bottom: 9px solid var(--black);
  border-top: 5px solid var(--black);
}
.header-top{
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.header-top_logo{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  10px 20px;
}
.link_logo{
  padding: 5px 9px;
  display: block;
  text-align: center;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  background-color: var(--color-blok-5);
  
}
.nav{
  width: 100%; 
}
.header-left{
  border-inline-end: 5px solid var(--black);
}
.header-right{
border-inline-start: 5px solid var(--black);
}
.main-list{
  display: flex;
  align-items: center;
  padding: 0  20px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-link{
  position: relative;
  display: flex;
  color: var(--black);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  align-items: center;
  white-space: nowrap;
  padding: 20px;
  transition: all .5s ease;
}

.main-link > span{
  line-height: 26px;
  padding: 0 5px;
  display: block;
  border-radius:4px;
  color: var(--black);
  transition: all .3s ease;
}
.fn__svg{
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  inset-inline-start: 100%;
  margin-inline-start: -6px;
  top: 50%;
  margin-top: -6px;
  color: var(--black) !important;
}
.main-list li:hover .main-link > span{
  background-color: var(--black) !important;
  color: #fff !important;
}
.hero-wrap{
  position: relative;
  padding:  50px 0;
  background-color: #00000008;
}
 
.hero-box{
  width: 100%;
  text-align: center;
  padding: 17px;
  background-color: var(--white);
  border: 4px solid var(--black);
  border-radius: 5px;
  position: relative;
  
}
.hero-box::after{
content: "";
  position: absolute;
  top: 0;
  left: -4px;
  right: -4px;
  bottom: -10px;
  z-index: -1;
  border-radius: 0 0 45px 45px;
  border-bottom: 10px solid var(--black);
}
.fn__moving_tags{ 
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  background-color: var(--color-blok-3);
  position: relative;
}
.tag_heading{
  position: absolute;
  top: -26px;
  inset-inline-start: 50px;
  z-index: 1;
}
.title-blok{
  font-size:  18px;
  text-align: center;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  line-height: 36px;
  border: 4px solid var(--black);
  padding: 0 18px;
  border-radius: 10px;
  font-weight:700;
  background-color: var(--white);
}
.marquee{
  overflow: hidden;
  padding: 87px 0; 
  width: 100%;
  display: flex;
  align-items: center;
  direction: ltr;
}
.js-marquee{
 display: flex;
 align-items: center;
 direction: ltr;
  -webkit-animation: 45s marquee infinite linear normal none running;
  animation: 45s marquee infinite linear normal none running;
}

 .fn__moving_tags:hover .js-marquee{
  -webkit-animation:45s marquee  linear infinite normal none paused ;
  animation: 45s marquee linear infinite normal none paused ;
} 
@keyframes marquee {
  
  100% {
          direction: ltr;
          transform: translateX(-100%);
  }
}

.marquee-item{
    margin: 0 45px;
}
.marquee-item:nth-of-type(2n){
   margin-top: 50px;
} 
.fn__category__item{
  background-color: #fff;
  border:  4px solid var(--black);
  border-radius: 50px;
  height: 100px;
  position: relative;
  padding:  10px 36px  10px 116px;
  display: flex;    
  align-items: center;
  justify-content: space-between;
} 
.category_img-box{
  width: 100px;
  height: 100px;
  position: absolute;
  display: block;
  left: -4px;
  top: 0;
  bottom: -4px;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--black);
    border-radius: 50%;
  }
}
.category__item-imges{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  
}
.cat_title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .25px;
  text-transform: uppercase;  
  margin-inline-end: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat_count{
  font-size: 16px;
  font-style: italic;
  font-weight: 400;  
  width: 37px;
  height: 37px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  margin-inline-start: 5px;
  background-color: var(--color-blok-3);
}
.fn__section_abou{
  padding: 73px 0;
  position: relative;
  background-color: var(--color-blok-3);
}
.about_bg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.row{
  display: flex;
  gap: 79px;
  flex-direction: row;
}
.col-50{
  flex: 1;
}
.fn__bold_item {
  margin-right: 9px;
  border: 4px solid var(--black);
  border-radius: 10px;
  position: relative;
}
.fn__bold_item::after{
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: -9px;
  bottom: -9px; 
  border-radius: 0 10px 10px;
  border-inline-end: 9px solid var(--black);
  border-bottom: 9px solid var(--black);
  pointer-events: none;
}
.fn__section_abou .fn__bold_item::after{
   border-radius: 50% 50% 5px 5px;
}
.about_img{
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 5px 5px;
  background-color: var(--white);
  img{
     border-radius: 50% 50% 5px 5px; 
      width: 100%;
      display: block;
      height: 100%;
      min-height: 441px;
      object-fit: cover;
}  
}
.about-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fn__title{
  font-size: 39px;
  letter-spacing: 0.25px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.fn__desc{
  font-size: 18px;
  line-height: 26px;
  text-indent: 2ch; 
}
.footer_bottom{
  border-top: 4px solid #333;
  background-color: var(--black);
  padding:  25px 0;
}
.copyrightBS{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  justify-content: center;
}
.footer_top{  
  border-top:  4px solid var(--black);
  
}
.flex{
display: flex;
}
.footer-logo{
  flex: 0 0 354px;
  display: flex;
  border-inline-end:  4px solid var(--black);
}
.footer_middle{  
  background-color: var(--black);
}
.middle_left{
  flex: 0 0 354px;
  border-inline-end:  4px solid #333;
 
}
.footer-privacy{
  display: flex;
  flex-direction: column;
  padding: 39px 10px 36px;
  gap: 9px;
}
.footer-link{
  
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  display: flex;
  gap: 9px;
  padding-bottom:  5px;
}
.contact-svg{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  svg{
    fill: var(--white);
    width: 25px;
    height: 25px;
  }
}
.suffix{
  margin-inline-start: 10px;
  font-style: italic;
}
.middle_right{
  width: calc(100% - 354px);
}
.menu-blog{
  padding: 39px 44px;
  position: relative;
}
.menu-blog_list{
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-blok_svg{
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 329px;
  opacity: 0.4;
  max-width: 25%;
  svg{
    color: var(--white);
    fill: var(--white);
    height: auto;
    width: 100%;
  }
}
.footer-title{
 margin-bottom: 20px;
 font-size: 20px;
 font-weight:  400;
 color: var(--white);
 text-transform: uppercase;
}
.menu-blog_item{
  display: flex;
  flex-direction: column;
  gap: 9px;
  
}
.linkHover{
  word-break: break-all;
  color: var(--white);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 90%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
}
.linkHover:hover{
  background-size: 100% 1px;
}
.section-blog{
  padding: 73px 0;
}
.title-holder{
  display: flex;
  color: #000;
  align-items: center;
  position: relative;
  margin-bottom: 44px;
}
.left_title{
  flex: 0 auto;
  padding-inline-end:  27px;
}
.left_title h2{
  margin: 0;
  padding: 0;   
  font-size: calc(24px + 1.25vw);
  letter-spacing: .25px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.lines{
  flex: 1;
  position: relative;
  height: 4px;
}
.raleway{
  bottom: 8px;
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--black);
  left: 0;
  top: 0;

}
.raleway span{
  width: 4px;
  height: 12px;
  background-color: var(--black);
  position: absolute;
  top: -4px;
}
.raleway span:nth-child(1) {
  left: 4px;
}
.raleway span:nth-child(2) {
  left: 26px;
}
.raleway span:nth-child(3) {
 left: 48px;
}
.raleway span:nth-child(4) {
  left: 70px;
}
.raleway span:nth-child(5) {
  left: 92px;
}
.lines:after{
  position: absolute;
  left: 120px;
  height: 4px;
  background-color: var(--black);
  content: '';
  right: 0;
  top: 0;
}
.lines:before{
  width: 4px;
  height: 20px;
  right: 0;
  position: absolute;
  content: '';
  background-color: var(--black);
  top: -8px;
}
.post-list{
  display: flex;
  gap:37px;
  flex-direction: column-reverse;
}
.post-item{ 
 display: flex;
 gap: 37px;
 flex-direction: row-reverse;
}
.post-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 18px;
  z-index: 1;
  border: 4px solid var(--black);
  border-radius: 5px;
  position: relative; 
  justify-content: space-between;
  
}
.post-box::after{
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: -9px;
  bottom: -9px;
  z-index: -1;
  border-radius: 5px;
  border-inline-end: 9px solid var(--black);
  border-bottom: 9px solid var(--black);
}
.title_holder{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  padding: 0 20px 14px 20px;

}
.fn__maintitle{
  text-overflow: ellipsis;
  overflow: hidden;  
  margin-bottom: 9px;
  text-align: center;
  a{
  color: var(--black);
  font-size: 25px;
  font-weight:400;
  letter-spacing: 0;
}
}
.fn__maintitle .linkHover{
  color: var(--black);
  padding-bottom:  9px;
}
.fn__meta{
    overflow: hidden;
    p{
      font-size: 18px;
    font-weight: 400;  
    font-style: italic;
    letter-spacing: 0;
    color: var(--black);
    margin: 0;
    overflow: hidden;
   
    text-overflow: ellipsis;
    }
}
.meta_item{
  position: relative;
  margin-inline-end: 44px;
  svg{
    width: 15px;
    height: 15px;
  }
}
.meta_item::after{
  content: '';
  position: absolute;
  inset-inline-start: 100%;
  margin-inline-start: 10px;
  width: 26px;
  height: 2px;
  background-color: var(--black);
  top: 50%;
  margin-top: -1px;
}
.meta_item:last-child {
  margin-inline-end: 0;
}
.meta_item:last-child::after{
  width: 0;
  height: 0;
}
.post_top{
  display: flex;
  margin-bottom: 26px;
  gap: 5%;
  flex-direction: row;
}
.top_left{
  display: flex;
  width: 30%;
  flex-direction:column-reverse;
  padding: 26px 0;
  background-color: var(--black);
  border-radius:  10px;
  gap: 37px;
  justify-content: center;
}
.blog__image{
  position: relative;
  flex: 1;
  height: 441px;
  margin: 0;
  display: flex;
}
.img_holder{
  border-radius:  10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

}
.tags{
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
  inset-inline-end: 30px;
  z-index: 2;
  margin: 0;
  display: flex;
  gap:  10px;
  align-items: center;
  flex-wrap: wrap;
  pointer-events: none;
}
.fn__img_icon{
  fill: currentcolor;
  width: 124px;
  height: 21px;
  display: block;
  inset-inline-end: 7%;
  bottom: -11px;
  position: absolute;
  color: var(--black);
}
.read{
  display: inline-block;
  margin: 0 auto;
  position: relative;
  padding: 20px 60px 0;
}
.read::after,.read::before{
  width: 50px;
  height: 4px;
  background-color: var(--black);
  content: "";
  position: absolute;
  top: 50%;
  
}
.read::before{
  inset-inline-start: 0;
}
.read::after{
  inset-inline-end: 0;
}
.decor{
  display: flex;
  flex-direction: column;
  gap: 27px;
  span{
    display: block;
    position: relative;
  }
}
.decor__svg {
  display: block;
  width: 110px;
  height: auto;
  fill: #fff;
  margin: 0 auto;
}
.decor span::after{
  content: '';
  position: absolute;
  top: 100%;
  margin-top: 11px;
  width:  10px;
  height:  10px;
  background-color: #ffdd00;
  border-radius: 100%;
  inset-inline-start: 50%;
  margin-inline-start: -5px;
}
.blog-comment{
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap:  10px;
  text-align: center;
  justify-content: center;
  font-size:25px;
  svg{
    fill: var(--white);
    width: 36px;
    height: 36px;
  }
}
.form-img{
  position: relative;
  background-image: url(image/picture_header_6874d029d91097.68644497.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}
.form-wrapper{
  padding: 27px;
  
}
.color-form{
position: relative;
}
.color-form::before{
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 90%;
  height: 80%;
  border-radius: 100%;
  background-color: rgba(174, 0, 255, 0.2);
  -webkit-filter: blur(150px);
  -o-filter: blur(150px);
  filter: blur(150px);

}
.base-btn{
  width: 100%;
}
.form-pageIO{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  
}
.input-page,.textarea-page,.input-fieldwrapper_component,.textarea-fieldwrapper_component{
  width: 100%;
  background-color: #eee;
  letter-spacing: 0;
  outline: none;
  outline-color: transparent;
  border-radius: 0 5px 5px 0;
  border: 2px solid var(--black);
  padding:  10px 20px;
  font-size: 16px;
  font-weight: 400;  
  font-style: italic;
  color: var(--black);
}
.input-page:focus,.textarea-page:focus,.textarea-fieldwrapper_component:focus,.input-fieldwrapper_component:focus{
  outline: none;
  background-color: transparent;
  border-color: var(--black);
}
.input-page::placeholder{
  font-size: 14px;
}
.grup-element{
  display: flex;
  flex-direction: column;
  gap: 20px;
 
}
.custom-check{
  display: flex;
  flex-direction: row;
  gap: 9px;
  align-items: center;
  font-size: 14px;
}
.custom-check-label a{
  color:  #5d5858;
  transition: all 0.5s ease-in-out;
}
.form-title{
  margin-bottom: 26px;
  text-align: center;
}


.page-wrapper{
  display: flex;
  gap: 26px;
  flex-direction: row;
  
}
.sidebar-left{
  flex: auto;
  min-width: 0;
  
}
.sidebar-right{
  flex: 0 0 354px; 
  
  min-width: 0;
  display: flex;
  gap:  37px;
  flex-direction: column;
}
.blog_content{
  padding-top:  73px;
  padding-bottom: 60px;
}
.wrapper-sidebar{
  padding: 0 10px; 
  margin: 0 auto;
  width: 100%;
}
.page-nav{
  margin-bottom: 26px;  
}
.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  list-style-type: none;
  padding: 0;
  margin-left: -7px;
}
.breadcrumbs li{
  margin: 3.5px 0 3.5px 7px;
}
.breadcrumbs span,.breadcrumbs a{    
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .25px;   
  color: var(--black);
}

.page-content{
  display: flex;
  flex-direction:column;
  gap: 60px;

}
.page-content_top{
  display: flex;
  gap: 60px;
  flex-direction: column-reverse;
}

.blog-text{  
  font-size: 17px;
  line-height: 1.6;   
}
.blog-text p{
  margin-bottom: 9px;
  text-indent: 2ch;
}
.blog-text ul,ol{
  list-style: inside;
}
.price-blog{
  display: flex;
  justify-content:  center;
  color: var(--black);
  gap:  9px;
  font-size: 18px;
  font-weight:  700; 
    
}
.page-content .blog__image{
  flex: auto;
}
.blog-meta{
  display: flex;
  gap: 10px;
  flex-direction: column-reverse;

}
.post_author{
  display: flex;
  align-items: center;
   
}
.author-imges{
  display: flex;
  margin-inline-end: 10px;
}
.author{
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  flex: 1;
}
.blok-author{
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  border:  4px solid var(--black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  svg{
    width: 25px;
    height: 25px;
  }
}
.wid-title{
  position: relative;
  margin-bottom: 26px;
}
.text{
    margin-top: -26px;
    background-color: var(--black);
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
    text-align: center;
    font-size: 14px;
    font-weight:400;
    margin-left: 10px;
    margin-right: 10px;
    text-transform: uppercase;
    color: #fff;
    display: block;
 
    margin-bottom:  26px;
    padding: 0 10px;
}
 

.page-blog{
  background-color: var(--white-section);
}
.list-grup{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-item{
  margin-right: 5px;
  border:  4px solid var(--black);
  border-radius: 10px;
  padding: 10px 20px 10px 75px;
  position: relative;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content:center;
  h3{
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    line-height: 1.3333;
    letter-spacing: 0;
    margin-bottom: 14px;   
   
  }
}
.top-item::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -9px;
  bottom: -9px;
  z-index: -1;
  border-radius: 0 10px 10px;
  border-right: 9px solid var(--black);
  border-bottom: 9px solid var(--black);
}
.count-top{
  width: 60px;
  background-color: var(--black);
  border-radius: 9px;
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  bottom: 5px;
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 700;  
  color: #fff;
  padding-top: 20px;
  text-align: center;
  line-height: 1;
}
.count-top::before,.count-top::after{
  content: '';
  position: absolute;
  background-color: #ffdd00;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  left: 50%;
  margin-left: -3px;
}
.count-top::before{
  bottom: 29px;
}
.count-top::after{
  bottom: 45px;
}
.view-post{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px; 
  font-weight:400;
  color: var(--black);
  font-style: italic;
  transition: all .3s ease;
}
.arrow{
  display: block;
  width: 18px;
  height: 14px;
  position: relative; 
  transition: all .3s ease;
  svg{
    width: inherit;
    height: inherit;
  }
}
.view-post .linkHover{
  color: var(--black);
  padding-top: 5px;
}

.top-item:hover .arrow{
transform: translateX(10px);
}
.widget_block{
  position: relative;
  border: 4px solid var(--black);
  background-color:var(--white);
  border-radius:5px;
  padding: 26px 14px;
}
.category-page{
  position: relative;
  border:  4px solid var(--black);
  border-radius: 50px;
}
.category-page_title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .25px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  align-items: center;
  padding-inline-start: 10px;
}
.cat_name{
  
  max-width: calc(100% - 36px);
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.category-page_img-box{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
}
.category-page_title .linkHover{
  color: var(--black);
}
.border-blok{
  z-index: 1;
  border: 4px solid var(--black);
  border-radius: 5px;
  position: relative;
  
}
.border-blok::after{
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: -9px;
  bottom: -9px;
  z-index: -1;
  border-radius: 5px;
  border-inline-end: 9px solid var(--black);
  border-bottom: 9px solid var(--black);
}
.border-section{
  position: relative;
  border-top: 4px solid var(--black);
}
.section-grup{
  display: flex;
  flex-direction:  column-reverse;
}
.footer_subscribe{
  padding: 39px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gap-sectioEN{
  gap: 60px;
}
.subscribe_title{
  font-size: 20px;
  font-weight:  400;
  color: var(--black);
  letter-spacing: 0.25px;
  text-transform: uppercase;   
  margin-bottom: 14px;
  text-align: left;
}
.comment-content h3{
  margin-bottom: 10px;
}
.logo-footer{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  img{
    width: auto;
    height: 60px;
    object-fit: contain;
  }
}
.subs-form-field{
  display: flex;
  align-items: center;
  gap:  20px;
}
.comment-list{
  display: flex;
  flex-direction: row-reverse;
  gap: 27px;
}
.comment-inem{
  padding: 27px;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.blok-author img{
  width: 100%;
  height: 100%;
   object-fit: cover;
}
.contact-page{
  display: flex;
  flex-wrap: wrap;
  
  gap: 20px;
}
.contact-page_item{
  flex-grow: 1;
  background-color: var(--white);
  flex-basis: 370px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  a,span{
    color: var(--black);
    font-weight:700;
    word-break: break-all;
  }
  h4{
    font-size: 17px;
  }
}

@media (min-width: 575px){
.cont-svg{
  display: none;
}
}
@media (max-width: 575px){
  .main-list {
    flex-direction: column;
    align-items: start;
    padding: 0 20px 0 0;
  }
  .cat_title {
    font-size: 15px;
  }
  .cat_count{
    font-size: 14px;
  }
  .title-blok {
    font-size: 15px;
  }
  .tag_heading{
    inset-inline-start: 20px;
  }
   .about_img img{   
    height: auto;
    min-height: 250px;
  }
  .top_left{
    display: none;
  }
  .title_holder,.read  {
    padding: 0;
  }
  .read::after, .read::before{
    width: 0;
  }
  .blog__image{
    height: auto;
  }
  .post-box {
    padding: 10px;
  }
  .fn__maintitle a {
    font-size: 20px;
  }
   .form-wrapper{
    padding: 0;
   } 
   .footer_subscribe {
    padding: 39px 0;
   }
  
   
   .top-item{
      padding: 75px 10px 10px 10px;
   }
   .count-top{
      right: 5px;
      bottom: auto;
      width: auto;
      padding-top: 35px;
      padding-bottom: 4px;
   }
   .copyrightBS{
    justify-content: center;
   }
   .contact-page_item{
    padding: 26px 10px;
    text-align: center;
   }
}
    
@media (max-width: 767px){
 
}
 @media (max-width: 768px){
  .category_img-box{
    width: 80px;
    height: 80px;
  }
  .fn__category__item{
    height: 80px;
    border-radius: 40px;
    padding-inline-start: 96px;
    padding-inline-end: 20px;
  }
  .fn__title{
    font-size: 26px;
  }
  .fn__desc {
    font-size: 17px;
  }
  
  .flex{
    flex-direction: column;
  }
  .footer-logo,.middle_left{
    flex: auto;
    border: 0;
    border-bottom: 4px solid #333;
  }
  .menu-blog{
      padding: 39px 10px;
  }
  .middle_right{
    width: 100%;
  }
  .comment-list{
    flex-direction: column;
  }
  
}
@media (min-width: 575px) and (max-width: 991.98px){
   .about_img{
    width: 80%;
    margin: 0 auto;
  }
  .about_img img{   
    height: 500px;
    min-height: auto;
  }
}


@media (max-width: 992px){
  .header-top{
    flex-direction: column;
    gap:  9px;
  }
  .nav {
    border: 0;
    width: 100%;
    
  }
  .header-left,.header-right{
    border: 0;
    width: 100%;    
  }
  .header-left{
    border-bottom: 4px solid var(--black);
  }
  .header-right{
    border-top: 4px solid var(--black);
  }
  .row{
    flex-direction: column-reverse;
  }
  .col-50{
    flex: auto;
  }
  .form-img{
    width: 100%;
    height: 300px;
  }
  .post-item {
    flex-direction: column-reverse;
  }
  .hero-box .row{
    gap: 26px;
  }
  .page-wrapper{
    flex-direction: column;
    gap: 60px;
  }
  .subs-form-field{
    flex-direction: column;
  }
  .logo-footer{
    justify-content: start;
  }
  .comment-inem{
    flex-direction: column;
  }
    
}
.list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
    justify-content: center;
}
.list-inline  li a {
    font-size: 24px !important;
    opacity: 1;
    margin-left: 8px;
    background: none;
    color: var(--white);
}
.tnt-svg {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}
.tnt-svg.tnt-w-14 {
    width: .875em;
}
svg:not(:root).tnt-svg {
    overflow: visible;
}
.footer-right-icons{
      flex-wrap: wrap;

  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
}







