:root {
    --blue:#01233f;
    --yellow:#f1b519;
    --gray:#313336;
    --white:#FFF;
    --gray1:#dee2e6;
}
.border-dashed {
    border-bottom: 1px dashed #d1d1d1;
}  
a {
  color: var(--blue);
  text-decoration: none;
  transition: 0.3s;
}
:focus-visible {
  outline: none;
}
a:hover {
  color: color-mix(in srgb, var(--blue), transparent 25%);
  text-decoration: none;
}
.btn-primary {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.btn-primary:hover{
  background-color: var(--blue);
  border-color: var(--blue);
}
.bg-primary {
  background-color: var(--yellow) !important;
}
header .form-select:focus , header .navbar-toggler:focus, header .form-control:focus{
  box-shadow: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
h1, h2 {
  font-size: 26px;
}
body {
    font-family: 'Open Sans';
    
}
.fixed-top {
  background-color: var(--white);
}
header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--blue);
}
header .cart li a {
  color: var(--yellow);
  
}
header .cart li a i::before{
  font-size: 24px;
}

header .nav-link {
  color: var(--blue);
}
.offcanvas .text-primary {
  color: var(--blue) !important;
}
header .nav-link:focus, header .nav-link:hover {
  color: var(--yellow);
}
header .bg-light {
  background-color: var(--white) !important;
  border: 1px solid #dee2e6;
}
header .search_icon i {
  color: var(--yellow);
}
header .category_line {
  border-right: 1px solid #dee2e6 !important;
  border-radius: 0;
}

/* Show dropdown only when hovering over the nav-item.dropdown */
header .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Smooth animation for dropdown */
header .navbar-nav .dropdown-menu {
  display: block; /* so animation works */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  position: absolute; /* prevent affecting layout */
}
.navbar-toggler i {
  color: var(--yellow);
}



/* Show dropdown only when hovering */
.menu_list .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  left: auto;          /* Align to left */
  right: 0;      /* Reset right */
}

/* Smooth animation for dropdown */
.menu_list .dropdown-menu {
  display: block; /* so animation works */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  position: absolute; /* prevent affecting layout */
  left: auto;            /* force left alignment */
  right: 0;
}


.menu_list li a i.small::before {
  font-size: 14px !important;
  position: relative;
  top: -2px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero{
  padding: 93px 0 0 0;
}

.hero .carousel {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    /* min-height: calc(100vh - 48px); */
  }
}

.hero img {
 width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .carousel-item {
  height: 100%; /* matches your header offset */
}

.hero .container {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.4); /* example overlay */
  padding: 30px;
  text-align: center;
}
.hero .carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

.hero .carousel-fade .carousel-item.active {
  opacity: 1;
}
@media (max-width: 1200px) {
  .hero .container {
   /*  margin-left: 50px;
    margin-right: 50px; */
  }
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 24px;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--yellow);
}

.hero .btn-get-started:hover {
  background: var(--blue);
  color: var(--white);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--blue), transparent 90%);
  border-radius: 50px;
  color: var(--yellow);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--yellow);
  color: var(--white);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--blue);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--yellow);
}


.category-carousel .team-member {
    background-color: var(--white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
}
.category-carousel .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: 
 color-mix(in srgb, var(--blue), transparent 20%);
}
.category-carousel .team-member .member-info {
    padding: 25px 15px;
    text-align: center;
}
.category-carousel .swiper-slide {
        display: flex;
  height: auto; /* Let flex stretch */
   width: 25% !important;
}

.section-header h2 {
  color: var(--blue);
  font-weight: bold;
}

.best_sell {
  position: relative;
}

