@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

body{
    
    direction: ltr;
    font-family: 'Sarabun', sans-serif !important;
     
}
.btn-1 {
  width: fit-content;
  padding: 13px 22px;
  border: none;
  display: block;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ff4444;
  transition: all 1000ms;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #ff4444;
}

.btn-1:hover {
  color:  #ffffff;
  transform: scale(1.1);
  outline: 2px solid #ed9c83;
  box-shadow: 4px 5px 17px -4px #96312f;
}

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

.btn-1:hover::before {
  width: 250%;
}

.btn-2 {
  --b: 3px;   
  --s: .15em; 
  --c: #BD5532;
  
  padding: calc(.05em + var(--s)) calc(.3em + var(--s));
  color: var(--c);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--c) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .2em;
}
.btn-2:hover,
.btn-2:focus-visible{
  --_p: 0px;
  outline-color: var(--c);
  outline-offset: .05em;
}
.btn-2:active {
  background: var(--c);
  color: #fff;
}


.btn-2{
  width: fit-content;
 display: block;
 text-align: center;
 padding: 13px 16px;
  font-family: system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
  margin:  14px;
}

.btn-3 {
  width: fit-content;
 display: block;
  background:  #ffffff0d;
  border-radius:3px;
  border: 2px solid #ff4444;
  font-size: 18px;
  font-weight:  800;
  color: #ff4444;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: relative;
  overflow: hidden;
  padding:  14px  22px;
  z-index: 1;
}

