/* fonts */
@font-face {
    font-family: "Playfair Display SemiBold";
    src: url("../fonts/PlayfairDisplay-SemiBold.woff2") format("woff2"),
        url("../fonts/PlayfairDisplay-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display Bold";
    src: url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2"),
        url("../fonts/PlayfairDisplay-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Medium";
    src: url("../fonts/Inter18pt-Medium.woff2") format("woff2"),
        url("../fonts/Inter18pt-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Regular";
    src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"),
        url("../fonts/Inter18pt-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Light";
    src: url("../fonts/Inter18pt-Light.woff2") format("woff2"),
        url("../fonts/Inter18pt-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* root style */
body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "Inter Regular";
    color: var(--black);
    background: var(--white);
    line-height: 1.2;
}

* {
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box !important;
}

:root {
    --black: #000000;
    --white: #fff;
    --Lightink: #ffeef3;
}

.pinktext {
    background: linear-gradient(to right, #f7799d 0%, #ea2a5d 100%);
}

.interlight {
    font-family: "Inter Light";
}

.intermedium {
    font-family: "Inter Medium";
}

.pf_bold {
    font-family: "Playfair Display Bold";
}

.pf_smbold {
    font-family: "Playfair Display SemiBold";
}

.post, .page {
    margin-bottom: 0 !important;
}

h1,
.h1 {
    font-size: clamp(40px, 3.65vw, 70px);
}

h2,
.h2 {
    font-size: clamp(30px, 2.08vw, 40px);
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 16px;
}

p,
.p {
    font-size: 18px;
}

a,
span,
i {
    display: inline-block;
}

a:hover {
    color: var(--black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
}

.d_inline_block {
    display: inline-block;
}

.d_block {
    display: block;
}

.row {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.h-100 {
    height: 100%;
}

li {
    list-style: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: start;
}

.textleft {
    text-align: left;
}

.position-relative {
    position: relative;
}

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

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

::selection {
    background: #e7547b;
    color: #fff;
}

::-webkit-selection {
    background: #e7547b;
    color: #fff;
}

::-moz-selection {
    background: #e7547b;
    color: #fff;
}

.container {
    max-width: 1585px;
    margin: 0 auto;
    padding: 0 15px;
}

.sec-padding {
    padding: 120px 0;
}

.pt_120 {
    padding-top: 120px;
}

.pb_120 {
    padding-bottom: 120px;
}

.pb_80 {
    padding-bottom: 80px;
}

.pt_80 {
    padding-top: 80px;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.site-title {
    display: none;
}

header {
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    left: 0;
    background: var(--white);
    will-change: top;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header .navbar {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 30px;
}

.menu {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.menu-item {
    margin: 0 20px;
}

.menu-item a {
    display: inline-block;
    color: var(--black);
    font-size: 18px;
    font-family: "Inter Regular";
}

header .main-navigation {
    width: auto;
}

.site-header.scrolled {
    /* top: 20px; */
}

.site-branding {
    width: 10rem;
    display: inline-flex;
}

.site-branding a img {
    width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.main-navigation.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
    -webkit-transform: rotate(45deg) translate(6px, 5px);
    -moz-transform: rotate(45deg) translate(6px, 5px);
    -ms-transform: rotate(45deg) translate(6px, 5px);
    -o-transform: rotate(45deg) translate(6px, 5px);
}

.main-navigation.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.main-navigation.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
    -webkit-transform: rotate(-45deg) translate(6px, -5px);
    -moz-transform: rotate(-45deg) translate(6px, -5px);
    -ms-transform: rotate(-45deg) translate(6px, -5px);
    -o-transform: rotate(-45deg) translate(6px, -5px);
}

.primary-btn {
    font-size: 18px;
    padding: 15px 24px;
    font-family: "Inter Regular";
    color: var(--white);
    background: linear-gradient(180deg, #f7799d 0%, #ea2a5d 100%);
    border: none;
    max-width: fit-content;
    display: inline-block;
    cursor: pointer;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

header .menu-item.contactus-menu-item {
    display: none;
}

.primary-btn:hover,
header .menu-item.contactus-menu-item a:hover {
    color: var(--white);
}

/* homepage */
.mt_cover {
    margin-top: 112px;
}

.homepage.hero-section {
    background-color: #fdefe3;
    min-height: calc(100vh - 112px);
    overflow: hidden;
    padding: 84px 0 200px;
    position: relative;
    z-index: 1;
}

.homepage.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://kvezalhealthcare.com/morphic-weds/wp-content/uploads/2025/09/hero-bg-img-1.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    z-index: -1;
}

.heroheading {
    text-align: center;
}

.subtitle {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroheading h1 {
    margin: 8px 0 0;
    font-family: "Playfair Display Bold";
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.herobannervideo {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -2;
    aspect-ratio: 1108 / 580;
    max-width: 1108px;
    width: 100%;
    max-height: 580px;
}

.herobannervideo video {
    width: 100%;
    height: 100%;
}

/* footer */
footer {
    position: relative;
    padding: 60px 0 0;
    z-index: 2;
}

.papertheme {
    background-color: var(--Lightink);
    background-image: url("https://kvezalhealthcare.com/morphic-weds/wp-content/uploads/2025/09/paperthemeimg.webp");
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.titlefooter {
    background: linear-gradient(to right, #f7799d 0%, #ea2a5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: clamp(32px, 2.71vw, 52px);
    font-family: "Playfair Display SemiBold";
    margin: 0;
    text-align: start;
}

.wpcf7-not-valid-tip {
    font-size: 16px;
    margin-top: 12px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 18px;
    padding: 0;
    border: none;
}

.wpcf7-form .group-column p {
    display: contents;
}

.wpcf7-form .hidden-fields-container {
    display: none;
}

.form-group.last {
    grid-column: 1 / -1 !important;
}

.footerright .form-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footerright .group-column {
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group .form-input {
    border-top: 0;
    border-right: 0;
    border-left: 0;
}

.form-group .form-input,
textarea {
    border-bottom: 1px solid #dadada;
    padding: 14px 0;
    font-size: 18px;
    color: var(--black);
    background: transparent;
    font-family: "Inter Regular";
    max-width: 100%;
    width: 100%;
}

textarea {
    min-width: 100%;
    max-height: 60px;
}

.form-group .form-input::placeholder,
textarea::placeholder {
    color: var(--black);
    font-size: 18px;
}

.form-group .form-input:focus-visible,
textarea:focus-visible {
    outline: none;
}

label {
    font-size: 18px;
    font-family: "Inter Light";
}

.contact_btn .primary-btn {
    font-size: 18px;
    padding: 15px 24px;
    font-family: "Inter Regular";
    color: var(--white);
    background: linear-gradient(180deg, #f7799d 0%, #ea2a5d 100%);
    border: none;
    max-width: fit-content;
    display: inline-block;
    cursor: pointer;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.footerright .group-column.contact_btn {
    display: block;
    margin: 0;
}

.footerleft {
    font-family: "Inter Light";
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 40px;
}

.gap32 {
    gap: 32px;
}

.innercallemail {
    display: inline-flex;
    max-width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7d7d7;
    border-radius: 50px;
    padding: 12px 24px;
}

.call_email {
    display: flex;
    gap: 20px;
}

.footersocialicons {
    display: flex;
    gap: 20px;
}

.circleicon {
    width: 60px;
    height: 60px;
    border: 1px solid #d7d7d7;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footerbg {
    position: absolute;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    z-index: -1;
    text-align: center;
    margin: 0 auto;
}

.copyright p {
    font-family: "Inter Light";
    margin: 32px 0;
}

.footerbottom {
    padding: 80px 0 250px;
}

.bordercover {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}

.footermenu .menu {
    display: flex;
    align-items: center;
}

/* end */
.secheading h2 {
    background: linear-gradient(to right, #f7799d 0%, #ea2a5d 100%);
    font-family: "Playfair Display SemiBold";
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 40px;
}

.secheading {
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 80px;
}

.serviceitem h3 {
    font-family: "Playfair Display Bold";
    margin: 40px 0 0;
}

.serviceimg {
    aspect-ratio: 376/450;
    border-radius: 200px 200px 0 0;
    object-fit: cover;
    object-position: top;
    -webkit-border-radius: 200px 200px 0 0;
    -moz-border-radius: 200px 200px 0 0;
    -ms-border-radius: 200px 200px 0 0;
    -o-border-radius: 200px 200px 0 0;

}

.imagecover {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.serviceitem:hover .imagecover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.imagecover {
    overflow: hidden;
}

.services-grid-wrapper {
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 32px;
    text-align: center;
}

/* .serviceitem {
    flex: 19%;
} */

.counting-item h3 {
    background: linear-gradient(to right, #f7799d 0%, #ea2a5d 100%);
    font-family: "Playfair Display SemiBold";
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.aboutusleft {
    /* max-width: calc(100% - 240px); */
}

.counting-item h4 {
    font-weight: normal;
}

.counting-item {
    min-width: 185px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.counternumber {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.aboutus .secheading {
    margin: 0;
    text-align: start;
    max-width: 100%;
}

.aboutus_img {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    aspect-ratio: 640/640;
    height: 100%;
    max-width: 640px;
    object-fit: cover;
}

.aboutus .row {
    gap: 240px;
    align-items: center;
}

/* .aboutusleft {
    max-width: calc(100% - 640px);
} */
.whychoosegrid {
    align-items: center;
    text-align: center;
    gap: 32px;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.whychooseitem {
    width: 100%;
    max-width: 22%;
    min-height: 308px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
}

img.chooseimg {
    margin: 0 auto;
    text-align: center;
}

.whychooseitem h3 {
    margin: 40px 0 20px;
}

.weddinginvitation-video {
    background: var(--white);
}

.weddinginvitation-video video {
    display: block;
}

.videowrapper {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.accordion-item {
    cursor: pointer;
    position: relative;
    margin: 0 0 30px;
}

.accordion-button {
    font-size: 18px;
    font-family: "Inter Medium";
    color: var(--black);
    background-color: transparent;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 20px 0 30px;
    border-bottom: 1px solid #f0f0f0;
    border-right: 0;
    border-left: 0;
}

.accordion-button::after {
    content: "+";
    margin-left: auto;
    font-size: 25px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 50%;
    background: linear-gradient(to right, #f7799d 0%, #ea2a5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.accordion-item.active .accordion-button::after {
    content: "-";
}

.accordion-collapse {
    cursor: auto;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
}

.collapse {
    opacity: 0;
}

.faqs .accordion-item .accordion-collapse p {
    padding: 20px 0 0;
    text-align: start;
    font-family: "Inter Light";
    font-weight: normal;
}

.faqs .accordion-item:last-child {
    margin-bottom: 0;
}

.faqs .secheading {
    max-width: 100%;
    text-align: start;
}

.accordion-button:hover,
.accordion-item.active .accordion-button {
    border-bottom: 1px solid #f0f0f0;
    border-right: 0;
    border-left: 0;
}

.parentslider {
    overflow: hidden;
}

.swiper.TestimonialSlider {
    overflow: visible;
    padding-bottom: 135px;
}

.testimonialimg {
    border-radius: 40px;
    aspect-ratio: 512 / 354;
    max-height: 354px;
    object-fit: cover;
    object-position: top;
}

.content-item h3 {
    font-weight: normal;
    font-family: "Inter Regular";
    margin: 0 0 40px;
}

.authorimg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.authorinfo h4 {
    margin: 8px 0;
    text-transform: capitalize;
    font-weight: normal;
}

.TestimonialSlider .swiper-slide {
    max-width: 70rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
}

.content-item {
    flex: 1;
}

.testimonial-sec {
    position: relative;
}

.vector {
    position: absolute;
}

.vector.top {
    top: 0;
    left: 0;
}

.vector.bottom {
    bottom: 0;
    right: 0;
}

.TestimonialSlider .swiper-pagination {
    bottom: 20px;
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev {
    border: 1px solid #d7d7d7;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    bottom: 0;
    top: auto;
    color: #ea2a5d;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 14px;
}

.swiper-horizontal .swiper-button-next {
    right: 40%;
}

.swiper-horizontal .swiper-button-prev {
    left: 40%;
}

.swiper-horizontal .swiper-pagination-bullet {
    background: #000000;
}

.swiper-horizontal .swiper-pagination-bullet-active {
    width: 12px;
    border-radius: 10px;
}

.OurWorkSlider {
    overflow: visible;
}

.ourworksliderwrap {
    position: relative;
}

.OurWorkSlider {
    position: relative;
}

.ourworksliderwrap .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ourworksliderwrap .swiper-slide img {
    object-fit: cover;
    transition: all 0.3s ease;
}

.mobileframe img {
    display: block;
    width: 100%;
    height: auto;
}

.ourworkimg {
    aspect-ratio: 422/700;
}

.OurWorkSlider .ourworkimg img {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.OurWorkSlider .swiper-pagination {
    bottom: 0;
}

.OurWorkSlider .swiper-wrapper {
    padding-bottom: 64px;
}

/* .OurWorkSlider .swiper-slide.swiper-slide-next {
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.OurWorkSlider .swiper-slide.swiper-slide-prev {
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    -webkit-transition: transform 0.4s ease, opacity 0.4s ease;
    -moz-transition: transform 0.4s ease, opacity 0.4s ease;
    -ms-transition: transform 0.4s ease, opacity 0.4s ease;
    -o-transition: transform 0.4s ease, opacity 0.4s ease;
}

.OurWorkSlider .swiper-slide {
    transform: scale(0.8);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.OurWorkSlider .swiper-slide.is-active {
    transform: scale(0.9);
    z-index: 2;
    width: 375px;
    height: 775px;
}

.ourworksliderwrap .mobileframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 375px;
    height: 775px;
    pointer-events: none;
    z-index: 1;
} */
a:focus-visible,
a:focus {
    outline: none;
}

video.no-controls::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

video.no-controls::-webkit-media-controls-enclosure {
    display: none !important;
}

a:hover, a:focus, a:active {
    color: var(--black);
}

a.serviceitem:hover {
    color: var(--black);
}

.footersocialicons img {
    max-width: 16px;
    max-height: 16px;
}

.topimg {
    object-position: 100%;
}