@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

body{    
    direction: ltr;
    font-family: 'Cairo', sans-serif !important;     
}
.btn-1 {
  padding: 15px 27px;
  border: none;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #2c9caf;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #2c9caf;
}

.btn-1:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 15px -4px #268391;
}

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

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

.btn-2 {
  --c1: #f6d365;
  --c2: #fda085;
  padding: 15px 27px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background: linear-gradient(90deg, var(--c1, #f6d365), var(--c2, #fda085) 51%, var(--c1, #f6d365)) var(--x, 0)/ 200%;
  color: white;
  border-radius: 19px;
  outline: none;
}

.btn-2:hover {
  --x: 100%;
}

.btn-3 {
  width: fit-content;
 
  background: #ffffff0d;
  border-radius:5px;
  border: 2px solid #334b79;
  font-size: 15px;
  font-weight: 800;
  color: #334b79;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: relative;
  overflow: hidden;
  padding:  15px 17px;
  z-index: 1;
}

.btn-3:before {
  width: 50%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: -50%;
  background: #334b79;
  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: #334b79;
  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 {
  padding: 15px 19px;
  border: 4px solid #443;
  border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
  color: #443;
  background: none;
  cursor: pointer;
 
  font-size: 15px;
  transition: all .2s linear;
}

.btn-4:hover {
  border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
  border: 4px dashed #443;
}



.btn-5 {
 display: inline-block;
 padding: 12px 22px;
 border: 2px solid #4f4f4f;
 border-radius: 4px;
 transition: all 0.2s ease-in;
 position: relative;
 overflow: hidden;
 font-size: 15px;
 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;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color: #39bda7;
 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 #39bda7;
}

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

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

.input-form-field-group{
    margin: 15px 0px;
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 300;
    line-height:1.2;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px dashed #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius:14px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-form-field-group{
    border: 2px dashed #ced4da;
    border-radius: 14px;
    padding: 10px 15px;
    width: 100%;
    font-size: 15px;
}


.tel {
    display: flex;
    gap: 15px;
}
.tel a {
    color: #101010;
}
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;
}
*{
    box-sizing: border-box;
}
.listing-add{
    display: none;
    color: #3b4d55;;
    font-weight:500;
    font-size: 18px;    
    margin: 27px 14px  19px;
    padding:  19px 15px;
    border: 2px dashed #46b450;
}
.title-page{
    font-weight:  800;
    text-align: center;
    margin-bottom:  40px;
}
.content-box{
    word-break: break-word;
}
.content-box p{
  margin-bottom: 10px;
  text-indent: 2ch;
}
.content-box h1{
    font-weight: 800;
    text-align: center;
    margin-bottom:  28px;
}
.content-box h2{
    font-weight: 500;
    text-align: center;
    margin-bottom:19px ;
}
.content-box ul li,
.content-box ol li {
  margin-bottom: 5px;
}
.content-box ul,
.content-box ol {
  margin-bottom: 15px;
  padding-left:  19px;
  list-style: inside;
}
.content-box a,.content-box table{
color: inherit;
}

.header-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.logo{
    text-align: center; 
    display: flex;
    justify-content: center; 
    padding: 19px 0; 
}
.logo-link{
    display: flex;
    align-items: center;           
    gap: 19px;   
   
    justify-content: center;
        
}
.logo-link img{
width: auto;
object-fit: contain;
height: 50px;

}
.nav-wrapper{
    position: relative;
    align-items: center;
    color: #c3cfd3;
    display: flex;
   
    justify-content: space-between;    
    width: 100%;
    flex-direction: row-reverse;
}
.nav-wrapper::before{
    position: absolute;
    height: 2px;
    width: 100%;
    z-index: 101;
    top: 0;
    content: '';
    display: block;    
    right: 0;
    background: repeating-linear-gradient(90deg,currentColor,currentColor 2px,transparent 2px,transparent 4px);
}
.nav-wrapper::after{
    height: 2px;
    width: 100%;
    z-index: 101;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    background: repeating-linear-gradient(90deg,currentColor,currentColor 2px,transparent 2px,transparent 4px);
}
.link-contact{
    color: #79a2ac;
    
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
}


.link-contact span{
    font-size:  14px;
    text-transform: uppercase;
    color: #364b45;
    transition: color .2s ease-out;
}
.link-contact span:hover{
    color: #79a2ac;
}
.link-contact i{
font-size: 19px;
}
.cap-mobile{
    display: none;   
    z-index: 100;
}
.logo-mobile{
    height: auto;
    
}
.navbar-toggler{
    border: none;
    width: auto;
}
.nav-mobile{    
    padding: 22px;   
}
.navbar-collapse{
    border-top: 2px dashed #BBCAD0;
    margin-top: 10px;
}
.bg-navbar{
    
    z-index: 10;
    background-color:  #e2e3e3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sub-nav{
    display: none;
}
.blog:hover .sub-nav{
    display: block;
    margin-left: 10px;
}
.item-mobile{
    font-weight: 500;
    color: #79a2ac;
    transition: color .2s ease-out;
}
.item-mobile:hover{
    border-bottom:  dashed #ddd;
    color: #1c2522;
}
.sub-nav a{
    color: #16373f;
     transition: color .2s ease-out;
}
.sub-nav a:hover{
    color: #4f2102;
}


.hero-contact{
    background-image:linear-gradient( to right, rgba(47, 48, 58, 0.5), rgba(47, 48, 58, 0.5) ), url(assets/images/section-bg_GN0.jpg);
   background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 134px 0 134px 0;   
    
}
.section{
    padding: 42px 0px  51px 0px;
}

.contact{
    width: 100%;
    display: flex;
   flex-direction: row-reverse;
}
.contact-item{
    flex: 1;
}
.contact-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 19px;

}
.contact-box{
    flex: 1;
    padding: 0 15px;
    text-align: center;
    
}
.contact-box a{
transition: all 0.3s; 
word-break: break-word; 
}
.contact-box a:hover{
   font-weight:800;
}
.contact-box p{
    margin-bottom: 15px;
}
.contact-title{
    font-weight: 800;
    color: #1c2522;
    margin: 22px 0;
    word-wrap: break-word;
}
.adress{
    display: flex;
    flex-direction: row;
    gap: 19px;
}
.accordion{
 
  --bs-accordion-border-width:0;
  --bs-accordion-bg:initial;
   
}
.accordion-button{
    gap: 15px;
    font-size: 19px;
    font-weight: 800;
}
.accordion-body{
     color: #696969;
     font-style:italic;
}
.accordion-button:not(.collapsed){
     background-color:#00000003;
}
.accordion-button:focus {
    background-color:#00000003;
    color: #3f3d3d;
    border-color: #00000003;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);

}
.section-slider{
    padding: 27px 30px 0;
}
.slider{

    border-bottom:  2px dotted #BBCAD0;
    padding-bottom: 30px;
}
.gallery-item{
    padding: 0 15px 0;
   
    
}
.picture{
    position: relative;
  overflow: hidden;
  max-height:  401px;
  object-fit: contain;    
  border-radius: 2px;
  float: left;
  width: 40%;
  margin: 19px;
  margin-top: 0;
  margin-left: 0;
}
.slick-slide {
    height: auto;
}
.img-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.img-gallery{  
    object-fit: contain;
    width: 100%;
    height: 262px;
    transition: 1s cubic-bezier(.17,.59,.05,.96);
    border-radius: 5px;
    
}
.gallery-item:hover .img-gallery{
        transform: scale(1.01);
}
.section-blog{
    padding: 97px 0px 0px 0px;
}
.wrapper-blog{
    width: 100%;
    display: flex;
    gap: 19px;  
    flex-direction:  row-reverse;
}
.blog-main{
    width: 75%;
}
.sidbar{
    width: 25%;
    display: flex;
    flex-direction: column;
    margin-bottom: 44px;
    gap:  44px;
    
}
.blog-item{
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: center;
    text-align: center;
    flex: 1;
}

.blog-content{
padding:19px;
display: flex;
flex-direction:  column;
gap: 15px;
}
.blog-item-list{
    display: flex;
    gap: 27px;
    flex-direction: column;

}
.blog-item img{
    width: 100%;
    object-fit: contain;
    height: 262px;
 
}
.alone{
    margin:  19px 0;
    flex-direction: row;
    
}

.img-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.blog-img{
  transition: 1s cubic-bezier(.17,.59,.05,.96);   
    object-fit: cover;
    border-radius: 5px;
}
.blog-img-wrapper{
    width: 100%;
}
.blog-img-wrapper:hover  .blog-img{
    transform: scale(1.01);
}

.blog-tex h4{
    color: #202040;
    font-size: 19px;
}
.content-tex{
    margin-top: 19px;
    padding: 0 4%;
    color: #919a99;
}
.autor{
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction:  row-reverse;
gap: 15px;

color: #919a99;
line-height: 1.647em;
}
.autor h5{
font-size: 12px;
}
.autor img{
object-fit: cover;
width:  30px;
height:  30px;
border-radius: 0%;
}
.date{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap:  10px;
}
.date span{
        font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    line-height: 1em;
    text-transform: uppercase;
    color: #79a2ac;
    margin: 0 15px 6px 0;
}



.date-post{
    position: relative;
}
 
.about{
    border: 2px dashed #BBCAD0;
    text-align: center;
    padding: 10px;
}
.avatar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:  17px;
}
.avatar img{
object-fit: cover;
width: 162px;
height: 162px;
border-radius: 0%; 
}
.about-title{
    display: inline-block;
    position: relative;
    top: -19px;
    padding: 0 15px;
    background-color: #fff;
    z-index: 5;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.category-grid{
    display: grid;
    grid-template-columns:3fr;
    grid-template-rows:1fr;
    gap: 15px;
  
   

}
.grid__item{
     position: relative;
     cursor: pointer;
}
.grid_img{
    width: 100%;
    object-fit: cover;
    height: 262px;
     transition: 1s cubic-bezier(.17,.59,.05,.96); 
     border-radius: 5px;
}
.grid__item:hover .grid_img{
    transform: scale(1.01);
}
.category-title{
    position: absolute;
    top: 10%;
    left: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,48,58,0.8);
}
.category-title h4{
    color: #fff;
    padding: 15px;
    font-size: 14px;
}
.subscription{
    background-color: #f7f7f7;
    text-align: center;
    padding:  30px 19px  30px;
    display: flex;
    flex-direction: column;
    align-items: center;
     border-radius: 5px;
}

