* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ======== font ===== */

@font-face {
  font-family: Century;
  src: url(../font/century-gothic/CenturyGothic.ttf);
}

a {
  font-family: Century;
}

body {
  font-family: Century;
}

h1 {
  font-size: 60px;
  color: var(--white);
  text-transform: capitalize;

  span {
    text-transform: lowercase;
  }
}

p {
  font-size: 16px;
  line-height: 26px;
}

h2 {
  font-size: 34px;
  text-transform: uppercase;
}

/* ========== color ========= */

:root {
  --primary-color: #b0caea;
  --black: #000;
  --white: #fff;
  --text-color: rgb(24, 24, 24)414;
}


/* ========== other ========== */

a {
  text-decoration: none;
  color: var(--black);
}

ul li {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 20px;
}

.primary-btn a {
  display: inline-block;
  background-color: #8a9a5b;
  padding: 12px 30px;
  border-radius: 40px;
  color: var(--white);
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
  font-weight: 600;
}

.primary-btn a:hover {
  background-color: #738933;
}

.group-btn {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  a {
    background-color: #8a9a5b;
    padding: 10px 25px;
    color: var(--white);
    font-weight: 600;
    /* text-transform: uppercase; */
  }
}

.group-btn a:nth-child(2) {
  background-color: #282828;
  color: var(--white);
}

/* ====== header ======== */

header {
  background-color: #c6cfd9;
  /* padding: 10px 0px; */

  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

  }

  .logo {
    width: 20%;

    img {
      width: 100%;
      max-width: 80px;
    }
  }

  .primary-menu {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;

    nav {
      a {
        text-transform: uppercase;
        padding: 5px 10px;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        color: #8a9a5b;
      }

    }

    nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }

  .menu-icon {
    /* width: 0; */
    display: none;
  }
}

.sticky {
  padding: 10px 0px !important;
  -webkit-box-shadow: 0px 2px 20px 0px #d1d1d199;
  box-shadow: 0px 2px 20px 0px #d1d1d199;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px;
  z-index: 999;
}

.bottom-header {
  padding: 15px 0px;
  background-color: #f3f3f3;
}

.top-header {
  padding: 10px 0px;
  background: #282828;
  color: #fff;

  .container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  a {
    color: #fff;
    padding: 0px 15px;
  }

  .phone-call a:nth-child(1) {
    border-right: 1px solid #ccc;
  }
}

.whatsapp {
  img {
    width: 46px;
  }
}


/* ======= banner ======== */

.banner {


  .banner-main {
    padding: 150px 50px;
    background-position: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/banner02.jpg);
    object-fit: cover;
    background-size: cover;
    /* animation: change 15s infinite ease-in-out; */
    transition: all .3s ease-in-out;
    background-repeat: no-repeat;
  }

  .banner-content {
    width: 100%;
    max-width: 70%;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;

    p {
      width: 70%;
    }
  }
}

@keyframes change {

  0% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/banner01.jpg);
    background-size: cover;
  }

  100% {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../upload/banner02.jpg);
    background-size: cover;
    /* background-position: center; */
  }
}

/* < !--====shop detail======--> */

.shop-detail {
  padding: 40px 0px;

  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .shop-img {
    width: 50%;
    /* background: url(../upload/video.mp4); */
    background-position: center;
    background-size: cover;

    video {
      height: 100%;
      display: flex;
      object-fit: cover;
  }
  }

  .shop-detail-content {
    width: 50%;
    background-color: #7e7e7e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;

    img {
      width: 110px;
    }

    .address p {
      font-weight: 600;
      font-size: 28px;
    }

    .number a {
      color: var(--white);
      padding: 0px 15px;
    }
    .main-shop-content {
      text-align: start;
      margin-top: 100px;

      ul{
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      ul li{
        list-style: disc;
        list-style-position: inside;
      }
  }
  }


}

.shop-detail .tagline p:nth-child(1) {
  font-size: 26px;
  font-weight: 600;
}

.shop-detail .number a:nth-child(1) {
  border-right: 1px solid #ccc;
}

/* ======= divider ======= */

.divider {
  .main-divider {
    width: 50%;
    margin: 0 auto;
  }

  .main-divider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-divider::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 1px;
    background-color: #231f20;
    left: 0;
    top: 50%;
  }

  .main-divider::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 1px;
    background-color: #231f20;
    right: 0;
    top: 50%;
  }

  .divider-icon {
    color: #8a9a5b;
  }
}

