$primary:#eb0029 !default;
$gray-100: #9b9fa6 !default;
$gray-200: #2c2e36 !default;
$gray-300: #181b20 !default;
$white: #ffffff !default;
$black: #030712 !default;
.bg-primary {
  background-color: $primary !important;
}
.bg-gray-200 {
  background-color: $gray-200 !important;
}
.bg-gray-300 {
  background-color: $gray-300 !important;
}
.text-primary {
  color: $primary !important;
}
.text-gray-100 {
  color: $gray-100 !important;
}

.btn {
  font-weight: 400;
  padding: 10px 35px;
  border-radius: 30px !important;
    transition: .3s all ease-in-out;
  &: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;
  }
}
.enquiry-btn {
    @media (max-width: 425px) {
       width: 100%;
       margin-top: 4px;
    }
    .btn-primary-enquiry {
    color: $white;
    background-color: $primary;
    box-shadow: none;
    border: 1px solid $primary;
    padding: 6px 20px !important;
    &:hover,
    &:focus,
    &.active {
        color: $primary;
        background-color: $white;
        border: 1px solid $primary;
    }
    @media (max-width: 425px) {
            width: 100%;
    }
    }
}

.btn-wp-visit-store {
    color: $white;
    background-color: $primary;
    box-shadow: none;
    border: 1px solid $primary;
    padding: 6px 20px !important;
    @media (max-width: 425px) {
        width: 100%;
    }
    &:hover,
    &:focus,
    &.active {
        color: $primary;
        background-color: $white;
        border: 1px solid $primary;
    }
}

.btn-product-enquiry {
    color: $white !important;
    background-color: $primary !important;
    box-shadow: none !important;
    border: 1px solid $primary !important;
    &:hover,
    &:focus,
    &.active {
    color: $primary !important;
    background-color: $white !important;
    border: 1px solid $primary !important;
    }
}

