:root {
  --primary-color: #9f0235;
  --primary-light-color: #ec003f;
  --primary-dark-color: #4d0218;
  --bg-color: #fffbfb;
  --body-color: #fff1f2;
}

.heading-color {
  color: var(--bs-heading-color);
}

.text-color {
  color: var(--bs-text-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--bs-text-color);
  background: var(--body-color);
  transition: 0.35s;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
}

a {
  text-decoration: none !important;
  transition: 0.5s all ease-in-out;
}

.slow-effect {
  transition: 0.5s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geist", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #71717a;
}

img {
  max-width: 100%;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  transition: 0.5s all ease-in-out;
  font-family: "Geist", sans-serif;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-40 {
  font-size: 26px;
}

.fs-17 {
  font-size: 17px;
}

.common-heading {
  color: var(--bs-heading-color);
}

.z_index1 {
  z-index: 1;
}

.text-color {
  color: var(--primary-color);
}

/***   Header Section ***/
.header-section {
	padding: 20px 0;
	transition: 0.5s all ease-in-out;
}
.header-section.sticky {
	padding: 10px 0;
	position: fixed;
	top: -2px;
	background: #fff1f2;
	z-index: 9;
	box-shadow: 1px 1px 19px -17px #000;
	width: 100%;
}
.header-logo {
	height: 37px;
	transition: 0.5s all ease-in-out;
}
.header-nav {
  padding: 0;
}
.header-logo .navbar-brand {
  max-width: 210px;
}
.offcanvas-start {
  width: 250px;
}
.header-navbar {
	gap: 0 15px;
}
.menus-links {
  font-family: "Open Sans", sans-serif;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 400;
}
.popup-link {
	background: var(--primary-light-color);
	color: #fff;
	border-radius: 100px;
	padding: 9px 12px;
	font-size: 14px;
}
.popup-link:hover {
  background: var(--primary-color);
  color: #fff;
}
.btn.nav-link.popup-link:focus {
	color: #fff;
}
.nav-link.menus-links:focus,
.nav-link.menus-links:hover {
  color: var(--primary-light-color);
}
.dropdown-item:hover {
  padding-left: 12px;
  color: var(--primary-light-color);
  background: #24a2f7;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  display: block !important;
  pointer-events: none;
  padding: 0;
  border: none;
  border-radius: 3px;
  overflow: hidden;
}
/* Animate show */
.dropdown-menu.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.header-offcanvas-menus {
  background: #fff;
}
.navbar-toggler.header-toggle-btn {
  background: #fff;
  border: none;
}
.navbar-toggler.header-toggle-btn:focus {
  box-shadow: none;
}
/*** Popup ***/
.modal-body.contact-form-body {
  padding: 30px;
}
.section-heading.popup-heading {
	margin-bottom: 20px;
}
.modal-content.contact-modal {
  border-radius: 15px;
}
.popup-btn-close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 16px;
  z-index: 2;
  background: #fff;
  border: 1px solid #ffd1d6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  opacity: 1;
  color: var(--primary-light-color);
}
.popup-btn-close:hover {
  background: var(--primary-light-color);
  color: #fff;
  border: 1px solid var(--primary-light-color);
}
.contact-modal .btn-close:focus {
  box-shadow: none;
}
.email-input {
  border: 1px solid #ffd1d6;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 10px;
  color: var(--primary-dark-color);
}
.email-input::placeholder {
  color: #efa0a8;
}
.agree-box {
	margin: 20px 0 30px;
	cursor: pointer;
	flex-wrap: wrap;
}
.agree-label {
  color: var(--primary-color);
}
.agree-label span {
	cursor: pointer;
	font-size: 14px;
}

.popup-footer-text {
  color: var(--primary-color);
  margin: 0;
  border: 1px solid #ffd1d6;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  background: #fdf2f7;
  font-size: 14px;
}
.modal-backdrop.fade.show {
  background: rgba(145, 1, 52, 0.33);
  opacity: 1;
  backdrop-filter: blur(9px);
}