.btn-3:before {
  width: 50%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: -50%;
  background: #ff4444;
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-3:after {
  width: 50%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 100%;
  background: #ff4444;
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-3:hover {
  color: white;
  cursor: pointer;
}

.btn-3:hover:before {
  top: 0;
  left: 0;
}

.btn-3:hover:after {
  top: 0;
  left: 50%;
}



.btn-4 {
  position: relative;
  margin: 0;
  width: fit-content;
text-align: center;
  padding: 15px 19px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: #333;
  border-radius:  10px;
  color: #fff;
  font-weight: 300;
  font-size:  16px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-4:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.btn-4:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.btn-4::before,
.btn-4::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.btn-4:hover::before,
.btn-4:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-4:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.btn-4:hover::after {
  transform: translate(50%, 0) scale(1.1);
}





.btn-5 {
  width: fit-content;
 display: inline-block;
 padding: 14px 19px;
 border: 2px solid #ff4444;
 border-radius: 5px;
 transition: all 0.2s ease-in;
 position: relative;
 overflow: hidden;
 font-size:  18px;
 color: black;
 z-index: 1;
}

.btn-5:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color: rgba(0, 0, 0, 0.05);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}

.btn-5:after {
 content: "";
 position: absolute;
 text-align: center;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color: #ff4444;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}

.btn-5:hover {
 color:  #ffffff;
 border: 2px solid #ff4444;
}

.btn-5:hover:before {
 top: -35%;
 background-color: #ff4444;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-5:hover:after {
 top: -45%;
 background-color: #ff4444;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.input-group--box_section{
    margin: 10px 0px;
    display: block;
    width: 100%;
    padding:  14px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-group--box_section{
    border: 2px solid #ced4da;
    border-radius: 15px;
    padding:14px 16px;
    width: 100%;
    font-size: 400;
}
img{
    max-width: 100%;
}
p{
    padding: 0;
    margin: 0;
}
address{
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
.listing-add{    
    display: none;
    color: #3b4d55;;
    font-weight: 400;
    font-size: 18px;    
    margin: 2em 0.5em 1em;
    padding: 10px 15px;
    border: 2px solid #46b450;

}
.title-page{
    font-weight: 800;
    text-align: center;
    margin-bottom:  42px;
}
.content-box{
    word-break: break-word;
}
.content-box p{
  margin-bottom: 5px;
  text-indent: 2ch;
}
.content-box h1{
    font-weight: 800;
    text-align: center;
    margin-bottom:  27px;
}
.content-box h2{
    font-weight: 400;
    text-align: center;
    margin-bottom:19px ;
}
.content-box ul li,
.content-box ol li {
  margin-bottom: 4px;
}
.content-box ul,
.content-box ol {
  margin-bottom: 15px;
  padding-left:  19px;
  list-style: inside;
}
.content-box a,.content-box table{
color: inherit;
}

.section-body{
    width: 100%;
    background-color:#00000005;
}
.page-wrap{
    background:  #ffffff;
    max-width: 1200px;
    margin: 0 auto;
   
}
.main-header{
    margin-bottom: 28px;
}
.navbar{
    background-color: #060606;   
    min-height: 55px;
    padding: 0;
       
}



.nav-link{
    color:  #ffffff;
    text-transform: uppercase;
    font-weight: 400;   
    padding: 5px 15px;
}
.nav-link:hover,.nav-link:focus{
background-color: #ff4444;
color:  #ffffff;

}
.collapse{
    justify-content: center;
}
.navbar-toggler {
    fill:  #ffffff;
    transition: all 0.25s;
    height: 55px;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
}
.navbar-toggler:hover{
    background-color: #ff4444;
    border: 0;
    border-radius: 0;
}
.nav-link:focus{
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    color: #101010;
}
.navbar-toggler:focus{
    box-shadow:none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    background-color: #ff4444;
    outline: 5px auto -webkit-focus-ring-color;   
    color: #101010;
}

.nav-link:focus-visible{
    box-shadow:none;
}
.dropdown-menu{
    background-color: #ffe0d8;
}
.logo-wrap{
    text-align: center;
    padding-top: 33px;
    padding-bottom: 33px;
}
.logo-link{
    display: flex;
    align-items: center;           
    gap: 19px;  
   justify-content: center;
        
}

.logo-link span{
    font-size:  35px;
    padding: 10px;
    color:  #ffffff;
    background-image: linear-gradient(90deg, #ff4444 50%, #060606 50%);;
}
.footer-logo{
    display: flex;
    align-items: center;           
    gap: 19px;    
    justify-content: center; 
}
.logo-title{
color: #ff4444;
font-size:  14px;
padding: 0;
 background-image:none
}
.footer-logo img{
width: auto;
object-fit: contain;
height: 35px;
}
.secondary-bar {
    border-top:  1px solid #343334;
    border-bottom:  1px solid #343334;
    box-sizing: border-box;
    position: relative;
}
.footer{
    color: #b0b0b0;    
    background-color: #060606;
    
}
.footer-bottom{
    border-top:  1px solid #b0b0b0;
    padding: 28px 0;
}
.container-bottom{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.blok-footer{
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.blok-footer a{
    font-size: 14px;
}
.blok-footer a:hover{
    color: #ff4444;
}
.footer-top{
    padding: 35px 0 10px 0;
}

.title{
    
    background: #343334;
    margin-bottom: 23px;
}
.title span{
    color:  #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    background: #ff4444;
    padding: 0 28px;
    line-height: 35px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}
.title span:before {
    content: "";
    width: 1px;
    height: 1px;
    position: absolute;
    left: 100%;
    top: 0;
    border-top: 36px solid #ff4444;
    border-right: 20px solid transparent;
    border-bottom: 0;
    border-left: 0;
}
.tuge-wty span{
    background: #343334;
    color: #b0b0b0;
    padding: 0px 14px;
    display: inline-block;
    margin: 0px 7px 7px 0px;
    font-size: 14px;
}
.tag:hover{
    background: #ff4444;
    color:  #ffffff;
}

.input-footer{
    padding: 4px 14px;
    color: #dbdfe4;
    border: 2px solid #707070;
    background: transparent;
    border-radius: 0;
    width: 100%;
}
.footer-list{
    display: flex;
    gap:  19px;
}
.footer-wraps{
    flex: 1;
}
.category-grid{
    display: grid;
    grid-gap:  5px;
    grid-template-columns: repeat(3,3fr);
}
.grid__item{
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
}

.grid_img{    
    border-radius: 5px;
    object-fit: cover;
    
}

.grid__item::after,.grid__item::before{
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.6s ease-in-out;
}
.grid__item:hover:before {
    left: 50%;
    right: 50%;
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
}
.grid__item:hover:after {
    bottom: 50%;
    top: 50%;
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
}
.big-margin{
    margin-bottom: 28px;
}

.gallery-list{
    
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:  19px;
    
}
.big-picture{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    float: left;
}
.big-picture img{
    object-fit: cover;
 border-radius: 5px;
 
}
.grup-picture{
    flex: 1;
    display: flex;
    gap:  19px;
}
.sm-picture img{
  
     border-radius: 5px;
    object-fit: cover;
}
.sm-picture{
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
}
.picture-wrapper{
    display: flex;    
    justify-content: center;
    height: 100%;
   
}
.picture-hover{
  position: relative;
}
.picture-hover::after,.picture-hover::before{
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.6s ease-in-out;
}
.picture-hover:hover:before {
    left: 50%;
    right: 50%;
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
}
.picture-hover:hover:after {
    bottom: 50%;
    top: 50%;
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
}
.tag-list{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 1.75em;
    margin-right: 35px;
}
.tag-list span{
    background: #ff4444;
    color:  #ffffff;
    padding: 0px 5px 0px 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.title-wrap{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.35s;
}
.title-wrap h5{
    padding: 10px 15px;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5em;
    font-weight:400;
    color:  #ffffff;
    font-size: 14px;
}
.wrapper-blog{
    width: 100%;
    display: flex;
    gap: 19px;  
    flex-direction:  row;
}
.blog-main{
    width: 75%;
}
.sidbar{
    width: 25%;
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    gap:  48px;
    
}
.blog-item{
    display: flex;
    gap: 19px;
    flex-direction:  row;
    
}
.box-item{
    width: 100%;
    display: flex;
    gap: 19px;
    flex-direction: column;
    padding:19px;
    align-items: center;
}
.content-img{
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.content-img img{
   object-fit: cover;
     border-radius: 5px;
  
}
.content-wrapper{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.content-wrapper h3{
    font-size: 24px;
    font-weight:400;
}
.cotent-tex{
    font-size: 16px;
}
.infa-blog{
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
}
.post-meta{
    display: flex;
    gap: 42px;
    justify-content: start;
    flex-direction: row;

}
.post-meta span{
    color: #b0b0b0;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.date{
    display: flex;
    gap: 5px;
    align-items: center;
}
.comment{
    display: flex;
    gap: 5px;
    align-items: center;
}
.h5 span{
    font-size:  14px;
    font-weight: 400;
}
.category-blok span{
    padding: 2px 14px;
    background: #ff4444;
    color:  #ffffff;
    display: inline-block;
    margin: 0px 5px 5px 0px;
}
.category-blok span:hover {
    background: #343334;
    color:  #ffffff;
}
.commentators-list{
    display: flex;
    flex-direction: column-reverse;
    gap:  28px;
}
.commentators-item{
display: flex;
align-items: center;
gap: 15px;
}
.commentators-item img{
object-fit: cover;
width: 59px;
height: 59px;
border-radius: 50%;

}
.commentators-item h3{
    font-size: 18px;
    font-weight: 400;
}
.commentators-item p{
    font-size: 14px;
    text-transform: uppercase;

}
.subscription-tex{
    font-weight: 400;
    margin-bottom: 28px;
    font-size: 18px;
}
.position-img{
    float: right;
} 
.page-imege{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    position: relative;
 }
 .page-imgM {   
  max-height: 300px;
  object-fit: contain;    
  border-radius: 5px;
  float: right;
  width: 40%;
  margin: 19px;
  margin-top: 0;
  margin-right: 0;
 }

.page-title{
    font-weight: 800;
    color: #393939;
    line-height: 1.25em;
    font-size: 35px;
}
.page-content p{
 margin-bottom: 5px;
  text-indent: 2ch;
} 
.price{
    display: flex;
    color: #ff0000;
    justify-content: end;
    gap:  5px;
    font-size: 19px;
    font-weight: 400; 
}
.box-order{
    padding: 42px 0 42px;
    margin-left: auto;
    margin-right: auto;
    background-image:linear-gradient( to right, rgba(47, 48, 58, 0.3), rgba(47, 48, 58, 0.3) ), url(image/view_header_68bfdd62aa4cf1.01773547.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: aliceblue;
    margin:28px 0 28px;
     box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.box-phone{
    
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    
}
.box-phone a{
    color:  #ffffff;
}
.form-input{
    display: flex;
    flex-wrap: wrap;
    gap:  10px;
    flex-direction: column;
    
}
.page-input{
  padding: 14px 22px;
    font-size: 18px;
    line-height: 24px;
    color: #6b6768;
}
.box-form{   
    padding: 10px;
    margin:27px 0 27px;
}
.blog-navigation{
    padding: 27px 0;
    border-top: 2px solid #e1e1e1;
 border-bottom: 2px solid #e1e1e1;
}
.blog-navigation img{
    width: 58px;
    height: 58px;
    object-fit: cover;
    border:2px solid #ff0000;
    border-radius: 50%;


}
.navigation-link{
    display: flex;
    gap: 15px;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    color: #393939;
    
}
.navigation-link i{
    font-size: 19px;
}
.blog-navigation{
    display: flex;
    justify-content: space-between;

}
.comment-page{
    
    margin-bottom: 28px;
    padding-bottom: 19px;
     border-bottom:  2px solid #e1e1e1;
     background-color:  #00000005;
     
}
.compose-wrapper{
    display: flex;
    gap: 19px;
    margin-bottom: 19px;
    align-items: flex-start;
}
.form-avatar{
    padding: 10px;
    border:  2px solid #ff0000;
   border-radius: 50%;
    display: inline-block;
    background: #ff0000;
}
.form-avatar i{
    font-size: 19px;
    color:  #ffffff;
}
.textarea{
    overflow: auto;
    overflow-wrap: break-word;
    max-height: 259px;
    width: 100%;
    border-radius: 13px;
    min-height: 115px;
    font-size:  16px;
    padding: 19px;
   background: #fff;
    border:2px solid #dbdfe4;
}
.page-input{
    border-radius: 13px;
    background: #fff;
    border:2px solid #dbdfe4;
    font-size:  16px;
}
.grup-input{
    display: flex;
   gap: 19px;
}
.grup-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.com-add{
    display: none;
}
.comment-page .title{
    padding: 0;
}
.comment-title{
    margin-bottom: 28px;
}
.title-com{
    text-align: center;
    font-weight:800;
    padding: 0 10px 0 10px;
    font-size: 19px;    
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.form-check-label{
    margin-left: 5px;
}
.hiding{
    display:  inline-block;
}
.commentators-item h3{
    margin-bottom: 15px;
}
.comment-page .commentators-item{
    padding: 0 10px 10px;
 flex-direction:  column-reverse;
 
} 
.comment-page .commentators-item p{
        text-transform: inherit;
}
.news-list{
     display: flex;
    flex-wrap: wrap;
}
.news-item{
    display: flex;
    gap: 5px;
    width: 100%;
    padding: 0 5px 0;
    align-items: center;
    padding-top:5px;
    padding-bottom: 5px;
    color: #101010;
    border-top: 2px solid #eee;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-item:first-child{
    border-top:none
}
.news-item:hover{
    background: #ff0000;
    color: #ffff;
}
.form-contact{
    display: flex;
    justify-content: center;
    
    flex-direction: row;
    gap: 24px;

}
.img-contact{
    flex: 1;
    padding: 10px;
}
.form-box-contact{
    flex: 1;
    
   
}
.formBox{
    padding: 0 10px 0 10px;
}
.img-contact img{
        
border: none;            
border-radius: 0;
box-shadow: none;

} 
.map-box{
    padding-bottom: 28px;  
    border-bottom: 2px solid #e1e1e1;
iframe {
    height: 300px;
    } 
}

.contact{
    background-color:  #00000005;
}
.contact-page{
    margin-bottom: 28px;
    padding-bottom:19px;
    border-bottom: 2px solid #e1e1e1;
}
.address{
   
     padding-bottom: 35px;
     border-bottom: 2px solid #e1e1e1;
   
}
.address_list{
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
   
    justify-content:  center; 

}
.address_title{
    font-weight:  400;
   
}
.address_item{
border-radius: 5px;
display: flex;
gap:  19px;
background-color: #ffff;
flex-direction: column;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
padding:  28px;
transition: 0.3s; 
word-break: break-word;
 
}
.address_item:hover{
    transform: scale(1.03);
    
   
}
.wpapper_blok{
display: flex;
 gap:  28px; 
 flex-direction: column-reverse;
}
.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.avatar img{
object-fit: cover;
width: 102px;
height: 102px;
border-radius: 50%; 
}
.about{
  display: block;
}
.about-wrapper{
    display: flex;
    flex-direction: column;
    gap: 19px;
  
}
.about-wrapper h3{
    text-align: center;
    font-size: 19px;
    font-weight:800;
}
.about-wrapper p{
    font-size: 16px;
     text-align: center;
}
.flex{
    display: flex;
    flex-direction: column-reverse;
     gap:  48px;
}
.blog-list{
    display: flex;
    flex-wrap: wrap;
    gap:  19px;
}

@media(max-width:575px){
     button{
        width: 100%;
    }
    .nav-link,.dropdown-item{
        font-size: 14px;
    }
   
    .navbar-toggler{
        width: auto;
    }
    .logo-link span{
        font-size: 28px;
    }
    .sm-picture{
        flex-direction: column;
    }
    .page-imege img {
        height: 100%;
       
    }
    
    .blog-navigation img{
        display: none;
    }
    .navigation-link{
        font-size: 10px;
        
    }
    .box-checbox{
        font-size: 10px;
    }
    .link-nex{
        text-align: end;
    }
    .page-title{
        font-size: 28px;
    }
    
}
@media(max-width:768px){
    .container-bottom{
        align-items: center;
        flex-direction: column-reverse;
        gap: 19px;

    }
    .navigation-link{
        font-size: 12px;
        gap:5px;
    }
    .grup-input{
        flex-direction: column;
    }
    .grup-button{
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
    .address_list{
         flex-direction: column;
    }
    .page-imgM{
        float: none;
        width:100%;
        margin: 0 0 19px 0; 
    }
    .address_item{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding:  28px 5px  28px 5px;
    }

}

@media(max-width:991.99px){
.navbar-collapse{
 border-top:  2px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    border-color: #101010;
}
.dropdown-menu{
    background: transparent;
    border: none;
}
.dropdown-item{
    color: #ffff;
    white-space: break-spaces;
}
.navbar-nav {
    margin: 7px;
}
.footer-list {
    flex-direction: column-reverse;
}
.gallery-list{
    flex-direction: column;
}

.wrapper-blog{
    flex-direction: column;
} 
.blog-main{
    width: 100%;
}
.sidbar{
    width: 100%;
} 

.form-contact{
    flex-direction: column;
}
.page-title{
    text-align: center;
}
.page-imege img{
    height: 100%;
}
.page-imege{
    margin: 0 0 15px 0;
}
}
@media screen and (min-width: 575px) and (max-width: 991.99px){
   .sm-picture{
    flex-direction: row;
}
}
@media screen and (min-width: 991.99px) and (max-width: 1199.99px){
    .h5 span{
        font-size: 10px;
    }

}
@media(max-width:1199.99px){
    
    .blog-item{
        flex-direction: column-reverse;
    }

}