@font-face {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/AbhayaLibre-Medium.ttf) format("truetype");
  font-display: swap;
}
.link-info {
    color: $primary !important;
}
.fs-24 {
    font-size: 24px !important;
    @media (max-width: 575px) {
        font-size: 20px !important;
    }
}
.fs-16 {
    font-size: 16px;
    @media (max-width: 575px) {
        font-size: 14px !important;
    }
}
body {
  font-family: "Poppins";
  font-weight: 400;
  background-color: #1c2125 !important;
  &.modal-open {
    padding-right:0!important;
  }
}
.px-30 {
  padding-left: 30px;
  padding-right: 30px;
  @media (max-width: 575px) {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.px-20{
    padding-left: 20px;
    padding-right: 20px;
    @media (max-width: 575px) {
        padding-left: 10px;
        padding-right: 10px;
      }
}
.mb-30 {
  margin-bottom: 30px;
}
.banner-section {
  .banner-img {
    position: relative;
    height: 350px;
    width: 100%;
    @media (max-width: 575px) {
      height: 300px;
    }
    .overlay{

            position: absolute;
            content: "";
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-image: linear-gradient(rgba(2, 7, 14, 0), rgba(2, 7, 14, 1));

    }

  }
}
.profile-section {
  position: relative;
  bottom: 0;
  .card {
    background-color: transparent !important;
    position: relative;
    transition: .3s all ease-in-out;
    overflow: hidden;
    @media (max-width:575px) {
        border-radius: 30px;
    }
    // &::after{
    //     opacity: 1;
    //     position: absolute;
    //     content: "";
    //     width: 100%;
    //     height: 46px;
    //     background-image: url("../../../public/assets/img/vcard20/hover-fire.png");
    //     background-position: center;
    //     background-repeat: no-repeat;
    //     background-size: cover;
    //     bottom: 0;
    //     left: 0;
    //     border-radius: 10px;
    //     animation: fire-animation 2s ease-in-out infinite forwards;
    //     opacity: .5;
    // }
    // &::before{
    //     opacity: 1;
    //     position: absolute;
    //     content: "";
    //     width: 100%;
    //     height: 46px;
    //     background-image: url("../../../public/assets/img/vcard20/hover-fire-top.png");
    //     background-position: center;
    //     background-repeat: no-repeat;
    //     background-size: cover;
    //     top: 0;
    //     left: 0;
    //     border-radius: 10px;
    //     animation: fire-animation 2s ease-in-out infinite forwards;
    //     opacity: .5;
    // }
    @keyframes fire-animation {
        0% {
            transform: scaleY(1.1);
        }

        50% {
            transform: scaleY(0.9);
        }
        100% {
            transform: scaleY(1.1);
        }
    }
    .profile-bg-img{
        background-image: url("../../../public/assets/img/vcard20/profile-bg-img-vcard20.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 185px;
        width: 228px;
        position: relative;
        @media (max-width:575px) {
            height: 175px;
        }
    }
    .card-img {
        border-radius: 50%;
        min-width: 130px;
        width: 130px;
        height: 130px;
        border: 3px solid #eb0029;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        position: absolute;
        top: 17px;
        left: 22px;
        right: 0;
        margin: 0 auto;
      @media (max-width: 575px) {
        min-width: 120px;
        width: 120px;
        height: 120px;
      }

    }
    .card-body {
      padding-bottom: 0;
      .profile-name {
        position: relative;
      }
    }
  }

}
.social-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    position: relative;
      display:flex;
      justify-content:center;
      align-items:center;
      transition: .3s all ease-in-out;
      &::after{
        background-image: url("../../../public/assets/img/vcard20/social-svg-bg.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        left: -4px;
        top: 4px;
      }
      a {
        display: flex;
        color:$white;
        position: relative;
        z-index: 1;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid $primary;
        background-color: #060607 !important;
        svg,
        img {
          width: 20px;
          height: 20px;
          fill:$primary;
          color:$primary;
          font-size:20px;
          transition: .3s all ease-in-out;
        }
      }
        &:hover {
            transition: .3s all ease-in-out;
            &::after{
                transition: .3s all ease-in-out;
                transform: scale(1.1);
            }
            a{
                transition: .3s all ease-in-out;

                svg, img{
                  transform: scale(1.1);
                }
            }
}
    }
    @keyframes rotate-circle {
        0%{
            transform: rotate(0);
        }
        100%{
            transform: rotate(360deg);
        }
      }
.section-heading {
    font-family: "AbhayaLibre";
  h2 {
    font-size: 36px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    @media (max-width: 575px) {
      font-size: 32px;
    }
    &:after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 60%;
      height: 3px;
      border-radius: 3px;
      background-image: linear-gradient(to right, $primary, transparent);
    }
  }
}

.contact-section {
  position: relative;
  .contact-box {
    padding: 40px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1c2125;
    border-radius: 40px;
    position:relative;
    height: 100%;
    border-left: 2px solid $primary;
    border-right: 2px solid $primary;
    .contact-icon-box{
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 50%;
        position: absolute;
          display:flex;
          justify-content:center;
          align-items:center;
          transition: .3s all ease-in-out;
          top: -35px;
      &::after{
        background-image: url("../../../public/assets/img/vcard20/social-svg-bg.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        left: -4px;
        top: 4px;
      }
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid $primary;
        background-color: #060607 !important;
          display:flex;
          justify-content:center;
          align-items:center;
          position: relative;
          z-index: 1;
    }
    .contact-desc {
      a {
        word-break: break-all;
      }
    }
  }
}
.gallery-section {
  position: relative;

  .gallery-slider {
    position: relative;

    .gallery-img,
    .gallery-item {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        border-radius: 15px;
    }
    .gallery-file-item {
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slick-slide {
        padding: 0px 10px;
    }

    .gallery-img {
        border-radius: 15px;
        position: relative;
        margin: 0 auto;
        max-width: 560px;
        max-height: 282px;
        height: 282px;
        aspect-ratio: 2;
        overflow: hidden;
        border: 2px solid $primary !important;
        .expand-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: $primary;
            position: absolute;
            top: 10px;
            right: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid $primary;
            z-index: 1;
        }
        @media (max-width: 480px) {
            height: 240px;
        }

        img,
        iframe {
            width: 100%;
            object-fit: cover;
            height: 100%;
        }
        .audio-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0;

            .audio-image {
                width: 100%;
                height: 100% !important;
                object-fit: cover;
                border-radius: 12px;
                margin-bottom: 0;
            }

            audio {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
                max-width: 400px;
                z-index: 2;
            }

            &:fullscreen {
                padding: 15% !important;

                @media (max-width: 575px) {
                    padding: 20px !important;
                    flex-direction: column;
                }

                .audio-image {
                    border-radius: 12px;

                    @media (max-width: 575px) {
                        height: 350px;
                    }
                }

                audio {
                    bottom: calc(15% + 13%);
                    min-width: 45%;

                    @media (max-width: 575px) {
                        position: static;
                        transform: none;
                        width: 90%;
                        margin-top: -70px;
                    }
                }
            }
        }
    }
}
    .gallery-filter-nav {
        padding: 0 10px;
    }
    .gallery-filter-btn {
        border: 1px solid $primary;
        background-color: $white;
        color: $primary;
        border-radius: 30px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        transition: all 0.3s ease;
        &.active {
            background-color: $primary;
            border-color: $primary;
            color: $white;
        }
    }
    .gallery-filter-panel {
        display: none;
        &.active {
            display: block;
        }
    }
}
.our-services-section {
  position: relative;
  .services {
    .service-card {
        padding: 120px 10px 20px 10px;
        border-radius: 10px;
        border: 0;
        background-color: #1c2125;
        position: relative;
        margin-top: 100px;
        position: relative;
        transition: .3s all ease-in-out;
        &::after{
            opacity: 0;
            position: absolute;
            content: "";
            width: 100%;
            height: 10%;
            background-image: url("../../../public/assets/img/vcard20/hover-fire.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            bottom: 0;
            left: 0;
            border-radius: 10px;
            animation: fire-animation 2s ease-in-out infinite forwards;
        }
        @keyframes fire-animation {
            0% {
                transform: scaleY(1.1);
            }

            50% {
                transform: scaleY(0.9);
            }
            100% {
                transform: scaleY(1.1);
            }
        }
        &:hover{
            transition: .3s all ease-in-out;
            &::after{
                opacity: .5;
                transition: .3s all ease-in-out;
            }
        }
        .card-title{
            font-size: 18px;
        }
        .card-desc{
            font-size: 14px;
        }
      .card-img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        top: -100px;
        margin: 0 auto;
        left: 0;
        right: 0;
      }
    }

    .services-slider-view {
        .service-card {
            .card-title {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                color: $white;
                min-height: 43px;
            }
            .card-body {
                min-height: 180px;
            }
            .card-desc {
                font-size: 14px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                min-height: 63px;
            }
            .card-img {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                overflow: hidden;
                position: absolute;
                border-left: 2px solid $primary;
                border-right: 2px solid $primary;
                top: -100px;
                margin: 0 auto;
                left: 0;
                right: 0;
              }
        }
         .slick-slide {
            padding: 0px 10px;
        }

        .slick-dots {
            bottom: -35px !important;
        }
    }
  }
}
.testimonial-section {
  position: relative;
  background-image: url("../../../public/assets/img/vcard20/testimonial-main-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  .testimonial-slider {
    .slick-slide {
        padding: 0px 10px;
    }
    .testimonial-card {
      position: relative;
      margin: 50px auto 0 auto;
      background-color:#1c2125;
      border-radius: 200px;
      padding: 60px 20px 20px 20px;
    border-left: 2px solid $primary;
    border-right: 2px solid $primary;
      .card-img {
        width: 100px;
        height: 100px;
        min-width: 100px;
        border-radius: 50%;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -50px;
        overflow: hidden;
      }
      .card-body {
        padding: 26px 0 !important;
        .right-quote{
            right: 44px;
        }
        .left-quote{
            left: 5px;
        }
        h6{
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 27px;
            font-size: 18px;
        }
        p {
          display: -webkit-box;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;
          overflow: hidden;
          min-height: 96px;
          font-size: 16px;
        }
      }
    }
  }
}
.product-section {
  position: relative;
  .product-slider {
    .slick-slide {
      padding: 0px 10px;
    }
    .product-card {
        background-color: #1c2125;
        border-radius: 10px;
        box-shadow: none;
        padding: 120px 10px 10px 10px;
        position: relative;
        margin-top: 100px;
        transition: .3s all ease-in-out;
        &::after{
            opacity: 0;
            position: absolute;
            content: "";
            width: 100%;
            height: 10%;
            background-image: url("../../../public/assets/img/vcard20/hover-fire.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            bottom: 0;
            left: 0;
            pointer-events: none;
            border-radius: 10px;
            animation: fire-animation 2s ease-in-out infinite forwards;
        }
        @keyframes fire-animation {
            0% {
                transform: scaleY(1.1);
            }

            50% {
                transform: scaleY(0.9);
            }
            100% {
                transform: scaleY(1.1);
            }
        }
        &:hover{
            transition: .3s all ease-in-out;
            &::after{
                opacity: .5;
                transition: .3s all ease-in-out;
            }
        }
      .product-img {
        width: 200px;
        height: 200px;
        min-width: 200px;
        border-radius: 50%;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        overflow: hidden;
        margin: 0 auto;
        position: absolute;
        top: -100px;
        left: 0;
        right: 0;
        img{
            object-fit: cover;
        }
      }
      .product-desc {
        min-height: 85px;
        @media(max-width:425px) {
            min-height: 126px;
        }
        .card-title {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          min-height: 43px;
          font-size: 18px;
        }
        .product-amount{
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 33px;
            font-size: 22px;
            text-align: start;
            padding-right: 7px;
            @media(max-width:425px) {
                text-align: center;
                width: 100%;
            }
        }
        .product-info {
            flex-direction: row;
            align-items: center;
            @media(max-width:425px) {
                flex-wrap: wrap;
                justify-content: center !important;
            }
                &>a {
                    overflow: hidden;
                }
        }
      }
    }
  }
}

.whatsapp-store-product-section {
  position: relative;
  .whatsapp-store-slider {
    .slick-slide {
      padding: 0px 10px;
    }
    .whatsapp-store-box {
        background-color: #1c2125;
        border-radius: 10px;
        box-shadow: none;
        padding: 120px 10px 10px 10px;
        position: relative;
        margin-top: 100px;
        transition: .3s all ease-in-out;
        &::after{
            opacity: 0;
            position: absolute;
            content: "";
            width: 100%;
            height: 10%;
            background-image: url("../../../public/assets/img/vcard20/hover-fire.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            bottom: 0;
            left: 0;
            pointer-events: none;
            border-radius: 10px;
            animation: fire-animation 2s ease-in-out infinite forwards;
        }
        @keyframes fire-animation {
            0% {
                transform: scaleY(1.1);
            }

            50% {
                transform: scaleY(0.9);
            }
            100% {
                transform: scaleY(1.1);
            }
        }
        &:hover{
            transition: .3s all ease-in-out;
            &::after{
                opacity: .5;
                transition: .3s all ease-in-out;
            }
        }
      .whatsapp-store-img {
        width: 200px;
        height: 200px;
        min-width: 200px;
        border-radius: 50%;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        overflow: hidden;
        margin: 0 auto;
        position: absolute;
        top: -100px;
        left: 0;
        right: 0;
        img{
            object-fit: cover;
        }
      }
      .whatsapp-store-content {
        min-height: 85px;
        .whatsapp-store-name {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          min-height: 43px;
          font-size: 18px;
        }
      }
    }
  }
}

.appointment-section {
  position: relative;  .appointment-bg-img {
    position: absolute;
    text-align: end;
    top: 40px;
    right: 30px;
    @media (max-width: 575px) {
      top: 80px;
      right: 20px;
    }
    img {
      @media (max-width: 575px) {
        width: 60%;
      }
    }
  }
  position: relative;
  transition: .3s all ease-in-out;
  &::after{
      position: absolute;
      content: "";
      width: 100%;
      height: 15%;
      opacity: .5;
      background-image: url("../../../public/assets/img/vcard20/hover-fire.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      bottom: 0;
      left: 0;
      border-radius: 10px;
      animation: fire-animation 2s ease-in-out infinite forwards;
  }
  @keyframes fire-animation {
      0% {
          transform: scaleY(1.1);
      }

      50% {
          transform: scaleY(0.9);
      }
      100% {
          transform: scaleY(1.1);
      }
  }
  .appointment {
    padding: 20px;
    background: #1c2125;
    border-radius: 40px;
    .date-input {

    }
    .appointment-input {
      width: 100%;
      height: 50px;
      padding: 12px 25px;
      background-color: #0d1417;
      border: 1px solid #2c2e36;
      border-radius: 30px;
      color: $white;
      position:relative;
      &::placeholder {
        color: $gray-100;
      }
      &:focus {
        box-shadow: none;
        outline: none;
      }
    }
    .calendar-icon {
      position: absolute;
      right: 18px;
      top: 11px;
    }
  }
}


.blog-section {
  .blog-slider {
    .slick-slide {
      padding: 0px 10px;
    }
    .slick-dots{
        bottom: -35px !important;
    }
    .blog-card {
      border: none;
      background-color: #1c2125;
      border-radius: 20px;
      margin: 0 auto;
      position:relative;
      border: 1px solid $primary;
      overflow: hidden;
      .card-img {
        width: 100%;
        height: 240px;
        overflow: hidden;
      }
      .card-body {
        max-height:154px;
        min-height:100%!important;
        overflow:hidden;
        .blog-head {
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 20px;
            min-height: 48px;
          }
          .blog-desc{
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 16px;
            min-height: 38px;
          }
      }
    }
  }
}
.business-hour-section {
  position: relative;
  background-image: url("../../../public/assets/img/vcard20/theme-bg-3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  .business-hour-card {
    .business-hour {
        padding: 40px 10px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #1c2125;
        border-radius: 40px;
        position:relative;
        margin-top: 24px;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        .time-icon-box {
            width: 70px;
            height: 70px;
            min-width: 00px;
            border-radius: 50%;
            position: absolute;
              display:flex;
              justify-content:center;
              align-items:center;
              transition: .3s all ease-in-out;
              top: -35px;
          &::after{
            background-image: url("../../../public/assets/img/vcard20/social-svg-bg.png");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            width: 100%;
            height: 100%;
            content: "";
            left: -4px;
            top: 4px;
          }
          .time-icons{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid $primary;
            background-color: #060607 !important;
              display:flex;
              justify-content:center;
              align-items:center;
              position: relative;
              z-index: 1;

          }
          img , svg{
            position: relative;
            z-index: 1;
          }
        }
        span {
            position: relative;
            z-index: 2;
            font-size: 14px;
            font-weight: 500;
            @media (max-width: 575px) {
                font-size: 14px;
            }
        }
    }
}
}
.qr-code-section {
  position: relative;
  .z-1{
    z-index: 1 !important;
  }
  .qr-code {
    max-width: 550px;
    width: 100%;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #750817;
    background-image: url("../../../public/assets/img/vcard20/qr-code-bg-all.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    &::after{
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        background-color: #000000;
        opacity: .7;
        border-radius: 15px;
        left: 0;
        top: 0;
    }
    .qr-code-img {
        width: 130px;
        height: 130px;
        min-width: 130px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid $primary;
        border-radius: 10px;
        padding: 8px;
        background-color: $white;
        svg,
        img {
            border-radius: 6px;
        }
    }
}
}

// payment-link-section
.payment-link-section {
    .payment-link-slider .slick-track {
        display: flex;
        align-items: stretch;
    }

    .payment-link-slider .slick-slide {
        height: auto;

        > div {
            height: 100%;
        }
    }

    .payment-link-slider .slide {
        height: 100%;
    }

    .pl-strip {
        display: flex;
        align-items: center;
        background: #1c2125;
        border-radius: 16px;
        padding: 14px 16px;
        transition: all 0.3s ease;
        min-height: 120px;
        height: 100%;
        border: 2px solid $primary;
    }

    .pl-strip-icon {
        flex-shrink: 0;
        background: $gray-100;
        border-radius: 12px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            height: 65px;
            width: 46px;
            object-fit: contain;
        }
    }

    .pl-strip-content {
        flex-grow: 1;
        padding: 0 14px;
        min-width: 0;
    }

    .pl-strip-title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 4px;
        color: $white;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pl-strip-desc {
        font-size: 13px;
        color: $gray-100;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        word-break: break-word;
        line-height: 1.4;
        max-height: calc(1.4em * 4);
        text-overflow: ellipsis;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .pl-strip-action {
        flex-shrink: 0;
    }

    .pl-strip-btn {
        padding: 8px 18px;
        border-radius: 50px;
        background: $primary;
        color: $white;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        &:hover {
            background: $white;
            color: $primary;
            border: 1px solid $primary;
        }
    }

    .pl-strip-badge {
        padding: 9px 13px 6px 17px;
        border-radius: 50px;
        background: $primary;
        color: $white;
        font-size: 12px;
        font-weight: 700;
        &:hover {
            background: $white;
            color: $primary;
            border: 1px solid $primary;
        }
    }

    .link-icon-btn svg {
        width: 15px;
        height: 16px;
    }

    .pl-strip-content-img {
        flex-shrink: 0;
        background: $gray-100;
        border-radius: 12px !important;
        padding: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 65px;
        max-height: 89px;
        min-width: 65px;
        min-height: 89px;
        object-fit: contain;
    }
}

.contact-us-section {
  position: relative;
  .contact-form {
    padding: 20px;
    border-radius: 15px;
    background-color: #1c2125;
    position: relative;
    form {
      .form-control {
        background-color: #0e1317;
        padding: 10px 20px;
        height: 50px;
        border-radius: 40px;
        border: 0;
        border-left: 2px solid $primary;
        border-right: 2px solid $primary;
        color: $gray-100;
        &::placeholder {
          color: $gray-100;
        }
        &:focus {
          box-shadow: none;
          outline: none;
        }
      }
    }
  }
}
.create-vcard-section {
    background-image: url("../../../public/assets/img/vcard20/vcard-link-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  .vcard-link-card {
    background-color: #1c2125;
    padding: 20px;
    border-radius:40px;
    border: none;
    position:relative;
    border-left: 2px solid $primary;
    border-right: 2px solid $primary;
    .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;
}
.add-contact-btn {
width: fit-content !important;
    margin: 0 auto;
    color: #ffffff;
    z-index: 9999;
    padding: 12px 20px;
    transition: .3s all ease-in-out;
&:hover{
    background-color: $primary !important;
    color: $white !important;
    transform: scale(1.05);
}
    i {
        font-size: 1rem;
    }
}
.btn-section {
  .fixed-btn-section {
    .food-services-bars-btn {
      background-color: $primary;
    }
    .sub-btn {
      .food-services-sub-btn {
        background-color: $gray-200;
        i {
          color: $primary;
        }
      }
    }
  }
}

.dob-icon svg {
    width: 21px;
    height: 20px;
    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: 670px !important;
    min-height: 100vh;
    border-radius: 15px;
    position: relative;
    margin-top: 4px;
    margin-bottom: 4px;
    background-color: #060607 !important;
  }
  .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;
          }
        }
      }
    }
  }

.send-btn{
    height: 40px;
    width: 250px !important;
}

.z-index-9 {
    z-index:9;
}

//language btn
.language {
    ul {
        list-style: none;

        .lang-list {
            padding: 3px 9px;
            background: $primary;
            border: none;
            outline: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: -moz-fit-content;
            width: fit-content;
            font-size: 14px;
            .lang-head {
                color: $white;
                font-size: 14px;
                i {
                    color: $white;
                }
            }

            .lang-hover-list {
                margin: 15px 0 0;
                font-size: 14px;
                width: 100%;
                right: 0;
                min-width: 70px;

                li {
                    padding: 4px 8px;

                    &:hover ,&.active {
                        background-color: #fdeaeb !important;

                        a {
                            color: $primary !important;
                        }
                    }

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

                    img {
                        height: 14px !important;
                        width: 16px !important;
                    }
                }
            }
        }
    }
}
.vcard20-sticky-btn {
    background: $primary;
    color: #ffffff;
    border: 1px solid $primary;
    border-radius: 5px;
    height: 40px;
}

.vcard20-btn-group {
    width: 50px;
    height: 50px;
    color: $white;
    background-color: $primary;
    border-radius: 50px !important;
}
.vcard-twenty {
    &.main-content {
        max-width: 670px;
        min-height: 100vh;
        text-align: center !important;
        background-color: white;
        color: #030712;
        margin-top: 4px;
        margin-bottom: 4px;
        border-radius: 15px;
    }

    .vcard-twenty-heading {
        font-weight: 500;
        font-size: 28px;
        color: $primary;
    }
}
.vcard-twenty-btn {
    padding: 10px 20px;
    border: 1px solid $primary;
    outline: none;
    background-color: $primary;
    color: #f1faff;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    &:hover{
        background-color: $white;
        color: $primary !important;
    }
}
.activeSlot {
    background: $primary !important;
    color: #ffffff !important;
    padding: 11px;
    height: 50px;
    width: 100% !important;
    cursor: pointer;
}
.time-slot {
    background: #0d1417;
    color: #ffffff !important;
    padding: 0px;
    height: 50px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid $primary;
    margin-top: 20px;
}
.slick-dotted.slick-slider {
    margin-bottom: 10px;
  }
  .slick-dots {
    position: relative;
    bottom: -15px;
    li {
      margin: 0 5px !important;
      width: 8px !important;
      height: 8px !important;
      button {
        width: 8px !important;
        height: 8px !important;
        font-size: 0 !important;
        &:before {
          font-size: 0 !important;
          width: 8px !important;
          height: 8px !important;
          border-radius: 10px;
          background-color: #667270;
        }
      }
      &.slick-active {
        width: 30px !important;
        button {
          width: 30px !important;
          &:before {
            opacity: 1;
            width: 30px !important;
            background-color: $primary;
          }
        }
      }
    }
  }