.best_sell .team-member {
  background-color: var(--white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.best_sell .team-member .member-img {
  position: relative;
  display: block;
  overflow: hidden;
  height: 260px; /* fix container height */
}

.best_sell .team-member .member-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

/* Front image visible by default */
.best_sell .team-member .member-img .member-img-front {
  opacity: 1;
  z-index: 2;
}

/* Back image hidden by default */
.best_sell .team-member .member-img .member-img-back {
  opacity: 0;
  width: 200px;       /* fixed size */
  height: auto;       /* keep proportions */
  top: 50%;           /* center vertically */
  left: 50%;          /* center horizontally */
  transform: translate(-50%, -50%); /* center anchor point */
  object-fit: cover;
}

/* ✅ On hover: swap images */
.best_sell .team-member .member-img:hover .member-img-front {
  opacity: 0;
}

.best_sell .team-member .member-img:hover .member-img-back {
  opacity: 1;
 object-fit: cover;
 width: 200px;
}

/* Info section */
.best_sell .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.best_sell .team-member .member-info h4 {
font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--blue), transparent 20%);
  padding-bottom: 10px;

  /* Fix uneven heights */
  min-height: 55px;     /* enough for 2 lines */   
  text-align: center;   /* keep titles centered */
  display: -webkit-box; 
  -webkit-line-clamp: 2;  /* allow max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.best_sell .nav-tabs .nav-link {
  border-radius: .25em;
  background-color: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  margin-left: 15px;
}
.best_sell .nav-tabs .nav-item.show .nav-link, .best_sell .nav-tabs .nav-link.active {
  color: var(--white);
    background-color: var(--yellow);
    border-color: var(--yellow);
}
.best_sell .nav-tabs{
  border-bottom: none;
}
.best_sell .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
   background-color: var(--yellow);
   color: var(--white);
}















@media (max-width: 767px) {
		.category_slide .carousel-inner .carousel-item > div {
			display: none;
		}
		.category_slide .carousel-inner .carousel-item > div:first-child {
			display: block;
		}
	}

	.category_slide .carousel-inner .carousel-item.active,
	.category_slide .carousel-inner .carousel-item-next,
	.category_slide .carousel-inner .carousel-item-prev {
		display: flex;
	}

	/* medium and up screens */
	@media (min-width: 768px) {

		.category_slide .carousel-inner .carousel-item-end.active,
		.category_slide .carousel-inner .carousel-item-next {
			transform: translateX(25%);
		}

		.category_slide .carousel-inner .carousel-item-start.active, 
		.category_slide .carousel-inner .carousel-item-prev {
			transform: translateX(-25%);
		}
	}

	.category_slide .carousel-inner .carousel-item-end,
	.category_slide .carousel-inner .carousel-item-start { 
		transform: translateX(0);
	}





.card {
  border: none;
  height: calc(100% - 0px);
}
.card .team-member {
  margin: 12px;
}
.card a{
  height: calc(100% - 30px);
}
.card .team-member {
    background-color: var(--white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
}
.card .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: 
 color-mix(in srgb, var(--blue), transparent 20%);
}
.card .team-member .member-info {
    padding: 25px 15px;
    text-align: center;
}














.best_sell .button-area {
  display: block;
  position: relative;
  text-align: center;
  background: #fff;
  width: 100%;
  z-index: 1;
  /* transition: box-shadow 0.3s ease-out; */
}

.best_sell figure {
  text-align: center;
}
.best_sell figure img {
  max-height: 210px;
  height: auto;
}
.best_sell .product-qty {
  width: 85px;
}
.best_sell .btn-link {
  text-decoration: none;
}
.best_sell #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.best_sell .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}

.best_sell .form-control {
  border-radius: .25em;

}
.best_sell .btn-primary {
  background-color: var(--white);
  border: 1px solid #ced4da;
  color: var(--yellow);
}
.best_sell .btn-primary:hover {
  background-color: var(--yellow);
  color: var(--white);
}

.combo_sell .btn-primary{
  background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}
.combo_sell .btn-primary:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  
}
.best_sell .btn-cart {
  background-color: var(--yellow);
  color: var(--white);
}
.best_sell .btn-cart:hover {
  background-color: var(--white);
  color: var(--yellow);
}
.best_sell .badge {
  color: var(--yellow);
}
.best_sell .star_rating {
  padding-bottom: 10px;

}

.best_sell .star_rating i{
  color: var(--yellow);

}
.best_sell .best_price {
  padding-bottom: 10px;
}


.banner-blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
}
.block-1 { grid-area: 1 / 1 / 3 / 8; }
.block-2 { grid-area: 1 / 8 / 2 / 13; }
.block-3 { grid-area: 2 / 8 / 3 / 13; }

