:root {
  --color-black: #000000;
  --color-dark: #171717;
  --color-dark-1: #101011;
  --color-white: #ffffff;
  --color-gray: #b2b2b2;
  --color-light-gray: #85878b;
  --color-text-default: #47494c;
  --color-text-heading: #171717;
  --color-accent-pink: #e3248b;
  --color-text-light: #f1e9ff;
  --color-gradient-start: #ee9dfb;
  --color-gradient-end: #8f9df8;
  --color-gradient-bg: linear-gradient(
    100.32deg,
    var(--color-gradient-start) 7.14%,
    var(--color-gradient-end) 67.49%
  );
  --color-gradient-bg-1: linear-gradient(
    100.32deg,
    var(--color-gradient-end) 7.14%,
    var(--color-gradient-start) 97.49%
  );
  --color-blue: #7687ea;
  --color-input-bg: #f3f3f3;
  /* Border */
  --color-border: #cccccc;
  --border-radius-20: 20px;
  --border-radius-30: 30px;
  --border-radius-50: 50%;
  /* Font Size */
  --font-size-base: 16px;
  --font-size-xs: 18px;
  --font-size-sm: 20px;
  --font-size-md: 26px;
  --font-size-lg: 36px;
  --font-size-lg-1: 38px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Fonts */
/* =======================
   Font: Manrope (Local)
   Path: /assets/fonts/manrope/
   ======================= */
/* *{
  border: 1px solid red;
} */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/Manrope-Regular.woff2") format("woff2"),
    url("../fonts/manrope/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/Manrope-Bold.woff2") format("woff2"),
    url("../fonts/manrope/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/Manrope-ExtraBold.woff2") format("woff2"),
    url("../fonts/manrope/Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===========
   Manrope Font Utilities
   =========== */
.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  color: var(--color-text-default);
}
.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.side-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out 0.2s;
}

.side-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.custom-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

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

.common-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

::selection {
  background: var(--color-gradient-start);
  color: #fff;
}

::-moz-selection {
  background: var(--color-gradient-start);
  color: #fff;
}

/* ====================== Custom Scrollbar Style ====================== */
::-webkit-scrollbar {
  width: 12px;
  background: var(--color-input-bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-gradient-bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gradient-bg-1);
}

::-webkit-scrollbar-track {
  background: var(--color-input-bg);
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gradient-start) var(--color-input-bg);
}
/* ====================== Button Style ====================== */
.btn {
  outline: none;
  border: none;
  font-weight: 600;
  border-radius: 100px;
  transition: 0.5s;
}

.btn-primary {
  background-image: var(--color-gradient-bg);
  color: var(--color-white);
  padding: 14px 48px;
  font-size: var(--font-size-xs);
  background-size: 200% auto;
}

.btn-sm {
  padding: 10px 35px;
}

.btn-primary:hover {
  background-position: right center;
  color: var(--color-white);
}

.btn-primary:active {
  background-position: left center;
  color: var(--color-white);
}

/* ==================== Style for the play button ==================== */
.play-btn {
  width: 65px;
  height: 65px;
  background: radial-gradient(
    var(--color-accent-pink) 60%,
    var(--color-white) 62%
  );
  border: 5px solid var(--color-accent-pink);
  border-radius: 50%;
  position: relative;
  display: block;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-35%) translateY(-50%);
  transform: translateX(-35%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #fff;
  z-index: 100;
}

/* ====================== Button Style ====================== */

