.bg-accent {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top left, #ff8bd1, #6c5ce7);
  z-index: -1;
  filter: blur(40px);
  opacity: 0.6;
}


  #animatedText span {
    opacity: 0;
    transition: opacity 0.5s;
    margin-right: 10px;
  }

  #animatedText span.show {
    opacity: 1;
  }


body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}
#navIcon {
  font-size: 1.5rem;
}


h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-size: 39px;
}

.navbar {
    background: transparent !important;
    transition: all .4s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgb(2, 71, 45) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.navbar-brand img {
    height: 65px;
    width: auto;
}

.nav-link {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    transition: all .3s ease;
}

.nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    /* background-color: red; */
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

#navIcon {
    color: white;
    /* background: #000; */
    font-size: 1.5rem;
}

/* Mobile Menu */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(2, 71, 45, 0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
        padding: 10px;
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 55px;
    }

    .navbar-nav {
        gap: 5px;
    }
}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 45px;
    }

    .nav-link {
        font-size: .95rem;
    }
}
#bgLayer {
    transform-style: preserve-3d;
will-change: transform;
  /* box-shadow: 0 30px 60px rgba(0,0,0,0.3); */
}

#conne{
  margin-top: 0px;
  height: 80vh;
}


.ban1 {
    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.65)
        ),
        url("../images/bg 3.png")
        center center/cover no-repeat;

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: #d4af37;
    display: block;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #02472d;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    background: #03663f;
    color: #fff;
    transform: translateY(-3px);
}

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #02472d;
}

/* Tablet */
@media (max-width: 768px) {

.ban1 {
    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.65)
        ),
        url("../images/bg 3.png")
        center center/cover no-repeat;

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {

.ban1 {
    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.65)
        ),
        url("../images/bg 3.png")
        center center/cover no-repeat;

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

    .ban1 {
        min-height: 90vh;
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
    }
}

/* .ban1 {
  background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0,0,0,.6)),
   url("../images/bg\ 3.png") 

  center/cover no-repeat;
  height: 100vh;

  align-items: center;
  position: relative;
} */
.ban2 {
  max-width: 500px;
  margin-left: 6%;
  color: #fff;
  transition: ease-in-out 1s;
  background-attachment: fixed;

}

/* for filter css */
.form-filter{
  border: 2px solid rgb(2, 71, 45);
  border-radius: 50px;
}

.ban2 h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.ban2 p {
    transition: ease-in-out 2s;
  font-size: 16px;
  margin-top: 15px;
}
/* for style 0f above contact */
.ban3 {
  background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0,0,0,.6)),
                         url("../images/bg\ 2.png") 

              center/cover no-repeat;
  min-height: 90vh;
  position: relative;
  display: flex;
    background-attachment: fixed;

  align-items: center;
  margin-top: 20px;
  padding: 15px;
}



.ban3 h1 {
  color: rgb(2, 71, 45);
  font-family: playfair, serif;
  font-size: 3rem;
}

.ban3 p {
  font-family: playfair, serif;
  font-size: 1.2rem;
  line-height: 1.6;
}

.view-more-btn {
  background-color: rgb(2, 71, 45);
  padding: 0.5rem 2rem;
  margin-top: 1rem;
}

.view-more-btn:hover {
  background-color: rgb(2, 71, 45);
transform: scale(1.07);
transition: ease-out 2s;
}


.image-col img {
  max-width: 100%;
  height: auto;
  margin-left: -80px;
  margin-bottom: 20px;
  border-radius: 5px;
}


@media (max-width: 992px) {
 .textstyle {
    font-size: 4rem;
    
    letter-spacing: 16px;
    transform: translateY(-50%);

  

  
  }

  .ban3 {
    flex-direction: column;
    min-height: auto;
    padding: 40px 20px;
  }
  
  .image-col {
    margin-top: 20px;
  }

  .text-container {
    max-width: 100%;
  }
}



