@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap');


:root {
  --white: #fff;
  --black: #060606;
  --white-section: #fffcfa;
  --bg-section-1:rgba(34, 34, 34, 0.95);
  --bg-section-2:rgb(20, 14, 21, 0.90);
  --bg-section-3:rgb(66, 3, 16 , 0.9);
  --col-accent-1:#c14240;
  --col-accent-2:#b46e3c;
  --col-accent-3:#c15c13;
  
  --opac-bg-1: #c14240a6;
  --opac-bg-2: #b46e3ca6;
  --opac-bg-3: #c15c13a6;



 --color-blok-1: #d0a2a242;
  --color-blok-2:transparent;


  --accent-color: #8d6e63;
  --dark-text:   #999999;  
  --flex-basis-1:calc((100% - 3* 30px) / 3);
  --flex-basis-2:calc((100% - 2* 30px) / 2);
  --flex-basis-3:calc((100% - 4* 30px) / 4);

  
}
.btn-1 {
  display: block; 
 
  width: fit-content;
  border: 2px solid var(--black);
  background-color: #fff;
  border-radius: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--black);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 14px 12px;
  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:14px;
  border: 2px solid var(--black); 
  padding: 13px  28px;
  font-size:  16px;
  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: 14px 28px;
  border-radius:  12px;
  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 14px rgba(5, 5, 5, 0.212),
  0px -10px 14px rgb(255, 102, 0) inset;
  cursor: pointer;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
 font-weight: 500;
 
}

.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:  13px 28px;
  border-radius: 14px;
  border: 2px black solid;
  box-shadow: 2px 2px 1px;
  display: block;
  font-weight: 700;
  font-size:  16px;
  background-color: #01aaba68;
  overflow: hidden;
   width: fit-content;
  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:  16px 22px;
  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:  16px;
  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%;
}

body{
  direction: ltr;
  font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  line-height:1.4; 
}
html {
  scroll-behavior: smooth;
}
* {
  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(20px,4vw,36px)!important;
}
img, video{
  max-width: 100%;
}
ul{
  list-style: none;               
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
.privacy-wrapperKJ{
  word-wrap: break-word;
  color:#ffffffc9;
 p{
  margin-bottom: 8px;
  text-indent: 3ch; 
 
}
ul, ol {
  margin-bottom: 8px;
  padding-left: 28px;
  list-style: inside;
}
}

.privacy-wrapperKJ h1{
  font-weight: 700;
  text-align: center;
  margin-bottom:  27px;
}
.privacy-wrapperKJ h2{
  font-weight: 500;
  text-align: center;
  margin-bottom:16px ;
}
.privacy-wrapperKJ table,.privacy-wrapperKJ a{
  word-break: break-word;
  color: inherit;
}
.continer{
  width: 100%;
  max-width: 1170px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}

.header-body{
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-section-3);
  width: 100%;
  z-index: 1;  
  transition: all 0.5s ease;
}
.nav-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.navbar-header{
  float: left;
  width: 30%;
}
.header-logo{
  height: 100px;
  padding: 20px  28px;
  display: block;
 
}
.logo-img{
  height: 58px;
  width: auto;
  object-fit: contain;
}
.nav-list{
  height: 100px;  
  width: 70%;
  display: flex;
  justify-content: end;
  overflow: visible !important;
  transition: all 0.5s ease;

}
.menu-item{
 min-width: 100px;
  position: relative;
  display: block;
 transition: width 0.5s ease;
  height: 100%;
  width: 20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0  20px rgba(0, 0, 0, 0.7);
 
}
.menu-item::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.429);
}
.current{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  
  line-height:  20px;

  color: #ffffff;
  text-align: center;
}
.current:hover{
  background-color: var(--opac-bg-3);
  color: #ffffff;
}
.menu-item:hover{
    width: 38%;
}
.header-fixed-container{
  position: relative;
}
.sub-menu-list{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  left: 0;
  min-width: 190px;
  display: none;
  max-width: 300px;
  transition: display 0.25s ease;
  margin-top: 100px;
  padding:  14px  20px;
  background: var(--bg-section-3);
}
.sub-menu-link{
  transition: all 0.3s ease;
  outline: none;
  padding:8px 0;
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
}
.sub-menu-link:hover,.sub-menu-link:focus{
  color: var(--col-accent-3);
}
.menu-item:hover .sub-menu-list{
 
  display: block;
}
.blend{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  
  h1{
  font-size:  56px;
  text-align: center;
  mix-blend-mode: overlay;
  }
}
.bg-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}
.overley{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;  
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.26);
}
.hero-content{
  margin:  20px 0;
  text-align: center;
  font-size:  20px;
  color: #fff;
  text-shadow: -1px -1px 0 #000,  
                1px -1px 0 #000,
               -1px  1px 0 #000,
                1px  1px 0 #000;
  font-weight: 500;
}
.news{
 
  color: #f7f7f7f1;
  position: relative;
  font-weight: 500;
  padding: 14px 0;
   text-shadow: -1px -1px 0 #000,  
                1px -1px 0 #000,
               -1px  1px 0 #000,
                1px  1px 0 #000;
  border-bottom:  1px solid #ffffff9e;
  border-top:  1px solid #ffffff9e;
}