/* ====================== Header Style ====================== */
.site-header {
  padding: clamp(10px, 1vw, 21px) 0;
  background-color: var(--color-white);
}
.brand-logo img.logo {
  height: clamp(50px, 5vw, 64px);
  width: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 50px;
  aspect-ratio: 1 / 1;
  background: var(--color-white);
  border-radius: var(--border-radius-50);
  border: 2px solid var(--color-blue);
  padding: 0 13px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.hamburger:hover {
  background: var(--color-gradient-bg);
  border: 0;
}

.hamburger span {
  height: 2px;
  width: 20px;
  background-color: var(--color-blue);
  display: block;
  border-radius: 2px;
}

.hamburger span:first-child {
  width: 13px;
  align-self: flex-start;
}

.hamburger span:last-child {
  width: 13px;
  align-self: flex-end;
}

.hamburger:hover span {
  background-color: var(--color-white);
  width: 20px;
}

/* ====================== Header Style ====================== */

/* ====================== Side Menu Style ====================== */
.side-menu-wrapper.active .hamburger {
  background-color: transparent;
  border: 2px solid var(--color-white);
}

.side-menu-wrapper.active .hamburger:hover {
  background: var(--color-white);
}

.side-menu-wrapper.active .hamburger span {
  width: 20px;
  border: 1px solid var(--color-white);
  position: relative;
  rotate: 45deg;
}

.side-menu-wrapper.active .hamburger span:first-child {
  left: 0;
  top: 3px;
}

.side-menu-wrapper.active .hamburger span:last-child {
  rotate: -45deg;
  top: -4px;
  left: -1px;
}

.side-menu-wrapper.active .hamburger:hover span {
  border: 1px solid var(--color-blue);
}

.side-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  max-width: 737px;
  bottom: 0;
  background: var(--color-gradient-bg);
  z-index: 9999;
  overflow: auto;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.side-menu-wrapper.active {
  width: 100%;
  padding: 0 clamp(30px, 5vw, 100px);
}

.pos-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.pos-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.pos-top-left img,
.pos-top-right img {
  width: clamp(250px, 20vw, 354px);
  height: auto;
}
.side-menu-inner-wrapper .pos-top-left {
  top: -10px;
  left: -50px;
}
.side-menu-header {
  display: flex;
  justify-content: end;
  padding: clamp(13px, 2vw, 28px) 0;
}

.slide-menu {
  margin-top: 50px;
}

.main-nav-list {
  min-height: calc(100vh - 330px);
}

.main-nav-list li,
.main-nav-list-2 li {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
}

.heading-element-star.active::before,
.heading-element-star:hover::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -22px;
  width: 31px;
  height: 33px;
  background-image: url("../images/star-white.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.heading-element-star-colorfull {
  position: relative;
}

.heading-element-star-colorfull::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 90px;
  height: 107px;
  background-image: url("../images/star-heading.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.heading-element-star-colorfull.small-star::before {
  width: 55px;
  height: 60px;
  top: -45px;
  left: -45px;
}
.main-nav-list li a {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  font-weight: 600;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
  transform-origin: center center;
}

.main-nav-list li a.active,
.main-nav-list li a:hover {
  opacity: 1;
}

.main-nav-list-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.main-nav-list-2 a {
  color: var(--color-white);
  font-size: var(--font-size-md);
  font-weight: 600;
  opacity: 0.6;
}
.main-nav-list li a.active,
.main-nav-list li a:hover,
.main-nav-list-2 li a.active,
.main-nav-list-2 li a:hover {
  opacity: 1;
}

/* ====================== Side Menu ====================== */
/* ====================== Banner Main Page Style ====================== */
.banner-main {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  padding: clamp(10px, 3vw, 80px);
  display: flex;
  align-items: center;
}

/* .banner-main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/banner-overlay.png") no-repeat;
  background-size: cover;
  z-index: -1;
} */
.full-hight {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

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

.banner-shape-bg {
  position: relative;
  z-index: 1;
  height: 620px;
  width: 626px;
  background-image: url("../images/shape-circle-1.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 85px;
  left: -70px;
}
.banner-shape-para{
  font-size: 21px;
  line-height: 32px;
  margin: 20px 0 30px;
}
.banner-shape-bg .shape-star {
  position: absolute;
  top: 90px;
  left: 0px;
  z-index: -1;
}

.banner-content-wrapper {
  max-width: 400px;
}

.banner-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-heading);
}

.para-font {
  margin: 10px 0 20px;
  font-size: 18px;
  line-height: 1.3;
}
.text-clamp-3 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.banner-shape-bg .play-btn-wrapper {
  position: absolute;
  bottom: 54px;
  right: -43px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1vw, 11px);
}
.play-btn-wrapper span.text-end {
  font-size: 18px;
}
.round-img-outer {
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -5%;
}
.round-img-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-row {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gap-100 {
  gap: clamp(30px, 3vw, 100px);
}

.heading-1 {
  font-size: 54px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--color-dark);
}

.heading-2 {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.3;
  color: var(--color-dark);
}

.heading-3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--color-dark);
}

.heading-4 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
}

