/* Main header styles (visible on desktop and laptops) */
.main-header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;

  transition: top 0.4s ease, opacity 0.4s ease;
}

/* Sticky state for desktop */
.main-header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  opacity: 1;
  transition: top 0.4s ease, opacity 0.4s ease;
  /* Smooth transition */
}


::-webkit-scrollbar {
  display: none;
}


/* Sticky state for mobile */
.mobile-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Preloader */
#preloader {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  /* You can change the color to match your design */
}

/* Preloader animation */
.preloader span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  background: #333;
  border-radius: 50%;
  animation: preloader-animation 1s infinite alternate;
}

@keyframes preloader-animation {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

@media (max-width: 991px) {

  .main-header {
    display: none;
  }

  .mobile-nav {
    display: block;
  }


}

a{
  text-decoration: none;
}
/* Mobile-specific off-canvas behavior */
.offcanvas {
  top: 0;
}

.offcanvas-header {
  position: relative;
}

/* General styles to ensure content doesn't overlap */
body {
  margin: 0;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;

}

p {
  margin: 0;

}

body {
  font-family: 'Poppins';
}

.animation-container {
  overflow-x: hidden;
}

.form-control::placeholder {
  white-space: pre-line;
  /* Allows the placeholder text to wrap to the next line */
}

/* ---------------------  Scroll Top ----------------- */

section {
  padding: 80px 0px;
  position: relative;
}

.scroll-top {
  background-color: red;
  width: 50px;
  height: 50px;
  line-height: 48px;
  display: none;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #acf6d3;
  transition: all .2s;
  background: #3d6878;
}

.scroll-top:hover {
  background: #acf6d3;
  color: #3d6878;
  border: 1px solid #3d6878;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #A4A2A1;
  outline: 0;
  box-shadow: unset !important;
}

.navbar {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

section.banner-section {
  padding: 0;
}


/* header gpt */
.main-header {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: none;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 
.main-header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: top 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
} */


/* mobile navv */
.mobile-nav {
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-logo .logo {
  display: block;
  width: 200px;
  height: 250px;
  background-image: url('../images/home/home-bakers-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main-header.sticky .logo {
  background-image: url('../images/home/logo-scroll.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 200px;
  height: 100px;
}


.nav-items ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-items ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.nav-items ul li a:hover {
  color: #007bff;
}


/* endss */

/* --------------------------------------- Pre Loader ---------------------------------- */


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F5F5F1;
  z-index: 999999;
}

#preloader .preloader {
  width: 49px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/logo/loader.png);
}

#preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 250px;
  height: 250px;
  top: -104px;
  left: -100px;
  border-radius: 50%;
  background-color: #acf6d3;
  -webkit-animation: preloader1 1.3s linear infinite;
  animation: preloader1 1.3s linear infinite;
}

#preloader .preloader span:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/* --------- Header------------- */

/* ---mob nav---- */
.nav {
  flex-direction: column;
}

button.navbar-toggler {
  border: none;
}

button.navbar-toggler:focus {
  box-shadow: none;
}

button.btn.btn-primary {
  background: unset;
  border: 0;
  padding: 10px;
  border-radius: 0;
}

.mobile-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.mob-logo img {
  width: 60%;
}

.mob-header img {
  width: 60%;
}

.mob-header {
  margin-left: auto;
}


/* --- */

ul.nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

ul.nav li a {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

ul.nav li a:hover {
  font-size: 22px;
  color: #3D6878;
  transition: 0.3s;

}

ul.nav li a.active {
  font-size: 22px;
  font-weight: 700;
  /* Increase font weight when active */
  color: #3D6878;
  /* Active link color */
}

.nav-logo {
  z-index: 1;
}

.nav-logo img {
  width: 80%;
}


.main-header {
  position: relative;
}

.banner-image img {
  width: 100%;
}

.about-head h1 {
  color: #3d6878;
  font-size: 2rem;
  font-family: 'Poppins';
  font-weight: 700;
  margin-bottom: 30px;
}

.about-box p {
  font-weight: bold;
  color: #3D6878;
  font-size: 24px;
}

.about-box a {
  text-decoration: none;
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

span.color {
  color: #83D2C2;
}

span.color-span {
  position: relative;
  color: #3D6878;
  font-weight: 700;
}

.span-img {
  position: absolute;
  top: -10px;
  left: 70px;
  opacity: 0.6;
}

.title-sub {
  font-weight: bold;
  color: #3D6878;
  font-size: 20px;
  padding: 0 80px;
  margin-bottom: 60px;
  text-align: center;

}


section.abt-home {
  position: relative;
  padding-top: 27rem;
  padding-bottom: 200px;
}

.left {
  position: absolute;
  top: 0;
  left: 0;
}

.left img {
  width: 70%;
}

.top-one img {
  width: 90%;
}

.top-one {
  position: absolute;
  top: 60px;
  left: 22%;
}

.middle img {
  width: 80%;
}

.middle {
  position: absolute;
  top: 170px;
  left: 44%;
}

.end {
  position: absolute;
  right: 0;
  top: 80px;
}

.final {
  position: absolute;
  bottom: 0;
  left: 90px;
}


.last {
  position: absolute;
  right: 0;
  bottom: -200px;
}

.last img {
  width: 60%;
}

.final img {
  width: 80%;
}

h2.title {
  color: #3D6878;
  font-size: 64px;
  font-weight: bold;
}

.sub-image img {
  width: 100%;

}

.sub-image-two img {
  width: 100%;

}

.subimage-two {
  height: 370px;
  width: 411px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0;
}

.product-muffins {
  padding-top: 60px;
  justify-content: center;
  align-items: center;
  background: #ACF6D3;
  border-radius: 50px;
  margin-bottom: 80px;
}

.row.product-row {
  display: flex;
  justify-content: center;
}

.sub-title {
  background: #3D6878;
  text-align: center;
  height: 80px;
  width: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  margin-bottom: 40px;
}

.sub-title p {
  font-weight: bold;
  font-size: 22px;
  color: #ffff;
  margin-bottom: 0 !important;
}

.sub-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.mid-title h2 {
  font-size: 64px;
  font-weight: bold;
  color: #3D6878;
  text-align: center;
  margin-bottom: 30px;
}

.mid-title a {
  text-decoration: none;
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

.product-head {
  margin-bottom: 60px;
}


/* .subimage-two {
  height: 399px;
  width: 411px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0;
} */
.subimage-two img {
  width: 100%;
}


.sub-title-two {
  background: #3D6878;
  text-align: center;
  height: 80px;
  width: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  border-radius: 50px 0;
}

.sub-title-two p {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0 !important;

}

section.product {
  background: #acf6d3;
  margin-bottom: 80px;
  border-radius: 50px;
}

section.product-row {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.product-two {
  background: #acf6d3;
  margin-bottom: 80px;
  border-radius: 50px;
}






.lava-image {
  width: 100%;
  border-radius: 90px 90px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lava-image img {
  width: 100%;
}

.lava-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lava-head p {
  font-weight: bold;
  font-size: 32px;
  color: #fff;
  margin-bottom: 0 !important;

}

.lava-head {
  width: 100%;
  height: 90px;
  background: #3D6878;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
}

section.lava-section {
  background: #ACF6D3;
  margin-top: 80px;
  border-radius: 50px;
}

/* paraaaaaaaaaaaaaaaaaa  taggggggggggggggg */
.contact-bottom p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}


.small-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  width: 250px;
  height: 54px;
  background-color: #acf6d3;
  border-radius: 22px;
  transition: 0.5s;
}

.small-contact-btn:hover {
  background-color: #3c6777;
  color: #acf6d3;
}

.small-contact-btn:hover a {
  color: #acf6d3;
  transition: 0.5s;
}



.small-contact-btn a {
  text-decoration: none;
  color: #3c6777;
}




/* ------------------ Fooooter --------------------- */


section.footer-section {
  position: relative;
  padding: 260px 0px 0;
  background: url(../images/footer/footer-bg\ \(1\).png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.social-media li a {
  color: #fff;
  font-size: 26px;
}

.social-media ul {
  display: flex;
  justify-content: space-between;
}




.nav-footer ul li a {
  color: #fff;
  text-decoration: none;
}


section.footer-section .row {
  align-items: center;
  justify-content: space-between;

}


.final-box {
  background: #fff;
  height: 100%;
  width: 100%;
  border-radius: 50px 50px 0 0;
  padding: 40px;
}

.final-box h5 {
  color: #3D6878;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.final-box ul li {
  font-size: 16px;
  color: #3D6878;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.final-box ul li a {
  color: #3D6878;
  font-weight: bold;
}


.footer-logo {
  position: absolute;
  top: -20px;
  left: 104px;
}


.f-left {
  position: absolute;
  top: 90px;
  left: 10px;
}

.f-right {
  position: absolute;
  top: 70px;
  right: 0;
}

.low-footer ul {
  display: flex;
  gap: 20px;
}

.low-footer ul li {
  color: #fff;
}

.low-footer ul li a {
  color: #fff;
}

.low-footer {
  position: absolute;
  bottom: 20px;
}


/* ---------------------------About page ---------------------- */


section.about-section {
  position: relative;
  padding-top: 0;
}


.about-head-box {
  background: #ACF6D3;
  padding: 80px;
  border-radius: 140px;
}

.about-head-box a {
  text-decoration: none;
  color: #3D6878;
}

.about-head-box h5 {
  font-size: 28px;
  font-weight: 500;
  color: #3D6878;
  margin-bottom: 40px;
}

h5.align {
  width: 664px;
}

.about-head-box {
  position: relative;
}

.cake {
  position: absolute;
  bottom: 0;
  right: 2px;
}



.cone {
  position: absolute;
  bottom: 639px;
  left: 200px;
}

.cone img {
  width: 82%;
}

.bake {
  position: absolute;
  top: 146px;
  right: 40px;
}

.bake img {
  width: 100%;
}

.about-second h1 {
  font-size: 52px;
  font-weight: bold;
  color: #3D6878;
  margin-bottom: 30px;
}

.about-second h3 {
  color: #3D6878;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 0px;
  line-height: 1.7;
}

.about-second-bg ul {
  position: relative;
  background-color: #acf6d3;
  border-radius: 16px;
  color: #3D6878;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 15px;
  width: 80%;
  padding: 60px 30px 60px 100px;
}

.about-second-bg h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.about-second-bg ul li {
  color: #3D6878;
  list-style-type: disc;
  margin-bottom: 20px;
}

.sale-image {
  position: absolute;
  bottom: 0;
  right: 10px;
  opacity: 0.7;
}

.sale-image img {
  width: 75%;
}

section.about-two {
  position: relative;
  padding: 80px 0px;
}

.right-about {
  position: absolute;
  right: 0;
  text-align: right;
  top: 400px;
}

.left-cbox h5 {
  font-size: 20px;
  font-weight: 600;
  color: #3D6878;
  margin-bottom: 30px;
}

.thb {
  color: #83D2C2 !important;
  font-weight: 500 !important;
}

.left-cbox span {
  font-size: 24px;
  font-weight: 700;
  color: #3D6878;
  margin-bottom: 30px;
}

.left-cbox a {
  color: #3D6878;
  text-decoration: none;
}

.right-image-content h1 {
  font-size: 30px;
  font-weight: bold;
  color: #3D6878;
  margin-bottom: 30px;
}

.right-image-contact img {
  width: 100%;
}

.right-cbox {
  position: relative;
}

.right-image-content {
  position: absolute;
  top: 0;
}

.right-image-content {
  position: absolute;
  top: 80px;
  width: 80%;
  left: 60px;
}

section.contact-banner .row {
  align-items: center;
}

section.contact-banner {
  padding-top: 0;
}

.left-cbox {
  position: relative;
}

.cook-image {
  position: absolute;
  top: 350px;
  right: 0;
}

.cook-image img {
  width: 100%;
}

.contact-topic h5 {
  font-size: 40px;
}


.c-text p {
  color: #3d6878;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  /* margin-left: 20px; */

}

.logo-text {
  color: #3d6878;
  font-size: 14px;
  /* margin-bottom: 20px; */
  font-weight: 500 !important;
}


.c-flex {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.c-flex a {
  text-decoration: none;
}


.c-text p a {
  color: #3d6878 !important;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;

}

.c-img {
  background: #acf6d3;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.c-img i {
  font-size: 30px;
  background: #acf6d3;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.c-img img {
  width: 60%;
}

.contact-topic {
  color: #3d6878;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}



.contact-form {
  background: #83D2C2;
  padding: 100px 20px;
  position: relative;

}

.contact-box h5 {
  color: #3D6878;
  font-family: 'Poppins';
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.contact-box .row {
  align-items: center;
}


.form-control {
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 5px 5px 20px 0px #00000040;
  padding: 11px;
}

button#h_submit {
  border: 0;
  width: 250px;
  height: 54px;
  border-radius: 18px;
  color: #3d6878;
  font-weight: 600;
  background-color: #fff;
}

.contact-logo img {
  width: 40%;
}


.vector-1 {
  position: absolute;
  top: 18px;
}

.vector-2 {
  position: absolute;
  top: 18px;
  right: 150px;
}

.vector-3 {
  position: absolute;
  top: 18px;
  right: 80px;
}

.vector-4 {
  position: absolute;
  bottom: -29px;
  left: 0;
}

.vector-5 {
  position: absolute;
  right: 0;
  bottom: -29px;
}

.bg-line {
  position: absolute;
  top: 40px;
  z-index: -1;
  left: -300px;
}

.bg-line img {
  width: 72%;
}

.contact-div {
  position: relative;
}


.banner-image {
  position: relative;
}


/* ---------------------- Thank You -------------------------------- */



.thankyou_pages {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 80px 0px;
}

.thankyou_pages .thankyou_content {
  border-radius: 10px;
  width: 100%;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 60px 50px;
}

.thankyou_pages .thankyou_content img {
  height: 75px;
}


img.thank_you.lazyload {
  height: auto;
  width: 15%;
}

.thankyou_pages .thankyou_content h1 {
  color: #3D6878;
  font-weight: bold;
  font-size: 40px;
  margin-top: 30px;
}

.thankyou_pages .thankyou_content p {
  color: #000;
  font-size: 24px;
  text-align: center;
  max-width: 80%;
  margin: auto;
  padding: 20px 0px;
}

.thankyou_pages .thankyou_content h4 {
  font-size: 25px;
  line-height: 1.5;
  font-family: 'f_bold';
}

.thankyou_pages .thankyou_content button {
  text-transform: uppercase;
  width: auto;
  text-align: center;
  padding: 12px 20px;
  border: 0;
  display: flex;
  border-radius: 5px;
  transition: all .4s ease-in-out;
  margin: 15px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

@media screen and (max-width:480px) {
  .thankyou_pages .thankyou_content {
    padding: 30px 15px;
  }

  .thankyou_pages .thankyou_content img {
    object-fit: contain;
  }
}

.demo-button-2 {
  width: 242px;
  height: 58px;
  gap: 10px;
  border-radius: 20px;
  text-decoration: none;
  background: #3d6878;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.demo-button-2 a {
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  text-decoration: none;
}

section.thankyou_pages {
  padding: 0;
}

.f-two ul {
  display: flex;
  gap: 30px;
}

/* .mob-footer {
  display: flex;
  justify-content: space-between;
} */

section.lower-mob-footer {
  padding: 10px;
  display: none;
  background-color: #3d6878;
}

.f-two a {
  color: #fff;
}



section.brownie-section {
  background-color: #acf6d3;
  border-radius: 50px;
}

.brownie-image img {
  width: 100%;
  border-radius: 23px 24px 0px 0px;
}

.brownie-head {
  background: #3d6878;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 20px 20px;
}

.brownie-box {
  padding-bottom: 50px;
}

.brownie-head p {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0 !important;
}

span.color {
  color: #83D2C2;
}

span.color {
  color: #83D2C2;
}

span.color a {
  color: #83D2C2 !important;
  text-decoration: none;
}


.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: unset !important;
  background-color: unset !important;
  border-color: unset !important;
}


.second-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.nav-footer ul {
  display: flex;
  justify-content: space-between;
}

.ad-flex {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.ad-flex a {
  font-size: 17px;
  color: #3d6878;
  font-weight: 600;
  text-decoration: none;
}

.ad-flex-one {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.ad-flex-one a {
  font-size: 17px;
  color: #3d6878;
  font-weight: 600;
  text-decoration: none;

}

/* bloggg */
.banner-fix {
  padding: 0;
  margin-top: -80px;
}

.blog-head {
  background-color: #3D6878;
  color: #ACF6D3;
  padding: 40px 100px;
  text-align: center;
  font-family: 'Poppins';
  margin-top: 100px;
}

.banner {
  background-color: #ACF6D3;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-hero {
  position: relative;
  margin-bottom: 40px;
}

.blog-content {
  position: absolute;
  color: #fff;
  padding: 10px;
  background-color: #3D6878;
  opacity: 0.9;
  height: 200px;
  bottom: 0;
}

.blog-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.blog-image img {
  width: 100%;
}

.row.blog-row-two {
  margin-top: 20px;
}

.blog-content h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.blog-content p {
  font-size: 18px;
  margin-bottom: 0;
}

.blog-content a {
  text-decoration: none;
  color: #83D2C2;
  font-weight: 700;
  font-size: 22px;
}

/* readmoreee */

.detials-banner {
  padding: 0;
}

.content h1 {
  color: #3D6878;
  font-size: 30px;
}

.content p {
  font-size: 18px;
}

.content-two h1 {
  font-size: 22px;
  color: #3D6878;
}

.content ul li {
  list-style-type: disc;
  font-size: 18px;
  margin-bottom: 7px;

}

.content-two ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.para-bold {
  font-size: 20px;
  font-weight: 500;
}










/* read more one */
.blog-one {
  background-color: #3D6878;
  color: #ACF6D3;
  padding: 100px;
  text-align: center;
  font-family: 'Poppins';
  margin-top: 80px;
}

.image-parah {
  background: #253551;
  margin-bottom: 30px;
  margin-top: -160px;
  position: relative;
  height: 190px;
  width: 620px;
  display: flex;
  padding: 20px;
  align-items: center;
  margin-left: -60px;
}

.readmore-banner img {
  width: 100%;
}

/* blog stickyyyyyyyyyyyy */
.common-sidebar {
  position: sticky;
  top: 170px;
}

.blog-sticky {
  display: flex;
  background-color: #3D6878;
  margin-bottom: 20px;
  overflow: hidden;
}

.common-sidebar {
  background-color: #3D6878;
  padding: 20px;
  border-radius: 25px;
}

.blog-title a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.blog-title a:hover {
  color: #ACF6D3;
  font-weight: 700;

}

.small-blog-content {
  padding: 10px 20px;
}

h6.common-sidebar__title {
  color: #ACF6D3;
  font-size: 24px;
}

span.latest-blog__category.font-12.flx-align.gap-1 {
  color: #ACF6D3;
}

.blog-image img {
  border-radius: 10px;
}

/* banner bg css */
.details-banner {
  position: relative;
  background: url('../images/blog/readmoreone.png');
  background-position: center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  padding: 70px 0;
}

.details-banner-two {
  position: relative;
  background: url('../images/blog/blogbannertwo.png');
  background-position: center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  padding: 70px 0;
}

.details-banner-three {
  position: relative;
  background: url('../images/blog/bannerthree.png');
  background-position: center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  padding: 70px 0;
}

.details-banner-four {
  position: relative;
  background: url('../images/blog/blogbannerfour.png');
  background-position: center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  padding: 70px 0;
}

.banner-content {
  color: #ffff;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-left: 300px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 24px 0 0 0;
  font-size: 18px;
}

/* error */
.error {
  position: relative;
  background: url('../images/logo/combine.png');
  background-position: center;
  height: 100vh;
  width: 100%;
  background-color: #ACF6D3;
}

.error-button a {
  color: #acf6d3;
  font-size: 22px;
  font-weight: 500;
  border: 1px solid #3D6878;
  background-color: #3D6878;
  padding: 6px 100px;
  border-radius: 18px;
}

.error-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-four {
  font-family: 'poppins';
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
}

.error-text {
  font-family: 'poppins';
  font-weight: 500;
  font-size: 28px;
  color: #3D6878;
  margin-bottom: 50px;
}

/* internal linkss */
.title-sub a {
  text-decoration: none;
  color: #3D6878;
}

.about-second-bg a {
  text-decoration: none;
  color: #3D6878;
}

.blog-head a {
  text-decoration: none;
  color: #acf6d3;
}

.right-image-content a {
  text-decoration: none;
  color: #3D6878;
}



.banner-btn .small-contact-btn {
  width: 450px;
}

.banner-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

.banner-btn {
  position: absolute;
  bottom: 210px;
  right: 170px;
}

.banner-btn .small-contact-btn {
  width: 450px;
  background: #9F1515;
}


.banner-btn .small-contact-btn a {
  color: #fff;

}


.banner-btn .small-contact-btn:hover {
  background-color: #3c6777;
  color: #acf6d3;
}

.banner-btn .small-contact-btn:hover a {
  color: #acf6d3;
  transition: 0.5s;
}


.bg-text h2 {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

section.hamper {
  background: url(../images/hamper/hamper-banner.png);
  height: 800px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-text p {
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 0px;
  line-height: 1.7;
  text-align: center;
}

span.ylw {
  color: #FFD700;
}


.hmp-btn {
  display: flex;
  justify-content: center;
}


.hmp-btn .small-contact-btn {
  background: #FFD700;
}

.hmp-btn .small-contact-btn:hover {
  background: #9F1515;
  border: 1px solid #FFD700;
}


.hmp-btn .small-contact-btn:hover a {
  color: #FFD700;
}


.hmp-btn .small-contact-btn a {
  color: #9F1515;
}

.bg-text {
  margin-bottom: 50px;
}

.hmp-box h5 {
  color: #005339;
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 0px;
  text-align: center;
}

.hamper-head h5{
  color: #fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 500;
  margin: 0;
}

.row.hamper-row{
  padding-top: 40px;
}

.hamper-mid {
  padding-top: 50px;
  text-align: center;
  margin-bottom: 30px;

}

.hamper-mid h3 {
  color: #FFD700;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 50px;
}

.hamper-mid h5{
  color: #FFD700;
  font-size: 48px;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.hamper-mid p{
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

span.color2 {
  color: #9F1515;
}

section.hamper-content {
  background: #ede6de;
  padding: 160px 0;
  position: relative;
}


.gift-box {
  position: absolute;
  bottom: 40%;
  left: 50px;
}




.gift-tree {
  position: absolute;
  right: 50px;
  bottom: 38%;
}


section.hampers {
  background: url(../images/hamper/green-banner.png);
  height: 1010px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 100px;
}


.hamper-image img {
  width: 100%;
}

.light {
  position: absolute;
  top: 2px;
  left: 20px;
}



.hamp-tree {
  position: absolute;
  bottom: 10%;
  left: 20px;
}


.hamp-book {
  position: absolute;
  right: 50px;
  bottom: 10%;
}


.hamper-image {
  transition: 0.5s;
  margin-bottom: 30px;
}


.hamper-image:hover {
  margin-top: -20px;
  transition: 0.5s;
}

.hmp-head h5 {
  color: #9F1515;
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 500;
}

.cnct-box h5{
  color: #9F1515;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.cnct-text h5 a {
  color: #005339;
}

.cnct-text h5 {
  color: #005339;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

section.hamper-cntc {
  background: #EDE6DE;
}

.hmp-button button.btn.btn-primary {
  color: #9F1515;
}

.hmp-btn button.btn.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  width: 250px;
  height: 54px;
  background-color: #fbd400;
  border-radius: 22px;
  transition: 0.5s;
  color: #9F1515;
}

.modal-content {
    background: transparent !important; 
    border: unset !important;
    padding: 0;
    margin: 0;
}

.modal-text {
  text-align: center;
}

.modal-text h2 {
  color: #FFD700;
  font-size: 30px;
  font-weight: 500;
}

.modal-text h5 {
  color: #EDE6DE;
  font-size: 23px;
}

.popup-info h3 {
  color: #EDE6DE;
  font-size: 23px;
}

.modal-text p {
  color: #EDE6DE;
  font-size: 15px;
  margin-bottom: 10px;
}

.modal-image img {
  width: 520px;
  height: 470px;
}

.modal-text {
  position: absolute;
  top: 110px;
  padding: 50px;
}

.modal-image  {
 position: relative;
}

.modal-text .small-contact-btn {
  width: 410px;
}

.small-contact-btn button.btn.btn-primary {
  font-size: 22px;
  font-weight: 700;
}

.banner-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  width: 100%;
  height: 54px;
  background: #fbd400;
  border-radius: 22px;
  transition: 0.5s;
}

.banner-popup a {
  color: #9F1515 !important;
}


.popup-info h5 {
  color: #ffd700;
}

.popup-info h5 a {
  color: #ffd700;
}

.modal-image button.btn-close {
  position: absolute;
  top: 90px;
  right: 0;
  opacity: 1;
  padding: 0;
  height: 30px;
  width: 30px;
  border-radius: 0px;
  background-color: #005339;
  
}

.modal-image button.btn-close i {
color: #fdae02
}

button:focus:not(:focus-visible) {
  outline: unset;
  box-shadow: unset;
} 

.btn-close {
  --bs-btn-close-bg: unset !important;

}