@media screen and (max-width:1140px) {
  .banner-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .block-1 { grid-area: 1 / 1 / 3 / 2; }
  .block-2 { grid-area: 3 / 1 / 4 / 2; }
  .block-3 { grid-area: 4 / 1 / 5 / 2; }
  
}

.banner-ad {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 10px; /* optional */
}

.banner-ad::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.6); /* black overlay with 50% opacity */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2; /* ensures text is above overlay */
}
.banner-content h3 {
  font-weight: bold;
}
.banner-content a.btn-link {
  color: var(--yellow);
  font-weight: bold;
  text-decoration: none;
}
.banner-content a.btn-link:hover {
  color: var(--white);
}



.why_bloom {
  position: relative;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.why_bloom_content {
  position: relative;
    bottom: 0;
    left: 0;
    background: #fff;
    text-align: center;
    text-decoration: none;
    width: 100%;
    background-color: var(--yellow);
    border-radius: 0 0px 10px 10px;
}
.why_bloom_content h1 {
  font-size: 26px;
  font-weight: bold;
  color: var(--white);
  padding: 15px 0;
}
.why_bloom video,
.why_bloom img, .birth_video video, .birth_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.why_bloom iframe {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border-radius: 10px 10px 0 0;
}
.birth {
  background-color: var(--blue);
  padding: 35px;
  border-radius: .25em;
}
.birth_content h1 {
  color: var(--white);
  font-size: 36px;
  padding-bottom: 30px;
}
.birth_content .btn-primary {
  text-transform: uppercase;
    padding: 0.5em 1.5em;
    font-size: 18px;
}
.birth_content .btn-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--yellow);
    
}
.blog_container {
background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog_container_content {
  padding: 30px;
}
.blog_container_content img {
  width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.blog_container_content p {
  margin-bottom: 0;
}
.blog_container_content h2 a:hover {
  color: var(--yellow);
}

.star_rating i {
  color: var(--yellow);
}







.btn-check:focus+.btn, .btn:focus {
  box-shadow: none;
}


.login_container {
  background-color: var(--gray1);
  padding: 30px;
}
.login_container .nav-pills .nav-link.active, .login_container .nav-pills .show>.nav-link {
  background-color: var(--blue);
}
.login_container .nav-link {
  color: var(--blue);
}
.login_container .form-check-input:checked {
  background-color: var(--yellow);
    border-color: var(--yellow);
}
.discount_ribb {
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 10px;
  font-size: 14px;
  text-align: center;
}
.checkout_container {
  width: 500px;
}

.checkout_footer {
  padding: 0 15px;
}




#progressbar-1 {
color: #455A64;
}

#progressbar-1 li {
list-style-type: none;
font-size: 13px;
width: 33.33%;
float: left;
position: relative;
}

#progressbar-1 #step1:before {
content: "1";
color: #fff;
width: 29px;
margin-left: 22px;
padding-left: 11px;
}

#progressbar-1 #step2:before {
content: "2";
color: #fff;
width: 29px;
}

#progressbar-1 #step3:before {
content: "3";
color: #fff;
width: 29px;
margin-right: 22px;
text-align: center;
}

#progressbar-1 li:before {
line-height: 29px;
display: block;
font-size: 12px;
background: var(--blue);
border-radius: 50%;
margin: auto;
}

#progressbar-1 li:after {
content: '';
width: 121%;
height: 2px;
background: var(--blue);
position: absolute;
left: 0%;
right: 0%;
top: 15px;
z-index: -1;
}

#progressbar-1 li:nth-child(2):after {
left: 50%
}

#progressbar-1 li:nth-child(1):after {
left: 25%;
width: 121%
}

#progressbar-1 li:nth-child(3):after {
left: 25%;
width: 50%;
}

#progressbar-1 li.active:before,
#progressbar-1 li.active:after {
background: var(--yellow);
}

.card-stepper {
z-index: 0
}

