.bg-fixed-one {
  background-image: url("../../images/coffee-shop/bg_01.png");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-color: #fffbf2;
}

.bg-fixed-header {
  background-image: url(../../images/coffee-shop/2.jpg);
  background-size: cover;
  background-position: bottom center;
  position: relative;
  z-index: 0;
  animation: bunner-img 10s infinite;
}

@keyframes bunner-img {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1deg) scale(1.03);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*header*/

.video {
  width: 100%;
}

/*header*/

/*section-one*/
.bg-fixed {
  background-image: url("../../images/coffee-shop/mt-1283_home_bg-1.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  /*min-height: 100vh*/
}
.bg-before::before {
  content: "";
  background-image: url("../../images/coffee-shop/filmstrip-bg-top.png");
  background-repeat: repeat-x;
  position: absolute;
  top: 0px;
  display: flex;
  width: 100%;
  height: 3rem;
}
.bg-after::after {
  content: "";
  background-image: url("../../images/coffee-shop/filmstrip-bg-top.png");
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0px;
  display: flex;
  width: 100%;
  height: 3rem;
  transform: scale(-1);
}

/*section-one*/

.play {
  border-radius: 50%;
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-white 1s linear infinite;
  -webkit-transition: 0.5s;
}
@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.44),
      0 0 0 10px rgba(255, 255, 255, 0.44), 0 0 0 20px rgba(255, 255, 255, 0.44);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.44),
      0 0 0 10px rgba(255, 255, 255, 0.44), 0 0 0 20px rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(12px);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.44),
      0 0 0 20px rgba(255, 255, 255, 0.44), 0 0 0 30px rgba(255, 255, 255, 0.44);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.44),
      0 0 0 20px rgba(255, 255, 255, 0.44), 0 0 0 30px rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(12px);
  }
}

@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.44),
      0 0 0 10px rgba(255, 255, 255, 0.44), 0 0 0 20px rgba(255, 255, 255, 0.44);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.44),
      0 0 0 10px rgba(255, 255, 255, 0.44), 0 0 0 20px rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(12px);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.44),
      0 0 0 20px rgba(255, 255, 255, 0.44), 0 0 0 30px rgba(241, 103, 34, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.44),
      0 0 0 20px rgba(255, 255, 255, 0.44), 0 0 0 30px rgba(241, 103, 34, 0);
    backdrop-filter: blur(12px);
  }
}
/*rating*/



/*rating*/

.bg-fixed-two {
  background-image: url("../../images/coffee-shop/mt-1283_home_bg-1.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center 30%;
  position: relative;
}

#loading {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99999;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
}
.see-more {
  position: relative;
  /*overflow: hidden;*/
}
.see-more-black::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 10%;
  background-color: #252525;
  z-index: -1;
  border: 1px solid #c51317;
  transition: 0.5s;
  opacity: 0;
  border-radius: 1rem;
}
.see-more-red::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 10%;
  background-color: #c51317;
  z-index: -1;
  border: 1px solid #c51317;
  transition: 0.5s;
  opacity: 0;
  border-radius: 1rem;
}
.see-more-left::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  background: #c51317;
  z-index: -1;
  border: 1px solid #c51317;
  transition: 0.5s;
  opacity: 0;
  border-radius: 1rem;
}
.see-more-black:hover::after,
.see-more-left:hover::after,
.see-more-red:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.5s;
}
.see-more-black:hover span,
.see-more-left:hover span,
.see-more-red:hover span {
  background: #c51317;
}

.editor h2 {
  color: var(--background);
  font-size: 1.5rem;
}
.editor h3 {
  color: var(--green);
  font-size: 1.5rem;
}

.editor img {
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height: 9/16 * width) */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-bg-blur {
  background: #fff;
}

.bg-gray-color {
  background: #e2e2e2;
}

@media (min-width: 768px) {
  .header-bg-blur {
    background: rgba(255, 255, 255, 0.44);
    box-shadow: 2px 2px 1px rgb(86 86 86 / 12%) inset;
    backdrop-filter: blur(12px);
  }
}


.h_faq .h_faq_body {
  
  box-shadow: none;
  background-color: #ffffff;
  
  
}

.h_faq .h_faq_question_body {
    padding: 0.5rem;
  }