.typo-sm {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.typo-lg {
  font-size: 22px;
  line-height: 1.5;
}

.typo-md {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.content-row {
  padding-right: 20%;
  position: relative;
  max-width: 60%;
}

.bubble-start-top {
  position: absolute;
  top: -280px;
  left: -18%;
  z-index: 0;
}

.img-fit {
  width: 100%;
  height: auto;
  transition: all 0.5s linear 0s;
}

.service-col {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-desc {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #3546b8b2;
  opacity: 0;
  transition: all 0.5s linear 0s;
}

.service-col:hover .img-fit {
  transform: scale(1.1);
}

.service-col:hover .service-desc {
  opacity: 1;
}

.service-desc .desc-btm {
  position: relative;
  top: 20px;
  transition: all 0.5s linear 0s;
}

.service-col:hover .service-desc .desc-btm {
  top: 0;
}

.row-star {
  position: absolute;
  right: 100px;
  top: -30px;
  background: url("../images/row-star.png") no-repeat;
  width: 286px;
  height: 307px;
  z-index: 1;
}

.typo-grey {
  font-size: 19px;
  color: var(--color-light-gray);
}

.dark-section {
  background: var(--color-black);
  padding: 150px 0;
}

.dark-section-1 {
  background: var(--color-dark-1);
  padding: 110px 0;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  /* initial 20% blank space */
  transition: margin-left 0.5s ease-in-out;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slider-image {
  border-radius: 20px;
  overflow: hidden;
}

.custom-slider .slick-slide {
  margin: 0 15px;
}

.custom-slider .slick-slider {
  padding: 90px 0;
}

.custom-slider .slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  z-index: 1;
  background: linear-gradient(90deg, #ee9dfb, #8f9df8);
}

.custom-slider .slick-prev,
.custom-slider .slick-next {
  top: initial;
  bottom: 0px;
}

.custom-slider .slick-next {
  right: 20px;
}

.custom-slider .slick-prev {
  left: initial;
  right: 80px;
}

.custom-slider .slick-prev:hover,
.custom-slider .slick-prev:focus,
.custom-slider .slick-next:hover,
.custom-slider .slick-next:focus {
  background: linear-gradient(90deg, #ee9dfb, #8f9df8);
}

.custom-slider .slick-dots {
  width: auto;
  bottom: 30px;
}

.custom-slider .slick-dots li button:before {
  font-size: 9px;
}

.custom-slider .slick-dots li {
  margin: 0;
}

.custom-slider .slick-dots li.slick-active button:before {
  color: var(--color-gradient-start);
}

.custom-slider .slick-prev:before,
.custom-slider .slick-next:before {
  content: "";
  width: 17px;
  height: 16px;
  display: inline-block;
  opacity: 1;
}

.custom-slider .slick-next:before {
  background: url("../images/arrow-next.svg") no-repeat;
}

.custom-slider .slick-prev:before {
  background: url("../images/arrow-prev.svg") no-repeat;
}

.bubble-start-top.pos-middle {
  transform: translateX(-50%);
  left: 50%;
  top: -240px;
}

.gradiant-wpr {
  background: var(--color-gradient-bg);
  padding: 100px 0;
}

.gradiant-wpr.grdnt-inverse {
  background: var(--color-gradient-bg-1);
}
.grad-error-msg {
  display: inline-block;
  padding: 3px 5px;
  border-radius: 15px;
  background: #ffe9e98c;
  font-size: 12px;
  margin-top: 5px;
}
.star-white-lg {
  width: 245px;
  height: 264px;
  background: url("../images/star-white-lg.png");
  position: absolute;
  right: 0;
  top: -133px;
}

.image-container {
  border-radius: 0 50px 50px 0;
  overflow: hidden;
  height: 582px;
  max-width: 695px;
}

.image-container img {
  width: 100%;
  height: 582px;
  max-height: 100%;
}


.service-content ul {
  list-style: none;
  padding: 0;
  font-size: 20px;
}

.service-content li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: clamp(5px, .5vw, 10px) 0;
  cursor: pointer;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  position: relative;
}

.service-content li::before {
  display: none;
}

.service-content li:hover::before,
.service-content li.active::before {
  display: block;
}

.service-content li:hover,
.service-content li.active {
  color: rgba(255, 255, 255, 1);
}

.promotion-video {
  width: 65%;
  border-radius: 80px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}

.promotion-video video {
  max-width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  border: none;
  /* padding: 12px 20px; */
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
}

.glass-btn-effect {
  background: radial-gradient(
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 1) 62%
  );
  backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 1);
  outline: 10px solid rgba(255, 255, 255, 0.3);
}

/* ====================== Banner Main Page Style ====================== */
/* ====================== Footer Style ====================== */
footer .row-star {
  left: 0;
  top: -154px;
}

.bubble-star {
  position: absolute;
  width: 412px;
  height: 415px;
  z-index: -1;
}

.bubble-star.pos-end {
  right: -60px;
  top: -50px;
}
.testimonial-bubble {
  top: -120px;
  left: 30px;
  opacity: 0.3;
  width: 300px;
  height: auto;
}
.rotate-180 {
  transform: rotateY(180deg);
}

.news-letter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}

.news-letter-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-heading);
  margin-bottom: 37px;
}