.subscription h3{
    font-size: 19px;
    line-height: 1.48em;
    margin-bottom: 22px;
   
}

.tag{
    font-size: 12px ;
    text-transform: uppercase;
    color: #919a99;
    border: 2px dashed #ff3466;
    padding: 5px 10px;
    display: inline-block;
    font-weight:300;
    margin: 0 10px 10px 0;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    
}
.tag:hover{
     text-decoration: none;
    background: #ddd;
    color:  #202040;
}

 .group-flexAP{
    display: flex;
    flex-direction:  column;
 }

 .page-tex{
    background-color: #e2e3e333;  
        
 } 
 .page-position{
 padding: 28px;
 }

 .page-section{
    padding: 40px 0;
    
     
 }
 .page-title{
    font-weight:500;
    color: #1c2522;
    font-size: 30px;
    line-height: 1.125em;
    margin-bottom: 27px;
    text-align: center;
 }
 .page-tex p{
 margin-bottom: 10px;
  text-indent: 2ch;
 }

.price{
    display: flex;
    color: #101010;
    gap:  10px;
    font-size: 19px;
    font-weight: 500; 
}
.page-rating{
    display: flex;
    margin-top: 22px;
    justify-content:  space-between;   
    
}
.rating-icon{
    display: flex;
    gap: 19px;
}