/*==================== Banner Section =========*/
.banner-section {
  padding-top: 30px;
}
.banner-label {
  border: 1px solid #ffe0e4;
  border-radius: 100px;
  padding: 3px 20px;
  background: #fff;
  width: fit-content;
}
.label-dot-shape {
  width: 10px;
  min-width: 10px;
  height: 10px;
  background: #ff2257;
  border-radius: 50%;
}
.banner-heading {
  font-size: 30px;
  color: var(--primary-dark-color);
  margin-top: 10px;
}
.banner-gradient {
  background: linear-gradient(to right, #ec0044 0%, #cd09d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-button {
  margin: 30px 0;
}
.common-btn {
  padding: 10px 19px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.5s all ease-in-out;
}
.outer-btn {
  background: #fff;
  border: 1px solid #ffaeb8;
  color: var(--primary-color);
}
.outer-btn:hover {
  background: var(--primary-color);
  color: #fff;
}
.fill-btn {
	background: var(--primary-light-color);
	color: #fff;
	box-shadow: 1px 10px 23px -10px #ec003f78;
}
.fill-btn:hover {
	background: var(--primary-color);
	color: #fff;
	box-shadow: none;
}
.common-stor-btn a {
  border: 1px solid #ffaeb8;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 8px -5px #000;
  padding: 5px 10px;
  display: flex;
  width: max-content;
  gap: 10px;
}
.common-stor-btn svg {
  width: 45px;
  background: var(--body-color);
  border-radius: 8px;
  fill: var(--primary-color);
}
.store-mini-title {
  color: var(--primary-light-color);
  font-size: 11px;
  font-weight: 500;
}
.store-bold-title {
  color: var(--primary-color);
}
.star-icon,
.safety-icon {
  width: 20px;
  fill: var(--primary-color);
}
.mail-link {
  color: #ec0044;
  font-weight: 600;
  display: block;
  border-top: 1px solid #e39ca2;
  padding-top: 10px;
  margin-top: 23px;
  width: max-content;
  background: #fff;
  padding: 10px;
  box-shadow: 1px 1px 14px -6px #c1c1c1;
  border-radius: 5px;
}
.social-media a {
  margin-right: 10px;
}
.social-media a svg {
  transition: 0.5s all ease-in-out;
}
.social-media a svg:hover {
  transform: scale(1.1);
}
.facebook-icon svg {
  fill: #0762f7;
}
.twitter-icon svg {
  fill: #1c96e8;
}
.banner-image {
  margin-top: 30px;
}

/*=================== Made Section  ==============*/
.section-padding {
  padding: 60px 0 0;
}
.section-heading {
  margin-bottom: 40px;
}
.heading-color {
  color: var(--primary-dark-color);
}
.made-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #ffaeb8;
  box-shadow: 0px 1px 20px -12px #000;
  height: 100%;
}
.made-box:hover {
  background: #ffe3e5;
  box-shadow: none;
  transform: translateY(-10px);
}
.box-icon {
  background: #ffe3e5;
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.made-box:hover .box-icon svg {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.made-box:hover .box-icon {
  background: #fff;
}
.svg-inner-icon {
	width: 24px;
	fill: var(--primary-color);
}
.box-title {
	font-size: 20px;
}
.made-box:hover .box-title {
  color: var(--primary-light-color);
}
.made-box:hover .made-text {
  color: #000;
}

/*=================== Sugaryy Work Section  ==============*/
.count-number {
	background: linear-gradient(to right, #ec0044 0%, #cd09d7 100%);
	font-size: 20px;
	font-weight: 600;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: absolute;
	top: -17px;
	left: 18px;
	transition: 0.5s all ease-in-out;
}
.work-box:hover .count-number {
  transform: rotateY(360deg); 
  border-radius: 10px;
}

/*=================== stories Section  ==============*/
.stories-box:hover {
  background: #bf144c;
}
.heart-icon {
	fill: var(--primary-light-color);
	width: 22px;
	transition: 0.5s all ease-in-out;
	position: relative;
	top: -2px;
}
.stories-box:hover .heart-icon {
  transform: rotateY(360deg) scale(1.1);
  fill: #fff;
}
.story-title {
  color: var(--primary-light-color);
}

.stories-box:hover .story-title,
.stories-box:hover .made-text {
  color: #fff;
}
.star-box-icon {
	width: 18px;
	fill: var(--primary-light-color);
	color: var(--primary-light-color);
}

/*** Faqs Section ****/
.faq-section {
  padding: 60px 0;
}
.faqs-heading p {
  max-width: 480px;
  margin: 0 auto;
}
.faq-items {
  border: 0.5px solid #bee5ff;
  padding: 0;
  border-radius: 13px;
  background: #fff;
  margin-bottom: 10px;
  border: 1px solid #ffcad1;
}
.accordion-item:not(:first-of-type) {
  border: 0.5px solid #fff;
}
.accordion-item:first-of-type {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
}
.accordion-button.faq-btn::after {
  filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(7461%) hue-rotate(1deg) brightness(103%) contrast(108%)
}
.faq-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 18px 20px;
  background: transparent;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--primary-dark-color);
}
.accordion-body.faqs-body {
  padding: 0 20px 18px 20px;
}
.accordion-body.faqs-body p {
  font-size: 16px;
  margin: 0;
}

/*=========== footer section ========*/
.footer-section {
  background: var(--bg-color);
  border-top: 1px solid #ffcad1;
  padding: 20px 0;
}
.copyright-text {
  color: var(--primary-color);
  margin-top: 30px;
} 
.updownAnimation {
  animation: up_down 4s linear infinite alternate;
}
@keyframes up_down {
  0% {
    transform: translate(0%, 0);
  }

  50% {
    transform: translate(0%, 12px);
  }

  100% {
    transform: translate(0%, 0);
  }
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ---------Blog Page---------- */
 .blog-section {
   padding-top: 50px;
   padding-bottom: 50px;
 }
 .search-input:focus{
    border-color:#ffaeb8;
    box-shadow: 0 0 0 .25rem rgba(255, 174, 184, .25);
  }
 .blog-section .blog-grid{
    border-color:#ffaeb8;
    border-radius: 14px;
    border: 1px solid #ffaeb8;
    box-shadow: 0px 1px 20px -12px #000; 
    overflow: hidden;
    font-size: 14px;
  }
.blog-section .blog-grid p{
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    } 
 .pink-text {
    color: #ec003f;
 }
 .search-container {
    position: relative;
 }
 .search-input {
   height: 50px;
   border-radius: 30px;
   padding-left: 45px;
   border: none;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }
 .search-icon {
   position: absolute;
   top: 50%;
   left: 15px;
   transform: translateY(-50%);
   color: #888;
 }
 .blog-img {
   background-size: cover;
   background-position: center;
   width: 100%;
   min-height: 200px;
 }
 .pagination-wrapper .active>.page-link,
 .pagination-wrapper .page-link.active {
   background-color: #ec003f;
   border-color: #ec003f;
   color: #fff;
 }
 .pagination-wrapper .page-link {
   color: #ec003f;
 }
 .pagination-wrapper .disabled>.page-link,
 .pagination-wrapper .page-link.disabled {
   color: rgba(33, 37, 41, 0.75);
 }
.blog-detail-img {
      background-size: cover;
      background-position: center;
      width: 100%;
      min-height: 300px; 
      margin-bottom: 30px;
      border-radius: 14px;
  }
.agree-box p {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
	margin: 0;
}
.agree-label .wpcf7-list-item {
	margin: 0;
}
  .agree-box .wpcf7-spinner { 
	position: absolute;
	bottom: -25px;
	right: 22px;
}
.notify-btn {
	background: var(--primary-light-color) !important;
	color: #fff !important;
	opacity: 1 !important;
	border: none !important;
	font-size: 14px;
}
.notify-btn:hover {
	background: var(--primary-color) !important;
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 10px;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.mobile-bottom-nav .mb-nav-item {
  text-align: center;
  flex: 1;
  color: #444;
  font-size: 12px;
  text-decoration: none;
  display: grid;
  gap: 5px;
}
.mobile-bottom-nav .mb-nav-item i {
  font-size: 22px;
  display: block;
  margin-bottom: 3px;
}
.mobile-bottom-nav a.active {
    color: #ff3e6c !important;
}
.mobile-nav-icon {
	margin: 0 auto;
	height: 20px;
}
@media (max-width:375px) {
.banner-button .btn {
	width: 100%;
}
.common-stor-btn a { 
	width: 100%;
	text-align: center;
	justify-content: center;
}
}
@media (max-width:419px) {
.agree-box p {  
	flex-wrap: wrap;
	gap: 13px;
}
.agree-box .wpcf7-spinner {
	position: absolute;
	bottom: 7px;
	left: 91px;
}
}
@media (min-width:420px) {
.agree-box .wpcf7-spinner {
	position: absolute;
	bottom: 8px;
	right: 15px;
}
.header-logo {
	height: 45px;
	transition: 0.5s all ease-in-out;
}
}
@media (min-width: 576px) {
  .popup-link { 
	padding: 9px 20px;
	font-size: 16px;
}
  .banner-heading {
    font-size: 40px;
  }

}
@media (min-width: 768px) {
  .fs-40 {
    font-size: 30px;
  }
  .header-logo {
	height: 50px; 
}
.header-section.sticky .header-logo {
	height: 42px;
}
  .banner-heading {
    font-size: 45px;
  }
  .section-padding {
    padding: 90px 0 0;
  }
  .faq-section {
    padding: 90px 0;
  }
  /*** Faqs Section ****/
  .faq-btn {
    padding: 18px 38px;
    font-size: 20px;
  }
  .accordion-body.faqs-body {
    padding: 0 38px 18px 38px;
  }
}
@media (max-width: 991px) {
  /*** Header ***/
  .dropdown-menu {
    max-height: 0;
  }
  .dropdown-menu.show {
    max-height: 100%;
  }
.header-offcanvas-menus, .header-toggle-btn {
	display: none;
}
} 
@media (min-width: 992px) {
  .fs-40 {
    font-size: 36px;
  }
  /*** Header ***/
  .offcanvas-lg {
    position: static;
    transform: none;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-direction: row;
    padding: 0;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
   .mobile-bottom-nav {
    display: none !important;
  }
  .banner-heading {
    font-size: 52px;
  }
  .banner-image {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .fs-40 {
    font-size: 40px;
  }
.header-navbar {
  gap: 0 25px;
}
  .banner-heading {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  .banner-heading {
    font-size: 70px;
  }
}