.input-rounded-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.input-rounded-wrapper .form-control {
  width: 100%;
  height: 60px;
  border: none;
  padding: 0 30px;
  font-size: var(--font-size-xs);
  color: var(--color-text-default);
}

.input-rounded-wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
}

.footer-social-bar {
  font-size: var(--font-size-xs);
}

.input-rounded-wrapper .btn-primary {
  padding: 18px 45px;
  white-space: nowrap;
}

.circle-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-50);
}

.icon-circle:hover svg path {
  fill: var(--color-white);
}

.icon-circle:hover {
  background-color: var(--color-blue);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
  font-size: var(--font-size-base);
}

.footer-bottom .footer-nav-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

/* ====================== Footer Style ====================== */
/* ====================== Ocassion Request ====================== */
.iti {
  display: block;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag:hover {
  background-color: transparent;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti__selected-flag {
  padding-left: 18px;
}

.no-resize {
  resize: none;
}

.event-title-box {
  max-width: 870px;
  display: inline-block;
}

.event-title-box .bubble-top-end {
  top: -180px;
  right: -180px;
}

.upload-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  border-radius: var(--border-radius-30);
}

.upload-img-border {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  border: 2px dashed var(--color-gradient-start);
}

.upload-img-wrapper input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-img-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px;
}

.grad-form-bg .form-control,
.grad-form-bg .form-select {
  border: 0;
  background-color: var(--color-input-bg);
  border-radius: var(--border-radius-30);
  padding: 18px 22px;
  font-size: 14px;
}

.testimonial-section {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.testimonial-slide .source-logo img {
  height: 20px;
  width: auto;
  margin: 0 auto;
}
.testimonial-author .author-img-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.testimonial-author .author-title {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  color: var(--color-gradient-start);
}
.testimonial-author .author-role {
  font-size: 16px;
  margin-top: 8px;
  color: var(--color-white);
}
.testimonial-text {
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  margin: 32px 0;
}
.ocassion-modal {
  max-width: 783px;
}
.ocassion-modal .modal-content {
  padding: 60px;
}
.ocassion-modal .modal-label {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px;
}
.ocassion-modal .modal-text {
  font-size: 21px;
  margin-bottom: 40px;
}
.ocassion-modal figure img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.process-wrapper {
  position: relative;
  justify-content: center;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  top: 230px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  z-index: 1;
}

.process-step {
  position: relative;
  margin: 0 15px;
  text-align: center;
  color: var(--color-white);
}
.process-step .process-title{
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.process-step .process-desc{
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.5;
}

.process-step .img-outer-box{
  height: 204px;
  width: 204px;
  border-radius: 16px;
  margin: 0 auto;
}
.process-step .img-outer-box img {
  object-fit: cover;
  height: 100%;
}

.process-step .dot {
  width: 15px;
  height: 15px;
  background: white;
  border: 5px solid transparent;
  border-radius: 50%;
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
}

/* ====================== Ocassion Request ====================== */
/* ====================== Contact US Style ====================== */

.space-push {
  height: 120px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  top: 20px;
  z-index: 1;
}

.contact-list li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
}

.icon-email::before,
.icon-phone::before,
.icon-location::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
}

.icon-email::before {
  background: url("../images/icon-email.svg") no-repeat;
  width: 22px;
  height: 18px;
}

.icon-phone::before {
  background: url("../images/icon-phone.svg") no-repeat;
  width: 20px;
  height: 20px;
}

.icon-location::before {
  background: url("../images/icon-location.svg") no-repeat;
  width: 18px;
  height: 21px;
}

.typo-light1 {
  /* font-size: clamp(1rem, 0.8864rem + 0.5682vw, 1.3125rem); */
  font-size: 21px;
  color: var(--color-dark);
}

.typo-light2 {
  font-size: 16px;
  color: var(--color-text-default);
}

a.typo-light2:hover {
  color: var(--color-gradient-end);
}

.map-wpr {
  border-radius: 40px 0 40px 40px;
  overflow: hidden;
  position: relative;
  margin-top: -50px;
  padding: 15px;
}

.form-outer {
  border-radius: 25px;
  padding: 50px;
  background: #fff;
  width: 48%;
  position: relative;
}

.custom-input {
  background: #f3f3f3;
  border-radius: 30px;
  font-size: 16px;
  padding: 20px 25px;
  border-color: #f3f3f3;
}

.custom-input::placeholder {
  color: #949494;
}