.z-index-10 {
    z-index: 10;
}
.product-btn {
    padding: 10px 20px;
    background: $primary;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;

    &:hover {
        background-color: transparentize($primary, 0.1);
    }
}
.product-amount
{
    color: $primary;
}
.mw-75{
    max-width: 75% !important;
}
.modal-backdrop {
    background-color: transparent;
}
.modal {
    z-index:99999 !important;
    background-color: #00000080;
    .news-modal {
        #newsLatter-content{
            .form-control{
                padding: .375rem .75rem !important;
                font-size: 0.875rem !important;
            }
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
            border: none;
            border-radius: 0.475rem;
            outline: 0;
            background-color: white;
            .newsmodal-header {
                .btn-close{
                    background: transparent
                    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ADB5BD'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E")
                    50%/1em auto no-repeat;
                    position: absolute !important;
                    right: 16px !important;
                    top: 16px !important;
                    z-index: 1 !important;
                }
                .newsmodal-title{
                    font-size: 50px;
                    text-align: center !important;
                    color: $primary;
                }
            }
            .modal-body {
                padding: 1.75rem;
                .content{
                    color: $primary;
                    font-size: 23px;
                }
                .modal-desc{
                    color: silver;
                    font-size: 16px;
                    font-weight: 400;
                }
                .email-input{
                    border-radius: 8px !important;
                    .btn{
                        padding: 5px 10px !important;
                        border-radius: 8px !important;
                    }
                }
                .required {
                    &:after {
                        color: #f62947;
                        content: "*";
                        font-size: inherit;
                        font-weight: 700;
                        position: relative;
                    }
                }
                .input-box {
                    background-color: #f5f8fa;
                    border: unset;
                    color: #5e6278;
                    transition: all 0.2s ease;
                    font-size: 1.1rem;
                    line-height: 1.5;
                    padding: 0.75rem 1rem;
                    border-radius: 0.475rem;
                    &:focus {
                        box-shadow: unset;
                        background-color: #eef3f7;
                    }
                }
                .input-group{
                    margin-top: 15px;
                }
            }
            .modal-footer {
                padding: 1.875rem;
                border-top: none !important;
                .btn {
                    padding: 10px 20px !important;
                    border-radius: 0.475rem !important;
                }
                .submit-btn {
                    background-color: #6571ff!important;
                    border: unset;
                    outline: unset;
                    color:$white;
                    padding: 10px 20px !important;
                    margin-top: 26px;
                    &:hover {
                        background-color: #6571ff!important;
                    }
                    &:focus {
                        box-shadow: unset;
                    }
                }
            }
        }
    }
}
#email-send{
    background: $primary;
    color: white !important;
    font-size: 15px;
    border: none;
    border-radius: 8px;
}
.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
  }

  @keyframes animatebottom {
    from {
      bottom: -300px;
      opacity: 0;
    }

    to {
      bottom: 0px;
      opacity: 1;
    }
  }
