$primary: #6554ce !default;
$gray-100: #887e96 !default;
$white: #ffffff !default;
$black: #211c29 !default;
.bg-primary {
  background-color: $primary !important;
}
.text-primary {
  color: $primary !important;
}
.text-gray-100 {
  color: $gray-100 !important;
}

.btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 10px 35px;

  &:focus {
    outline: none !important;
    box-shadow: none !important;
  }
}
.btn-primary {
  color: $white;
  background-color: $primary;
  box-shadow: none;
  border: 1px solid $primary;
  &:hover,
  &:focus,
  &.active {
    color: $primary;
    background-color: $white;
    border: 1px solid $primary;
  }
}
// @font-face {
//   font-family: "ProductSans";
//   font-style: normal;
//   font-weight: 400;
//   src: url(../fonts/ProductSans/ProductSans-Regular.ttf) format("truetype");
//   font-display: swap;
// }

// @font-face {
//   font-family: "ProductSans";
//   font-style: normal;
//   font-weight: 500;
//   src: url(../fonts/ProductSans/ProductSans-Medium.ttf) format("truetype");
//   font-display: swap;
// }
// @font-face {
//   font-family: "ProductSans";
//   font-style: normal;
//   font-weight: 700;
//   src: url(../fonts/ProductSans/ProductSans-Bold.ttf) format("truetype");
//   font-display: swap;
// }
// @font-face {
//   font-family: "Saira";
//   font-style: normal;
//   font-weight: 600;
//   src: url(../fonts/Saira/Saira_Condensed-SemiBold.ttf) format("truetype");
//   font-display: swap;
// }
.font-Saira {
  font-family: "Saira";
  font-weight: 600;
  letter-spacing: 0.6px;
}
body {
  font-family: "Poppins";
  font-weight: 400;
}
.px-40 {
  padding-left: 40px;
  padding-right: 40px;
  @media (max-width: 575px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-content {
  position: relative;
//   background-image: url("/public/assets/img/vcard21/bg-img.png");
  background-size: cover;
}
.banner-section {
  position: relative;
  padding: 20px;
  @media (max-width: 575px) {
    padding: 6px;
  }
  .heart-img {
    position: absolute;
    right: 20px;
    top: 100px !important;
    text-align: right;
    @media (max-width: 767px) {
        right: 30px;
      }
    @media (max-width: 515px) {
        left: 15px;
        right: auto;
        top: 290px;
        text-align: left;
      }
    @media (max-width: 424px) {
        top: 240px;
      }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .cherry-blossom-img {
    position: absolute;
    right: 50px;
    top: 200px;
    text-align: right;
    @media (max-width: 767px) {
      right: 30px;
    }
    @media (max-width: 515px) {
      left: 15px;
      right: auto;
      top: 290px;
      text-align: left;
    }
    @media (max-width: 424px) {
      top: 240px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .banner-img {
    position: relative;
    max-width: 438px;
    height: 330px;
    width: 100%;
    overflow: hidden;
    border-radius: 0 175px 0 175px;
    border: 5px solid $white;
    @media (max-width: 424px) {
      height: 270px;
      border-radius: 0 140px 0 140px;
    }
  }
}
.profile-section {
  position: relative;
  .card {
    position: relative;
    background-color: transparent !important;
    border: none;
    .card-img {
      position: absolute;
      right: 0;
      top: -120px;
      border-radius: 50%;
      min-width: 200px;
      width: 200px;
      height: 200px;
      border: 5px solid $white;
      overflow: hidden;
      @media (max-width: 575px) {
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -80px;
        min-width: 175px;
        width: 175px;
        height: 175px;
      }
    }
    .card-body {
      padding-bottom: 0;
      max-width: calc(100% - 200px);
      @media (max-width: 575px) {
        max-width: 100%;
        padding-top: 110px;
      }
    }
  }
  .social-media {
    .social-icon,.social-back {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      margin: 0 7px;
      background-color: $white;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
      @media (max-width: 575px) {
        margin: 0 5px;
      }
      svg,
      img {
        width: 30px;
        height: 30px !important;
        border-radius: 50% !important;
        color:#6554ce !important;
      }
      &:first-child {
        margin-left: 0;
      }
      &:last-child {
        margin-right: 0;
      }
    }
  }
}

.section-heading {
  h2 {
    font-size: 26px;
    font-weight: 700;
  }
}

.contact-section {
  .contact-box {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: $white;
    box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
    @media (max-width: 575px) {
      display: flex;
      align-items: center;
    }
    .contact-icon {
      width: 25px;
      min-width: 25px;
      height: 25px;
      border-radius: 10px;
      margin-right: 15px;
      @media (max-width: 575px) {
        margin-bottom: 0;
        margin-right: 20px;
      }
      svg,
      img {
        width: 100%;
        max-height: 25px;
      }
    }
    .contact-desc {
      a {
        word-break: break-all;
        font-size: 14px !important;
      }
      p{
        font-size: 14px !important;
      }
    }
  }
}

.our-services-section {
  position: relative;
  .blossom-img {
    position: absolute;
    top: 30px;
    left: 20px;

    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .services {
    .service-card {
      padding: 58px 20px 20px 20px;
      border-radius: 20px;
      border: 0;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
      position: relative;
      .card-img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 50%;
        background-color: $primary;
        border: 7px solid #f5f2fb;
        position: absolute;
        top: -40px;
        left: 0;
        right: 0;
        margin: 0 auto;
        img {
          width: 45px !important;
          height: 45px !important;
          max-height: 45px;
          object-fit: cover;
          border-radius: 50% !important;

        }
      }
      .card-body {
        .card-desc {
          display: -webkit-box;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }
    }
  }
}
.appointment-section {
  position: relative;
  .appointment-bg-img {
    position: absolute;
    text-align: end;
    bottom: -70px;
    right: 40px;
    @media (max-width: 575px) {
      right: 20px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .appointment {
    .appointment-input {
      width: 100%;
      height: 50px;
      padding: 12px 25px;
      background-color: transparent;
      border: 1px solid $primary;
      border-radius: 10px;
      color: $gray-100;
      &::placeholder {
        color: $gray-100;
      }
      &:focus {
        box-shadow: none;
        outline: none;
      }
    }
    .calendar-icon {
      position: absolute;
      right: 18px;
      top: 11px;
    }
    .hour-input {
      height: 50px;
      font-size: 14px;
      padding: 13px 16px;
      border-radius: 10px;
      background-color: $white;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
    }
  }
}
.gallery-section {
  position: relative;
  .gallery-bg-img {
    position: absolute;
    top: 50px;
    left: 100px;
    @media (max-width: 575px) {
      top: 25px;
      left: 50px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .gallery-slider {
    .gallery-img,.gallery-item {
      margin: 0 auto;
      max-width: 495px;
      width: 100%;
      max-height: 320px;
      height: 320px;
      overflow: hidden;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      @media (max-width: 575px) {
        max-height: 250px;
        height: 250px;
      }
      img,
      iframe {
        width: 100%;
        object-fit: cover;
        height: 100%;
      }
      .audio-image{
        height: 265px !important;
        @media (max-width: 575px) {
        height: 200px !important;
          }
      }
    }
  }
}
.testimonial-section {
  position: relative;
  .testimonial-bg-img {
    position: absolute;
    top: 15px;
    left: 75px;
    @media (max-width: 575px) {
      left: 35px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .testimonial-slider {
    position: relative;
    .testimonial-card {
      position: relative;
      border-radius: 20px;
      .card-body {
        .profile-img {
          width: 50px;
          height: 50px;
          min-width: 50px;
          border-radius: 50%;
        }
        p {
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }
    }
  }
  .slick-arrow {
    position: absolute;
    z-index: 2;
    top: auto;
    bottom: 10px;
    opacity: 1 !important;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: $black;
    color: $white;
    border: 1px solid $black;
  }
  .next-arrow {
    right: 10px;
  }
  .prev-arrow {
    right: 55px;
  }
}
.product-section {
  position: relative;
  .product-bg-img {
    position: absolute;
    text-align: end;
    top: 30px;
    right: 100px;
    @media (max-width: 575px) {
      right: 40px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .product-slider {
    .product-card {
      position: relative;
      max-width: 233px;
      margin: 0 auto;
      height: 300px !important;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: none;
      border: none;
      border-bottom: 2px solid $primary;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
      .card-img {
        width: 100%;
        height: 200px !important;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .card-body {
        padding: 10px;
        .product-desc {
          h3 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
          }
        }
        p {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }
    }
  }
}
.vcard-one__product {
    .product-card {
margin:10px auto !important;
            width: 75% !important;
            @media (max-width:575px) {
                width:99% !important;
            }

        .product-img {
            height:200px !important;
        }
    }
}
.blog-section {
  position: relative;
  .blog-bg-img {
    position: absolute;
    top: 30px;
    left: 50px;
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .blog-slider {
    .blog-card {
      position: relative;

      border: none;
      background-color: transparent;
      border-radius: 0;
      margin-bottom: 20px;

      @media (max-width: 575px) {
        max-width: 250px;
        margin: 0 auto;
      }
      .card-img {
        width: 233px;
        min-width: 233px;
        height: 120px;
        border-radius: 15px;
        overflow: hidden;
        @media (max-width: 575px) {
          width: 100%;
          height: 150px;
        }
      }
      .card-body {
        max-height: 120px;
        min-height: 120px;
        overflow: hidden;
        p {
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }
    }
  }
}
.business-hour-section {
  position: relative;
  .hour-bg-img {
    position: absolute;
    text-align: end;
    top: 25px;
    right: 40px;

    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .business-hour-card {
    .business-hour {
      padding: 10px 5px;
      border: 1px solid $primary;
      border-radius: 10px;
      color: $black;
      background-color: $white;
      display: flex;
      justify-content: center;
      align-items: center;
      span {
        font-size: 13px;
        @media (max-width: 575px) {
          font-size: 14px;
        }
      }
    }
  }
}
.qr-code-section {
  position: relative;
  .qr-bg-img {
    position: absolute;
    top: 25px;
    left: 40px;
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .qr-code {
    gap: 50px;
    @media (max-width: 575px) {
      gap: 30px;
    }
    .qr-profile-img {
      width: 150px;
      height: 150px;
      min-width: 150px;
      border-radius: 50%;
      margin-top: 11px !important;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
    }
    .qr-code-img {
      width: 115px;
      height: 115px;
      min-width: 115px;
      box-shadow: 0 5px 10px rgba(136, 126, 150, 0.1);
    }
  }
}

.contact-us-section {
  position: relative;
  .contact-us-bg-img {
    position: absolute;
    text-align: end;
    top: 30px;
    right: 55px;
    @media (max-width: 575px) {
      right: 30px;
    }
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .contact-form {
    form {
      .form-control {
        background-color: transparent;
        padding: 13px 20px;
        height: 50px;
        background-color: $white;
        border-radius: 10px;
        border: 1px solid $gray-100;
        color: $gray-100;
        &::placeholder {
          color: $gray-100;
        }
        &:focus {
          box-shadow: none;
          outline: none;
        }
      }
    }
  }
}
.create-vcard-section {
  position: relative;
  .create-vcard-bg-img {
    position: absolute;
    top: 30px;
    left: 30px;
    img {
      @media (max-width: 575px) {
        width: 75%;
      }
    }
  }
  .vcard-link-card {
    background-color: transparent;
    border: 1px solid $primary;
    padding: 20px;
    border-radius: 10px;
    position: relative;

    .link-text {
      font-size: 18px;
      word-break: break-all;
      @media (max-width: 575px) {
        font-size: 16px;
      }
    }
  }
}
.add-to-contact-section {
  position: fixed;
  width: 100%;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.btn-section {
  .fixed-btn-section {
    .social-media-bars-btn {
      background-color: $primary;
    }
    .sub-btn {
      .social-media-sub-btn {
        background-color: $white;
        border: 1px solid $primary;
        i {
          color: $primary;
        }
      }
    }
  }
}
// .slick-dotted.slick-slider {
//   margin-bottom: 10px;
// }
// .slick-dots {
//   position: relative;
//   bottom: -15px;
//   li {
//     button {
//       &:before {
//         color: $gray-100;
//       }
//     }
//     &.slick-active {
//       button {
//         &:before {
//           opacity: 1;
//           color: $primary;
//         }
//       }
//     }
//   }
// }

//custom scss code
.px-30 {
    padding-left: 30px;
    padding-right: 30px;
    @media (max-width: 575px) {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .fs-12 {
    font-size: 12px;
  }
  .fs-14 {
    font-size: 14px;
  }
  .fs-18 {
    font-size: 18px;
    @media (max-width: 575px) {
      font-size: 16px;
    }
  }
  .fs-20 {
    font-size: 20px;
  }
  .mt-10 {
    margin-top: 10px;
  }
  .mt-40 {
    margin-top: 40px;
    @media (max-width: 575px) {
      margin-top: 30px;
    }
  }
  .mb-40 {
    margin-bottom: 40px;
    @media (max-width: 575px) {
      margin-bottom: 30px;
    }
  }
  .mx-30 {
    margin-left: 30px;
    margin-right: 30px;
    @media (max-width: 575px) {
      margin-left: 20px;
      margin-right: 20px;
    }
  }
  .mb-20 {
    margin-bottom: 20px;
  }
  .mb-10 {
    margin-bottom: 10px;
  }
  .pb-50 {
    padding-bottom: 50px;
    @media (max-width: 575px) {
      padding-bottom: 40px;
    }
  }
  .pt-40 {
    padding-top: 40px;
    @media (max-width: 575px) {
      padding-top: 25px;
    }
  }
  .pb-40 {
    padding-bottom: 40px;
    @media (max-width: 575px) {
      padding-bottom: 25px;
    }
  }
  .pt-60 {
    padding-top: 60px;
    @media (max-width: 575px) {
      padding-top: 40px;
    }
  }
  .pb-60 {
    padding-bottom: 60px;
    @media (max-width: 575px) {
      padding-bottom: 40px;
    }
  }
  .pt-30 {
    padding-top: 30px;
    @media (max-width: 575px) {
      padding-top: 20px;
    }
  }
  .pb-30 {
    padding-bottom: 30px;
    @media (max-width: 575px) {
      padding-bottom: 20px;
    }
  }
  .pt-50 {
    padding-top: 50px;
    @media (max-width: 575px) {
      padding-top: 40px;
    }
  }
  .pt-80 {
    padding-top: 80px;
    @media (max-width: 575px) {
      padding-top: 40px;
    }
  }
  .pb-80 {
    padding-bottom: 80px;
    @media (max-width: 575px) {
      padding-bottom: 40px;
    }
  }
  .px-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .fw-5 {
    font-weight: 500;
  }
  .fw-6 {
    font-weight: 600;
  }
  .fw-7 {
    font-weight: 700;
  }
  .fs-12 {
    font-size: 12px;
  }
  .fs-36 {
    font-size: 36px;
    @media (max-width: 575px) {
      font-size: 30px;
    }
  }
  .fs-30 {
    font-size: 30px;
    @media (max-width: 575px) {
      font-size: 28px;
    }
  }
  .fs-28 {
    font-size: 28px;
    @media (max-width: 575px) {
      font-size: 24px;
    }
  }
  a {
    text-decoration: none;
  }
  .main-content {
    max-width: 576px;
    min-height: 100vh;
  }
  .object-fit-cover {
    object-fit: cover;
  }
  .flex-1 {
    flex: 1;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .btn-section {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 9;
    .fixed-btn-section {
      position: fixed;
      top: 50%;
      display: flex;
      align-items: center;
      .bars-btn {
        width: 65px;
        height: 65px;
        min-width: 65px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .sub-btn {
        position: absolute;
        right: 75px;
        display: none;
        .social-btn {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          i {
            font-size: 24px;
          }
        }
      }
    }
  }
//   .slick-dots {
//     li {
//       margin: 0;

//       button {
//         &:before {
//           font-size: 30px;
//           opacity: 1;
//         }
//       }
//     }
//   }
// .send-btn{
//     height: 40px;
//     width: 50%;
//     padding: 5px;
// }
//language btn
.language {
    ul {
        list-style: none;

        .lang-list {
            padding: 10px 20px;
            background: #6554ce;
            border: none;
            outline: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            width: -moz-fit-content;
            width: fit-content;

            .lang-head {
                color: #ffffff;

                i {
                    color: #ffffff;
                }
            }

            .lang-hover-list {
                margin: 15px 0 0;
                font-size: 15px;
                width: 115%;
                left: unset !important;
                right: 0;
                min-width: 150px;

                li {
                    padding: 5px 15px;

                    &:hover {
                        background-color: #f1faff !important;

                        a {
                            color: #009ef7 !important;
                        }
                    }

                    &.active {
                        background-color: #f1faff !important;

                        a {
                            color: #009ef7 !important;
                        }
                    }

                    a {
                        color: #5e6278 !important;
                        text-decoration: none;
                        font-size: 14px !important;
                    }

                    img {
                        height: 20px !important;
                        width: 25px !important;
                    }
                }
            }
        }
    }
}
.add-contact-btn {
    width: 200px !important;
    width: 250px !important;
    height: 40px !important;
    margin: 0 auto;
    color: #ffffff;
    z-index: 9999;
    padding: 7px;
    margin-bottom:-35px !important;
    i {
        font-size: 1rem;
    }
}
.vcard21-sticky-btn {
    background: $primary;
    color: #6554ce;
    border: 1px solid #6554ce;
    border-radius: 5px;
    height: 40px;
}

.vcard21-btn-group {
    width: 50px;
    height: 50px;
    color: #6554ce;
    background-color: $white;
    border-radius: 50px !important;
}
.modal-backdrop {
    background-color: transparent !important;
}
.activeSlot {
    background-color: #6554ce !important;
    color: #f5f2fb !important;
    cursor: pointer;
}
.time-slot{
    font-size: 15px;
    background-color: #f5f2fb !important;;
    color: #211c29 !important;
   display:flex;
   justify-content:center;
   align-items:center;
   height:50px;
  font-size:12px;
  cursor: pointer;  
    border: 1px solid #6554ce;
    &:hover,&.activeSlot {
        border: 1px solid white;
        background-color:#6554ce !important ;
        color:white !important;
    }

}
.vcard-twentyone{
    &.main-content {
        max-width: 576px;
        // min-height: 100vh;
        height: 101% !important;
        text-align: center !important;
        background-color: #6554ce;
        color: #211c29;
    }

    .vcard-twentyone-heading {
        font-weight: 500;
        font-size: 28px;
        color: #f5f2fb;
    }
}
.vcard-twentyone-btn {
    padding: 10px 20px;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: #211c29;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: fit-content;
}
.slick-dotted.slick-slider {
    margin-bottom: 10px;
  }
  .slick-dots {
    position: relative;
    bottom: -15px;
    li {
      button {
        &:before {
          color: $gray-100 !important;
        }
      }
      &.slick-active {
        button {
          &:before {
            opacity: 1;
            color: $primary !important;
          }
        }
      }
    }
  }
.product-heading{
    font-weight: 500;
    font-size: 28px;
    color: #6554ce;
}
.product-btn {
    padding: 10px 20px;
    background: #f5f2fb;
    border: 1px solid #6554ce;
    color: #6554ce;
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;

    &:hover {
        background-color:#6554ce;
        color:#f5f2fb ;
        border: 1px solid #ffffff;
    }
}
.product-price{
    color: #6554ce !important;
}
.product-box{
    margin: 15px;
    margin-bottom: 100px !important;
}
.view-more
{
    position: relative;
    bottom: 25px !important;
}
.create-vcard-bg-img
{
    margin-top: -50px !important;
}
.send-btn {
    height: 40px;
    padding: 6px 30px;
    width: 250px !important;
}
.buy-product {
    padding: 10px 20px;
    background: #6554ce;
    border: none;
    outline: none;
    color: #f1faff;
    border-radius: 5px;
    transition: all 0.3s ease;

    &:hover {
        background-color: transparentize($primary, 0.1);
    }
}
.product-heading {
 font-size: 28px !important;
}
.back-btn  {
    padding: 10px 20px;
    border: none;
    outline: none;
    background-color: #6554ce;
    color: #f1faff;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: fit-content;
}
.audio-control{
    margin-top: -20px !important;
    @media (max-width: 580px) {
      margin-top: -20px !important;
    }
}
