/*!
Theme Name: a-different-ending
Theme URI: 
Author:
Author URI: 
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: a-different-ending
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

a-different-ending is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200;0,7..72,300;0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;0,7..72,800;0,7..72,900;1,7..72,200;1,7..72,300;1,7..72,400;1,7..72,500;1,7..72,600;1,7..72,700;1,7..72,800;1,7..72,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: 'Literata', serif;
font-family: 'Poppins', sans-serif; */

body,
html {
  overflow-x: hidden;
}

/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 300;
  font-style: normal;
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.625;
  background-color: var(--white-color);
}

:root {
  scroll-behavior: inherit;
  --heading-font: "Literata", serif;
  --body-font: "Poppins", sans-serif;
  --body-color: #053543;
  --heading-color: #053543;
  --white-color: #fff;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--heading-font);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 400;
  font-size: 96px;
  line-height: 1.02;
}

h2,
.h2-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
}

h3,
.h3-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}

h4,
.h4-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none !important;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  padding: 8px 0 20px;
  border: 0;
  border-bottom: 2px solid #f2f2f2;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 0;
  border: 0;
  border-bottom: 2px solid #f2f2f2;
  width: 100%;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  height: 82px;
  outline: none !important;
  resize: none;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  border: 0;
  border-bottom: 2px solid #f2f2f2;
  height: 50px;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  height: 49px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

  color: var(--white-color);
  font-family: var(--body-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}

input[type="submit"]:hover {
  background: -o-linear-gradient(186deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(-96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color);
}

::-webkit-input-placeholder {
  opacity: 0.5;
  color: var(--heading-color);
}

:-ms-input-placeholder {
  opacity: 0.5;
  color: var(--heading-color);
}

::-moz-placeholder {
  opacity: 0.5;
  color: var(--heading-color);
}

:-moz-placeholder {
  opacity: 0.5;
  color: var(--heading-color);
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 170px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 15px;
  padding: 20px 0;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3b61dc;
  /* opacity: 0; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: #3b61dc;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* cmn css start */

.cmn-gap {
  padding: 100px 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
}

.cmn-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 20px;
  min-width: 176px;
  min-height: 49px;
  font-family: var(--body-font);
}

.cmn-btn:hover {
  background: -o-linear-gradient(354deg, #6f51d5 10.1%, #4728b4 91.46%);
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);
  color: var(--white-color);
}

.cmn-fade-btn {
  background: #a78efe;
}

.cmn-fade-btn:hover {
  background: var(--white-color);
  color: var(--body-color);
}

/* cmn css end */

/* css start RN 15-01-2024 */

.navbar-brand {
  width: 205px;
}

.navbar-brand img {
  width: 100%;
}

.main-head {
  padding: 19px 0;
}

.navbar-nav li:not(:last-child) {
  margin: 0;
  margin-right: 40px;
}

.navbar-nav li {
  padding: 0;
  line-height: 1;
}

.navbar-nav li a {
  display: inline-block;
  line-height: 1.2;
  text-transform: capitalize;
}

.navbar-nav>li>a {
  color: var(--body-color);
}

.header-menu-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-search {
  margin-left: 50px;
  line-height: 0;
  position: relative;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav>li>a:after {
  bottom: -14px;
  width: 19px;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 0;
  visibility: hidden;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  opacity: 1;
  visibility: visible;
  width: 19px;
}

.header-search a {
  line-height: 1;
  width: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header-search a img {
  width: 100%;
}

.banner {
  position: relative;
  min-height: 800px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 4;
  overflow: hidden;
  background: #000000;
}

.banner-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  z-index: -1;
}

.banner-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-flower {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 780px;
}

.banner-flower img {
  width: 100%;
}

.banner-cont {
  max-width: 590px;
}

.banner-cont h1 {
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 38px;
}

.banner-sub-hd {
  display: block;
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--white-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
}

.banner-sub-hd b {
  font-weight: 500;
}

.banner-cont p {
  font-size: 18px;
  color: var(--white-color);
  font-weight: 400;
}

.banner-cont .pg-btn {
  margin-top: 40px;
}

.scan-qr-cont {
  max-width: 752px;
}

.scan-qr {
  padding: 86px 0;
  position: relative;
  z-index: 5;
}

.hand-mob-scan {
  display: block;
  position: absolute;
  right: 0;
  bottom: -23px;
  width: 800px;
  z-index: 2;
  /* transform: rotate(3.77deg); */
}

.hand-mob-scan img {
  width: 100%;
}

.memory-sec {
  position: relative;
  z-index: 6;
  background: #f2f5fc;
  overflow: hidden;
}

.memory-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 -20px;
}

.memory-img-each {
  width: 50%;
  padding: 0 20px;
}

.memory-img-1 {
  margin-bottom: 42px;
}

.memory-img-each figure img {
  -webkit-filter: drop-shadow(0px 18px 18px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 18px 18px rgba(0, 0, 0, 0.25));
}

.memory-sec-row {
  --bs-gutter-x: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.memory-cont-wrap {
  padding-left: 63px;
}

.memory-cont-wrap .pg-btn {
  margin-top: 40px;
}

.memory-cont-wrap h2 {
  margin-bottom: 30px;
}

.memory-shp-1 {
  position: absolute;
  left: -50px;
  top: -167px;
  width: 631px;
  height: 631px;
  border-radius: 50%;
  background: #e9eef4;
  z-index: -1;
}

.memory-cont-wrap h2 {
  position: relative;
  z-index: 2;
}

.memory-cont-wrap h2::after {
  position: absolute;
  right: -13px;
  top: -68px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #e9eef4;
  z-index: -1;
  content: "";
}

.memory-sec-main {
  position: relative;
  background: #f2f5fc;
}

.memory-flower {
  display: block;
  width: 340px;
  position: absolute;
  bottom: -66px;
  right: 60px;
  z-index: 7;
}

.memory-flower img {
  width: 100%;
}

.company-offer-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.company-offer-hding {
  width: 42.5%;
}

.company-offer-hding-cont {
  width: 57.5%;
  padding-left: 98px;
}

.company-offer-hding h2 {
  text-transform: capitalize;
}

.company-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white-color);
  -webkit-box-shadow: 0px 15px 30px rgba(162, 198, 217, 0.3);
  box-shadow: 0px 15px 30px rgba(162, 198, 217, 0.3);
  margin-bottom: 20px;
}

.company-icon img {
  max-width: 29px;
}

.company-offer-box h3 {
  margin-bottom: 20px;
}

.company-offer-box p {
  font-size: 14px;
  line-height: 1.7;
}