.insta-feed{
    max-height: 1000px!important;
    overflow: auto !important;
}
.insta-feed::-webkit-scrollbar {
    width: 0px; /* Adjust the width as needed */
}

.insta-feed::-webkit-scrollbar-thumb {
    background-color: #181b20 !important;
}

.insta-feed::-webkit-scrollbar-track {
    background-color: #181b20    !important;
}
.insta-feed-iframe iframe {
    border-radius: 15px !important;
    border: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 1px !important;
}
.instagram-btn{
    flex:1;
    position: relative;
    background: transparent;
    &::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        top: 100%;
        background-color: $primary;
        transition: width 0.3s ease;
    }
    &.active::before {
        width: 80%;
    }
    .svg-post-icon rect, .svg-post-icon line {
        stroke: $primary;
    }
    &.active .svg-post-icon rect, &.active .svg-post-icon line{
        fill: $primary;
        stroke: #181a20;
    }
    .svg-reels-icon .not-active-svg {
        display: block;
    }
    .svg-reels-icon .active-svg {
        display: none;
    }
    .svg-reels-icon path.not-active-svg, .svg-reels-icon rect {
        fill: $primary;
    }
    .svg-reels-icon path {
        fill: $primary;
    }
    &.active .svg-reels-icon .not-active-svg, &.active .svg-reels-icon rect {
        display: none;
    }
    &.active .svg-reels-icon .active-svg {
        display: block;
    }
}
.insta-toggle
{
    border-radius: 35px !important;
    transition: all 0.3s ease !important;
}
#instafeed-container{
    a img{
        width: 44%;
        height: 200px !important;
        margin: 11px;
        border-radius: 15px;
    }
}
.insta-feed-iframe {
    position: relative;
    padding: 8px;
    margin: 3px;
    background-color:#1c2125;
    border-radius: 20px;
    border: 1px solid $primary;
}