.divider {
  padding: 10px 0;
}

/* ====== aboutus ===== */

.aboutus {

  padding: 40px 0px 80px;

  .about-content {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;

  }

  p {
    font-size: 18px;
    line-height: 30px;
  }
}

/* ==== services ===== */

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f9f3;

  .service-img {
    background-image: url(../upload/the-art.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
  }

  .service-content {
    width: 50%;
    padding: 100px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  p {
    font-size: 18px;
    line-height: 30px;
  }

  .services-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    a {
      padding: 10px 20px;
      display: inline-block;
      background-color: #8a9a5b;
      color: var(--white);
      font-weight: 600;
    }

    a:hover {
      background-color: #738933;
      color: var(--black);
    }
  }
}

.services.sculpting {
  .service-img {
    background-image: url(../upload/the-art02.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
  }
}

/* ======== Testimonial ======= */

.testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f9f3;

  .testimonial-img {
    width: 50%;
    background: url(../upload/img05.jpg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .testimonial-content {
    width: 50%;
    padding: 100px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .testimonial-item {
    margin-top: 40px;

    .testimonial-data {

      .aouther-name {
        display: inline-block;
        margin-top: 20px;
        color: #738933;
        font-size: 20px;
        font-weight: 600;
      }
    }

    .owl-prev {

      position: absolute;
      left: 0;
      top: 50%;
      font-size: 36px !important;
      font-weight: 600 !important;
      color: #bf4ea6 !important;
    }

    .owl-next {
      position: absolute;
      right: 0;
      top: 50%;
      font-size: 36px !important;
      font-weight: 600 !important;
      color: #bf4ea6 !important;
    }
  }
}

/* ======== cta ========= */

.cta {
  color: #fff;
  padding: 100px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../upload/ziba-home.webp);
  background: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/ziba-home.webp);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/ziba-home.webp);
  /* background: url(../upload/ziba-home.jpg); */
  background-position: center;
  background-size: cover;
  text-align: center;
  /* background-attachment: fixed; */

  .cta-content {
    width: 100%;
    max-width: 70%;
    margin: 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

/* ======== footer ======= */

footer {
  padding: 80px 0px 40px;
  background: #cbcbcb;

  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .footer-menu {
    ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }

    a {
      padding: 13px 20px;
      font-size: 18px;
      font-weight: 800;
      color: #000;
    }
  }

  .social-media {
    ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      font-size: 24px;
      gap: 20px;
      margin-top: 10px;
    }

    a {
      color: #282828;
    }
  }

  .copy-right {

    font-size: 12px;
    text-align: center;

    img {
      margin-top: 10px;
    }
  }
}

/* ============ drop down ========= */
.drop-down {
  position: relative;
  transition: all .2s linear;
}



.drop-down-menu {
  /* opacity: 0; */
  display: none;
  width: 250px;
  position: absolute;
  padding-top: 20px;

  ul {
    background-color: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 5px 5px #8a9a5b;
    border-radius: 5px;
  }

  /* ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  } */

  span {
    font-size: 14px;
  }
}

.sub-service {
  position: relative;
}

.service-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  height: 200px;
  overflow-y: scroll;

  box-shadow: 1px 1px 9px 1px #cbcbcb;
  border-radius: 5px;
}

.drop-down:hover .drop-down-menu {
  /* opacity: 1; */
  display: block;
}

/* .sub1:hover .sub1-box {
  display: block;
}

.sub2:hover .sub2-box {
  display: block;
}

.sub3:hover .sub3-box {
  display: block;
}

.sub4:hover .sub4-box {
  display: block;
} */

/* 
.drop-down:hover .drop-down-menu {
  opacity: 1;
} */



.service-menu::-webkit-scrollbar {
  width: 5px;
  /* Width of the scrollbar */
}

.service-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Color of the track */
}

.service-menu::-webkit-scrollbar-thumb {
  background: #5e5e5e;
  /* Color of the thumb */
}

/* ============== inner pages ============ */

.inner-banner {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 80px 0px;
}