.list-group-item-img {
  width: 90px;
  height: 90px;
  padding-right: 10px;
}
.list-group-item-content {
  width: calc(100% - 90px);
}
.list-group {
  border-radius: 0;
  border: none;
}
.list-group li { 
  border: 1px solid var(--gray1);
  border-radius: 12px;
  margin-bottom: 15px;
}
.list-group-item:first-child {
  border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.list-group-item+.list-group-item {
  border-top-width: 1px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--white);
  background-color: var(--blue);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
}

.footer .footer-about .logo img {
  max-height: 140px;
  margin-right: 6px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--white), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--white), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--yellow);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1.3;
}

.footer .footer-links ul a:hover {
  color: var(--yellow);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--white), transparent 80%);
  display: flex;
  background-color: var(--blue);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--blue);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--yellow);
  color: var(--white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--yellow), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--white), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




.innerbanner {
  margin-top: 93px;
}
.page-header {
    position: relative;
    display: block;
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(12, 15, 22, .7);
}

.page-header .inner_banner1 {
    padding: 60px 0;
}

.page-header .inner_banner1 span {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%), rgba(255, 255, 255, 0.12);

    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(100px);
    color: var(--white);
    font-weight: 400;
    padding: 9px 15px;
    text-transform: none;
}

.page-header .inner_banner1 h2 {
    font-size: 36px;
    color: var(--white);
    font-family: "Playfair Display", sans-serif;
    font-weight: 500;
    margin-top: 0px;
}

.page-header .inner_banner1 p {
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 28.8px */
    padding-right: 60px;
    padding-left: 60px;
}
.breadcrumb li a {
  color: var(--yellow);
}


/* about */
.about_page img {
  border-radius: 10px;
}


.about_content_page ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.about_content_page ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.about_content_page ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--yellow);
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}
.contact .info {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--gray), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--gray), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--yellow);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--gray), transparent 40%);
}


.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--gray), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--yellow);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 250px;
}

.contact .php-email-form a[type=submit] {
  background: var(--blue);
  color: var(--white);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form a[type=submit]:hover {
  background: color-mix(in srgb, var(--yellow) 90%, black 15%);
}

.blog_head {
  font-size: 12px;
}
.blop_content_header {
  margin-bottom: 24px;
}
.blop_content_header h2 {
  font-size: 20px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 15px;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blop_content_header h2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical; 
}

.blop_content_header .post-author {
  font-size: 14px;
}
.blog_main_content {
  border-radius: 10px;
}
.blog_main_content .post-img img {
  border-radius: 10px 10px 0 0;
}
.thankyou_content {
  border: 1px solid var(--gray1);
}
.thankyou_content svg.text-success {
  color: var(--yellow) !important;
}
.personal_address {
  padding-top: 20px;
}
.personal_address li {
  padding-bottom: 20px;
  list-style: none;
}
.user-admin img{
  width: 50px;
  margin-right: 10px;
}
.account-form {
  background-color: var(--white);
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
/* Media Queries */
@media (min-width: 320px) and (max-width: 480.98px) {
  .category-carousel .swiper-slide {
    width: 100% !important;
  }
  .hero {
    padding-top: 246px;
  }
  .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .hero img {
    height: 250px;
  }
  .hero .container p {
    overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 3;
        -webkit-box-orient: vertical;
  }
  .hero .container {
    bottom: 10px;
  }
  .why_bloom , .birth_content, .blog_container {
    margin-bottom: 24px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    padding-top: 153px !important;
  }
  .why_bloom , .birth_content, .blog_container {
    margin-bottom: 24px;
  }
}
@media (min-width: 481px) and (max-width: 767.98px) {
  .category-carousel .swiper-slide {
    width: 100% !important;
  }
  .hero {
    padding-top: 286px;
  }
  .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .hero img {
    height: 250px;
  }
  .hero .container p {
    overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 3;
        -webkit-box-orient: vertical;
  }
  .hero .container {
    bottom: 10px;
  }
  .menu_list {
    margin-top: 20px;
  }
  .why_bloom , .birth_content, .blog_container {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .menu_list {
    margin-top: 20px;
  }
  .hero {
    padding-top: 153px;
  }
  .hero .container p {
    overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 3;
        -webkit-box-orient: vertical;
  }
  .hero .container {
    bottom: 0px;
  }
  .hero h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .why_bloom , .birth_content, .blog_container {
    margin-bottom: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}