.support-banner {
    width: 100%;
    max-width: 586px;
    height: auto !important;
    // height: 300px !important;
    position: fixed;
    bottom: 20px;
    z-index: 99999 !important;
    background: #fdeaeb;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
   border: 1px solid $primary;
  left: 0;
  right: 0;
  margin: 0 auto;

    .support_heading{
        font-size: 27px;
        margin-top: 30px;
    }
    .support_text{
        margin-bottom: 22px;
        max-height: 123px !important;
        overflow-x: hidden;
        overflow-y: scroll;
        margin-top: 13px;
        &::-webkit-scrollbar {
            width: 4px;
        }
        &::-webkit-scrollbar-track {
            background: transparent;
        }
        &::-webkit-scrollbar-thumb {
            background: #888;
        }
    }
}

@media (max-width: 767px) {
    .support-banner {
        max-width: 476px !important;
    }
}

@media (max-width: 575px) {
    .support-banner {
        max-width: 100% !important;
    }
}

.act-now{
    padding: 7px 21px;
    background: $primary;
    border: 1px solid $primary;
    outline: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    text-decoration: none;
    color: white !important;
    position: relative;
    bottom: 10px;
    display:inline-block !important;
    border-radius: 30px;
    &:hover{
        background-color: $white;
        color: $primary !important;
    }
}