#about-page {
  img {
    width: 100%;
  }

  h1 {
    text-align: center;
  }

  .inner-banner {
    /* padding: 80px 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner1.jpg);
  }

  .about {
    padding: 80px 0px;

  }

  .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-img {
    text-align: center;

    img {
      max-width: 500px;
    }
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  h2 {
    text-align: center;
  }
}


/* =============== services page ========== */

#service-sub-page {
  .inner-banner {
    text-align: center;
    /* padding: 80px 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner1.jpg);
    background-position: center;
    background-size: cover;
  }

  .service-sub-content {
    padding: 80px 0px;
  }

  .service-sub-list {
    ul {
      display: flex;
      /* flex-direction: column; */
      /* gap: 15px; */
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-around;
    }

    ul li {
      padding: 20px 20px;
      width: 36%;
      display: flex;
      justify-content: space-between;
      align-self: center;
      border-bottom: 1px solid #000;
    }

    p {
      font-size: 20px;
      font-weight: 600;
    }

    .primary-btn {
      text-align: center;
      margin-top: 20px;
    }
  }
}


/* ========= gallery page ======= */

#gallery-page {
  .gallery-banner {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner1.jpg);
    background-size: cover;
    background-position: center;
  }

  .gallery {
    padding: 80px 0px;

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-gap: 20px;
      align-items: stretch;
    }

    .grid .gallery-img img {
      border: 1px solid #ccc;
      box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
      max-width: 100%;
    }

    .gallery-img {
      overflow: hidden;
      transition: all .2s ease-in-out;
    }

    .gallery-img:hover img {
      transform: scale(1.1);
      transition: all .2s ease-in-out;
    }
  }
}

/* ========= gallery page end ======= */

/* ================ Appointment ============ */

#appointment-page {

  .inner-banner {
    text-align: center;
    /* padding: 80px 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner1.jpg);
    background-position: center;
    background-size: cover;
  }

  .appointment-form {
    padding: 80px 0px;
  }

  .main-book-form {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 40px;
    background: #8a9a5b;
    border-radius: 10px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .form-group textarea {
    resize: none;
  }

  .form-group input[type="submit"] {
    background-color: #282828;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  input#time {
    font-size: 18px;
  }

  .both-input {
    display: flex;
  }

  .time-input {
    width: 50%;
  }

  .sub-input {
    width: 50%;
  }

  /* .form-group input[type="submit"]:hover {
    background-color: #0056b3;
  } */
}


/* ============= contact page ============= */

/* ============ Contact Us page ======== */

#contact-page {

  .inner-banner {
    text-align: center;
    /* padding: 80px 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner1.jpg);
    background-position: center;
    background-size: cover;
  }

  .lodge-contact {
    padding: 80px 0px;

    .container {
      display: flex;
      gap: 40px;
    }
  }

  .contact-text {
    width: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form {
    width: 100%;
    max-width: 50%;
  }


  .lodge-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;

    .box {
      display: flex;
      gap: 15px;
      width: 100%;
      max-width: 70%;
    }

    .box-icon i {
      padding: 20px;
      background: #8a9a5b;
      color: var(--white);
      font-size: 20px;
    }

    .box-text {
      span {
        font-weight: bold;
      }

      p a {
        color: #706e6e;
        font-size: 16px;
      }

      p a:hover {
        color: var(--yellow);
      }
    }
  }

  .contact-form {
    form {
      padding: 48px 32px;
      background-color: #F8F5F0;
      display: flex;
      flex-direction: column;
      gap: 15px;
      /* align-items: self-start; */
    }

    input,
    textarea {
      padding: 10px 15px;
      background-color: #fff;
      /* padding-inline: 1.5rem; */
      border: 1px solid #ced4da;
      appearance: none;
      border-radius: 0.25rem;
      transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }



    .name,
    .tel-mail {
      display: flex;
      gap: 20px;

      input {
        width: 100%;
        max-width: 50%;
      }
    }

    .subject input {
      width: 100%;
      max-width: 100%;
    }

    .message textarea {
      width: 100%;
      max-width: 100%;
    }

    .form-submit {
      width: 160px;
      display: inline-block;
      padding: 12px 30px;
      color: var(--white);
      background-color: #282828;
      transition: all .2s ease-in-out;
      font-size: 16px;
    }

    .form-submit:hover {
      background-color: var(--yellow);
    }
  }

  input:focus {
    box-shadow: none;
    border-color: #E8A41D;
  }

  .map {
    iframe {
      width: 100%;
    }
  }
}