textarea.custom-input {
  min-height: 150px;
  resize: none;
}

.map-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 80px;
  background: #fff;
  border-radius: 0 0 0 30px;
}

.shapeLeft,
.shapeRight {
  position: absolute;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.shapeLeft {
  left: -40px;
  top: 0;
}

.shapeRight {
  right: 0px;
  bottom: -40px;
}

.shapeLeft::before,
.shapeRight::before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: 40px -40px 0 0 #fff;
}

.map-row {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.star-double {
  position: absolute;
  right: 20px;
  top: -30px;
  width: 118px;
  height: 121px;
  background: url("../images/star-double.svg") no-repeat;
  z-index: 1;
}

.lh-2 {
  line-height: 1.7;
}

/* ====================== Contact US Style ====================== */

/* ====================== About US Style ====================== */
.about-us-banner {
  position: relative;
}
.about-us-banner .bubble-star {
  top: -160px;
  right: -100px;
  z-index: -1;
}
.banner-shape-1 {
  width: 543px;
  height: 452px;
  clip-path: path(
    "M543 288.188C543 418.199 375.658 452 247.559 452C119.46 452 0 404.815 0 274.804C0 163.181 102.57 164.782 171.152 118.631C236.669 74.5426 248.64 0 354.02 0C482.119 0 543 158.176 543 288.188Z"
  );
  /* Fallback for browsers without path() support */
  -webkit-clip-path: path(
    "M543 288.188C543 418.199 375.658 452 247.559 452C119.46 452 0 404.815 0 274.804C0 163.181 102.57 164.782 171.152 118.631C236.669 74.5426 248.64 0 354.02 0C482.119 0 543 158.176 543 288.188Z"
  );
  background-color: rgb(221, 221, 221);
}
.banner-shape-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-body {
  padding-top: 24px;
}

.team-card-title {
  font-size: 26px;
  font-weight: 700;
}

.team-card-subtitle {
  font-size: 18px;
  color: var(--color-blue);
  font-weight: 500;
  margin-top: 5px;
}

.team-card-text {
  margin-top: 8px;
}

.team-card-social-bar {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.team-card-social-bar .social-icon {
  width: 30px;
  height: 30px;
}

.team-card-social-bar .social-icon img {
  height: 100%;
  width: auto;
  border: 1px solid transparent;
  padding: 3px;
  transition: all 0.3s ease;
}

.team-card-social-bar .social-icon:hover img {
  border: 1px solid var(--color-dark);
  border-radius: 3px;
}

.timeline-dark-bg {
  padding: 100px 120px;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
}
.timeline-dark-bg .row-star {
  left: 20px;
  right: auto;
  top: -100px;
}

.timeline-img-box {
  border-radius: var(--border-radius-20);
  overflow: hidden;
}

/* Timeline slider */
.timeline {
  width: 100%;
  position: relative;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
}

.timeline-nav {
  position: relative;
  margin-top: 70px;
}

.timeline-nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--color-gradient-bg);
  top: 7px;
  z-index: 1;
}

.timeline-nav__item {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 0.7;
  background: transparent;
  color: var(--color-gray);
  margin: 15px 25px !important;
  position: relative;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.timeline-nav__item::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-gray);
  transition: 0.2s;
}

.timeline-nav__item.slick-current {
  background-image: var(--color-gradient-bg);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
  font-weight: 700;
}

.timeline-nav__item.slick-current::before {
  background: var(--color-gradient-bg);
}
/* ====================== About US Style ====================== */
/* ====================== Success Payment Style ====================== */
.payment-success-box {
  background: url("../images/vector-bg-1.png") no-repeat;
  min-height: 514px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-content {
  max-width: 600px;
  margin-left: -110px;
  text-align: center;
}
.payment-status-title {
  font-size: 52px;
  color: var(--color-text-heading);
  font-weight: 800;
}
.payment-status-description {
  font-size: 21px;
  font-weight: 500;
  color: var(--color-text-heading);
  margin: 17px 0;
}
.payment-success-icon {
  margin-bottom: 40px;
}

/* ====================== Success Payment Style ====================== */
.zIndex {
  position: relative;
  z-index: 1;
}
.banner-curve {
  position: relative;
}
.img-absolute {
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
}
.heading-icon {
  position: relative;
}

.heading-icon::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -50px;
  width: 99px;
  height: 107px;
  background: url("../images/star-heading.svg") no-repeat;
  background-size: contain;
}
.pos-right {
  right: -50px;
  top: -100px;
}

.list-counter li::marker {
  color: var(--color-black);
  font-weight: bold;
  font-size: 21px;
}