@media (max-width: 576px) {
  .ban3 h1 {
    font-size: 2rem;
  }


/* .ban1 {
  background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0,0,0,.6)),
   url("images/SPM\ banner\(3\).jpg.jpeg") 
  center/cover no-repeat;
  min-height: 60vh;
  width: auto;
    background-attachment:fixed;

  align-items: center;
  position: relative;
} */


 h1{
      font-size: 2rem !important;

}
.ban3 {
  background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0,0,0,.6)),
              url("https://static.vecteezy.com/system/resources/previews/036/725/233/non_2x/ai-generated-real-estate-advertisment-background-with-copy-space-free-photo.jpg") 
              center/cover no-repeat;
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
}

  .ban3 p {
    font-size: 1rem;
  }

  .view-more-btn {
    width: 100%;
    text-align: center;
  }
    .image-col {
    text-align: center;
  }

  .image-col img {
    margin-left: 0;
    width: 100%;
  }

  /* .image-col img {
    margin-bottom: 10px;
  } */
}

/* contscat style */
.textstyle {
  font-size: 2.5rem;
  letter-spacing: 6px;
  text-align: center;
/* color: white; */
  color: transparent;
  -webkit-text-stroke: 1px rgb(2, 71, 45);

  transform: translateY(-40%);
}
@media (min-width: 1200px) {

    .resimg:hover{
        transform:scale(1.4);
        transition: ease-in 2s;
        margin-left: 20px;
        margin-bottom: 90px;
    }

 .textstyle1 {
    font-size: 5rem;
    letter-spacing: 30px;
    color: transparent;
        -webkit-text-stroke: 3px rgb(255, 255, 255);

    /* -webkit-text-stroke: 4px rgb(2, 71, 45); */
    
    transform: translateY(-50%);
  }


  .textstyle {
    font-size: 5rem;
    letter-spacing: 30px;
    color: transparent;
    -webkit-text-stroke: 4px rgb(2, 71, 45);
    
    transform: translateY(-50%);
  }
}


/* for card */
.image-card {
  position: relative;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  pointer-events: none;
  background: rgba(0,0,0,0.4); 
}

.image-card:hover .image-overlay {
  opacity: 1;
  pointer-events: auto;
}

.image-title {
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 100%;
  padding-left: 15px;
  padding-bottom: 10px;
  color: white;
}

.image-title h1 {
  font-family: playfair;
  font-size: 3rem;
  margin: 0;
}


/* for card css */
.card {
         position: relative;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff;
    /* width: 320px; */
    height: 300px;
    overflow: hidden;
}


.card-img-top {
    width: 100%;
    height: 300px; 
    object-fit: cover;
}

.image-card .card-img-top {
  
    transition: transform 3s ease;
}

.image-card:hover .card-img-top {
    transform: perspective(600px) rotateY(20deg) scale(1.5);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;

    transition: opacity 2s ease-in-out;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay1 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
    left: 0;
    opacity: 1;
    margin-bottom: 30px;
    transition: opacity 2s ease-in-out;
}




/* form start */
form {
  padding: 20px;
  /* border: 2px solid #ccc; */
  border-radius: 10px;
  transition: all 2s ease;
}

form:hover {
    border: 2px solid;
  border-color: rgb(2, 71, 45);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 2s ease;

  background-color: #f9faff;
}