.membership {
  background-color: #738933;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  padding: 12px;
}

/* ========== responsive ======= */

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {

  .shop-detail {
    .shop-detail-content {
      .address p {
        font-size: 26px;
      }
    }
  }

  header {
    .logo {
      width: 10%;
    }

    .primary-menu {
      width: 90%;

      nav {
        a {
          padding: 5px 7px;
        }
      }
    }
  }

  .divider {
    .main-divider::before {
      width: 200px;
    }

    .main-divider::after {
      width: 200px;
    }
  }

  .shop-detail .tagline p:nth-child(1) {
    font-size: 22px;
  }

  .services {
    .service-content {
      padding: 34px;
    }
  }

  .testimonial {
    .testimonial-content {
      padding: 30px;
    }

    .testimonial-item {
      margin-top: 20px;
    }
  }

  .cta {
    padding: 70px 0px;
  }

  footer {
    padding: 60px 0px 40px;
  }
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1024px) {
  header {
    .primary-menu {
      gap: 10px;

      nav {
        a {
          font-size: 12px;
        }
      }
    }
  }

  .group-btn {
    a {
      font-size: 12px;
      padding: 10px;
    }
  }

  .banner {
    .banner-main {
      padding: 80px 30px;
    }

    .banner-content {
      max-width: 100%;
    }
  }
  .shop-detail {
     .shop-detail-content {
        .main-shop-content {
            text-align: start;
            margin-top: 30px;
        }
    }
}
}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }



  header {
    .primary-menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;

      ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
      }

      nav {
        text-align: center;

        a {
          font-size: 16px;
        }
      }

      /* display: none; */
    }

    .menu-icon {
      display: block;
      border: none;
      background: transparent;
    }

    .menu-icon {
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0;
    }

    .line {
      fill: none;
      stroke: black;
      stroke-width: 6;
      -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
      -o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line1 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }

    .line2 {
      stroke-dasharray: 60 60;
      stroke-width: 6;
    }

    .line3 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }

    .opened .line1 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }

    .opened .line2 {
      stroke-dasharray: 1 60;
      stroke-dashoffset: -30;
      stroke-width: 6;
    }

    .opened .line3 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }

    .menu-icon {
      width: 40px;
      z-index: 9;
      font-size: 24px;
    }
  }

  .top-header {
    display: none;
  }

  .bottom-header {
    padding: 10px 0px;
  }

  .primary-menu {
    /* display: none; */
    padding: 150px 20px;
    position: fixed;
    background: #fff;
    width: 100%;
    max-width: 350px;
    right: -100%;
    top: 0px;
    /* transform: translateY(-10px); */
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
    z-index: 1;
    height: 100vh;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
  }


  .primary-menu.active {
    right: 0%;
  }

  .banner {
    .banner-main {
      padding: 100px 20px;
    }

    .banner-content {
      p {
        width: 100%;
      }
    }
  }

  .shop-detail {
    .shop-detail-content {
      .address p {
        font-size: 22px;
      }
    }
  }

  .shop-detail .tagline p:nth-child(1) {
    font-size: 18px;
    margin-bottom: 10px;
  }


  .divider {
    .main-divider {
      width: 86%;
    }
  }

  .aboutus {
    padding: 30px 0px;

    .about-content {
      width: 100%;
    }

    p {
      font-size: 16px;
      line-height: 26px;
    }
  }

  .services {
    p {
      font-size: 16px;
      line-height: 26px;
    }

    .service-content {
      padding: 20px;
    }

    .services-item {
      a {
        font-size: 14px;
      }
    }
  }


  .testimonial {
    .testimonial-content {
      padding: 20px;
    }
  }

  .cta {
    padding: 50px 0px;
  }

  footer {
    padding: 40px;
  }


  .drop-down-menu {
    width: 200px;
    position: static;

    ul {
      box-shadow: none;
      padding: 0px;
      gap: 10px;
    }
  }

  .sub-service {
    i {
      transform: rotate(90deg);
    }
  }

  .service-menu {
    position: static;
    width: 245px;

    ul {
      gap: 10px;
    }
  }

  /* ========= about page =========== */

  #about-page {
    .inner-banner {
      background-position: center;
      background-size: cover;
    }

    .about {
      padding: 40px 0px;
    }
  }


  /* =============== service ========== */

  #service-sub-page {
    .service-sub-content {
      padding: 40px 0;
    }

    .service-sub-list {
      p {
        font-size: 16px;
      }

      ul li {
        padding: 10px 0px;
      }
    }
  }


  #appointment-page {
    .main-book-form {
      padding: 20px;
      max-width: 100%;
    }

    .appointment-form {
      padding: 40px 0px;
    }
  }

  /* ============= contact page ========= */

  #contact-page {
    .lodge-contact {
      padding: 40px 0px;

      .container {
        flex-direction: column;
      }
    }

    .contact-text {
      max-width: 100%;
    }

    .contact-form {
      max-width: 100%;
    }

    a {
      word-break: break-all;
    }

    .lodge-contact-details {
      .box {
        max-width: 100%;
      }
    }
  }
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  h2 {
    font-size: 24px;
  }

  h1 {
    font-size: 34px;
  }


  header {
    .logo {
      width: 50%;
    }

    .primary-menu {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start;
      width: 75%;
    }
  }

  .group-btn {
    a {
      padding: 7px;
    }
  }

  .banner {
    .banner-main {
      padding: 40px 20px;
    }

    .banner-content {
      max-width: 100%;
    }
  }



  .shop-detail {
    padding: 32px 0px;

    .container {
      /* display: flex; */
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    .shop-img {
      width: 100%;
      /* padding: 150px 0px; */
      height: 500px;
      overflow: hidden;
    }

    .shop-detail-content {
      padding: 24px 20px;
      width: 100%;
    }
  }

  .divider {
    .main-divider {
      width: 100%;
    }
  }

  .aboutus {
    padding: 20px 0px;
  }

  .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    .service-img {
      width: 100%;
      padding: 150px 0px;
      background-position: center;
    }

    .service-content {
      width: 100%;
    }

  }

  .services.sculpting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;

    .service-img {
      width: 100%;
    }
  }

  .testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    .testimonial-item {
      margin-top: 0px;
    }

    .testimonial-img {
      width: 100%;
      padding: 150px 0px;
    }

    .testimonial-content {
      padding: 40px 20px;
      width: 100%;
    }

    .owl-nav {
      display: none;
    }
  }

  .cta {
    padding: 30px 0px;

    .cta-content {
      max-width: 100%;
    }
  }

  footer {
    padding: 30px 0px 15px;

    .footer-menu {
      a {
        padding: 9px 15px;
        font-size: 16px;
      }
    }
  }


  .inner-banner {
    padding: 50px 0px;
  }

  /* =============== service ========== */

  #service-sub-page {
    .service-sub-content {
      padding: 30px 0;
    }

    .service-sub-list {
      /* p {
        font-size: 16px;
      } */

      ul li {
        width: 100%;
        padding: 10px 0px;
      }
    }
  }

  #appointment-page {
    .both-input {
      flex-direction: column;
    }

    .sub-input {
      width: 100%;
    }
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 400px) {


  h2 {
    font-size: 20px;
  }

  .container {
    padding: 0px 10px;
  }

  .banner {
    .banner-content {
      gap: 10px;
    }
  }

  .shop-detail {
    .shop-detail-content {
      padding: 20px;
    }
  }

  .divider {
    .main-divider::before {
      width: 140px;
    }

    .main-divider::after {
      width: 140px;
    }
  }

  footer {
    .footer-menu {
      ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
      }

      a {
        font-size: 14px;
      }
    }
  }

  /* ========= contact page ========== */

  #contact-page {
    .contact-form {
      form {
        padding: 20px;
      }

      .name,
      .tel-mail {
        flex-direction: column;

        input {
          max-width: 100%;
        }
      }

    }
  }

}


.suspend-sec {
  position: fixed;
  top: 175px;
  z-index: 999;
  background: #fff;
  width: 100%;
  padding: 20px 30px;
  text-align:center;
}

.content-sec-suspend h2{ color:red; font-size:25px;}
.content-sec-suspend p{ color:#000;}
.logo-sec img{ width:16%;}




.white a{ color:#fff;}