.container-fluid{
  padding-right: 14px;
  padding-left: 14px;
  margin-right: auto;
  margin-left: auto;
}
.footer-blok{
  padding: 127px 0 0;
  background-color: var(--bg-section-3);
  border-top:  1px solid #ffffff9e;
}
.footer-bottom{
  padding:  20px 0;
  border-top: 1px dashed rgba(255, 255, 255, 1);
}
.copyright-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap:8px;  
  font-size: 13px;
  text-transform: uppercase;
  color:rgba(255, 255, 255, 1);
  justify-content: center;
}
.row-blok{
  display: flex; 
  gap: 12px;
  flex-direction: row;
}
.col-,.col-6{
  width: 100%;
}

.news-img{
  
  border: 1px solid rgba(0, 0, 0, .1);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: 100%;
    height:  194px;
    object-fit: cover;
  }
}
.news-img::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--opac-bg-3);
}
.news-box{
  position: relative;
}
.news-content{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.news-conten_iner{
 text-align: left;
  padding: 0 14px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hover-effect{
  position: relative;
}
.hover-effect::before, .hover-effect::after {
  content: "";
  background: #000000;
  transition: all .3s ease;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s !important;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s !important;   
}
.hover-effect::before{
  right: 0;
  opacity: 1;
  top: 0;

}
.hover-effect::after {
  bottom: 0;
  opacity: .7;
  left: 0;
}
.hover-effect:hover::after, .hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}
.parallax-setting {
  position: relative;
  padding:105px 0;
  overflow: hidden;
  background-image: url(backgrounds/figures_header_683f231ec79bd3.58426300.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  background-color: #262626;
}
.grup-blok{
  display: flex;
  gap: 43px;
  flex-direction: column-reverse;
}
.contact-box-shadow{
  background-color: var(--black);
  box-shadow: 0px 0px 26px 16px rgba(0, 0, 0, 0.02);
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  gap: 16px; 
}
.icon-link{
  color: var(--white);
  transition: display 0.25s ease;
   word-wrap: break-word;
}
.icon-box:hover .icon-link{
  color: var(--col-accent-3);
}
.contact-info{
  display: flex;
  gap: 16px;
  flex-direction:  column-reverse;
}
.icon-box{
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}
.blok-svg{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  svg{
    width: 26px;
    height: 26px;
  }
 
}
.svg-phote{ 
  fill:#9A97C5;
}
.svg-mail{
  fill: #f8d806;
}
.map-box,.map-page{
  overflow: hidden;
  height: 100%;
}
.map-page{
  position: relative;
  width:100%;
  height: 253px;
  
}
.map-page .overley{
  z-index: 1;
}
.map-box iframe,.map-page iframe{
  height: 100%;
  width: 100%;
  
}
.form-frapper{
  padding: 0 28px;
  color: var(--white);
  h2{
    text-align: center;
    margin-bottom: 28px;
  }
}
.form{
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 75%;
  margin: 0 auto;
  color: #fff;
}
.input-grup{
  display: flex;
  gap: 16px;
  flex-direction: row;
}
.input-page,.textarea-page,.input-input-row_block,.textarea-input-row_block{
  width: 100%;
  display: block;
  outline: none;
  color: #ffffff !important;
  border-radius: 35px;
  padding: 14px  16px;
  transition: 300ms ease-in all;
  font-size: 12px;
  border:1px dashed #5d5b5b;
  background-color: transparent;
}
.input-page:focus,.textarea-page:focus,.input-input-row_block:focus,.textarea-input-row_block:focus{
  border-color: #dcdbdb;
}
.input-page::placeholder,.textarea-page::placeholder,.textarea-input-row_block::placeholder,.input-input-row_block::placeholder{
  color: #fff;
  
}
.grup-element{
  display: flex;
  flex-direction: column;
  gap: 20px;
 
}
.custom-check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.custom-check-label a{
  color: var(--white);
  transition: all 0.5s ease-in-out;
}
.custom-check-label a:hover{
  color:var(--col-accent-3);
}
.title-blok{
  position: relative;
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.title-blok::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color:var(--col-accent-3);
  right: 0;
  left: inherit;
  bottom: 1px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
}
.title-blok::after{
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid var(--col-accent-3);
  left: inherit;
  bottom: 5px;
  right: 0;
  display: block;
}
.title-box{
display: flex;
justify-content: center;
text-align: end;
}
.radius{
  border-radius: 5px;
  overflow: hidden;
}
.blog-wrapper{
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.blog-item{ 
  margin: 12px; 
  flex-basis: var(--flex-basis-2);
}
.post-blog{
  position: relative;
  
}
.post-image{
  position: relative;
  height: 336px;
  overflow: hidden;
  border-bottom: 1px  dashed var(--col-accent-3);
  a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  img{
    width: 100%;
    height: calc(336px - 50px);
    object-fit: cover;
    transition: all 3s ease;
    border-radius: 5px;
  }
}
.post-blog:hover .post-image img{
  -webkit-transform: rotate(0deg) scale(1.2) skew(0deg) translate(0);
  -moz-transform: rotate(0deg) scale(1.2) skew(0deg) translate(0);
  -o-transform: rotate(0deg) scale(1.2) skew(0deg) translate(0);
  -ms-transform: rotate(0deg) scale(1.2) skew(0deg) translate(0);
  transform: rotate(0deg) scale(1.2) skew(0deg) translate(0);
}
.date{
  color: #fff;
  position: absolute;
  width: 100px;
  height: 56px;
  top: 260px;
  inset-inline-start:  25px;
  z-index: 2;
  background-color: var(--col-accent-3);
  text-align: center;
  display: flex;
  padding: 8px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight:500;
  border-radius: 5px;
}
.blog-info{
  transition: all 0.3s ease;
  position: relative;
  padding: 0 5px;
}
.blog-title{
  font-size: 16px;    
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px  25px 20px;
  display: block;
  font-weight: 500;
}
.links{
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  line-height: 34px;
  
  text-align:end;
  padding-inline-start: 130px;
}
.post-blog:hover .blog-info{
  background-color: var(--col-accent-3);
}
.col-white{
  color: var(--white);
}
.mar{
  margin-left: 8px;
  margin-right: 8px;
  display: inline-flex;
}
.section{
  padding: 66px 0;
}
.bg-color{
   background: var(--bg-section-3);
}
.about-blok{
  padding: 0 14px;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 1);
  p{
    text-indent: 3ch; 
  }
}
.img-rotate{
  position: relative;
  animation-duration: 1.5s;
  visibility: visible;
  perspective: 600;
  -webkit-perspective: 600;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-name: fadeInLeftBig;

}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
.img-responsive{
  width: 100%;
  height: 500px; 
  transform: rotateY(0deg);
  transition: all 0.5s ease;
}
.img-rotate:hover .img-responsive{
  transform: rotateY(22deg);
}

.com-item{
 margin: 12px;
 flex-basis: var(--flex-basis-3);
}
.author-block{
  position: relative;
  overflow: hidden;
  display: flex;
  transition: all 0.5s ease;
  justify-content: space-between;
  flex-direction: column-reverse;
  height: 100%;
  background: var(--bg-section-3);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.author-block:hover{
  background-color: var(--col-accent-3);
}
.figure-hover-overlay{
  width: 100%;
  height: 253px;
 
}
.figure-hover-overlay img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  
}
.author-block:hover .figure-hover-overlay img{
  opacity: 1;
}
.author-information{
  transition: all 0.3s ease;
  padding: 25px 25px 20px;
  display: flex;
  text-align: center;
  gap:  14px;
  flex-direction: column-reverse;
  color: var(--white);
   
  h4{
    
    text-transform: uppercase;
    font-weight: 500;
   
  }
}
.subscribe{
  width: 50%;
  margin-top: 34px;
}
.subscribe_title{
  color: var(--white);
}
.subs-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subs-input{
  width: 100%;
  padding: 13px  28px;
  background-color: var(--white);
  border: 1px dashed var(--white);
  outline: none;
  color: var(--black);
}
.top-blok{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-title{
  color: var(--white);
  text-transform: uppercase;
  font-size: 43px;
  font-weight:  700;
}
.breadcrumbs li{
  margin: 3.5px 0 3.5px 7px;
  color: rgba(255, 255, 255, 1);

}
.breadcrumbs a{    
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .25px;
  transition: all 0.3s ease;   
  color: rgba(255, 255, 255, 1);
}
.breadcrumbs a:hover{
  color: var(--white);
}
.active{
  color: var(--col-accent-3);
}
.blog-page{
  display: flex;
  flex-direction:  row;
}
.blog-page_content{
  flex: 3;
  padding: 0 12px;
  
}
.blog-page_infirm{
  flex: 1;
  padding: 0 12px;
  
}
.blog-page_img{
  width: 100%;
  height: 336px;
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.blog-conten{  
  margin-top: 43px;
  color: #ffffffc9;
  font-size: 16px;
  line-height: 1.4;   
}
.blog-conten p{
  margin-bottom: 8px;
  text-indent: 3ch;
}
.blog-conten a{
color: inherit;
}
.blog-conten ul,ol{
  list-style: inside;
  margin-bottom: 8px;
  padding-left: 28px;
}
.blog-page_teg{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.9);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.9);
  padding: 14px 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}
.widget-block{
  display: flex;
  flex-direction: column;
  gap:  37px;
}
.widget-title{
  display: flex;
  gap: 8px;
  color: var(--white);
  align-items: center;
}
.svg-avatar{
  fill:var(--col-accent-3);
  
}
.widget_tiem p{
  font-size:   13px;
  margin-top:  20px;
  line-height:  22px;
  color: rgba(255, 255, 255, 1);
}
.comment-wrapper{
  margin-top: 34px;
}
.comment-title{
  color:var(--white);
  font-weight:  700;
  margin-bottom:  28px;
}
.comment-list{
  display: flex;
  flex-direction: column;
  gap:  28px;
}
.comment-item{
  display: flex;
  flex-direction: row; 
}
.comment-avatar{
  width: 57px;
  height: 57px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 0%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
}
.commetn-blok{
  padding:  28px;
  width: 100%;
  background-color: var(--color-blok-2);
  h3{
    color:var(--white);
    font-size: 20px;
    margin-bottom: 20px;
  }
  p{
      color: rgba(255, 255, 255, 1);
  }
}
.price{
  display: flex;
  justify-content:  center;
  color: var(--white);
  gap:  8px;
  font-size: 20px;
  font-weight: 700; 
}
.phone{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-top{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  justify-content:space-between ;
}
.footer-top a{
  transition: all 0.3s ease;
  text-transform:  uppercase;
  color: rgba(255, 255, 255, 1);
}
.footer-top a:hover{
  color: var(--col-accent-3);
}
.gallery-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.gallery-grid_item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: 100%;
    height: 336px;
    object-fit: cover;
  }
}
.image-overlay{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.26);;
}
.gallery-grid_item::after{
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  background-color: var(--opac-bg-3);
  height: 0;
  bottom: 0;  
  transition: all 0.6s ease;
  z-index: 2;
}
.image-overlay-content{
  display: block;
  position: absolute;
  width: 100%;
  height: 90px;
  top: 50%;
  left: 0;  
  transition: all 0.3s ease;
  margin-top: -45px;
  h4{
    color: var(--white);
    text-align: center;
    text-transform: uppercase;  
    letter-spacing: 1px;
    font-weight:500;
    font-size:  22px;
  }
}
.gallery-grid_item:hover:after{
  height: 100%;
}
.gallery-grid_item:hover .image-overlay{
    
  background-color: rgba(34, 34, 34, 0.9);
  opacity: 1;
}
.sextion-video{
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  height: 306px;
}
.sextion-video .overley{
  z-index: 1;
}
.blok-video{
  width: 100%;
  height: 100%;
  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.grupmk{
  display: flex;
  flex-direction: column-reverse;
}





@media (max-width: 575px){
  .blend h1{
    font-size: 25px;
   }
   .form-frapper{
    padding: 0;
   }
   .icon-box{
    flex-direction: column;
    text-align: center;
   }
   .contact-box-shadow{
    text-align: center;
   }
   .about-blok{
    padding: 0;
   }
   .com-item{
    flex-basis:100%;
    margin: 16px 0;
  }
  .blog-page_content,.blog-page_infirm{
    padding: 0;
  }
  .comment-item{
    flex-direction:  column-reverse;
  }
  .gallery-grid{
      grid-template-columns: 1fr;
   }
   .copyright-wrapper {
    justify-content: center;
   }
   .links{
      text-indent: 150px; 
      padding-inline-start:0;
   }
   
.footer-top{
  justify-content: center;
}
.blog-page_img{
  height: auto;
}
  
}
@media (min-width: 575px) and (max-width: 767px){
.gallery-grid{
      grid-template-columns: 1fr 1fr;
}
}
    
@media (min-width: 767px){
  .col-4{
    width: 33.33333333%;
  }
        
}
@media (max-width: 768px){
  .header-body .continer {
    padding: 0;
  }
  .nav-top{
    flex-direction: column;
    align-items: center;
  }
  .navbar-header{
    float: none;
    width: auto;
  }
  .current{
    padding: 37px 14px;
  }
  .nav-list{
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .menu-item {
    width: 100%;
  }
  .menu-item:hover {
  width: 100%;
}
.sub-menu-list{
  position: relative;
  margin-top: 0;
  max-width: 100%;
  opacity: 1;
  left: 0;
  text-align: center;
}
.row-blok{
  flex-direction:  column-reverse;
}
.map-box iframe{
  height: 253px;
}
.input-grup{
  flex-direction: column;
}
.blog-item{
  flex-basis: 100%;
  margin: 14px 0;
} 
.blog-wrapper {
  margin: 0;
}
.blog-title {
  padding: 5px 5px 10px;
}
.top-title{
  font-size: 26px;
}
.form{
  width: 100%;
}

  
}
@media (min-width: 575px) and (max-width: 991.98px){
   .blend h1{
    font-size: 60px;
   }
   .com-item{
    flex-basis: var(--flex-basis-2);
  }
    
}
@media (min-width: 768px) and (max-width: 991.98px){
    .blog-item{
    flex-basis: var(--flex-basis-2);
  }
}

@media (min-width: 992px){
  .col-6{
     flex: 1;
  }
  
 
}

@media (max-width: 992px){
  .about .row-blok{
    flex-direction: column;
  }
  .img-responsive{
      height: 350px;
  }
  .blog-page {
    flex-direction: column;
    gap: 45px;
  }
  .widget-block {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .widget_tiem{
    flex-basis: 200px;
  }
  
    
}