.banner-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 20px !important;
    background: none;
    border: none;
}
.iframe-slider {
    .iframe-wrapper {
        border-radius: 20px;
    padding: 10px;
    position: relative;
    background-color: #1c2125;
        border: 1px solid $primary;
    }
    .iframe-card {
      margin: 0 auto;
      width: 100%;
      height: 365px;
      overflow: hidden;
      border-radius:10px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      @media (max-width: 500px) {
        max-height: 200px;
        height: 200px;
      }
      iframe {
        background-color: white !important;
      }
    }
    .slick-dots {
      position: relative;
      bottom: -15px;
    }
  }
  .verification-icon{
       color: $primary;
   }
   .main-content.rtl {
    .expand-icon{
        left: 10px;
        right: auto;
    }
    .lang-hover-list{
        left: 0;
        right: auto;
    }
    .ms-3 {
        margin-right: 1rem !important;
        margin-left: 0 !important;
    }
    .calendar-icon {
        left: 18px;
        right: auto;
    }
    .text-start {
        text-align: right !important;
    }
}


.btn-section.rtl {
    right: auto !important;
    left: 15px !important;
}

.btn-section.rtl {
    right: auto !important;
    left: 15px !important;
}


.modal-content[dir='rtl'] {
    .pl-50{
      padding-right:50px;
      }
      .text-center {
      text-align:start !important;
      }
      .arrow {
        transform: rotate(180deg) !important;
    }
    .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
      border-bottom-left-radius: 0 !important;
      border-top-left-radius: 0 !important;
      border-top-right-radius:0.313rem !important;
      border-bottom-right-radius:0.313rem !important;
  }
  .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not( .valid-feedback ):not(.invalid-tooltip):not(.invalid-feedback) {
      border-bottom-right-radius: 0 !important;
      border-top-right-radius: 0 !important;
      border-top-left-radius:0.313rem !important;
      border-bottom-left-radius:0.313rem !important;
  }
  }