.box-phone{
    display: flex;
    justify-content: start;
    margin-top:  44px;   

}
.box-form{
    margin-top:  44px;
}
.form-sidbar{
    display: flex;
    flex-wrap: wrap;
    gap:  15px;
    flex-direction: column;
    
}
.page-input{
  padding:  12px  22px;
    font-size:  14px;
    line-height: 24px;
    color: #6b6768;
}
.comment-list{
    display: flex;
    gap:  27px;
    flex-direction: column;
}
.wrapperImg{
display: flex;
align-items: center;
flex-direction: column-reverse;
gap:  15px;

}
.wrapperImg img{
object-fit: cover;
width: 98px;
height: 98px;
border-radius: 0%;

}
.wrapperImg h3{
font-size: 19px;
font-weight:  800;
}
.review-blok{
    display: flex;
    align-items: center;
    gap: 27px;
    
}
.rating i{
    color: #f7c633;
    margin: 0 2px;
}
.comment-title{
    border-top: 2px dashed #BBCAD0;
    padding: 19px 0  0 0;
    margin-bottom:  25px;
    
    
}
.connent{
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
.com-add{
    display: none;
}
.title-com{
     text-align: center;
    font-weight: 800;
    font-size: 19px;    
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 27px;
}
.comment-input{
   
    background-color: transparent;
    border: 2px dashed #ddd;
    border-radius: 0;
    color: #79a2ac
}

.grup-button{
    display: flex;
    justify-content: space-between;
}
.box-checbox{
    display: flex;
    gap: 10px;
    align-items: center;
}


.articles-details{
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    width: 88%;
}
.related-link{
display: flex;
flex-direction: column;
align-items: center;
gap: 19px;

}
.news-list{
    display: flex;
    flex-wrap: wrap;
    
}
.news-item{
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #919a99;
    border-top: 2px dashed #eee;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-item:first-child{
    border-top:none
}
.news-item:hover{
   background: #ddd;
    color: #202040;
}
.wpapper_blok{
display: flex;
 gap:  44px; 
}
.box_label{
   display: flex;
   gap:  10px;
    font-size: 12px;
   
}

.footer{
    background-color:  #e2e3e3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 0  dashed #ddd;
    padding: 51px 0;
}
.bg-footer{
    background-image: url(assets/images/fade_1366x7680.png);
}
.footer-container{
    display: flex;
    gap: 19px;
}
.footer-item{
    flex: 1;
}
.footer-content{
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.footer-form{
    position: relative;
}
.footer-button{
     position: absolute;
    background-color: transparent;
    border: 0;
    color: #79a2ac;
    padding: 0!important;    
   
    top: 18px;
    right: 24px;
}
.footer-button i{
    font-size:  19px;
}
.form-title{
    color: #3b4d55;
    margin-bottom: 15px;
    line-height: 1.647em;
    font-size:  15px;
    font-weight:500;
}
.input-footer{
    
    padding: 15px 19px;
    border-color: #b7c4c7;
    color: #b7c4c7;
    margin: 0 0 19px;
    font-size: 15px;
    font-weight: inherit;
    line-height: 24px;
}
.input-footer::placeholder{
    color: #b7c4c7;
    font-size: 12px;
}
.logo-foorer{
    margin-bottom: 42px;
}
.logo-link-footer {
    text-align: center;    
    font-weight: 800;
    color: #3b4d55;
    font-size: 27px;
}
.footer-politik{
    gap: 15px;
    color: #3b4d55;;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
 

}
.footer-politik a{
  transition: all 0.6s ease-in-out;
}
.footer-politik a:hover{
    color: #484d4e;
}


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

  @media (max-width: 575px){
    #cookie-btngx__thumbnail.show{
        display: flex;
        flex-direction: column;
    }
    .cookie_accept{
        margin: 15px 0 0 0;
    }
    .blog-item img,.img-gallery{
        height: auto;
    }
    button{
        width: 100%;
    }
    .footer-button {
     width: 5%;
    }
    .logo-link-footer{
        font-size: 14px;
    }
    .logo-link{
        gap: 8px;
    }
    .hero-contact{
        padding: 61px 0 61px 0; 
    }
  
   
    .page-title{
        font-size:  19px;
    }
      .price{
        font-size: 12px;
      } 
      .rating-icon{
        gap:10px;
        font-size: 12px;
      }
  .page-input::placeholder{
    font-size: 12px;
  }
  .review-blok{
    flex-direction: column;
    gap: 10px;
  }
  .form-check-label{
    font-size: 12px;
  }
  .wrapperImg {
    flex-direction: column;
  }

}


@media (max-width: 768px){
.footer-content{
    flex: 1;
}
.footer-item{
    flex: 0;
}
.picture{
    float: none;
  width:100%;
  margin: 0 0  19px 0; 
}

    


.blog-item-list{
    flex-direction: column;
}
.contact-box{
    flex: 1;
}
 
}
@media(max-width:990px){
    .adress {
            flex-direction: column !important;
        }
.wrapper-blog{
    flex-direction: column;
} 
.blog-main{
    width: 100%;
}
.sidbar{
    width: 100%;
}  
.alone{
        flex-direction: column;
}
}
@media (max-width: 1199px){
.footer-politik{
    gap:  15px;
    flex-direction: column;
}
}
@media (max-width: 1024px){
    .cap{
        display: none;
    }
    .cap-mobile{
        display: block;
    }
    .grup-button {
        flex-direction: column;
        gap: 10px;
    }
    .contact{
    flex-direction:  column;
    text-align: center;
}
}
@media screen and (min-width: 574.99px) and (max-width: 1023.99px){
.page-title {
        font-size: 27px;
    }
}
 @media screen and (min-width: 767.99px) and (max-width: 1023.99px){
    .blog-item-list{
        flex-direction: column;
    }
    .alone{
        flex-direction: column;
    }
    .subscription h3{
        font-size: 19px;
    }
    .tag{
        font-size: 15px;
    } 
    .news-item{
        font-size: 12px;
    }
    

 }