/*========== Font Links Hare =========== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    background: #fff;
    color: #545A64;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
}

:root {
    --font-urbanist: "Urbanist", sans-serif;
    --font-inter-tight: "Inter Tight", sans-serif;
    --font-jakarta: "Plus Jakarta Sans", sans-serif;
    --primery-color: #204848;
    --primery-color-80: #2A5557;
    --secondery-color: #F3D05B;
    --third-color: #5BD3B7;
    --color-black: #050505;
    --neutral-colors: #2B3244;
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #F3D05B;
    --scroll-top-color: #000;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.SMN_effect-56 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.SMN_effect-56:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.65);
}

.SMN_effect-56:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
* {
  scrollbar-width: 7px; 
  scrollbar-color: var(--secondery-color) rgba(185,185,185,0.20);
}

::-webkit-scrollbar {
  width: 7px; 
}

::-webkit-scrollbar-track {
 background: rgba(185, 185, 185, 0.20);
}

::-webkit-scrollbar-thumb {
  background: var(--secondery-color); 
  border-radius: 6px; 
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondery-color); 
}





/*===============
 GOBAL CSS END  
 ============== */

/*============ header area style start hare =========== */

.header-area {
    padding: 10px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrapper .header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-left a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #050505;
    font-family: var(--font-urbanist);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-left a:hover {
    color: var(--primery-color);
}

.header-left a:hover svg path {
    stroke: var(--primery-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-social ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-language a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-language a .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: rgba(5, 5, 5, 0.04);
    padding: 4px;
}

.site-language a {
    width: 100%;
    color: #050505;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

/*============= header area end hare ========= */

/*========== nav area style start hare ======== */

.navbar {
    background: var(--primery-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 26.526px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    position: relative;
}

.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav {
    gap: 32px;
}

.navbar-nav .nav-link::before {
    content: '';
    clear: both;
    display: block;
    width: 0;
    top: 51px;
    position: absolute;
    left: 0;
    height: 4px;
    background: var(--secondery-color);
    border-radius: 5px;
    transition: 0.3s;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.sign-in-btn {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.sign-in-btn:hover {
    color: var(--secondery-color);
}

.sign-up-btn {
    border-radius: 58px;
    border: 1px solid #FFF;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: flex;
    width: 140px;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.sign-up-btn:hover {
    color: var(--secondery-color);
    border-color: var(--secondery-color);
}

/* mobile menu style  */

.offcanvas-body .navbar-nav .nav-link {
    color: var(--neutral-colors);
}

.offcanvas-body .navbar-nav .nav-link.active {
    color: var(--neutral-colors);
}

.mobile-actions .sign-in-btn {
    color: var(--color-black);
}

.mobile-actions .sign-up-btn {
    color: var(--color-black);
    border-color: var(--color-black);
    width: 100%;
}

.offcanvas-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-right a {
    padding: 10px 18px;
    border-radius: 8px;
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.navbar-toggler-btn {
    background: transparent;
    border: none;
}

.navbar-toggler-btn svg {
    transition: 0.3s;
}

.navbar-toggler-btn:hover svg path {
    stroke: var(--secondery-color);
}

.offcanvas-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.offcanvas-title span {
    color: #000;
    font-family: var(--font-urbanist);
    font-size: 26.526px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

#mobileMenu {
    max-width: 80%;
}

/*=============== nav area end hare ================ */

/*================= hero area start hare ============ */

.hero-area {
    background: var(--primery-color-80);
    color: #fff;
}

.hero-wrapper {
    min-height: calc(100dvh - 110px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-block: 49px;
}

.hero-content {
    max-width: 552px;
    position: relative;
}

.hero-content .top-title {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 53px;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.hero-content h2 {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.64px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.hero-content h2 img {
    position: absolute;
    top: 80px;
    left: 145px;
    z-index: -1;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    max-width: 392px;
    margin-top: 24px;
}

.hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
}

.action-btn {
    display: flex;
    padding: 17px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: #F3D05B;
    color: #050505;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 144.444%;
    border: none;
}

.hero-actions .watch-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-actions .watch-demo:hover {
    color: var(--secondery-color);
}

.hero-actions .watch-demo:hover svg path {
    stroke: var(--secondery-color);
}

.hero-slider-area {
    padding-right: 48px;
    padding-top: 4px;
    position: relative;
    z-index: 2;
    max-width: 570px;
    width: 100%;
    overflow: hidden;
}

.hero-slider-area::before {
    content: '';
    clear: both;
    width: 496px;
    height: 485px;
    border-radius: 50%;
    background: #F3D05B;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-slider-item {
    display: flex;
    padding: 31.113px 19.446px;
    flex-direction: column;
    align-items: center;
    gap: 17.394px;
    border-radius: 17.394px;
    background: #FFF;
    max-width: 519px;
    color: var(--color-black);
}

.slider-image img {
    max-width: 400px;
    height: 400px;
}

.hero-slider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17.394px;
    text-align: center;
}

.hero-slider-content h4 {
    color: var(--neutral-colors);
    text-align: center;
    font-family: var(--font-inter-tight);
    font-size: 38.891px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.hero-slider-content p {
    color: #545A64;
    text-align: center;
    font-size: 15.556px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.hero-slider-pagination {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 15.556px;
    height: 15.556px;
    aspect-ratio: 1/1;
    background: #fff;
    opacity: 1;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--secondery-color);
}

.hero-qr-code .qr-box {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background: var(--secondery-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

.hero-qr-code {
    position: absolute;
    left: 105%;
    top: 10%;
    z-index: 5;
}

/*============== hero area end hare ==================== */

/*======== why choose area style start hare ============== */

.why-choose-area {
    padding-block: 100px;
}

.action-btn-two {
    padding: 20px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--third-color);
    border-radius: 100px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
}

.why-choose-content {
    border-radius: 20px;
    background: #F7FAFF;
    padding: 30px;
    height: 100%;
}

.why-choose-content h4 {
    color: var(--neutral-colors);
    font-family: var(--font-urbanist);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.why-choose-content p {
    font-size: 18px;
    line-height: 160%;
}

.why-inner-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 553px;
}

.single-why-choose-item {
    height: 100%;
    border-radius: 20px;
    border: 1px solid #E8EDFA;
    background: #FFF;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: 0.3s;
}

.single-why-choose-item .icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-choose-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-details h4 {
    color: var(--neutral-colors);
    font-family: var(--font-urbanist);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.why-choose-details p {
    font-size: 18px;
    max-width: 318px;
}

.why-choose-wrapper .row {
    gap: 30px 0;
}

.boxshow-one {
    box-shadow: 0 20px 100px 0 rgba(9, 46, 72, 0.12);
}

.single-why-choose-item:hover {
    box-shadow: 0 20px 100px 0 rgba(9, 46, 72, 0.12);
}

/*================ why choose us area end hare ============= */

/*================== how it work area start hare ============= */

.how-it-work-area {
    padding-block: 100px;
    background: rgba(129, 0, 230, 0.02);
}

.how-it-work-wrapper {
    display: flex;
    flex-direction: column;
    gap: 103px;
}

.section-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-top h4 {
    color: var(--neutral-colors);
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.section-top p {
    color: var(--neutral-colors);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.how-work-bottom {
    display: flex;
    gap: 100px;
}

.how-work-block h4 {
    color: #050505;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    letter-spacing: -0.24px;
}

.how-work-image img {
    max-width: 230px;
    height: 225px;
}

.how-work-block {
    flex: 1;
}

.how-work-bottom {
    position: relative;
    z-index: 2;
}

.work-ractangle {
    position: absolute;
    left: 0;
    top: 35px;
    width: 100%;
    z-index: -1;
}

.how-work-block {
    position: relative;
    z-index: 2;
}

.how-work-block .block-number {
    color: #E2E9EB;
    font-size: 100px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/*============== how it work area style end hare ============ */

/*============= features area style start hare =================== */

.features-area {
    background: var(--primery-color);
    padding-block: 100px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.features-area::before {
    content: '';
    clear: both;
    width: 528px;
    height: 528px;
    border-radius: 528px;
    opacity: 0.6;
    background: #0FA0A7;
    filter: blur(250px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.features-area::after {
    content: '';
    clear: both;
    width: 528px;
    height: 528px;
    border-radius: 528px;
    opacity: 0.6;
    background: #0FA0A7;
    filter: blur(250px);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.features-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.features-top h4 {
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.features-top p {
    text-align: center;
    font-size: 18px;
    line-height: 160%;
    max-width: 823px;
    margin-inline: auto;
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.features-card {
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    background: #FFF;
    color: var(--neutral-colors);
    justify-content: space-between;
    gap: 50px;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 553px;
}

.features-images img {
    max-width: 507px;
}

.features-content h4 {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.features-action {
    padding-top: 14px;
}

/*============ features area style end hare ============= */

/*============ story qr area style start hare ============ */

.story-qr-area {
    padding-block: 100px;
}

.story-qr-wrapper {
    padding: 80px 56px;
    border-radius: 40px;
    background: #F7F6FE;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.single-story-item {
    padding: 8px;
    border-radius: 14.642px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-details {
    display: flex;
    gap: 21px;
    align-items: center;
    justify-content: space-between;
}

.story-info {
    display: flex;
    flex-direction: column;
    gap: 9.15px;
}

.story-info .name {
    color: var(--neutral-colors);
    font-family: var(--font-inter-tight);
    font-size: 21.964px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.story-info .story-time {
    display: flex;
    align-items: baseline;
    gap: 5.5px;
}

.story-time span {
    color: #545A64;
    font-size: 14.642px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.story-info .location {
    display: flex;
    align-items: center;
    gap: 5.5px;
}

.story-info .location span {
    color: #545A64;
    font-size: 14.642px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.story-images img {
    width: 100%;
    transition: 0.3s;
}

.story-slider-navigation {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.story-slider-navigation button {
    display: flex;
    padding: 16px;
    gap: 8px;
    border-radius: 10px;
    background: #F3D05B;
    border: none;
    color: var(--color-black);
}

.story-slider-navigation button:disabled {
    background: #fff;
    color: #CED1D8;
}

/*================== story qr area style end hare ================= */

/*================= pricing area style start hare ============== */

.pricing-area {
    padding-block: 100px;
}

.pricing-wrapper {
    display: flex;
    flex-direction: column;
}

.pricing-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.package-switch-buttons {
    display: flex;
    padding: 6px 16px 6px 6px;
    align-items: center;
    gap: 4px;
    max-width: 325px;
    margin-inline: auto;
    border-radius: 62px;
    border: 1px solid #BFCCE6;
    background: #F0F7FF;
    width: 100%;
}

.package-switch-buttons button {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: var(--text1, #7B849E);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.32px;
}

.package-switch-buttons button.active {
    background: var(--primery-color);
    color: #fff;
}

.single-package {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 20px;
    border: 1px solid #E2E2E2;
    background: #FFF;
}

.package-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #E8F3FF;
}

.package-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.package-tagline {
    color: #7B849E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin-top: 8px;
}

.package-price {
    display: flex;
    align-items: end;
}

.package-price h2 {
    color: #2D3E79;
    font-family: var(--font-jakarta);
    font-size: 46px;
    font-style: normal;
    font-weight: 800;
    line-height: 130.435%;
    letter-spacing: -0.92px;
}

.package-price span {
    color: #2D3E79;
    font-family: var(--font-jakarta);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.36px;
    display: block;
    line-height: 130%;
}

.package-features {
    width: 100%;
    color: #7B849E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
}

.package-features-list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-features-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.package-features-list li span {
    color: #000A2D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.package-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.package-slider-navigation button {
    display: flex;
    padding: 16px;
    gap: 8px;
    border-radius: 10px;
    background: #F3D05B;
    border: none;
    color: var(--color-black);
}

.package-slider-navigation button:disabled {
    background: #fff;
    display: none;
}

.single-package.best-value {
    background: var(--primery-color);
    border-color: var(--primery-color);
    color: #fff;
    padding-top: 56px;
    position: relative;
}

.best-value .package-icon {
    background: #fff;
}

.best-value .package-tagline {
    color: #fff !important;
}

.best-value .package-price h2 {
    color: #fff;
}

.best-value .package-price span {
    color: #fff;
}

.best-value .package-features {
    color: #fff;
}

.best-value .package-features-list li span {
    color: #fff;
    opacity: 0.8;
}

.best-value .icon svg path {
    fill: #fff;
}

.best-value .icon svg rect {
    fill: #fff;
}

.best-value-card {
    width: 86.2px;
    height: 86.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/start-bg.svg) no-repeat;
    background-size: 100% 100%;
    text-align: center;
    color: #000;
    text-align: center;
    font-family: var(--font-jakarta);
    font-size: 15.516px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 10px;
    position: absolute;
    right: 0;
    top: -50px;
}

.package-slider .swiper-slide {
    padding-top: 60px;
}

#yearly-package {
    display: none;
}

/*================= pricing area style end hare ============ */

/*=============== review area style start hare =========== */

.review-area {
    padding-block: 100px;
    background: #EFF2F6;
}

.review-top {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: space-between;
}

.review-top .review-top-left {
    max-width: 740px;
    flex: 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.review-top-left h4 {
    color: #050505;
    font-family: var(--font-urbanist);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.48px;
}

.review-all-btn .action-btn {
    background: var(--primery-color);
    color: #fff;
}

.review-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.single-review {
    padding: 45px;
    border-radius: 30px;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.review-images img {
    max-width: 245px;
    border-radius: 16px;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    flex: 1;
}

.review-content p {
    color: #656565;
    font-family: var(--font-urbanist);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.455%;
}

.reviwer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviwer-info h4 {
    color: #031514;
    font-family: var(--font-inter-tight);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.48px;
}

.reviwer-info span {
    color: #4E5258;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.review-qoute {
    position: absolute;
    top: 19px;
    right: 29px;
    z-index: -1;
}

.video-review video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-container {
    position: relative;
    height: 100%;
}

.video-container .video-play-button {
    position: absolute;
    right: 14px;
    bottom: 19px;
    background: transparent;
    border: none;
}

.review-content-wp .row {
    gap: 24px 0;
}

.video-review {
    height: 100%;
    display: flex;
}

.review-slider-navigation {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.review-slider-navigation button {
    display: flex;
    padding: 16px;
    gap: 8px;
    border-radius: 10px;
    background: #F3D05B;
    border: none;
    color: var(--color-black);
}

.review-slider-navigation button:disabled {
    background: #fff;
    color: #CED1D8;
}

/*=========== review area style end hare ========= */

/*============ faq area style start hare ========== */

.faq-area {
    padding: 100px 0;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.single-faq-item {
    border-radius: 10px;
    border: 1px solid #E8EDFA;
}

.faq-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    border-radius: 10px;
    background: #FFF;
    cursor: pointer;
    gap: 10px;
}

.faq-content {
    padding: 26px 30px;
    box-shadow: 10px 20px 60px 0 rgba(0, 0, 0, 0.03);
}

.faq-title.faq-active {
    background: var(--secondery-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-title span {
    color: var(--neutral-colors);
    font-family: var(--font-inter-tight);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    flex: 1;
}

.faq-content p {
    max-width: 733px;
    font-size: 16px;
}

.faq-icon {
    transition: 0.3s;
}

.faq-active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
}

.faq-inner-wp {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*============== faq area style end hare ========== */

/*=========== contact area style start hare ======= */

.contact-area {
    background: var(--primery-color);
    position: relative;
    z-index: 2;
}

.contact-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 400px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    gap: 58px;
}

.contact-form-wrapper {
    padding: 60px;
    background: var(--primery-color-80);
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 718px;
    flex: 1;
}

.contact-form-wrapper h4 {
    color: #FFF;
    font-family: var(--font-inter-tight);
    font-size: 43px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-input label {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.444%;
}

.single-input input,
.single-input textarea {
    padding: 19px 24px;
    border: 2px solid #fff;
    color: #6E6F73;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.444%;
    transition: 0.3s;
}

.single-input input:focus,
.single-input textarea:focus {
    border-color: var(--secondery-color);
    border-radius: 10px;
}

.contact-right-card {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
    max-width: 570px;
}

.contact-right-card h4 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/*============ contact area style end hare ========== */

/*============ footer area style start hare ========== */

.footer-area {
    padding-block: 50px;
    background: var(--primery-color);
    padding-bottom: 26px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo a span {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 60.513px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
}

.footer-links ul a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links ul a:hover {
    opacity: 1;
}

.footer-nav ul {
    display: flex;
    gap: 41px;
}

.footer-nav ul a {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.footer-nav ul a:hover {
    color: var(--secondery-color);
}

.footer-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.footer-card-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-block p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.2px;
}

.footer-block ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-block a {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.footer-block a:hover {
    color: var(--secondery-color);
}

.footer-card-right h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.2px;
    text-align: right;
}

.footer-card-right ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
}

.footer-card-right ul a {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.footer-card-right ul a:hover {
    color: var(--secondery-color);
}

.footer-right-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.footer-wrapper {
    padding-bottom: 30px;
}

.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.copyright-area {
    padding-top: 30px;
}

.copyright-area p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.08px;
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 14.71px;
}

.footer-social ul a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
}

.footer-social ul a:hover {
    background: var(--secondery-color);
}

.story-images {
    width: 100%;
    overflow: hidden;
    border-radius: 12.812px;
}

.single-story-item:hover .story-images img {
    transform: scale(1.05);
}

/*=============================
 PROFILE PAGE STYLE START HARE 
============================== */

.user-profile a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile .profile-img {
    width: 56px;
    height: 56px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile .user-name {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: 0.3s;
}

.user-profile a:hover .user-name {
    color: var(--secondery-color);
}

/*============== profile area style start hre ========== */

.cover-photo {
    height: 260px;
    background: url(images/cover-photo.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.profile-wrapper {
    display: flex;
    gap: 32px;
    margin-top: -83px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.profile-social ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.profile-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.60);
    border-radius: 50%;
    transition: 0.3s;
}

.profile-social a:hover {
    background: var(--secondery-color);
}

.profile-details {
    display: flex;
    align-items: end;
    gap: 32px;
}

.profile-basic-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-basic-info .profile-name {
    color: var(--neutral-colors);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.profile-basic-info .user-address,
.profile-basic-info .member-since {
    color: #969FB7;
    font-family: var(--font-urbanist);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.profile-qr-code img {
    width: 120px;
}

.action-btn-two:hover {
    background: var(--secondery-color);
    color: var(--color-black);
}

.profile-content-area {
    padding-top: 60px;
    display: flex;
    gap: 40px;
    align-items: start;
}

.profile-sidebar {
    width: 100%;
    max-width: 312px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(24, 24, 24, 0.05);
    background: #FFF;
}

.profile-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-sidebar ul a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px;
    color: #3C4A60;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.profile-sidebar ul a svg {
    transition: 0.3s;
}

.profile-sidebar ul .divider {
    display: block;
    height: 1px;
    background: #E2E2FC;
}

.profile-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: calc(100% - 312px);
}

.profile-tab-nav {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E8E8F8;
}

.profile-tab-nav button {
    flex: 1;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: #969FB7;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    transition: 0.3s;
    position: relative;
}

.profile-tab-nav button::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    background: var(--third-color);
}

.profile-tab-nav button:hover,
.profile-tab-nav button.active {
    color: var(--neutral-colors);
}

.profile-tab-nav button.active::before {
    width: 100%;
}

.obituary-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.obituary-content p {
    color: #606060;
    font-family: "Times New Roman";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%;
}

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

.profile-tab-content.active {
    display: block;
}

/* 
.profile-photos {
    display: flex;
    gap: 14px 16px;
    flex-wrap: wrap;
} */

.profile-photos a {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.profile-photos a img {
    transition: 0.3s;
    width: 100%;
}

.profile-photos a:hover img {
    transform: scale(1.02);
}

.photos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
}

.photos-wrapper h4 {
    color: var(--neutral-colors);
    font-family: var(--font-inter-tight);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.guestbook-area {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guestbook-area h4 {
    color: var(--neutral-colors);
    font-family: var(--font-inter-tight);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.guestbook-post {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guestbook-post textarea {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2A5557;
    background: rgba(245, 245, 245, 0.50);
    height: 296px;
    transition: 0.3s;
}

.guestbook-post textarea:focus {
    border-color: var(--secondery-color);
}

.guestbook-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.guestbook-actions button {
    width: 100%;
    max-width: 190px;
}

.guestbook-actions button.add-photos-btn {
    border-radius: 12px;
    border: 1px solid #181818;
    padding: 17px 20px;
    background: #fff;
    transition: 0.3s;
    color: #050505;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 144.444%;
}

button.add-photos-btn:hover {
    background: var(--secondery-color);
    border-color: var(--secondery-color);
    color: var(--color-black);
}

.profile-photo-slider-area {
    width: 100%;
}

.profile-slider-nav {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.profile-slider-nav button {
    display: flex;
    padding: 16px;
    gap: 8px;
    border-radius: 10px;
    background: #F3D05B;
    border: none;
    color: var(--color-black);
}

.profile-slider-nav button:disabled {
    background: #fff;
    color: #CED1D8;
}

/*==================
 Privacy Policy Page 
=================== */

.mainContentArea {
    padding-block: 32px;
    padding-bottom: 90px;
}

.breadcrumb-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-nav ul li {
    color: #606060;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 155.556%;
    letter-spacing: -0.09px;
}

.breadcrumb-nav ul .current-page {
    font-weight: 400;
}

.mainContentWrapper {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 956px;
    margin-inline: auto;
}

.main-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mainContentWrapper>h2 {
    color: #0B0B0B;
    font-family: var(--font-urbanist);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.content-block-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.main-inner-wrapper .date-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-inner-wrapper .date-title span {
    opacity: 0.7;
    color: #606060;
    font-family: var(--font-inter-tight);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.09px;
}

.main-inner-wrapper .date-title h3 {
    color: #0B0B0B;
    font-family: var(--font-inter-tight);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 166.667%;
}

.main-inner-wrapper p {
    color: #606060;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.main-inner-wrapper p a {
    text-decoration: underline;
}

.main-inner-wrapper p a:hover {
    color: var(--secondery-color);
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-block h4 {
    color: #0B0B0B;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 116.667%;
    letter-spacing: -0.12px;
    font-family: "Inter", sans-serif;
}

.content-block ul {
    list-style: disc;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-block ul.list-number {
    list-style: decimal;
}

.content-block a {
    text-decoration: underline;
}

/*===============
 Contact Us page 
================== */

.contact-page .contact-right-card {
    max-width: 100%;
    flex-direction: row;
    align-items: end;
}

.contact-page .contact-image {
    max-width: 570px;
}

.contact-us-main {
    padding-top: 80px;
}

.contact-us-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.contact-us-left {
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.contact-us-left h2 {
    color: var(--neutral-colors);
    font-family: var(--font-urbanist);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.contact-us-left p {
    color: #4E5258;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.single-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.single-contact-info .icon {
    display: flex;
    width: 76px;
    height: 76px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: rgba(42, 122, 117, 0.15);
}

.single-contact-info .contact-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-items span {
    color: #969FB7;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.contact-items a {
    color: var(--neutral-colors);
    font-family: var(--font-inter-tight);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    flex: 1;
}

.contact-items a:hover {
    color: var(--secondery-color);
}

.contact-info-wp {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-top: auto;
}

.contact-us-right {
    padding: 40px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.10);
    width: 100%;
    flex: 1;
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-right h2 {
    color: #204848;
    font-family: var(--font-inter-tight);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.contact-us-form .single-input input,
.contact-us-form .single-input textarea {
    border-radius: 4px;
    border: 1px solid #E9EBF5;
    background: #F5F5F5;
}

.contact-us-form .single-input label {
    color: var(--neutral-colors);
}

.contact-us-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-form .single-input input:focus,
.contact-us-form .single-input textarea:focus {
    border-color: var(--secondery-color);
}

/*==========================
 Memory Page Style Start Hare 
============================= */

:root {
    --mandelyn: "Madelyn Fill-Trial";
    --playfair: "Playfair Display", serif;
}

.memory-main-area {
    padding-block: 60px;
    overflow: hidden;
}

.memory-slider {
    width: 100%;
    max-width: 1190px;
    margin-inline: auto;
}

.memory-cover-slide {
    padding: 18px;
    background: var(--primery-color);
    max-width: 595px;
    margin-inline: auto;
    position: relative;
    height: 100%;
}

.memory-cover-content {
    position: absolute;
    left: 115px;
    top: 108px;
    right: 115px;
    bottom: 108px;
    color: #fff;
    max-width: 366px;
}

.memory-cover-content h5 {
    color: #FFF;
    text-align: center;
    font-family: var(--mandelyn);
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 104%;
}

.memory-cover-content .memory-photos {
    display: flex;
    gap: 14.091px;
    padding-top: 32px;
}

.memory-cover-content .cover-main-img img {
    border-radius: 18px;
    max-width: 210px;
}

.memory-person-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
}

.memory-person-info h4 {
    text-align: center;
    font-family: var(--playfair);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.memory-person-info p {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.person-death-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;
}

.person-death-card p {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
}

.person-death-card .death-date {
    color: #F3D05B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
}

.memory-slider {
    position: relative;
}

.memory-slider-prev {
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    display: flex;
    width: 80px;
    height: 80px;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #F5F5F5;
    z-index: 25;
}

.memory-slider-next {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    display: flex;
    width: 80px;
    height: 80px;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #F5F5F5;
    z-index: 25;
}

.memory-slider-prev:disabled,
.memory-slider-next:disabled {
    visibility: hidden;
}

.memory-slider .swiper-slide {
    width: 50%;
    height: 842px;
    display: flex;
}

.memory-slider .big-slide {
    width: 100%;
}

.memory-slider-areas {
    position: relative;
}

.welcome-slide {
    height: 100%;
    background: var(--primery-color);
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-slide h4 {
    color: #FFF;
    text-align: center;
    font-family: var(--playfair);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.intro-video {
    position: relative;
}

.intro-video video {
    width: 100%;
    height: 378px;
    border-radius: 14.358px;
    border: 2px solid #FFF;
    object-fit: cover;
}

.intro-video .video-control-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
}

.intro-content {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-content h5 {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.intro-content p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.memory-gallery-slide {
    padding: 32px;
    background: var(--primery-color-80);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-title {
    color: #FFF;
    text-align: center;
    font-family: var(--playfair);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.memory-gallery-wrapper ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.memory-gallery-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Gallery page indicator */
.page-indicator {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 10px;
}

/* Empty slot styling for maintaining grid layout */
.memory-gallery-wrapper .empty-slot {
    visibility: hidden;
}

.memory-gallery-wrapper .empty-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 16px;
}

/* Video gallery empty slot styling */
.funeral-media-slide .empty-video-slot {
    visibility: hidden;
}

.funeral-media-slide .empty-video-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 10px;
    min-height: 200px;
}

.mememory-about-img {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 32px;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
}

.about-images img {
    border-radius: 16px;
    max-width: 489px;
    width: 100%;
}

.mememory-about-img::before {
    content: '';
    display: block;
    width: 165px;
    background: #147474;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.about-ractangle {
    position: absolute;
    left: 20px;
    bottom: 0;
}

.mememory-about-content {
    display: flex;
    width: 100%;
    padding: 32px;
    background: #174444;
    gap: 32px;
    flex-direction: column;
}

.memory-contents .name {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.memory-contents .life-time {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.memory-contents p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
}

.wake-info-slide {
    display: flex;
    flex-direction: column;
    background: var(--primery-color);
}

.wake-info-wrapper {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wake-info-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wake-info-top p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.wake-info-wrapper .divider {
    background: rgba(255, 255, 255, 0.20);
    height: 2px;
}

.wake-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-info-item .icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.single-info-item span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.889%;
    flex: 1;
}

.single-info-item .icon.location {
    background: #61D1FD;
}

.single-info-item .icon.calander {
    background: #5EB904;
}

.single-info-item .icon.time {
    background: #C252E7;
}

.funeral-info-slide {
    padding: 32px;
    background: var(--primery-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.funeral-image img {
    border-radius: 16px;
    width: 100%;
}

.cemetery-info-slide {
    display: flex;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    padding: 32px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
}

.visitor-comment-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visitor-comment-top p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.visitor-comments {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comment-wp {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
}

.comment-wp .comment-area {
    width: 100%;
    max-width: 420px;
    height: 200px;
    background: #fff;
    padding: 24px;
    padding-right: 67px;
    display: flex;
    flex-direction: column;
    align-items: end;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    gap: 18px;
}

.comment-area p {
    color: #181818;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    max-width: 236px;
}

.comment-area ul {
    width: 236px;
}

.comment-area li {
    color: #174444;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 137.5%;
}

.comment-wp .quet-icon {
    position: absolute;
    left: 0;
    top: -2px;
}

.funeral-stream-slide {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #174444;
    width: 100%;
    gap: 40px;
}

.funeral-stream-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.funeral-stream-title h4 {
    color: #FFF;
    font-family: var(--playfair);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.funeral-stream-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.funeral-stream-top p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.funeral-stream-top p a {
    text-decoration: underline;
}

.funeral-stream-top p a:hover {
    color: var(--secondery-color);
}

.funarel-stream-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.funarel-stream-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.funarel-stream-video {
    height: 100%;
    position: relative;
}

.funarel-stream-video button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
}

.funeral-media-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 32px;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
}

.funarel-media-video {
    position: relative;
}

.funarel-media-video video {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.funarel-media-video button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.funeral-media-music {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.funeral-program-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #174444;
    padding: 32px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.funeral-program-slide::before {
    content: '';
    display: block;
    width: 157px;
    background: #147474;
    position: absolute;
    right: 0;
    height: 100%;
    z-index: -1;
    top: 0;
}

.funeral-program-wrapper {
    padding: 32px;
    border-radius: 32px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.funeral-program-wrapper h4 {
    color: #181818;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.funeral-program-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: decimal;
    padding-left: 20px;
}

.funeral-program-wrapper li {
    color: #181818;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.bible-scripture-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 32px;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    position: relative;
    z-index: 2;
}

.bible-single-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    border-radius: 16px;
    background: linear-gradient(180deg, #227676 0%, #174444 100%);
    color: #fff;
    gap: 16px;
}

.bible-single-card h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.bible-single-card p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.bible-ractangle {
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: -1;
}

.funeral-program-slide.funeral-slide-two::before {
    width: 100%;
    height: 65px;
    bottom: 0;
    top: unset;
}

.funeral-slide-two .funeral-program-wrapper {
    border-radius: 16px;
    background: linear-gradient(180deg, #227676 0%, #174444 100%);
}

.funeral-slide-two .funeral-program-wrapper * {
    color: #fff;
}

.magazine-page {
    display: flex;
}

.encourangement-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    padding: 32px;
    position: relative;
    z-index: 2;
}

.encourangement-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
    background: linear-gradient(180deg, #227676 0%, #174444 100%);
    padding: 32px;
    color: #fff;
}

.encourangement-content p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.encourangement-ractangle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
}

.poems-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #174444;
    width: 100%;
}

.poems-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 32px;
}

.encourangement-content li {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.thanks-note-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    padding: 32px;
}

.family-note-wrapper {
    padding: 50px 62px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border: 2px solid #fff;
    border-top-left-radius: 270px;
    border-top-right-radius: 270px;
}

.family-note-wrapper .slide-title {
    max-width: 313px;
}

.thanks-note-text p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 228.571%;
}

.florist-slide {
    display: flex;
    width: 100%;
    height: 100%;
    background: #174444;
    position: relative;
}

.florist-slide .florist-frame {
    width: 100%;
}

.florist-content {
    position: absolute;
    max-width: 357px;
    left: 127px;
    top: 270px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    right: 127px;
}

.send-flower-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    gap: 24px;
    padding: 32px;
}

.single-card-item .card-frame {
    width: 100%;
}

.single-card-item {
    position: relative;
}

.single-card-item .card-top {
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2;
}

.card-top .sent-to {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #181818;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}

.card-top .card-top-ractangle {
    max-width: 123px;
}

.card-inner-content .icon {
    width: 40px;
    height: 40px;
}

.card-inner-content .icon svg {
    width: 20px;
    height: 20px;
}

.card-inner-content .single-info-item span {
    color: #181818;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 156.25%;
}

.card-inner-content .wake-info-list {
    gap: 10px;
}

.card-inner-content {
    position: absolute;
    left: 100px;
    bottom: 36px;
}

.pallbearers-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    padding: 32px;
    gap: 40px;
    position: relative;
}

.pallbearers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pallbearers-top-card {
    padding: 32px;
    border-radius: 32px;
    border: 1.5px solid #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pallbearers-inner-top {
    display: flex;
    flex-direction: column;
}

.pallbearers-inner-top h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%;
    padding-bottom: 20px;
}

.pallbearers-inner-top .icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 8.333px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.addres .icon {
    background: #61D1FD;
}

.pallbearers-inner-top span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 137.5%;
}

.calander .icon {
    background: #5EB904;
}

.pallbearers-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.pallbearers-list h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%;
}

.pallbearers-list ul {
    list-style: decimal;
    padding-left: 20px;
    columns: 2;
}

.pallbearers-list ul li {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 156.25%;
}

.pallbearers-image img {
    border-radius: 32px;
    border: 1.5px solid #FFF;
    width: 100%;
    object-fit: cover;
    max-height: 300px;
}

.pallbearers-ractangle {
    position: absolute;
    right: 0;
    top: 0;
}

.follow-us-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.00) 69.99%, rgba(0, 0, 0, 0.20) 98.99%), #174444;
    padding: 32px;
    gap: 40px;
}

.our-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.our-social-list a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.our-social-list a:hover {
    background: var(--secondery-color);
}

.single-social-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.single-social-qr .qr-code {
    width: 202.932px;
    height: 208.73px;
    border-radius: 6.625px;
    border: 1.104px solid #E2EBFA;
    background: #FFF;
    padding: 10px;
}

.single-social-qr .qr-code img {
    width: 100%;
    height: 100%;
}

.single-social-qr h4 {
    color: #FFF;
    font-size: 24.131px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}

.social-media-qr-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

#Megazine {
    width: 100%;
    height: 842px;
    max-width: 1190px;
    margin: 0 auto;
    transition: 0.3s;
}

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

.hard-turn-page-js {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#Megazine.first-page-active {
    transform: translateX(-300px) !important;
}