.company-offer-btn {
  display: inline-block;
  margin-top: 5px;
  background: var(--1, linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 500;
}

.company-offer-btn i {
  margin-left: 9px;
  width: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.company-offer-btn i img {
  width: 100%;
}

.company-offer-btn:hover i {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.company-offer-body-row {
  --bs-gutter-y: 20px;
}

.amazing-webpage-hding {
  margin-bottom: 55px;
  max-width: 748px;
}

.custom-container {
  width: calc(100% - (50% - (1164px / 2)));
  /* max-width: 1920px; */
  margin-left: auto;
  padding-left: 12px;
}

.amazing-webpage-slider-each figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.amazing-webpage-slider-each figure {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.amazing-webpage-slider-each {
  padding: 0 12px;
}

.amazing-webpage-slider-roll .slick-list {
  margin: 0 0 0 -12px;
  padding-right: 307px;
}

.amazing-webpage-slider-each.slick-slide {
  height: auto !important;
}

.amazing-webpage-slider-roll .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.amazing-webpage-slider-main {
  max-width: 1600px;
  overflow: hidden;
}

.amazing-webpage-flower {
  display: block;
  width: 175px;
  position: absolute;
  left: 0;
  bottom: -53px;
}

.amazing-webpage-flower img {
  width: 100%;
}

.amazing-webpage {
  position: relative;
  z-index: 4;
}

.packages {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  padding: 120px 0;
}

.packages .sec-hd {
  margin: 0 auto 67px;
  max-width: 748px;
}

.packages .sec-hd h2,
.packages .sec-hd p {
  color: var(--white-color);
}

.packages-main {
  margin: 0 auto;
  width: 100%;
}

.packages-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.packages-each-col {
  width: 33.33%;
  padding: 0 12px;
}

.packages-each-box {
  padding: 41px 39px 32px;
  background: var(--white-color);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 100%;
}

.purchase-time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(linear,
      left top, left bottom,
      from(rgba(71, 40, 180, 0.2)),
      to(rgba(111, 81, 213, 0.2)));
  background: -o-linear-gradient(top,
      rgba(71, 40, 180, 0.2) 0%,
      rgba(111, 81, 213, 0.2) 100%);
  background: linear-gradient(180deg,
      rgba(71, 40, 180, 0.2) 0%,
      rgba(111, 81, 213, 0.2) 100%);
  padding: 0 28px;
  min-height: 26px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 13px;
}

.purchase-time span {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.purchase-each-upper h3 {
  /*background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  color: #6f51d5;
  font-weight: 600;
  font-family: var(--body-font);
}
.purchase-each-upper h3 del{
  font-size: 80%;
}
.purchase-each-upper h3 ins{text-decoration: none;}
.purchase-each-upper {
  padding-bottom: 18px;
  border-bottom: 1px solid #212529;
  margin-bottom: 23px;
}

.offer-text {
  color: #69868e;
  margin-bottom: 25px;
  display: block;
  line-height: 1;
}

.purchase-plan-list li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.purchase-plan-list li:last-child {
  margin-bottom: 0;
}

.purchase-plan-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background: url(images/product-list-tick.svg) no-repeat center center;
  background-size: 100%;
  content: "";
  top: 9px;
}

.pay-now {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.purchase-each-lower .pg-btn {
  margin-top: 32px;
}

.packages-each-col-scnd .packages-each-box {
  background: rgba(0, 0, 0, 0.05);
}

.packages-each-col-scnd .purchase-time {
  background: rgba(255, 255, 255, 0.2);
}

.packages-each-col-scnd .purchase-time span,
.packages-each-col-scnd .purchase-each-upper h3 {
  background: none;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: var(--white-color);
  color: var(--white-color);
}

.packages-each-col-scnd .offer-text {
  color: rgba(255, 255, 255, 0.6);
}

.packages-each-col-scnd .purchase-plan-list li {
  color: var(--white-color);
}

.packages-each-col-scnd .purchase-plan-list li::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.packages-each-col-scnd .pay-now {
  color: var(--white-color);
  background: none;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: var(--white-color);
}

.packages-each-col-scnd .pay-now:hover {
  color: #000;
  -webkit-text-fill-color: #000000;
}

.packages-each-col-fst .pay-now:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background: -o-linear-gradient(top, #000 0%, #000 100%);
  background: linear-gradient(180deg, #000 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-recent-news .sec-hd {
  max-width: 750px;
  margin: 0 auto 40px;
}

.news-box-left {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.news-box-left figure {
  position: relative;
  height: 100%;
}

.news-box-left figure::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.news-box-left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-heading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 35px 41px 35px;
}

.news-heading-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -20px 15px;
}

.news-heading-list li {
  padding: 0 20px;
  position: relative;
  color: var(--white-color);
  font-size: 14px;
}

.news-heading-list li::after {
  width: 1px;
  height: 10px;
  background: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}

.news-heading-list li:last-child::after {
  display: none;
}

.news-heading h3 a {
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--body-font);
}

.news-heading h3 a:hover {
  color: #9885f9;
}

.news-box-right-each {
  padding: 31px 26px;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #dae5ff;
  background: #fff;
}

.news-box-right-each {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-box-right-each-upper h3 a {
  font-size: 16px;
  display: block;
  color: var(--heading-color);
  font-family: var(--body-font);
}

.news-box-right-each-upper {
  margin-bottom: 55px;
}

.news-box-subhd {
  display: block;
  width: 100%;
  background: var(--1, linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 400;
}

.news-box-right-each-lower p {
  color: #949494;
  font-size: 14px;
  line-height: 1;
}

.news-box-right-row {
  --bs-gutter-y: 24px;
}

.news-box-left {
  height: 100%;
}

.get-back-to-wrok-main {
  border-radius: 12px 0px 0px 12px;
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  padding: 68px 0 68px 73px;
}

.get-back-to-wrok-container {
  max-width: 1068px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.get-back-work-left {
  width: 70%;
}

.get-back-work-right {
/*  width: 30%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 30px;
  /* 14-05-2024 */
  width: 40%;
  padding-left: 70px;
  margin-right: -10%;
  /* 14-05-2024 */
}

.get-back-subhd {
  display: block;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 400;
}

.get-back-hd {
  display: block;
  color: var(--white-color);
  font-family: var(--heading-font);
  margin-bottom: 25px;
}

.get-back-work-left p {
  color: var(--white-color);
}

.get-back-to-wrok {
  position: relative;
  margin-bottom: -183px;
  z-index: 2;
}

.footer-all {
  padding-top: 297px;
  background: #e9eef4;
  position: relative;
  overflow: hidden;
}

/* css end RN 15-01-2024 */

/* mc start footer all 16-01-24 */
.ftr-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftrcl1 {
  width: 38%;
}

.ftrcl2 {
  width: 41%;
  padding: 0 30px;
}

.ftrcl3 {
  width: 21%;
}

.ftrcl1-innr {
  max-width: 364px;
}

.ftr-logo {
  margin-bottom: 29px;
  width: 205px;
  display: inline-block;
}

.ftrcl1-innr p {
  font-weight: 300;
}

.ftr-menu {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ftr-head {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.ftr-menu li {
  margin-bottom: 16px;
}

.ftr-menu li a {
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.ftr-menu li a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.social-ul li:not(:last-child) {
  margin-right: 18px;
}

.social-ul li a i {
  color: #6f51d5;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-ul li a:hover i {
  color: var(--heading-color);
}

.address-ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.address-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 17px;
}

.address-ul li:last-child {
  margin-bottom: 0;
}

.address-ul li a {
  color: var(--heading-color);
  padding-left: 6px;
}

.address-ul li i {
  width: 18px;
  min-width: 18px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 0;
  margin-right: 10px;
}

.address-ul li a:hover {
  color: #6f51d5;
}

.ftr-btm-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ftr-btm-wrap-lft {
  width: 50%;
}

.ftr-btm-wrap-rit {
  width: 50%;
  text-align: right;
}

.ftr-btm-wrap-rit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ftr-btm-wrap-rit li:not(:last-child) {
  margin-right: 28px;
}

.ftr-btm-wrap-rit li a {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.ftr-btm-wrap-rit li a:hover {
  color: var(--heading-color);
  -webkit-text-fill-color: var(--heading-color);
}

.ftr-btm-wrap-lft {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

.ftr-btm-wrap-lft a {
  color: var(--heading-color);
}

.ftr-btm-wrap-lft a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lower-footer {
  padding: 30px 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
  position: relative;
  z-index: 1;
}

.upper-footer {
  padding-bottom: 73px;
  position: relative;
  z-index: 1;
}

.ftr-big-crcl {
  width: 324px;
  height: 324px;
  border-radius: 100%;
  background: #f2f5fc;
  position: absolute;
  left: 0;
  bottom: -70px;
}

.ftr-small-crcl {
  width: 227px;
  height: 227px;
  border-radius: 100%;
  background: #f2f5fc;
  position: absolute;
  right: 0;
  top: 122px;
}

/* mc end footer all 16-01-24 */

/* about us page start mc */
.inner-banner {
  position: relative;
  min-height: 550px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.welcome-sec-top-lft img {
  width: 100%;
}

.welcome-sec-top-lft {
  position: relative;
}

.welcome-sec-top .memory-cont-wrap {
  padding-left: 7px;
}

.welcome-small-fig {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  width: 372px;
}

.welcome-big-fig {
  padding-right: 244px;
}

.welcome-sec-top-rit {
  padding-left: 7px;
}

.welcome-sec-top .rowspan {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.welcome-sec {
  background: #f2f5fc;
  position: relative;
  z-index: 1;
}

.welcome-big-fig {
  position: relative;
  z-index: 1;
}

.welcome-big-fig::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 107px;
  height: 299px;
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  z-index: -1;
}

.welcome-small-fig::before {
  content: "";
  position: absolute;
  right: 70px;
  bottom: -20px;
  width: 174px;
  height: 328px;
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  z-index: -2;
}

.welcome-sec-top {
  margin-bottom: 57px;
}

.welcome-cherish-txt {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 84px;
  font-weight: 400;
  line-height: 0.76;
  position: relative;
  padding-right: 208px;
}

.welcome-cherish-txt::after {
  content: "";
  position: absolute;
  right: 84px;
  bottom: -51px;
  width: 208px;
  height: 149px;
  background: url(images/memory-flower.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.welcome-cerate-txt {
  font-size: 134px;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 177px;
}

.welcome-btm-head {
  margin-bottom: 55px;
}

.abt-company {
  position: relative;
}

.abt-company .company-offer-hd {
  margin-bottom: 40px;
}

.abt-company .company-offer-box .h4-title {
  margin-bottom: 14px;
}

.amazing-flower2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 175px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.welcome-sec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(30% - 227px);
  background: var(--white-color);
  z-index: -1;
}

/* about us page end mc */

/*  */
.memory-cont-wrap p {
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.news-box-right-each-lower {
  font-weight: 400;
}

.amazing-figs a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

/*  */

/* blog page start */
.innrbanner2 {
  position: relative;
}

.innrbanner2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(linear, left top, right top, color-stop(14.5%, #2c2c2c), color-stop(63.25%, rgba(44, 44, 44, 0)));
  background: -o-linear-gradient(left, #2c2c2c 14.5%, rgba(44, 44, 44, 0) 63.25%);
  background: linear-gradient(90deg, #2c2c2c 14.5%, rgba(44, 44, 44, 0) 63.25%);
}

.pstnrltv {
  position: relative;
  z-index: 1;
}

.blogs-col-lft .rowspan {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 29px;
}

.blog-figs {
  margin-bottom: 25px;
  overflow: hidden;
}

.blog-figs img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-figs a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-btm-wrap {
  max-width: 378px;
}

.blog-btm-wrap .h5-title {
  margin-bottom: 21px;
  font-family: var(--heading-font);
}

.blog-btm-wrap .h5-title a,
.blogs-col-rit-li .h5-title a {
  color: var(--heading-color);
}

.blog-mdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 21px;
}

.blg-mdl-lft:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--heading-color);
}

.blogs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blogs-col-lft {
  width: 60%;
  padding-right: 22px;
}

.blogs-col-rit {
  width: 40%;
  padding-left: 30px;
}

.blogs-col-rit-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-li-fig {
  width: 137px;
  overflow: hidden;
}

.blogs-col-rit-li .h5-title {
  width: calc(100% - 137px);
  padding-left: 28px;
  font-family: var(--heading-font);
}

.blogs-col-rit-li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #dee1e6;
}

.blogs-col-rit-ul .blogs-col-rit-li:last-child {
  margin-bottom: 0;
}

.blogs-col-rit .h2-title {
  margin-bottom: 37px;
  line-height: 1;
}

.blogs-col-lft {
  margin-top: 10px;
}

.blog-btm-wrap .h5-title a:hover,
.blogs-col-rit-li .h5-title a:hover {
  color: #6f51d5;
}

.blog-li-fig img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-li-fig a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.blog-li-fig a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.support-li i {
  width: 80px;
  height: 80px;
  background: rgb(247 229 255 / 50%);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.support-li-rit {
  width: calc(100% - 80px);
  padding-left: 16px;
}

.support-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.support-li-rit .h5-title {
  margin-bottom: 12px;
  line-height: 1;
  font-family: var(--heading-font);
}

.support-li-rit p {
  font-weight: 400;
}

.support-blk-lft .support-li:last-child {
  margin-bottom: 210;
}

.support-blk-rit {
  border-radius: 8px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  padding: 97px 58px;
  position: relative;
}

.support-blk .rowspan {
  --bs-gutter-x: 70px;
  --bs-gutter-y: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.support-blk-rit .rowspan {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* blog page end */
.sec-head {
  max-width: 849px;
  margin-bottom: 78px;
}

.support-sec {
  position: relative;
  z-index: 1;
}

.support-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 191px;
  width: 50%;
  height: 602px;
  background: #f2f5fc;
  z-index: -1;
}

.frm-flwr {
  position: absolute;
  right: -98px;
  bottom: -40px;
  display: block;
  width: 202px;
  z-index: 1;
}

.support-li-rit a {
  color: var(--heading-color);
}

.support-li-rit a:hover {
  color: #6f51d5;
}

/* faq page start */

/* custom-accodian start  */

.accr-hd .accr-con {
  display: none;
}

.accr-con {
  display: none;
  padding: 30px 97px 15px 20px;
  font-size: 16px;
  color: #242424;
  line-height: 1.7;
}

.accr-outer {
  --bs-gutter-x: 29px;
}

.accr-item:not(:last-child) {
  margin-bottom: 15px;
}

.accr-hd {
  min-height: 60px;
  padding: 14px 20px;
  padding-right: 60px;
  position: relative;
  cursor: pointer;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  border: 1px solid #ebf1ff;
  background: var(--white-color);
}

.accr-hd::after {
  position: absolute;
  content: "";
  background-image: url("images/darw.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px;
  width: 15px;
  height: 13px;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);

  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.accr-item.active .accr-hd::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.accr-item.active .accr-hd {
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  -webkit-box-shadow: 0px 20px 60px 0px rgba(45, 110, 253, 0.07);
  box-shadow: 0px 20px 60px 0px rgba(45, 110, 253, 0.07);
  color: var(--white-color);
}

/* custom-accodian end  */
.faqflow22 {
  position: absolute;
  left: 0;
  bottom: 325px;
  display: block;
  width: 175px;
  z-index: -1;
}

.faq-amazing-webpage-flower1 {
  position: absolute;
  left: 0;
  bottom: 117px;
  display: block;
  width: 175px;
}

.faq-amazing-webpage-flower2 {
  position: absolute;
  right: 0;
  top: 202px;
  display: block;
  width: 175px;
}

.faq-sec,
.blogs-sec {
  position: relative;
}

/* faq page end */

/* product page start */
.explore-btm .rowspan {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-x: 121px;
  --bs-gutter-y: 22px;
}

.explore-rit-con h2 {
  margin-bottom: 32px;
}

.product-menory-sec {
  background: transparent;
  z-index: 1;
}

.product-menory-sec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 206px;
  width: calc(85% - 136px);
  height: 804px;
  background: #f2f5fc;
  z-index: -1;
}

.product-menory-sec h2::after {
  display: none;
}

.pro-memory-flower {
  display: block;
  width: 180px;
  position: absolute;
  bottom: 127px;
  right: -100px;
  z-index: 7;
  -webkit-transform: rotate(-161.37deg);
  -ms-transform: rotate(-161.37deg);
  transform: rotate(-161.37deg);
}

.product-menory-sec .memory-img-2 {
  position: relative;
}

.product-menory-sec-top {
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  padding: 81px 30px;
  text-align: center;
  margin-bottom: 100px;
}

.product-menory-sec-top h2 {
  color: var(--white-color);
  text-transform: capitalize;
}

.product-menory-sec-top .cmn-btn {
  min-width: 150px;
}

.product-menory-sec-btm .memory-sec-row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product-menory-sec-btm .memory-cont-wrap {
  padding-top: 66px;
}

.product-explr-img {
  width: 145px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.explore-sec {
  position: relative;
  overflow-x: hidden;
}

.product-explr-img img,
.pro-memory-flower img,
.exp-fig img,
.faq-amazing-webpage-flower1 img,
.faq-amazing-webpage-flower2 img,
.frm-flwr img,
.amazing-flower2 img,
.exp-span-fig img,
.exp-top-figs img {
  width: 100%;
}

.explore-top-lft-div,
.explore-top-rit-div {
  position: relative;
}

.explore-top .rowspan {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-y: 40px;
}

.explore-top .rowspan:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: -172px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.explore-top {
  margin-bottom: 100px;
  position: relative;
}

.explore-top::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 0;
  width: calc(100% - 291px);
  height: calc(100% - 120px);
  background: #f2f5fc;
  z-index: -1;
}

.exp-span-fig {
  position: absolute;
  right: -25px;
  bottom: -41px;
  display: block;
  width: 202px;
}

.explore-top .rowspan:nth-child(even) .exp-top-figs::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: calc(50% - 128px);
  height: calc(100% - 76px);
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  z-index: -1;
}

.explore-top .rowspan:nth-child(odd) .exp-top-figs::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -41px;
  display: block;
  width: 202px;
  height: 144px;
  background: url(images/memory-flower.png);
  background-size: contain;
  background-position: right bottom;
}

.explore-top .rowspan:nth-child(even) .exp-top-rit-con {
  padding-bottom: 73px;
}

.explore-top .rowspan:nth-child(odd) .exp-top-rit-con {
  padding-left: 93px;
}

.explore-top .rowspan:nth-child(even) .explore-top-rit-div {
  padding-left: 93px;
}

/* produtc page end */

/* memorial page start */
.memorial-blk {
  text-align: center;
  max-width: 661px;
  margin: 0 auto 52px;
}

.memorial-blk i {
  width: 308px;
  height: 308px;
  border-radius: 100%;
  border: 11px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 58px;
  margin-top: -177px;
  position: relative;
  z-index: 2;
}

.memorial-blk i img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.memorial-blk h1 {
  margin-bottom: 20px;
}

.memorial-sec {
  background: #f2f5fc;
  position: relative;
}

.memorial-blk .h4-title {
  padding-left: 62px;
  position: relative;
}

.memorial-blk .h4-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -13px;
  width: 45px;
  height: 33px;
  background: url(images/qtbg.svg) no-repeat;
  background-size: contain;
  background-position: top center;
  opacity: 0.5;
}

.memorial-pt1 {
  position: absolute;
  left: -100px;
  top: 196px;
  width: 17%;
  -webkit-transform: rotate(-48deg);
  -ms-transform: rotate(-48deg);
  transform: rotate(-48deg);
}

.memorial-pt2 {
  position: absolute;
  right: 91px;
  top: 160px;
  width: 202px;
}

.memorial-pt3 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 178px;
}

.memorial-wrap {
  position: relative;
  min-height: 550px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.memorial-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: -webkit-gradient(linear, left top, right top, color-stop(14.5%, #2c2c2c), color-stop(63.25%, rgba(44, 44, 44, 0)));
  background: -o-linear-gradient(left, #2c2c2c 14.5%, rgba(44, 44, 44, 0) 63.25%);
  background: linear-gradient(90deg, #2c2c2c 14.5%, rgba(44, 44, 44, 0) 63.25%);
}

.memorialimage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.memorial-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.memorial-list a {
  border-radius: 12px;
  background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

.sharecls {
  width: 70px;
  height: 70px;
}

.memorial-list a:last-child {
  margin-right: 0;
}

.memorial-list a:hover {
  background: -o-linear-gradient(186deg, #4728b4 10.1%, #6f51d5 91.46%);
  background: linear-gradient(-96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color);
}

.locationcls {
  padding: 21px;
  min-width: 426px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.locationcls img {
  margin-right: 20px;
}

.site-logo-modal {
  text-align: center;
  margin-bottom: 20px
}

.site-logo-modal a {
  display: inline-block;
}

/* easyresponsive tab */
h2.resp-accordion {
  cursor: pointer;
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

/* horizontal tab */
.orignl-tab .orignl-tab-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #d1d1d1;
  max-width: 1100px;
  margin: 0 auto 38px;
}

.orignl-tab .orignl-tab-ul li {
  background-color: transparent !important;
  color: #093946;
  margin-right: 35px;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  padding: 26px;
  cursor: pointer;
}

.orignl-tab .orignl-tab-ul li:last-child {
  margin-right: 0;
}

.orignl-tab .orignl-tab-ul li.resp-tab-active,
.orignl-tab .orignl-tab-ul li:hover {
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  color: var(--white-color);
}

.famly-li-rit .h5-title {
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.famly-li-lft {
  width: 100px;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white-color);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  border-radius: 100%;
}

.famly-li-rit {
  width: calc(100% - 100px);
  padding-left: 12px;
}

.famly-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fmly-ul .famly-li:not(:last-child) {
  margin-bottom: 86px;
}

.fmly-ul {
  position: relative;
  z-index: 1;
}

.fmly-ul::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  width: 1px;
  height: calc(100% - 120px);
  background: url(images/linebg.svg) no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
}

/* memorial page end */

.ftrcl2-innr {
  max-width: 220px;
  margin: 0 auto;
}






/* Css Start Sk Saifee 18-01-2024 11:40am */

/* Family Tree Begin */

.family-tree-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 32px;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.family-tree-card-outer {
  /* padding: 0 44px; */
  max-width: 328px;
  width: 100%;
}

.family-gen.family-third-gen {
  padding-bottom: 0;
}

/* .family-third-gen .family-tree-card-outer{
  padding: 0 25px;
} */
.family-gen {
  padding-bottom: 107px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.family-tree-card-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728B4), to(#6F51D5));
  background: -o-linear-gradient(top, #4728B4 0%, #6F51D5 100%);
  background: linear-gradient(180deg, #4728B4 0%, #6F51D5 100%);
}

.ft-card-inner {
  padding: 16px 15px;
  background: rgba(255, 255, 255, .08);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.10);
  width: 140px;
  min-height: 256px;
  text-align: center;
}

.ft-card-inner .fl-member-name {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

.ft-card-inner span {
  color: var(--white-color);
  display: block;
}

.ft-card-inner .dob {
  font-size: 12px;
}

.ft-card-inner .dob img {
  margin-right: 3px;
}

.ft-card-inner .fl-position {
  padding: 3px 0;
  background: #000;
  border-radius: 16px;
  line-height: 1;
  margin-bottom: 7px;
  font-weight: 300;
  width: 108px;
}

.ft-card-inner-img {
  border-radius: 20px;
  overflow: hidden;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 16px 24px 0px #08068f;
  box-shadow: 0px 16px 24px 0px #08068f;
  margin-bottom: 8px;
}

.ft-card-inner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.family-tree-card .plus-icon {
  padding: 0;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  line-height: 1;
  padding: 6px 7px;
  margin: 0 8px;
}

.family-tree-card .plus-icon i {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1;
  border-radius: 50%;
  padding-top: 1px;
}

.family-tree-card .fl-member-contatact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 3px;
  line-height: 1.2;
  font-weight: 400;
}

.fl-member-contatact .phone-iconblk {
  margin-right: 5px;
}

.connector-line {
  position: absolute;
  top: 100%;
}

.connector-line img {
  width: 100%;
}

.connector-1 {
  left: -26.5%;
}

.connector-2 {
  right: -3%;
}

.connector-3 {
  left: -72%;
  /* width: 100%; */
}

.connector-4 {
  right: 49.5%;
}

.connector-5 {
  right: 51%;
}

.connector-6 {
  right: -47%;
}

.family-third-gen .family-tree-card-outer:nth-child(1) {
  margin: 0 64px 0 0;
}

.family-third-gen .family-tree-card-outer:nth-child(2) {
  margin: 0 51px 0 0;
}

.family-third-gen .family-tree-card-outer:nth-child(3) {
  margin: 0 26px 0 0;
}

.family-third-gen .family-tree-card-outer:nth-child(4) {
  margin: 0;
}

.family-second-gen .family-tree-card-outer:nth-child(1) {
  margin: 0 88px 0 0;
}

.family-second-gen {
  padding-left: 108px;
  padding-bottom: 140px;
}

.textures img {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.texture-btm-left {
  left: 0;
  bottom: -511px;
}

.texture-btm {
  right: 0;
  bottom: -120px;
}

.family-tree-outer,
.family-gellery-outer {
  position: relative;
  z-index: 2;
}

/*.family-gallery>* {
  padding: 0 8px;
}*/

.family-gallery-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.family-gallery-item img,
.family-gallery-item video {
  width: 100%;
}

.family-gallery-vdo {
  cursor: pointer;
  position: relative;
}

.glpopup-vdo {
  position: relative;
  margin-bottom: 30px;
  line-height: 0;
}

.family-gallery-vdo .play-btn,
.glpopup-vdo .play-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--white-color);
  border-radius: 50%;
  line-height: 1;
}

.family-gallery-vdo .play-btn i {
  color: var(--white-color);
}

.family-gallery {
  margin-bottom: 24px;
}

.family-gallery:last-child {
  margin-bottom: 0;
}

.glvdo-gap {
  margin-bottom: 24px;
}

.memorial-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 125px;
  left: 0;
  bottom: -124px;
  background: #F2F5FC;
  z-index: -1;
}


/* pop Up */
#gl-vdo-popup.fancybox-content {
  background: transparent;
}

.gl-vdo-popup-outer {
  padding: 50px;
  background: var(--white-color);
}

.glpopup-content .h2-title {
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 20px;
  display: block;
}

#gl-vdo-popup video {
  width: 100%;
  /* margin-bottom: 20px; */
}

#gl-vdo-popup .fancybox-button.fancybox-close-small svg {
  width: 20px;
  height: 20px;
}

#gl-vdo-popup .fancybox-button.fancybox-close-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white-color);
  opacity: 1;
  padding: 30px;
  margin-right: 10px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* End Of Family Tree */


.blogs-col-lft .rowspan>* {
  padding: 0 15px;
}

.blogs-col-lft .rowspan {
  --bs-gutter-y: 40px;
}

.blogs-col-rit {
  padding-left: 30px;
}

.blog-btm-wrap .h5-title a,
.blogs-col-rit-li .h5-title a {
  font-size: 18px;
  line-height: 1.3;
}

/* Css Start Sk Saifee 18-01-2024 08:00pm */

/* css start RN 19-01-2024 */
.blog-figs a {
  display: block;
}

.faq-amazing-webpage-flower2 {
  z-index: -1;
}

.gl-vdo-popup-main {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  /* overflow-y: auto;
  max-height: 600px; */
}

/*.gl-vdo-popup-outer {
  overflow-y: auto;
  max-height: 600px;
}*/

/* css end RN 19-01-2024 */


/* 22-01-24 mc start */
.news-box-right-each-upper h3 a:hover {
  color: #4728b4;
}

.ftr-menu .current-menu-item a {
  background: -webkit-gradient(linear, left top, left bottom, from(#4728b4), to(#6f51d5));
  background: -o-linear-gradient(top, #4728b4 0%, #6f51d5 100%);
  background: linear-gradient(180deg, #4728b4 0%, #6f51d5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 24.01.24 css */
.banner-contact-popup .btn-close {
  background: url(./images/cross-icon.svg) no-repeat center center #4728b4 !important;
  background-size: 15px !important;
  opacity: 1;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  outline: 0;
  border-radius: 50%;
}

.banner-contact-popup .btn-close:focus {
  outline: 0;
  box-shadow: none;
  border: none;
}

.banner-contact-popup .modal-content {
  border-radius: 8px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  padding: 40px 20px 30px;
}

.banner-contact-popup .modal-body {
  padding: 0;
}

.banner-contact-popup .gform_footer {
  padding-bottom: 0 !important;
}

.banner-contact-popup .gform_footer input {
  margin-bottom: 0 !important;
}

.banner-contact-popup .gform_wrapper form {
  margin-bottom: 0 !important;
}

.banner-contact-popup .gform_wrapper.gravity-theme .gfield textarea.medium {
  height: 140px;
}

/* 24.01.24 css */

/* support start 29/1/24 */
.popup-txt {
  text-align: center;
  font-weight: 600;
}

.home .packages-plan {
  justify-content: center;
}

.home .packages-plan .slick-list {
  width: 100%;
}

/* support end 29/1/24 */





.btnwoo {
  border-radius: 50px;
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 18px 35px;
  font-family: var(--body-font);
  width: fit-content !important;
}

.btnwoo:hover {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);
  color: var(--white-color);
}

.subscription-details {
  font-size: 30px !important;
}



/* 26.02.24 start */

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  -webkit-box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  background-color: var(--white-color);
  border: none;
  padding: 40px 30px;
}

.woocommerce .woocommerce-form .woocommerce-form-login__submit,
.woocommerce form.checkout_coupon .button {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  height: 49px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--white-color);
  font-family: var(--body-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 150px;
}

.woocommerce .woocommerce-form .woocommerce-form-login__submit:hover,
.woocommerce form.checkout_coupon .button:hover {
  background: linear-gradient(192deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color);
}

.lost_password a {
  color: #6f51d5;
}

.lost_password a:hover {
  color: var(--heading-color);
}

.wc-block-components-product-name {
  color: var(--heading-color);
  font-weight: 600;
}

.wc-block-components-product-name:hover {
  color: #6f51d5;
}

.wc-block-components-quantity-selector {
  width: 130px !important;
  border: none !important;
  border-radius: 0 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%) !important;
  opacity: 1 !important;
  color: var(--white-color) !important;
  font-weight: 700 !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  flex: 0 0 auto;
  transition: .5s all;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:disabled {
  opacity: 0.6 !important;
}

.wc-block-components-quantity-selector:after {
  display: none;
}

.wc-block-components-totals-coupon a {
  color: var(--heading-color);
  font-weight: 500;
}

.wc-block-components-totals-coupon a:hover {
  color: #6f51d5;
}

.wc-block-components-totals-coupon__form .wc-block-components-button {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  border: none;
  outline: none;
  transition: .5s all;
  border-radius: 5px;
  color: var(--white-color);
}

.wc-block-components-totals-coupon__form .wc-block-components-button:hover {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);
}

.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  opacity: 1 !important;
  color: var(--white-color) !important;
  border-radius: 50px;
  transition: .5s all;
  font-family: var(--body-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
}

.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:focus {
  box-shadow: none;
  outline: none;
}

.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);
}

.woocommerce-info {
  border-color: #4728b4;
}

.woocommerce-info a {
  color: #6f51d5;
}

.woocommerce-info a:hover {
  color: var(--heading-color);
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single {
  height: 50px;
  border: none;
  border-bottom: 2px solid #f2f2f2;
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 100%;
  padding-top: 8px;
  font-weight: 400;
  color: var(--heading-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.payment_box.payment_method_stripe a,
.woocommerce-privacy-policy-link {
  color: #6f51d5;
  font-weight: 600;
}

.payment_box.payment_method_stripe a:hover,
.woocommerce-privacy-policy-link:hover {
  color: var(--heading-color);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color) !important;
  border-radius: 50px;
  transition: .5s all;
  font-family: var(--body-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 17px 30px;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);
}

.woocommerce-MyAccount-navigation ul {
  border-radius: 10px;
  overflow: hidden;
}

.woocommerce-MyAccount-navigation li a {
  padding: 10px 20px;
  background-color: #4728b4;
  width: 100%;
  display: block;
  color: #fff;
  font-weight: 500;
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
  background-color: #6f51d5;
}

.woocommerce-MyAccount-content {
  padding: 30px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  box-shadow: 0px 4px 65px 0px rgba(45, 110, 253, 0.15);
  background-color: var(--white-color);
}

.woocommerce-MyAccount-content a {
  color: #6f51d5;
  font-weight: 600;
}

.woocommerce-MyAccount-content a:hover {
  color: var(--heading-color);
}

.woocommerce-orders-table__cell .button,
.woocommerce-PaymentMethod .button,
.history_table td .button {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%) !important;
  color: var(--white-color) !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
}

.woocommerce-orders-table__cell .button:hover,
.woocommerce-PaymentMethod .button:hover,
.history_table td .button:hover {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%) !important;

}

.woocommerce-orders-table__cell .button:not(:last-child),
.woocommerce-PaymentMethod .button:not(:last-child),
.history_table td .button:not(:last-child) {
  margin-right: 10px;
}



#contact h3 {
  color: #4728b4;
  display: block;
  font-size: 30px;
  font-weight: 400;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
}

#contact fieldset {
  border: none !important;
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
}

#contact fieldset:last-child {
  margin-bottom: 0;
}

#contact label {
  display: inline-block;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="file"],
#contact textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  padding: 8px 0 20px;
  border: 0;
  border-bottom: 2px solid #f2f2f2;
  transition: .3s all;
}

.uploaded_img_wrap {
  max-width: 300px;
  width: 100%;
  padding-top: 15px;
}

.uploaded_img_wrap img {
  width: 100%;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
  color: var(--white-color) !important;
  border-radius: 50px;
  transition: .5s all;
  font-family: var(--body-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 30px;
  min-width: 180px;
  border: none;
  box-shadow: none;
  outline: none;
}

#contact button[type="submit"]:hover {
  background: linear-gradient(96deg, #6f51d5 10.1%, #4728b4 91.46%);

}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
  border-color: #6f51d5;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

.share_modal h2 {
  font-size: 26px;
  text-align: center;
  color: #6f51d5;
}

.share_social_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.share_social_list li {
  line-height: 1;
}

.share_social_list li:not(:last-child) {
  margin-right: 25px;
}

.share_social_list li a {
  display: inline-flex;
  line-height: 1;
  width: 40px;
}

.share_social_list li a img {
  width: 100%;
}

.share_social_list li a:hover {
  transform: scale(1.1);
}

.share_modal .modal-body {
  padding: 0;
}

.history_table {
  font-size: 14px;
  border-spacing: 0;
}

.history_table th,
.history_table td {
  padding: 8px 10px;
}


/* 26.02.24 end */

/* 04.03.24 css */
.single-memorial .memorial-tab .family-gallery-vdo {
  height: 100%;
}

.single-memorial .memorial-tab .family-gallery-vdo>img {
  height: 100%;
  object-fit: cover;
}

.single-memorial .memorial-tab .family-gallery-vdo .play-btn {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.single-memorial .gl-vdo-popup-outer {
  text-align: center
}

.single-memorial .glpopup-vdo .play-btn {
  display: none;
}

/* 04.03.24 css */

/* 5.03.2024 */
.fmly-ul.new-fmly-ul .famly-li-lft{
  background: transparent;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  width: 120px;
}
.fmly-ul.new-fmly-ul .famly-li-lft img{
  height: 100px;
  width: 100px;
  border-radius: 100%;
}
.fmly-ul.new-fmly-ul .famly-li-lft span{
  display: block;
  color: var(--heading-color);
  background-color: #f2f5fc;
  padding: 5px;
}
/* 5.03.2024 */


/* 11/03/2024 **/

form.post-password-form {
    padding: 50px 0;
    max-width: 500px;
    margin: auto;
}
form.post-password-form label{
  width: 100%;
}
input#pwbox-577 {
    background: #ffffff;
    border-radius: 30px;
    margin: 10px 0 20px 0;
    border: 2px solid #e5e5e5;
}
/* 15.03.24 css */
.family-gallery  {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  .gallery-col {
    width: 33.33%;
    padding: 10px;
    }  

    .gallery-col >*{
      height: 300px !important;
    }
  


/* support start 5-4-24 */
.family-second-gen .family-tree-card-outer:not(:last-child) {
  margin: 0 88px 0 0;
}
.family-gen .family-tree-card-outer {
  position: relative;
}
.family-gen.active .family-tree-card-outer::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 52px;
  background: #d1d1d1;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
}
.family-gen {
  position: relative;
}
.family-first-gen.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d1d1d1;
  bottom: 55px;
  left: 0;
}
.family-second-gen {
  padding-left: 0;
}
.family-tree-outer .family-gen:last-child .family-tree-card-outer::after {
  display: none;
}

.family-tree-outer .family-gen .family-tree-card-bg:first-child .ft-card-inner {
  position: relative;
}
.family-gen.active .family-tree-card-bg .main-child:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 55px;
  background: #d1d1d1;
  top: -57px;
  left: 50%;
  transform: translateX(-50%);
}
.family-gen.active:not(.family-first-gen) {
  padding-bottom: 140px;
}

.family-gen.active:not(.family-first-gen) .family-tree-card-outer::after {
  height: 88px;
  bottom: -86px;
}
.family-second-gen .family-tree-card-outer:not(:last-child) {
  margin: 0 20px 0 0;
}
.family-third-gen .family-tree-card-outer:nth-child(1) {
  margin: 0 20px 0 0;
}
.family-third-gen .family-tree-card-outer:nth-child(2) {
  margin: 0 0 0 0;
}
.family-third-gen .family-tree-card-outer:nth-child(3) {
  margin: 0 20px 0 0;
}
.family-gen-wrapss {
  width: 100%;
  display: flex;
}
.family-gen-wrapss {
  position: relative;
}
.family-gen-wrapss::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d1d1d1;
  top: -54px;
  left: 0;
}
.family-gen .family-gen-wrapss:not(:last-child) {
  margin-right: 20px;
}
.family-first-gen .child-ss::before {
  display: none;
}
.family-tree-card {
  z-index: 2;
}

.family-gen .family-tree-card-outer {
    width: auto;
}

.family-gen.active:not(.family-first-gen) .family-tree-card-outer.unmarid::after{display: none;}

/* Backup For 5-4-24 */

/*.family-gen.active:not(.family-first-gen) .family-tree-card-outer.nochild::after{display: none;}*/
/*.family-gen-wrapss.nochild::before{display: none;}*/

/* support end 5-4-24 */


/*.mc4wp-form-fields{
  display: flex;
}*/
.mc4wp-form .form-control{ 
    border-bottom: 1px solid #8d8d8d;
    padding-left: 10px !important;
    background: #6c56cf !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff; padding-right: 10px !important;
    border-radius: 5px !important;
}
.mc4wp-form .form-control::placeholder{color: #fff !important;}
.mc4wp-form .btn{
  min-width: auto;
  width: 100%; 
  background: #a78efe !important;
}
.mc4wp-form .btn:hover{
  background: var(--white-color) !important;
  color: var(--body-color) !important;
}
/*login remember me*/
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{margin-top: 30px;}
.register-button-center{
  padding-top: 9rem;
  text-align: center;
}
/*order table button*/
.woocommerce-orders .woocommerce table.my_account_orders .button { 
  margin: 1px;
}
/* ========== responsive css =========== */

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
    width: 100%;
  }
}

@media (min-width: 1499px) {
  .blogs-sec .container {
    max-width: 1424px;
    width: 100%;
  }

  .blogs-col-rit {
    padding-right: 130px;
  }
}

@media (max-width: 1499px) {

  .amazing-flower2,
  .product-explr-img,
  .faq-amazing-webpage-flower2,
  .faqflow22,
  .faq-amazing-webpage-flower1,
  .memorial-pt3 {
    width: 120px;
  }

  .banner-cont {
    max-width: 515px;
  }

  .scan-qr {
    padding: 65px 0;
  }

  .hand-mob-scan {
    width: 764px;
  }

  .banner-flower {
    width: 740px;
    bottom: -10px;
  }

  .product-menory-sec::before {
    width: calc(85% - 103px);
  }

  .memorial-pt1 {
    left: -80px;
  }
}

@media (max-width: 1366px) {

  .amazing-flower2,
  .product-explr-img,
  .faq-amazing-webpage-flower2,
  .faqflow22,
  .faq-amazing-webpage-flower1,
  .memorial-pt3 {
    width: 74px;
  }

  .hand-mob-scan {
    width: 733px;
  }

  .scan-qr {
    padding: 50px 0;
  }

  .banner-flower {
    width: 722px;
    bottom: 0;
  }

  .product-menory-sec::before {
    width: calc(85% - 43px);
  }

  .faq-amazing-webpage-flower2 {
    top: 133px;
  }

  .frm-flwr {
    right: -33px;
    bottom: -23px;
    width: 130px;
  }

  .memorial-pt1 {
    left: -75px;
  }
  /* 14-05-2024 start */
  .get-back-work-right { 
    width: 33%;
    padding-left: 50px;
    margin-right: -3%;
}
  /* 14-05-2024 start */
}

@media (max-width: 1280px) {

  h1,
  .h1-title {
    font-size: 70px;
  }

  .scan-qr-cont {
    max-width: 625px;
  }

  .product-menory-sec::before {
    width: calc(85% - 20px);
  }

  .faq-amazing-webpage-flower2 {
    top: 133px;
  }

  .frm-flwr {
    right: -15px;
  }

  /* Css Start Sk Saifee 18-01-2024 05:40pm */

  .family-third-gen .family-tree-card-outer:nth-child(1) {
    margin: 0 44px 0 0;
  }

  .family-third-gen .family-tree-card-outer:nth-child(2) {
    margin: 0 31px 0 0;
  }

  .family-third-gen .family-tree-card-outer:nth-child(3) {
    margin: 0 16px 0 0;
  }

  .connector-6 {
    width: 86%;
    right: -35%;
  }

  .connector-3 {
    left: -72%;
    width: 121%;
  }

  .connector-1 {
    width: 77%;
  }

  .connector-2 {
    width: 58%;
    right: -8%;
  }

  .ft-card-inner {
    padding: 16px 5px;
    width: 125px;
  }

  .family-tree-card-outer {
    width: unset;
  }

  .ft-card-inner .fl-position {
    margin: 0 auto 7px auto;
    font-size: 14px;
  }

  .family-tree-card .fl-member-contatact {
    font-size: 11px;
  }

  .orignl-tab .orignl-tab-ul li {
    margin-right: 78px;
    font-size: 20px;
  }
  
  

  /* Css End Sk Saifee 18-01-2024 06:20pm */
  
   /* support start 5-4-24 */
  .family-third-gen .family-tree-card-outer:nth-child(1) {
    margin: 0 20px 0 0;
  }
  .family-third-gen .family-tree-card-outer:nth-child(2) {
    margin: 0 20px 0 0;
  }
  /* support end 5-4-24 */
  /* 13-05-2024 start */
  .ftrcl3 {
    width: 28%;
  }
  /* 14-05-2024 start */
  .get-back-work-right { 
    width: 30%;
    padding-left: 40px;
    margin-right:0;
  }
  /* 14-05-2024 start */
}

@media (max-width: 1199px) {


  /* Css Start Sk Saifee 18-01-2024 06:20pm */
  .family-third-gen .family-tree-card-outer:nth-child(4) {
    margin: 50px 0 0 160px;
  }

  .family-third-gen .family-tree-card-outer:nth-child(3) {
    margin: 50px 16px 0 -85px;
  }

  .family-gen.family-third-gen {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .connector-6,
  .connector-3 {
    display: none;
  }

  .family-third-gen .family-tree-card-outer:nth-child(2) {
    margin: 0;
  }

  .family-third-gen .family-tree-card-outer:nth-child(1) {
    margin-right: 88px;
  }

  .family-gen.family-third-gen {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 55px;
  }

  .family-second-gen {
    padding-right: 55px;
    padding-left: 0;
  }

  .get-back-to-wrok-main {
    padding: 68px 20px 68px 73px;
  }

  .custom-container {
    width: calc(100% - (50% - (960px / 2)));
  }

  .address-ul li,
  .get-back-work-left p {
    font-size: 14px;
  }

  .orignl-tab .orignl-tab-ul li {
    margin-right: 24px;
  }

  /* Css End Sk Saifee 18-01-2024 08:10pm */



  /* css start RN 19-01-2024 */
  .navbar-brand {
    width: 170px;
  }

  .navbar-nav li:not(:last-child) {
    margin: 0 35px 0 0;
  }

  .navbar-nav li:last-child {
    margin: 0;
  }

  .header-search {
    margin-left: 35px;
  }

  .main-head {
    padding: 15px 0;
  }

  .banner {
    min-height: 500px;
  }

  .banner-flower {
    width: 415px;
    right: -20px;
    bottom: 0;
  }

  .hand-mob-scan {
    width: 520px;
    right: -43px;
    bottom: -18px;
  }

  .banner-sub-hd {
    font-size: 26px;
  }

  h1,
  .h1-title {
    font-size: 58px;
  }

  .banner-cont h1 {
    margin-bottom: 25px;
  }

  .banner-cont .pg-btn {
    margin-top: 30px;
  }

  h2,
  .h2-title {
    font-size: 37px;
  }

  h4,
  .h4-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
  }

  .scan-qr-cont {
    max-width: 62%;
  }

  .memory-shp-1 {
    width: 500px;
    height: 500px;
  }

  .memory-img-each {
    padding: 0 12px;
  }

  .memory-img-wrap {
    margin: 0 -12px;
  }

  .memory-cont-wrap {
    padding-left: 20px;
  }

  .memory-sec-row {
    --bs-gutter-x: 24px;
  }

  .memory-cont-wrap h2 {
    margin-bottom: 20px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  .memory-cont-wrap h2::after {
    width: 180px;
    height: 180px;
  }

  .memory-flower {
    width: 270px;
    right: 30px;
  }

  .company-offer-hding-cont {
    padding-left: 60px;
  }

  .company-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .company-icon img {
    max-width: 25px;
  }

  .amazing-webpage-hding {
    margin-bottom: 40px;
  }

  .amazing-webpage-flower {
    width: 120px;
  }

  .amazing-webpage-slider-roll .slick-list {
    padding-right: 200px;
  }

  .packages {
    padding: 80px 0;
  }

  .packages .sec-hd {
    margin: 0 auto 50px;
  }

  h3,
  .h3-title {
    font-size: 35px;
  }

  .packages-each-box {
    padding: 35px 30px 32px;
  }

  .purchase-plan-list li {
    font-size: 16px;
  }

  .purchase-plan-list li {
    margin-bottom: 16px;
  }

  .purchase-plan-list li::before {
    top: 7px;
  }

  .purchase-each-lower .pg-btn {
    margin-top: 25px;
  }

  .news-box-right-each-upper {
    margin-bottom: 30px;
  }

  .news-box-right-each {
    padding: 25px 20px;
  }

  .get-back-to-wrok-container {
    max-width: 878px;
  }

  .get-back-to-wrok-main {
    padding: 55px 20px 55px 55px;
  }

  .footer-all {
    padding-top: 250px;
  }

  .ftr-big-crcl {
    width: 280px;
    height: 280px;
  }

  .ftr-small-crcl {
    width: 190px;
    height: 190px;
  }

  .ftr-logo {
    margin-bottom: 20px;
    width: 180px;
  }

  .ftrcl2 {
    padding: 0 20px;
  }

  .ftr-menu li {
    margin-bottom: 10px;
  }

  .ftr-head {
    margin-bottom: 20px;
  }

  .lower-footer {
    padding: 25px 0;
  }

  .ftr-btm-wrap-rit li:not(:last-child) {
    margin-right: 20px;
  }

  .upper-footer {
    padding-bottom: 50px;
  }

  .inner-banner {
    min-height: 400px;
  }

  .welcome-small-fig {
    width: 280px;
  }

  .welcome-big-fig {
    padding-right: 185px;
  }

  .welcome-big-fig::before {
    left: -12px;
    top: -12px;
  }

  .welcome-small-fig::before {
    right: 70px;
    bottom: -12px;
    width: 115px;
    height: 250px;
  }

  .welcome-cherish-txt {
    font-size: 70px;
  }

  .welcome-cerate-txt {
    font-size: 100px;
    display: block;
    text-align: right;
    line-height: 1.5;
    margin-top: -20px;
  }

  .welcome-cherish-txt::after {
    right: 125px;
    bottom: -30px;
    width: 140px;
    height: 100px;
  }

  .welcome-btm-head {
    margin-bottom: 25px;
  }

  .amazing-flower2,
  .product-explr-img,
  .faq-amazing-webpage-flower2,
  .faqflow22,
  .faq-amazing-webpage-flower1,
  .memorial-pt3 {
    width: 65px;
  }

  .explore-top .rowspan:nth-child(even) {
    margin-top: -120px;
    padding-top: 30px;
  }

  .explore-top .rowspan:nth-child(odd) .exp-top-rit-con,
  .explore-top .rowspan:nth-child(even) .explore-top-rit-div {
    padding-left: 60px;
  }

  .explore-btm .rowspan {
    --bs-gutter-x: 50px;
  }

  .product-menory-sec-top {
    padding: 70px 30px;
  }

  .pro-memory-flower {
    bottom: 100px;
  }

  .product-menory-sec::before {
    height: 660px;
  }

  .blogs-col-lft {
    padding-right: 12px;
  }

  .blogs-col-rit {
    padding-left: 12px;
  }

  .blogs-col-lft .rowspan {
    --bs-gutter-y: 24px;
  }

  .blogs-col-lft .rowspan>* {
    padding: 0 12px;
  }

  .blog-figs {
    margin-bottom: 18px;
  }

  .blog-btm-wrap .h5-title {
    margin-bottom: 15px;
  }

  .blog-mdl {
    margin-bottom: 15px;
  }

  .blogs-col-rit .h2-title {
    margin-bottom: 30px;
  }

  .blog-li-fig {
    width: 120px;
  }

  .blogs-col-rit-li .h5-title {
    width: calc(100% - 120px);
    padding-left: 20px;
  }

  .faq-amazing-webpage-flower2 {
    top: 100px;
    z-index: -1;
  }

  .blogs-col-rit-li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  /* css end RN 19-01-2024 */
  /* Css Start Sk Saifee 19-01-2024 02:11pm (FAQ Page) */

  .accr-hd {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .memorial-wrap {
    min-height: 400px;
  }

  .sec-head {
    margin-bottom: 60px;
  }

  .support-li i {
    width: 70px;
    height: 70px;
  }

  .support-li i img {
    max-width: 24px;
  }

  .support-blk-rit {
    padding: 70px 45px;
  }

  .memorial-blk i {
    width: 250px;
    height: 250px;
    margin: 0 auto 40px;
    margin-top: -125px;
  }

  .ft-card-inner .fl-member-name {
    font-size: 18px;
  }

  .gl-vdo-popup-outer {
    padding: 30px;
  }

 /* .gl-vdo-popup-outer {
    max-height: 500px;
  }*/

  /* Css End Sk Saifee 19-01-2024 02:14pm (FAQ Page) */


  /* support start 5-4-24 */
  .family-third-gen .family-tree-card-outer:nth-child(1) {
    margin-right: 20px;
  }
  .family-third-gen .family-tree-card-outer:nth-child(3) {
    margin: 0 20px 0 0;
  }
  .family-third-gen .family-tree-card-outer:nth-child(2) {
    margin: 0 20px 0 0;
  }
  .family-gen-wrapss {
    width: 100%;
    display: flex;
  }
  .family-gen.active .family-tree-card-outer::after,
  .family-first-gen.active:before,
  .family-gen.active .family-tree-card-bg .main-child:before,
  .family-gen.active:not(.family-first-gen) .family-tree-card-outer::after,
  .family-gen-wrapss::before {
    display: none;
  }
  .family-gen-wrapss {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .family-gen .family-gen-wrapss:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .family-gen.active:not(.family-first-gen) {
    padding-bottom: 50px;
  }
  .family-gen {
    padding-bottom: 50px;
  }

  /* support end 5-4-24 */



}

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  /* .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  } */

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: -o-linear-gradient(354deg, #4728b4 10.1%, #6f51d5 91.46%);
    background: linear-gradient(96deg, #4728b4 10.1%, #6f51d5 91.46%);
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */


  /* Css Start Sk Saifee 18-01-2024 07:19pm */

  /*.family-gallery>*:not(:last-child) {
    margin-bottom: 20px;
  }*/

  /* .family-gallery >*:last-child{
    margin-bottom: 0;
  } */
  .orignl-tab .orignl-tab-ul li {
    margin-right: 9px;
    font-size: 14px;
  }

  .memorial-blk .h4-title {
    padding-left: 40px;
    font-size: 20px;
  }

  h2,
  .h2-title {
    font-size: 42px;
  }

  .family-gen.family-third-gen {
    padding-right: 0;
  }

  .ft-card-inner .fl-member-name {
    font-size: 18px;
  }

  .fmly-ul .famly-li:not(:last-child) {
    margin-bottom: 66px;
  }

  /* Css End Sk Saifee 18-01-2024 07:19pm */

  /* css start RN 19-01-2024 */
  h1,
  .h1-title {
    font-size: 45px;
  }

  h2,
  .h2-title {
    font-size: 32px;
  }

  h3,
  .h3-title {
    font-size: 26px;
  }

  .banner-cont {
    max-width: 380px;
  }

  .banner-sub-hd {
    font-size: 20px;
  }

  .banner-cont p {
    font-size: 16px;
  }

  .scan-qr-cont h2 {
    font-size: 26px;
  }

  .scan-qr-cont {
    max-width: 56%;
  }

  .scan-qr {
    padding: 40px 0;
  }

  .banner-flower {
    width: 350px;
  }

  .hand-mob-scan {
    width: 410px;
    right: -37px;
  }

  .navbar-brand {
    width: 140px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .memory-shp-1 {
    width: 400px;
    height: 400px;
  }

  .memory-cont-wrap h2::after {
    width: 150px;
    height: 150px;
    top: -40px;
  }

  .memory-flower {
    width: 200px;
    right: 20px;
    bottom: -50px;
  }

  .company-offer-hding-cont {
    padding-left: 20px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .company-offer-hd {
    margin-bottom: 50px;
  }

  .custom-container {
    width: calc(100% - (50% - (720px / 2)));
  }

  .amazing-webpage-hding {
    margin-bottom: 30px;
  }

  .amazing-webpage-slider-roll .slick-list {
    padding-right: 140px;
  }

  .amazing-webpage-flower {
    width: 90px;
  }

  .packages {
    padding: 50px 0 60px;
  }

  .packages .sec-hd {
    max-width: inherit;
    margin: 0 auto 35px;
  }

  .packages-each-box {
    padding: 25px 12px 30px;
  }

  .purchase-time {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .our-recent-news .sec-hd {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .our-recent-news-main-col {
    margin-bottom: 25px;
  }

  .get-back-to-wrok-main {
    padding: 40px 20px 40px 40px;
  }
/*  14-05-2024 start  */
  .get-back-to-wrok-container {
  /* max-width: 655px;*/
    max-width: 100%;

  }
  .get-back-work-left{width: 100%}
  .get-back-work-right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
    max-width: 400px;
  }
/* 14-05-2024 end  */
  .ftrcl {
    width: 100%; padding: 0;
    margin-bottom: 25px;
  }
  .mc4wp-form{max-width: 450px}

  .ftr-row {
    margin-bottom: -25px;
  }

  .ftr-logo {
    width: 150px;
  }

  .ftr-btm-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ftr-btm-wrap-lft,
  .ftr-btm-wrap-rit {
    width: 100%;
    text-align: center;
  }

  .ftr-btm-wrap-rit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
  }

  .header-search {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
    /*    margin-top: 5px;*/
  }

  .navbar-toggler {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: 15px;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav li:not(:last-child) {
    margin: 0 0 0 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    display: none;
  }

  .inner-banner {
    min-height: 350px;
  }

  .welcome-big-fig {
    padding-right: 300px;
  }

  .welcome-small-fig {
    width: 400px;
  }

  .welcome-small-fig::before {
    right: 185px;
  }

  .welcome-sec-top .memory-cont-wrap {
    padding-left: 0;
    margin-top: 25px;
  }

  .welcome-cherish-txt {
    font-size: 55px;
    display: block;
    padding-right: 190px;
  }

  .welcome-cherish-txt::after {
    right: 118px;
    bottom: -50px;
    width: 135px;
    height: 90px;
  }

  .welcome-cerate-txt {
    font-size: 78px;
    padding-left: 125px;
    margin-top: 0;
  }

  .explore-top .rowspan:nth-child(even) {
    margin-top: -30px;
  }

  .explore-top::before {
    width: calc(100% - 180px);
  }

  .explore-top .rowspan:nth-child(odd) .exp-top-figs::after {
    width: 160px;
    height: 100px;
    background-repeat: no-repeat;
  }

  .explore-top .rowspan:nth-child(odd) .exp-top-rit-con,
  .explore-top .rowspan:nth-child(even) .explore-top-rit-div {
    padding-left: 35px;
  }

  .explore-top {
    margin-bottom: 60px;
  }

  .explore-btm .rowspan {
    --bs-gutter-x: 24px;
  }

  .product-menory-sec-top {
    padding: 50px 20px;
  }

  .product-menory-sec::before {
    height: 400px;
  }

  .pro-memory-flower {
    width: 120px;
    bottom: 50px;
    right: -40px;
  }

  .product-menory-sec-top {
    margin-bottom: 50px;
  }

  .blogs-col-lft {
    width: 100%;
    margin-bottom: 35px;
    padding-right: 0;
  }

  .blogs-col-rit {
    width: 100%;
    padding: 0;
  }

  /* css end RN 19-01-2024 */


  /* Css Start Sk Saifee 19-01-2024 02:14pm (FAQ Page) */

  .accr-hd {
    font-size: 16px;
    line-height: 1.3;
  }

  .accr-con {
    font-size: 15px;
  }

  .memorial-wrap {
    min-height: 350px;
  }

  /* .support-blk .rowspan>*{
  padding: 0 20px;
} */
  .support-blk-rit {
    padding: 50px 30px;
  }

  .support-blk .rowspan .cstm-width {
    width: 50%;
  }

  .sec-head {
    margin-bottom: 30px;
  }

  .support-sec::before {
    width: 30%;
  }

  .support-blk .rowspan {
    --bs-gutter-x: 40px;
  }

  .frm-flwr {
    bottom: -20px;
    width: 100px;
  }

  .family-second-gen {
    padding-right: 0;
  }

  /* Css End Sk Saifee 19-01-2024 02:14pm (FAQ Page) */

  /* 24.01.24 css */
  .purchase-plan-list li {
    font-size: 15px;
  }

  /* 24.01.24 css */


  .btnwoo {
    padding: 15px 30px;
  }


  /* 26.02.24 start */

  .woocommerce-orders-table__cell .button:not(:last-child),
  .woocommerce-PaymentMethod .button:not(:last-child),
  .history_table td .button:not(:last-child) {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .woocommerce-MyAccount-navigation li a {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* 26.02.24 end */
  .register-button-center {
  padding-top: 2rem; 
  }

}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  /* Css Start Sk Saifee 18-01-2024 07:50pm */

  .connector-line {
    display: none;
  }

  .family-gen {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .family-third-gen .family-tree-card-outer:nth-child(1),
  .family-second-gen .family-tree-card-outer:nth-child(1) {
    margin-right: 0;
  }

  .family-second-gen {
    padding-right: 0;
  }

  .family-gen {
    padding-bottom: 67px;
  }

  .family-gen .family-tree-card-outer:not(:last-child) {
    margin-bottom: 20px;
  }

  .family-third-gen .family-tree-card-outer:nth-child(4) {
    margin: 50px -20px 0 60px;
  }

  .family-gen .family-tree-card-outer {
    position: relative;
  }

  /* .family-gen .family-tree-card-outer:not(:first-child)::after{
  width: 1px;
  height: 50px;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #A2966B
}
.family-gen .family-tree-card-outer:not(:first-child)::before{
  width: 10px;
  height: 10px;
  border-top: 10px solid #A2966B;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55px;
} */

  /* Css End Sk Saifee 18-01-2024 08:10pm */

  /* css start RN 19-01-2024 */
  .banner {
    min-height: 450px;
  }

  h1,
  .h1-title {
    font-size: 38px;
  }

  h2,
  .h2-title {
    font-size: 28px;
  }

  .banner-cont .pg-btn {
    margin-top: 25px;
  }

  .scan-qr-cont h2 {
    font-size: 22px;
  }

  .scan-qr-cont {
    max-width: 60%;
  }

  .banner-flower {
    width: 250px;
    right: -110px;
  }

  .hand-mob-scan {
    width: 370px;
    right: -150px;
    bottom: -24px;
  }

  .banner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 500px;
  }

  .banner-cont {
    max-width: 100%;
  }

  .memory-cont-wrap {
    padding-left: 0;
    margin-top: 50px;
  }

  .memory-img-wrap {
    position: relative;
    z-index: 4;
  }

  .memory-cont-wrap h2::after {
    width: 110px;
    height: 110px;
    top: -30px;
  }

  .memory-flower {
    width: 160px;
    bottom: -35px;
  }

  .company-offer-hding {
    width: 100%;
    margin-bottom: 20px;
  }

  .company-offer-hding-cont {
    padding-left: 0;
    width: 100%;
  }

  .company-offer-hd {
    margin-bottom: 30px;
  }

  .custom-container {
    width: 100%;
    max-width: 100%;
  }

  .amazing-webpage-slider-roll .slick-list {
    padding-right: 80px;
  }

  .amazing-webpage-flower {
    width: 75px;
  }

  /*.packages-each-col {
    width: 100%;
    margin-bottom: 25px;
  }*/

  .packages-each-col:last-child {
    margin-bottom: 0;
  }

  .cmn-gap {
    padding: 50px 0;
  }

  .get-back-work-left {
    width: 100%;
    margin-bottom: 25px;
  }

  .get-back-work-right {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 0;
  }

  .ftr-menu li a {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .ftr-btm-wrap-lft {
    font-size: 14px;
  }

  .ftr-btm-wrap-rit li a {
    font-size: 14px;
  }

  .purchase-plan-list li {
    font-size: 14px;
  }

  .welcome-big-fig {
    padding-right: 170px;
  }

  .welcome-small-fig {
    width: 320px;
  }

  .welcome-small-fig::before {
    right: 75px;
    width: 95px;
    height: 200px;
  }

  .welcome-cherish-txt {
    font-size: 40px;
    padding-right: 80px;
  }

  .welcome-cherish-txt::after {
    right: 35px;
    bottom: -40px;
    width: 95px;
    height: 70px;
  }

  .welcome-cerate-txt {
    font-size: 50px;
    padding-left: 55px;
    margin-top: 0;
  }

  .amazing-flower2,
  .product-explr-img,
  .faq-amazing-webpage-flower2,
  .faqflow22,
  .faq-amazing-webpage-flower1,
  .memorial-pt3 {
    width: 50px;
  }

  .inner-banner {
    min-height: 280px;
  }

  .explore-top .rowspan:nth-child(odd) .exp-top-rit-con,
  .explore-top .rowspan:nth-child(even) .explore-top-rit-div {
    padding-left: 0;
  }

  .explore-top .rowspan:nth-child(even) {
    margin-top: 0;
    padding-top: 0;
  }

  .explore-top .rowspan:nth-child(odd) .exp-top-figs::after {
    width: 120px;
    height: 80px;
    right: 0;
    bottom: -30px;
  }

  .explore-top .rowspan {
    --bs-gutter-y: 30px;
  }

  .explore-top::before {
    height: 100%;
    width: calc(100% - 100px);
  }

  .explore-top .rowspan:nth-child(even) .exp-top-rit-con {
    padding-bottom: 30px;
  }

  .explore-top {
    margin-bottom: 40px;
  }

  .product-menory-sec-btm .memory-cont-wrap {
    padding-top: 0;
    margin-top: 40px;
  }

  .pro-memory-flower {
    width: 100px;
    bottom: 50px;
    right: 0px;
  }

  .blog-btm-wrap {
    max-width: 100%;
  }

  .blog-li-fig {
    width: 100px;
  }

  .blogs-col-rit-li .h5-title {
    width: calc(100% - 100px);
  }

  .blogs-col-rit-li .h5-title a {
    font-size: 16px;
  }

  .purchase-plan-list li::before {
    top: 6px;
  }


  /* Css Start Sk Saifee 19-01-2024 10:50am */

  .family-third-gen .family-tree-card-outer:nth-child(4) {
    margin: 50px -20px 0 20px;
  }

  .orignl-tab .orignl-tab-ul li {
    margin-right: 2px;
    font-size: 14px;
    padding: 14px;
  }

  .get-back-hd {
    font-size: 36px;
    margin-bottom: 15px;
  }

  /* .address-ul li, .get-back-work-left p {
  font-size: 12px;
} */
  .ft-card-inner .fl-member-name {
    font-size: 17px;
    text-align: center;
  }

  .memorial-tab p {
    /* text-align: justify; */
    /* font-size: 14px; */
  }

  /* .get-back-to-wrok-main {
  padding: 48px 20px 48px 73px;
} */
  .ft-card-inner .fl-position {
    font-size: 12px;
  }

  .glpopup-content p {
    text-align: justify;
  }

  .memorial-blk .h4-title {
    font-size: 18px;
  }

  .memorial-blk h1 {
    margin-bottom: 10px;
  }

  .texture-btm-left {
    max-width: 300px;
    bottom: -211px;
  }

  .texture-btm {
    bottom: -20px;
    max-width: 300px;
  }

  .memorial-pt2 {
    right: 0;
  }

  .memorial-pt1 {
    left: -20px;
  }

  .fmly-ul::before {
    left: 40px;
  }

  .famly-li-lft {
    width: 80px;
    height: 80px;
    font-size: 21px;
  }

  .famly-li-rit .h5-title {
    margin-bottom: 17px;
    font-size: 18px;
  }

  .fmly-ul .famly-li:not(:last-child) {
    margin-bottom: 40px;
  }

  .memorial-blk i {
    width: 250px;
    height: 250px;
    margin-top: -125px;
  }

  /* .accr-hd {
    font-size: 15px;
    line-height: 1.3;
} */
  /* .accr-con{
  font-size: 12px;
} */
  .memorial-wrap {
    min-height: 280px;
  }

  .support-blk .rowspan .cstm-width {
    width: 100%;
  }

  .support-blk-lft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* align-items: flex-start; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
  }

  .support-li i {
    width: 50px;
    height: 50px;
  }

  /* .support-li i img{
  padding: 17px;
} */
  .support-li {
    width: 50%;
    padding: 0 12px;
  }

  /* .support-li:nth-child(2){
  width: 30%;
} */
  .support-li-rit {
    width: calc(100% - 50px);
    padding-left: 15px;
  }

  .support-blk-rit {
    padding: 80px 28px;
  }

  .support-li i img {
    max-width: 18px;
  }

  .support-blk-rit {
    padding: 35px 28px 60px;
  }

  .famly-li-rit {
    width: calc(100% - 80px);
  }

  .gl-vdo-popup-main {
    padding: 25px !important;
  }

  .orignl-tab .orignl-tab-ul li {
    width: 50%;
    margin: 0;
    text-align: center;
  }

  .orignl-tab .orignl-tab-ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .family-gen {
    padding-bottom: 35px;
  }

  .family-gen .family-tree-card-outer:not(:last-child) {
    margin-bottom: 35px;
  }

  .family-gen.family-third-gen {
    -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;
  }

  .family-third-gen .family-tree-card-outer:nth-child(3) {
    margin: 0 0 35px 0;
  }

  .family-third-gen .family-tree-card-outer:nth-child(4) {
    margin: 0;
  }

  .company-offer-body-row {
    --bs-gutter-y: 30px;
  }

  /* Css End Sk Saifee 19-01-2024 02:20pm (Faq Page) */

  /* 24.01.24 css */
  .banner-contact-popup .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 100px;
  }

  /* 24.01.24 css */

  /* 02.02.24 start */

  .packages-each-col {
    width: 100%;
  }

  .packages-plan .packages-each-col:not(:last-child) {
    margin-bottom: 25px;
  }

  /* 02.02.24 end */

  /* 26.02.24 start */

  .woocommerce-MyAccount-navigation ul {
    margin-bottom: 25px;
  }

  .woocommerce-orders-table__cell .button:not(:last-child),
  .woocommerce-PaymentMethod .button:not(:last-child),
  .history_table td .button:not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .woocommerce-MyAccount-content {
    padding: 20px 15px;
  }

  #contact h3 {
    font-size: 22px;
  }

  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact textarea {
    height: 40px;
    padding: 8px 0 15px;
  }

  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="file"],
  #contact textarea {
    font-size: 14px;
  }

  /* 26.02.24 end */
/* 15.03.24 css */

/*  .family-gallery  {
    -moz-column-count: 2;
         column-count: 2;
       }
*/
.gallery-col {
  width: 50%;
}
       /* 15.03.24 css */
       
       /* support start 5-4-24 */
  .family-gen-wrapss .family-tree-card-outer:first-child {
    width: 100%;
  }
  .family-gen-wrapss .family-tree-card-outer:last-child {
    width: auto;
  }
  /* support end 5-4-24 */


/* SS Css Beign 17-05-2024 */

.theme-a-different-ending table.shop_table_responsive tbody th, .theme-a-different-ending table.shop_table_responsive tbody th{
  display: block;

}
/* SS Css Beign 17-05-2024 */

}

@media (max-width: 575px) {
  /* Css Start Sk Saifee 19-01-2024 11:58am */

  .memorial-blk i {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-bottom: 38px;
  }

  .memorial-pt1 {
    top: 120px;
  }

  .memorial-pt2 {
    top: 120px;
    width: 102px;
  }

  .memorial-blk .h4-title {
    font-size: 15px;
  }

  .locationcls {
    min-width: auto;
  }

  .sharecls {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .locationcls {
    padding: 12px 18px;
    font-size: 14px;
  }

  .orignl-tab .orignl-tab-ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* .orignl-tab .orignl-tab-ul li{
  margin-right: 3px;
  font-size: 10px;
} */


  /* .family-gen .family-tree-card-outer:not(:last-child) {
  width: 100%;
} */
  .family-third-gen .family-tree-card-outer:nth-child(3) {
    margin: 0 0 35px 0;
  }

  .famly-li-rit .h5-title {
    margin-bottom: 10px;
    font-size: 16px;
    padding-top: 5px;
  }

  .memorial-tab p {
    margin-bottom: 15px;
    /* font-size: 11px; */
  }

  .fmly-ul .famly-li:not(:last-child) {
    margin-bottom: 20px;
  }

  .famly-li-lft {
    font-size: 18px;
  }

  .gl-vdo-popup-outer {
    padding: 20px;
  }

  .glpopup-vdo {
    margin-bottom: 20px;
  }

  .family-gallery-item .play-btn,
  .glpopup-vdo .play-btn {
    bottom: 20px;
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .glpopup-content .h2-title {
    font-size: 24px;
  }

  .glpopup-content p {
    /* font-size: 10px; */
    margin-bottom: 10px;
  }

  #gl-vdo-popup .fancybox-button.fancybox-close-small {
    right: 0;
    top: 0;
    padding: 20px;
  }

  .accr-hd {
    font-size: 15px;
    line-height: 1.3;
  }

  .accr-con {
    font-size: 14px;
    padding: 15px 45px 15px 20px;
  }

  .accr-item:not(:last-child) {
    margin-bottom: 10px;
  }

  .accr-hd::after {
    background-size: 13px;
    width: 10px;
    height: 8px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 40px;
    padding: 8px 0 15px;
  }

  button,
  input,
  optgroup,
  select,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  /* Css End Sk Saifee 19-01-2024 02:22pm (Faq Page) */

  /* 26.02.24 start */

  .select2-container .select2-selection--single,
  .select2-container--default .select2-selection--single {
    height: 40px;
  }

  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* 26.02.24 end */
/* 15.03.24 css */

  /*.family-gallery  {
    -moz-column-count: 1;
         column-count: 1;
       }*/
.gallery-col {
  width: 100%;
} 
.gallery-col>*{
  height: 250px !important;
}
       /* 15.03.24 css */


}

@media (max-width: 479px) {

  /* css start RN 19-01-2024 */
  h1,
  .h1-title {
    font-size: 32px;
  }

  h2,
  .h2-title {
    font-size: 26px;
  }

  h3,
  .h3-title {
    font-size: 24px;
  }

  h4,
  .h4-title {
    font-size: 18px;
  }

  .banner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 430px;
  }

  .scan-qr-cont h2 {
    font-size: 20px;
  }

  .hand-mob-scan {
    width: 330px;
    right: -140px;
    bottom: 0px;
  }

  .banner-sub-hd {
    font-size: 16px;
  }

  .banner-cont h1 {
    margin-bottom: 15px;
  }

  .banner-cont p {
    font-size: 14px;
  }

  .banner-cont .pg-btn {
    margin-top: 15px;
  }

  .memory-cont-wrap .pg-btn {
    margin-top: 20px;
  }

  .memory-flower {
    width: 120px;
    bottom: -30px;
  }

  .company-offer-box h3 {
    margin-bottom: 10px;
  }

  .get-back-to-wrok-main {
    padding: 20px 20px 40px 20px;
  }

  .ftrcl {
    width: 100%;
    margin-bottom: 20px;
  }

  .ftrcl2 {
    padding: 0;
  }

  .welcome-big-fig {
    padding-right: 130px;
  }

  .welcome-small-fig {
    width: 230px;
  }

  .welcome-big-fig::before {
    height: 200px;
  }

  .welcome-small-fig::before {
    right: 65px;
    width: 65px;
    height: 150px;
  }

  .welcome-cherish-txt {
    font-size: 30px;
    padding-right: 60px;
  }

  .welcome-cerate-txt {
    font-size: 40px;
    padding-left: 40px;
    margin-top: 0;
  }

  .welcome-cherish-txt::after {
    right: 25px;
    bottom: -30px;
    width: 85px;
    height: 60px;
  }

  .product-explr-img {
    bottom: 0;
  }

  .pro-memory-flower {
    width: 70px;
    bottom: 30px;
  }

  .explore-top .rowspan:nth-child(even) .exp-top-figs::after {
    width: calc(50% - 50px);
  }

  .blog-btm-wrap .h5-title a,
  .blogs-col-rit-li .h5-title a {
    font-size: 16px;
  }

  .blog-li-fig {
    width: 80px;
  }

  .blogs-col-rit-li .h5-title {
    width: calc(100% - 80px);
    padding-left: 15px;
  }

  .blogs-col-rit-li .h5-title a {
    font-size: 14px;
  }

  .blogs-col-rit .h2-title {
    margin-bottom: 20px;
  }

  /* css end RN 19-01-2024 */
  /* Css Start Sk Saifee 19-01-2024 01:25pm */
  /* .memorial-blk .h4-title {
    font-size: 12px;
} */
  /* .locationcls {
  font-size: 11px;
} */
  .memorial-blk {
    margin: 0 auto 30px;
  }

  .orignl-tab .orignl-tab-ul li {
    margin-right: 0;
    /* font-size: 9px; */
    padding: 12px;
    text-align: center;
    width: 100%;
  }

  .memorial-tab ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .family-tree-outer,
  .family-gellery-outer {
    padding: 0 20px;
  }

  .family-tree-card-outer {
    width: 100%;
  }

  /* .family-third-gen .family-tree-card-outer:nth-child(3) {
  margin: 50px 0 0;
} */
  .family-third-gen .family-tree-card-outer:nth-child(4) {
    /* margin: 50px 0 0; */
    width: auto;
  }

  .memorial-tab p {
    margin-bottom: 8px;
    /* font-size: 9px; */
  }

  .famly-li-rit .h5-title {
    font-size: 14px;
  }

  .fmly-ul .famly-li:not(:last-child) {
    margin-bottom: 15px;
  }

  .famly-li-lft {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }

  .fmly-ul::before {
    left: 30px;
  }

  .ft-card-inner {
    padding: 16px 5px;
    width: 135px;
  }

  .sharecls {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .locationcls {
    padding: 10px 16px;
    text-align: left;
  }

  .locationcls img {
    margin-right: 10px;
    height: 20px;
  }

  .orignl-tab .orignl-tab-ul {
    margin: 0 auto 20px;
  }

  .memorial-list a {
    margin-right: 15px;
  }

  .gl-vdo-popup-outer .container {
    padding: 0;
  }

  .glpopup-content .h2-title {
    margin-bottom: 10px;
  }

  .support-li {
    width: 100%;
  }

  .support-li-rit .h5-title {
    font-size: 18px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .support-sec h2 {
    font-size: 22px;
  }

  .accr-hd {
    font-size: 14px;
  }

  .famly-li-rit {
    width: calc(100% - 60px);
  }

  /* Css End Sk Saifee 19-01-2024 01:55pm */
  /* 24.01.24 css */
  .banner-contact-popup .btn-close {
    background-size: 12px !important;
    opacity: 1;
    width: 20px;
    height: 20px;
  }

  /* 24.01.24 css */

  /* 26.02.24 start */

  .woocommerce form.login,
  .woocommerce form.register {
    padding: 25px 15px;
  }

  .woocommerce .woocommerce-form .woocommerce-form-login__submit {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }

  .woocommerce form .form-row-first,
  .woocommerce-page form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-last {
    width: 100%;
    float: inherit;
  }

  .subscription-details {
    font-size: 20px !important;
  }

  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order,
  :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
    font-size: 14px;
    margin-top: 15px;
    padding: 10px 25px;
  }

  .share_social_list li:not(:last-child) {
    margin-right: 15px;
  }

  .share_social_list li a {
    width: 30px;
  }

  /* 26.02.24 end */
/*login remember me*/
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{margin-top: 0; width: 100%}


/* SS Css Begin 17-05-2024 */

.btn-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* SS Css Begin 17-05-2024 */

}

@media only screen and (max-width: 480px) {
  .btnwoo {
    padding: 12px 22px;
  }
}


@media(max-width: 374px) {
  .navbar-brand {
    width: 120px;
  }

  h1,
  .h1-title {
    font-size: 28px;
  }

  h2,
  .h2-title {
    font-size: 24px;
  }

  .banner-sub-hd {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .banner-cont h1 {
    margin-bottom: 12px;
  }

  .scan-qr {
    padding: 60px 0 30px;
  }

  .hand-mob-scan {
    width: 300px;
    right: -130px;
    bottom: 50px;
  }

  .banner-flower {
    width: 240px;
    bottom: -10px;
  }

  .memory-flower {
    width: 110px;
    right: 10px;
  }

  .ftr-logo {
    width: 130px;
  }

  .ftr-big-crcl {
    width: 230px;
    height: 230px;
  }

  .inner-banner {
    min-height: 200px;
  }

  .welcome-small-fig {
    width: 170px;
  }

  .welcome-cherish-txt {
    font-size: 25px;
    padding-right: 40px;
  }

  .welcome-cerate-txt {
    font-size: 35px;
    padding-left: 30px;
  }

  .welcome-cherish-txt::after {
    right: 30px;
    bottom: -28px;
    width: 65px;
    height: 45px;
  }

  .welcome-big-fig::before {
    height: 160px;
  }

  /* sk start 19-01-2024 */
  .memorial-wrap {
    min-height: 200px;
  }

  .memorial-blk .h4-title {
    /* font-size: 9px; */
    margin-bottom: 20px;
  }

  .accr-con {
    padding: 15px 30px 15px 20px;
    /* font-size: 9px; */
  }

  /* .accr-hd{
font-size: 10px;
} */
  .memorial-blk {
    margin: 0 auto 20px;
  }

  .support-li-rit a,
  .support-li-rit p {
    font-size: 12px;
  }

  /* .locationcls {
font-size: 9px;
} */
  .memorial-blk .h4-title::before {
    width: 35px;
    height: 23px;
  }

  .family-tree-card .plus-icon {
    margin: 0 5px;
  }

  .ft-card-inner {
    width: 110px;
  }

  .ft-card-inner .fl-position {
    width: 95px;
  }

  /* .famly-li-rit .h5-title {
font-size: 9px;
} */
  .ft-card-inner-img {
    width: 90px;
  }

  .support-sec h2 {
    font-size: 20px;
  }

  /* sk end 19-01-2024 */



}

.woocommerce-cart-form .subscription-details{
  font-size: 14px !important;
}

.woocommerce-cart-form button[name="apply_coupon"]{
  margin-top: 0 !important;
}

.woocommerce table.cart td.actions{
  display: none;
}