.toast-title {
    margin-right: 12px;
 }
.toast-message{
    margin-right: 12px;
}

.input-box {
    padding: 20px;
    display: grid;
    place-items: center;
    border-left: 2px solid #eb0029 !important;
    margin-bottom: 10px;
    cursor: pointer;
    background: #0d1417;
    border-radius: 40px;
    border-right: 2px solid #eb0229;
}

.input-box h4 {
    margin: 0;
    color:#abb1bd !important;
    font-size: medium !important;
}

.file-list li {
    color: #abb1bd !important;
}

 .selected-files .item {
    border-bottom: 1px solid $primary !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
 }

 .file-list .name {
    flex-grow: 1;
  }

  .file-list .remove {
    margin-left: 8px;
    cursor: pointer;
    color: red;
  }

  .file-list .remove svg {
    width: 16px;
    height: 16px;
  }

 .selected-files h5 {
    color:#ffffff !important;
    font-size: medium !important;
    margin-top: 9px !important;
    margin-bottom: 10px !important;
}

small {
    font-size: 12px;
    color:$primary !important;
    font-weight: 600 !important;
}

.file-list {
    overflow-y: auto;
    list-style-type: none !important;
    padding: 0 0 10px 0;
    margin: 0;
    max-height: 220px;
    font-size: medium !important;
}

.modal {
    padding-right:0 !important;
    &.show {
        padding-right:0 !important;
        .modal-dialog {
            transform: translateY(35px) !important;
            @media (min-width: 576px) {
                    margin: 2.5rem auto !important;
                    max-width: 520px !important;
            }
        }
    }
    .modal-dialog {
        transform: translateY(95px) !important;
        &.modal-bottom {
height:87vh !important;
        }
    }
}

#newsLatterModal {
    .modal-dialog{
        @media (min-width:576px) {
            max-width: 420px !important;
            min-height: calc(100% - 5rem) !important;
            transform: none !important;
        }
    }
}
.product-img-slider {
    margin-bottom: 30px !important;
    margin-left: -10px;
    margin-right: -10px;
    .slick-list{
        padding: 0 10px !important;
        width: 100%;
    }
    .slick-slide{
        width: 100%;
    }
}
.product-img-padding-20{
    position: relative;
}
.product-img-main-box {
    border-radius: 15px;
    min-height: 200px;
    height: 200px;
    max-width: 100%;
    width: 100%;
    border: 2px solid #ffffff;
    img{
        border-radius: 15px;
    }
}