.form-control-underline,
.form-select.form-control-underline {
  border: none;
  border-bottom: 3px solid rgb(2, 71, 45);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 10px 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control-underline:focus,
.form-select.form-control-underline:focus {
  border-bottom-color: rgb(0, 17, 65);
  box-shadow: 0 4px 10px rgba(2, 71, 45, 0.2);
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

form .mb-2 {
  margin-bottom: 20px !important;
}

form .btn {
  background-color: rgb(2, 71, 45);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

form .btn:hover {
  background-color: rgb(3, 90, 60);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 71, 45, 0.35);
}

.form-control::placeholder {
  color: #999;
  font-size: 14px;
}


/* .colwhy .card{
height: 270px;

}

.colwhy i{
  background: rgb(3, 90, 60);
color: white;

}

.colwhy i:hover{
  color: rgb(3, 90, 60);
background-color: white;
}

.colwhy {
  padding-bottom: 10px;
  transition: 
    transform cubic-bezier(0.4, 0, 0.2, 1) 5s,
    box-shadow 0.35s ease;
}


.colwhy .card:hover {
  background-color: rgb(3, 90, 60);
  color: white;
box-shadow:
  10 8px 15px rgba(2, 71, 44, 0.18),
  10 2px 4px rgba(2, 71, 44, 0.12);} */




  .colwhy {
  margin-bottom: 25px;
}

.colwhy .card {
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

.colwhy .card:hover {
  background: rgb(3, 90, 60);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(3, 90, 60, 0.25);
}

.colwhy .card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.colwhy i {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgb(3, 90, 60);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px !important;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
}

.colwhy .card:hover i {
  background: white;
  color: rgb(3, 90, 60);
}

.colwhy h5 {
  font-weight: 700;
  margin-bottom: 15px;
  min-height: 55px;
}

.colwhy p {
  line-height: 1.7;
  margin-bottom: 0;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .why-title {
    font-size: 2.4rem;
  }

  .colwhy .card {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .colwhy .card {
    min-height: auto;
  }

  .colwhy h5 {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .why-title {
    font-size: 1.7rem;
  }

  .colwhy i {
    width: 65px;
    height: 65px;
    font-size: 26px !important;
  }
}


/* developers */

.devel-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-card {
    width: 200px;
    height: 120px;
    background: rgb(2, 71, 45);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 162, 0, 0.753);

    /* box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.8); */

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.logo-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 200px;
    background: rgba(255,255,255,0.5);
    transform: rotate(35deg);
    left: -120px;
    transition: .6s;
}


.logo-card:hover::before {
    left: 250px;
}


.logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 18px 40px rgba(0,0,0,0.15);
    border-color: rgb(2, 71, 45);
}


.devel {
    height: 80px;
    max-width: 150px;
    object-fit: contain;
    transition: .4s ease;
    filter: grayscale(20%);
}


.logo-card:hover .devel {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.carding1 {
    padding: 40px 15px;
}

/* Testimonial Section */
.carding1 {
    background: linear-gradient(135deg, #fff8ed, #ffffff);
    padding: 60px 20px;
    position: relative;
}


/* Heading */
.col6form {
    letter-spacing: 1px;
    color: #222;
    position: relative;
}

.col6form::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #d4a017;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}



/* Swiper spacing */
.auto-swiper {
    padding: 30px 10px;
}


/* Card */
.testimonial-card {

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border-radius: 25px;

    width: 100%;
    max-width: 380px;

    min-height: 350px;

    padding: 30px 25px;

    position: relative;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);

    transition: all .4s ease;
}


.testimonial-card:hover {

    transform: translateY(-12px);

    box-shadow:
    0 25px 45px rgba(0,0,0,0.15);

}


.testimonial-card::before {

    content: "\f10d";

    font-family: "Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:20px;
    right:25px;

    font-size:35px;

    color:rgb(2, 71, 45);

    /* opacity:.25; */

}


.testimonial-card img {

    width:120px;
    height:120px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid rgb(2, 71, 45);

    box-shadow:
    0 8px 20px rgba(0,0,0,.15);

    transition:.3s;

}


.testimonial-card:hover img {

    transform:scale(1.08);

}


.testimonial-card h5 {

    font-size:22px;

    font-weight:700;

    margin-top:15px;

    color:#222;

}


.testimonial-card p {

    font-size:15px;

    color:#666 !important;

    line-height:1.7;

}



.text-warning i {

    color:#ffc107;

    font-size:18px;

    margin:0 2px;

}




.swiper-slide {

    display:flex;

    justify-content:center;

}




@media(max-width:992px){

    .testimonial-card{

        min-height:330px;

    }

}



@media(max-width:768px){

    .carding1{

        padding:40px 10px;

    }


    .testimonial-card{

        max-width:330px;

        padding:25px 20px;

    }


    .testimonial-card img{

        width:100px;

        height:100px;

    }


    .col6form{

        font-size:2rem !important;

    }

}



@media(max-width:480px){

    .testimonial-card{

        min-height:300px;

    }


    .testimonial-card h5{

        font-size:18px;

    }


    .testimonial-card p{

        font-size:14px;

    }


    .col6form{

        font-size:1.6rem !important;

    }

}







/* for hot deals css */

.property-box h3,
.property-box p {
  margin: 0;
}

/* CARD */
.property-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.2s ease;
  font-family: Arial, sans-serif;
}

.property-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.property-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-content {
  padding: 7px 10px;
  line-height: 1.1;
}

.property-type {
  font-size: 14px;
  /* font-weight: 600; */
  color: rgb(2, 71, 45);
  display: flex;
  align-items: center;
  gap: 3px;
    margin-top: 10px;

  margin-bottom: 2px;
}

/* TITLE */
.property-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
    margin-top: 10px !important;

  /* margin: 0; */
}

/* META ROW (FIXED GAP ISSUE) */
.property-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin: 2px 0 4px 0;
  line-height: 1;
}

/* PRICE */
.property-price {
  color: rgb(2, 71, 45);
  /* font-weight: 600; */
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}

/* LOCATION */
.property-location {

  color: rgb(2, 71, 45);
  /* display: flex; */
  font-size: 14px;
    /* font-weight: 600; */
margin-top: 10px;
  /* align-items: center; */
  gap: 2px;
  line-height: 1;
}

/* ICON FIX */
.property-location i {
  font-size: 14px;
}

/* SPECS ROW (BED + SIZE) */
.property-specs {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #000000;
  margin: 10px 0 5px 0;
  line-height: 1;
}

.property-specs span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.property-specs i {
  font-size: 16px;
  color: rgb(2, 71, 45);
}

/* BUTTON */
.property-btn {
  width: 100%;
  padding: 6px;
  font-size: 12px;
  border: none;
  background: rgb(2, 71, 45);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 3px;
  transition: 0.2s ease;
}

.property-btn:hover {
  background: rgb(2, 71, 45);
}

/* .hot-btn{
    background-color: rgb(2, 71, 45);
  font-size: 15px;
  color: white;
  width: 120px;
  gap: 10px;
  border: none;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.hot-card{
  height: 400px !important;
}

.hot-deal-img{
  height: 200px !important;
} */




/* property buy page */
.buy-project{

  /* background-image:
  radial-gradient(rgba(0, 0, 0, 0.226),rgba(0, 0, 0, 0.192)),
  url("https://www.pixelstalk.net/wp-content/uploads/images6/Cool-4K-Minimalist-Wallpaper-HD.jpg"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* height: 100vh; */
  /* display: flex;
  align-items: center; */
  
}

.buy-property6 {
  background-color: rgb(2, 71, 45);
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 16px;
  align-items: center;
  transition: all 0.3s ease;
  color: #fff;
}

.buy-property6:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.buy-icons-main {
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.buy-icons {
  font-size: 30px;
  color: rgb(2, 71, 45);
}

.buy-content h5 {
  margin: 0 0 8px;
  font-weight: 600;
}

.buy-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* .buy-icons-main{
  background-color: white;
  padding: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-icons{
  font-size: 50px;
}

.buy-property6{
  background-color: red;
  display: flex;
  padding: 20px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
} */

/* foter */

footer{
    background-color: rgb(2, 71, 45);
}
footer h5,a{
    color: white;
   text-decoration: none;
}


.fa-brands{
    background-color: white;border-radius: 50px;
    padding: 10px;
    color:rgb(2, 71, 45);
}

.fa-brands:hover{
transform: rotate(4turn);
transition: ease-out 2s;
box-shadow: 0px 5px 15px 5px rgba(255, 0, 0, 0.384);
}
p i{
    background-color: white;border-radius: 50px;
    padding: 10px;
    color:rgb(2, 71, 45);
}


.ban2,.ban3, p{
        padding-bottom: 20px;

     font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.7;
    justify-content: flex-start;
    /* text-align: justify; */
}

.buy-p{
   padding-bottom: 20px;

     font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.7;
    justify-content: flex-start;
    /* text-align: justify; */
}

