.block_title_h{
  display: none;
  height: 0;
  overflow: hidden;
}
h2{
  font-size: 24px;
  font-weight: 500;
}
#single_logo img{
  max-width: 100%;
  height: auto;
}
/*------------------------------------------------------------------------------
Banner
--------------------------------------------------------------------------------*/
#single_banner{
  background: #000;
  position: relative;
  color: #fff;
}
#single_banner *{
  position: relative;
}
#single_banner .the_background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.36;
}
#single_banner .the_background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single_banner .single_info{
  min-height: 400px;
  display: grid;
  align-items: flex-end;
}
#single_banner .info_wrap{
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: var(--def-gap);
  align-items: flex-end;
}

#single_banner .actions_wrap{
  display: flex;
  justify-content: flex-end;
}
#single_banner .action_btn{
  position: relative;
  padding: 12px 24px;
  border: 1px solid currentcolor;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  transition: 0.3s ease all;
  background: rgba(255,255,255,0);
  display: flex;
  grid-gap: 8px;
  align-items: center;
  align-content: center;
}
#single_banner .action_btn:hover{
    background: rgba(255,255,255,0.12);
}


/*------------------------------------------------------------------------------
share btn
--------------------------------------------------------------------------------*/
#share_buttons{
  position: relative;
}
#share_buttons .share_popup{
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right:0;
  background-color: #fff;
  color: #121212;
  padding: 16px 24px;
  border-radius: 4px;
  width: max-content;
  box-shadow: 0 4px 24px -2px var(--main-opacity-7)
}
#share_buttons.active .share_popup{
  display: grid;
}
#share_buttons .share_popup:before{
  content: '';
  position: absolute;
  top: -6px;
  right: 12px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  transform-origin: center;
  border-radius: 4px;
  transform: rotate(45deg);
}
#share_buttons .share_url{
  display: flex;
  grid-gap: 8px;
  padding: 8px 0;
}
/*------------------------------------------------------------------------------
tabs
--------------------------------------------------------------------------------*/
#scroll_navigation{
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  position: sticky;
  top: 80px;
  background:  #fff;
  z-index: 99;
}
#scroll_navigation .tab_item{
  cursor: pointer;
  position: relative;
  padding:24px 0;
  transition: 0.3s ease all;
}
#scroll_navigation .tab_item.active,
#scroll_navigation .tab_item:hover{
  color: var(--color-main);
}
#scroll_navigation .tab_item.active::after{
  position: absolute;
  content: '';
  top:100%;
  left: 0;
  width: 100%;
  height: 4px;
  transform: translateY(-2px);
  background-color: var(--color-main)
}

/*------------------------------------------------------------------------------
wrapper
--------------------------------------------------------------------------------*/
#single_wrapper{
  display: grid;
  grid-template-columns: 1fr 360px;
  margin-top: var(--def-gap);
  grid-gap: 48px;
}
#single_wrapper>.left{
  display: grid;
}
/*------------------------------------------------------------------------------
services
--------------------------------------------------------------------------------*/
#services{
  list-style: none;
  padding:0;
}
.single_service_item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin: 16px 0;
}
.single_service_item .left{
  display: grid;
  grid-template-columns: 1em 1fr;
  grid-gap: 12px;
}
.single_service_item .left .icon svg{
  width: 1em;
  height: 1em;
}
.single_service_item .center{
  position: relative;
}
.single_service_item .center:before{
  content:'';
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dashed currentcolor;
  opacity: 0.24
}

/*------------------------------------------------------------------------------
gallery
--------------------------------------------------------------------------------*/
#gallery{
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
#gallery .single_gallery_img{
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
  cursor: pointer;
}
#gallery .single_gallery_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*------------------------------------------------------------------------------
lightbox
--------------------------------------------------------------------------------*/
#lightbox{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
}
#lightbox.active{
  display: flex;
  justify-content: center;
  align-items: center;
}
#lightbox .the_background{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -moz-backdrop-filter: blur(12px);
  -o-backdrop-filter: blur(12px);
}
#lightbox .wrapper{
  position: relative;
  width: max-content;
  height: max-content;
  max-height: calc(100% - 160px);
  max-width: calc(100% - 160px);
}
#lightbox .wrapper .holder{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lightbox .wrapper .holder .lighbox_item{
  position: relative;
  color: #fff;
  display: none
}
#lightbox .wrapper .holder .lighbox_item.active{
  display: block;
}
#lightbox .wrapper .holder .lighbox_item .close{
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 48px;
  background-color: rgba(255,255,255,0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
  cursor: pointer;
}
#lightbox .wrapper .holder .lighbox_item .close:hover{
  background-color: rgba(255,255,255,0.12);
}
#lightbox .wrapper .holder img{
  max-width: calc(100vw - 96px);
  max-height:calc(100vh - 320px);
  width: auto;
  height: auto;
  object-fit: contain;
}


/*------------------------------------------------------------------------------
sidebar
--------------------------------------------------------------------------------*/
#contact_info{
  display: grid;
  grid-gap: 12px;
}
#contact_info h2{
  margin: 0;
}
#sidebar {
  display: grid;
  grid-gap: 48px;
  height: max-content;
}
#sidebar .contact_desc{
  display: grid;
  grid-template-columns: 1em 1fr;
  grid-gap:12px;
}
#sidebar .contact_desc svg{
  width: 1em;
  height: 1em;
  transform: translateY(0.25em);
}

/*------------------------------------------------------------------------------
socials
--------------------------------------------------------------------------------*/
#social_media .socials_wrapper{
  display: flex;
  flex-wrap: wrap;
  grid-gap: 8px;
}


/*------------------------------------------------------------------------------
bussiness hours
--------------------------------------------------------------------------------*/
#bussiness_hours{
  display: grid
}
#bussiness_hours .single_day_time{
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 8px;
}
#bussiness_hours .single_day_time .times_list{
  text-align: right;
}
#bussiness_hours .single_day_time .spacer{
  border-top: 1px dashed currentcolor;
  opacity: 0.5;
  transform: translateY(50%);
}