.pwa-support {
    width: 100%;
    max-width: 400px;
    height: auto !important;
    position: fixed !important;
    bottom: 20px;
    z-index: 99999 !important;
    background:#fdeaeb;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid $primary;
    left: 0;
    right: 0;
    margin: 0 auto;
    .pwa-heading{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .pwa-text{
        margin-bottom: 16px;
        font-size: 0.875rem !important;
}
}
.pwa-install-button{
    background: $primary!important;
    color: $white !important;
    border-radius: 30px !important;
    padding: 0.563rem 1.563rem !important;
    font-size: 0.875rem !important;
    &:hover {
        background: $primary;
    }
}
.pwa-cancel-button{
    background-color: #adb5bd !important;
    color: #000000;
    border-radius: 30px !important;
    padding : 0.563rem 1.563rem;
    border : none !important;
    font-size: 0.875rem !important;
    &:hover{
        background-color:#d1d5db!important;
        border : none !important;
        color : #000000 !important;
    }
}
.youtube-link-20{
    padding-top: 56.25%;
    position: relative;
    z-index: 9 !important;
    iframe{
        position: absolute !important;
        top:0;
        left: 0 !important;
        height: 100% !important;
        width: 100 !important;
    }
}
.profile-desc{
    p, span, strong{
        margin-bottom: 0 !important;
        color: white !important;
    }
}
.row-gap-30px{
    row-gap: 30px;
}

.row-gap-50px{
    row-gap: 50px;
}

.row-gap-20px{
    row-gap: 20px;
}
.right-arrow-animation{
    animation: right-arrow 1s linear 1s infinite alternate;
}
@keyframes right-arrow {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(8px);
    }
}
.view-more{
    padding: 10px 25px 10px 15px;
    background: $primary;
    border: 1px solid $primary;
    border-radius: 30px;
    transition: .3s all ease-in-out;
    color: white !important;
    a{
        color: white !important;
    }
    &:hover{
        background: $white;
        color: $primary !important;
        a{
            color: $primary !important;
        }
    }
}
.iframe-card{
    iframe{
        border: 2px solid $primary !important;
        border-radius: 15px !important;
        overflow: hidden;
    }
}
.vector-all{
    @media (max-width:576px) {
        img{
            width: 60% !important;
        }
    }
}
.insta-feed-main{
    background-image: url("../../../public/assets/img/vcard20/theme-bg-2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.iframe-section{
    background-image: url("../../../public/assets/img/vcard20/theme-bg-2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    .iframe-slider{
        margin-left: -10px;
        margin-right: -10px;
        .slick-slide{
            padding: 4px 10px;
        }
    }
}
.map-section {
    border: 1px solid $primary;
    border-radius: 15px;
    overflow: hidden;
    background-color: #1c2125;
    .map-location {
        padding: 10px;
        .location-icon-box{
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 50%;
              display:flex;
              justify-content:center;
              align-items:center;
              position: relative;
          &::after{
            background-image: url("../../../public/assets/img/vcard20/social-svg-bg.png");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            width: 100%;
            height: 100%;
            content: "";
            left: -4px;
            top: 4px;
          }
        }
        .location-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid $primary;
            background-color: #060607 !important;
              display:flex;
              justify-content:center;
              align-items:center;
              position: relative;
              z-index: 1;
          img{
            position: relative;
            z-index: 1;
            width: 18px;
          }
        }
    }
    iframe {
        border-radius: 0 !important;
        overflow: hidden;
        margin-bottom: -6px;
    }
}
.vector-1 , .vector-3 , .vector-5 , .vector-7 , .vector-9 , .vector-11 , .vector-13 , .vector-15{
    left: 5px;
    top: 5px;
}
.vector-2 , .vector-4 , .vector-6 , .vector-8 , .vector-10 , .vector-12 , .vector-14{
    right: 5px;
    top: 5px;
    text-align: end;
}

.card-back{
    border: 1px solid $primary !important;
    background-color: #1c2125 !important;
    border-radius: 20px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    position:relative !important;
    color: $white !important;
    h2{
        color: $white !important;
    }
}
.vcard-one__product{
    .product-card {
        padding: 15px;
        background-color: #dfe5e5;
        border: 1px solid $primary;
        border-radius: 15px;
        .product-img {
            width: 100% !important;
            height: 100% !important;
            min-width: 100% !important;
            border-radius: 10px !important;
            border: none !important;
            overflow: hidden;
            margin: 0 auto;
            position: relative !important;
            top: 0 !important;
            img{
                object-fit: cover;
            }
          }
          .product-desc{
            min-height: auto !important;
          }
    }
    .fs-18{
        font-size: 18px !important;
        @media (max-width:575px) {
            font-size: 16px !important;
        }
    }
    .product-img-slider {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 0px !important;
        .slick-list {
            padding: 0 !important;
        }
        .slick-dots{
            bottom: 0px !important;
        }
        .slick-slide {
            padding: 0 10px !important;
            margin: 0 !important;
            width: 100%;
        }
        .product-img-height{
            max-height: 208px;
            aspect-ratio: 2.76;
            border-radius: 10px;
            img {
                aspect-ratio: 2.76;
                border-radius: 10px;
            }
        }
    }
}
.terms-condition{
    min-width: 16px;
}
.bg-effect-vcard20{
    .bg-main{
        opacity: .3;
    }
}
.object-fit-contain{
    object-fit: contain !important;
}
.linkedin-feed{
    max-height: 1000px!important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
.linkedin-feed-iframe {
    height: 500px !important;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 8px;
    background-color: #1c2125;
    border-radius: 20px;
    border: 1px solid #eb0029;
}

.linkedin-feed-iframe iframe {
    height: 483px !important;
    border: none;
    transform-origin: top left;
    transform: scale(1);
}
.linkedin-feed-iframe iframe {
    border-radius: 15px !important;
    border: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 1px !important;
}
.vector-1{
    width: 50px;
}

.sound-toggle-btn {
    position: absolute;
    bottom: 12px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 425px) {
    .sound-toggle-btn {
        bottom: 12px;
        right: 2px;
    }
}

@media (max-width: 375px) {
    .sound-toggle-btn {
        bottom: 10px;
        right: 2px;
    }
}

@media (max-width: 320px) {
    .sound-toggle-btn {
        bottom: 10px;
        right: 2px;
    }
}

.sound-toggle-btn i {
    font-size: 18px;
}
