

@media (min-width: 600px) and (max-width: 999px) {
    .blog-card-body h5{
      height: 80px;
    }
}

/* ── Issue #4 & #5: Slider offset — compensate for fixed navbar ── */

/* Issue #4a: 768px–991px (navbar height: 96px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid.d-none.d-sm-block {
        margin-top: 96px !important;
    }
}

/* Issue #4b: 992px–1187px (navbar height: 143px — nav items wrap to second line) */
@media (min-width: 992px) and (max-width: 1250px) {
    .container-fluid.d-none.d-sm-block {
        margin-top: 113px !important;
    }
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .blog-card-body h5{
      min-height: 100px;
    }
}

/* 1400px–1440px: extra buffer for xxl Bootstrap breakpoint edge */
@media (min-width: 1400px) and (max-width: 1440px) {
  .container-fluid.d-none.d-sm-block {
    margin-top: 110px !important;
  }
}

/* 1441px–1800px: measured navbar 116px, extended beyond old 1589px cap */
@media (min-width: 1441px) and (max-width: 1800px) {
  .container-fluid.d-none.d-sm-block {
    margin-top: 116px !important;
  }
}

/* ── End slider offset ── */

/* ══ FIX A: 320px–377px mobile caption ══ */
@media (max-width: 377px) {
  .mobile-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 80%;
    overflow: hidden;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.8),
                -1px -1px 4px rgba(255,255,255,0.8);
  }
  .mobile-caption p {
    display: none;
  }
  .mobile-caption h6 {
    font-size: 13px;
    margin-bottom: 2px;
    color: #1c1c1c;
  }
  .mobile-caption h5 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

/* ══ FIX B: 576px–767px desktop panel captions ══ */
/* Desktop images are 800×874 (nearly square) — they render tall
   in col-6 so bottom:15% fits. Problem was only the padding-right
   of 120px leaving ~116px text width. Reduce padding, hide p.   */
@media (min-width: 576px) and (max-width: 767px) {
  .caption-slider {
    left: 5%;
    padding-right: 15px;
    bottom: 10%;
  }
  .caption-slider1 {
    right: 5%;
    padding-left: 15px;
    bottom: 10%;
  }
  .caption-slider p,
  .caption-slider1 p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  .caption-slider h6,
  .caption-slider1 h6 {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .caption-slider h5,
  .caption-slider1 h5 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .caption-slider .btn,
  .caption-slider1 .btn {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* ══ FIX C: 768px–1045px desktop panel captions ══ */
/* Images render tall (419px–570px in col-6 at this range).
   Keep bottom positioning — only reduce padding-right and hide p
   to prevent text column overflow.                              */
@media (min-width: 768px) and (max-width: 1045px) {
  .caption-slider {
    left: 8%;
    padding-right: 30px;
    bottom: 10%;
  }
  .caption-slider1 {
    right: 8%;
    padding-left: 30px;
    bottom: 10%;
  }
  .caption-slider p,
  .caption-slider1 p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .caption-slider h6,
  .caption-slider1 h6 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .caption-slider h5,
  .caption-slider1 h5 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

/* ══ FIX D: 1400px–1479px desktop panel captions ══ */
/* The 1400px stylesheet block sets bottom:30%; padding-right:200px.
   At 1400-1479px col-6=700-739px, images render ~765-807px tall.
   Caption at bottom:30% sits well within bounds — no overflow.
   margin-top:116px (from existing offset block) stays unchanged.
   Only need to ensure p is visible at this width (paragraph fits
   at 325px+ text width — keep it visible here unlike narrow ranges) */
@media (min-width: 1400px) and (max-width: 1479px) {
  .caption-slider,
  .caption-slider1 {
    bottom: 15%;
  }
}

/* Gallery Masonry Grid */
.gallery-masonry-grid {
    columns: 3;
    column-gap: 12px;
}
@media (max-width: 768px) {
    .gallery-masonry-grid { columns: 2; }
}
@media (max-width: 480px) {
    .gallery-masonry-grid { columns: 1; }
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
}
.gallery-masonry-item img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* Gallery */
.Gpage-title {
    color: #ead153;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
    padding-top: 9rem;
    padding-bottom: 8rem;
}
.gallery-header {
    background-image: url('/images/Gallery/Gallery-header.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 9%;
}
.text-color-gray {
    color: #2f2f2f;
}

.gal-category:hover {
	border-bottom: solid 2px #ead153;
}
.gal-border-none:hover {
border: none;
}
.Gallery-btn {
	width: 14%;
	border-radius: 17px 17px 17px 17px;
    border: none;
    background-color: #353d29;
    color: white;
}
/* gallery carousel */
.row > .column {
    padding: 0 8px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Create four equal columns that floats next to eachother */
  .column {
    float: left;
    width: 25%;
  }
  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    text-align: center;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    background-color: black;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 41px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    display: none;
    margin-top: 6rem;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  img.demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
/* end of gallery carousel */
/* contact us page  */
.contact-header {
  background-image: url('/images/contact/amphibians-contact-us_02.png');
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 9%;
}
.contact-color1 {
  color: #387f48;
}
.con-submit {
  background-color: #353d29;
  color: #f2f2f2;
  border-radius: 14px 14px 14px 14px;
}
.font-size-16 {
  font-size: 16px;
}
.font-color-1 {
  color: #282e1f;
}
/* map */
.map-container-2{
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}
.map-container-2 iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}
#gmap_canvas {
	border: solid 2px #69a126;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 350px;
  width: 500px;
}
.mapouter {
  position: relative;
  text-align: right;
  height: 350px;
  width: 500px;
}
.font-size-30 {
  font-size: 20px;
}
.contactpg-sec {
  background-image: url('/images/contact/amphibians-contact-us_03.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 12rem;
 
}
/* Group-single */
.card-text {
  text-align: justify;
}
  .single-group-header {
    background-image: url('/images/group-single/amphibians--group-header-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 9%;
  }
  .group-single-title {
    background: #ead153;
    width: 100%;
    border-radius: 1px 19px 1px 1px;
    margin-left: -7rem;
    margin-left: -6rem;
  }
  .group-single-title-1 {
    background: #ead153;
    width: 78%;
    border-radius: 19px 19px 1px 1px;
    margin-left: 7rem;
    
  }
  .group-single-title-2 {
    
      background: #ead153;
      width: 105%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -8rem;
    }
    .group-single-title-3 {
    
      background: #ead153;
      width: 85%;
      border-radius: 19px 19px 1px 1px;
      margin-left: 8rem;
    }
    .group-single-title-4 {
    
      background: #ead153;
      width: 110%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -7rem;
    }
    .group-single-title-5 {
    
      background: #ead153;
      width: 81%;
      border-radius: 19px 19px 1px 1px;
      margin-left: 8rem;
    }
    .group-single-title-6 {
      background: #ead153;
      width: 97%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -10rem;
      margin-top: 3rem;
    }
  .group-single-tibg {
    z-index: 9999 !important;
  }
  
  .card-width {
    width: 100%;
  }
  .group-text-padding {
    padding-right: 1rem;
  }
  .btn.group-single-btn {
    background: #353d29;
    color: white;
    border-radius: 19px 19px 19px 19px;
    margin-right: 18rem;
    width: 14%;
  }
  .group-card {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_03.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
  }

  .font-size-31 {
    font-size: 30px;
  }
  .card-text {
    font-weight: 600;
  }

  .jus-content-end {
    justify-content: end;
  }
  .group-card-body-1 {
    padding-left: 15rem;
  }
  .group-card-1 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
margin-right: 9rem;
margin-top: -2rem;
background-image: url('/images/group-single/amphibians--group-UI-1-bg_05.png');
background-size: cover;
background-repeat: no-repeat;
  }
  .group-single-img-1 {
    margin-left: -6rem;
  }
  .group-card-2 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_09.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -3rem;
  }
  .group-card-3 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
margin-right: 9rem;
margin-top: -3rem;
background-image: url('/images/group-single/amphibians--group-UI-1-bg_11.png');
background-size: cover;
background-repeat: no-repeat;
  }
  .group-card-4 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_15.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -2rem;
  }
  .group-card-5 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
margin-right: 9rem;
margin-top: -2rem;
background-image: url('/images/group-single/amphibians--group-UI-1-bg_17.png');
background-size: cover;
background-repeat: no-repeat;
  }
  .group-card-6 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_21.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -2rem;
  }
  .group-single-img-2 {
    margin-left: -3rem;
  }
  .group-single-img-3 {
    margin-left: -3rem;
  }

  /* Blog-archive page  */
  .post-archive-header {
    background-image: url('/images/posts/blog-header_02.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 7rem;
  }
  .font-51 {
    font-size: 56px;
  }
  .blog-post-1 {
    background-image: url('/images/posts/blog-bg-1_02.png');
    background-repeat: no-repeat ;
    background-size: cover;
  }
  .post-title-green {
    color: #387f48;
  }
  .post-archive-btn.py-2.mt-4 {
    background: #353d29;
    color: white;
    width: 30%;
    border-radius: 18px 18px 18px 18px;
    border: none;
  }
  .blog-card-padding {
    padding: 3rem;
  }
  .blog-main-padding {
padding: 4.5rem;
  }
  .blog-post-2 {
    background-image: url('/images/posts/blog-bg-2_02.png');
    background-repeat: no-repeat ;
    background-size: cover;
  }
  .blog-post-3 {
    background-image: url('/images/posts/blog-bg-3_02.png');
    background-repeat: no-repeat ;
    background-size: cover;
  }
  .blog-post-4 {
    background-image: url('/images/posts/blog-bg-4_02.png');
    background-repeat: no-repeat ;
    background-size: cover;
    padding-bottom: 10rem;
  }
  .post-archive-btn-2 {
    background: #353d29;
    color: white;
    width: 16%;
    border-radius: 18px 18px 18px 18px;
    border: none;
  }
 
 











  /* Responsive */
/*  Mobile */
@media only screen and (max-width: 480px) {
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        padding-top: 169px;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: black;
    }
    .Gallery-btn {
        width: 43%;
        border-radius: 17px 17px 17px 17px;
        border: none;
        background-color: #353d29;
        color: white;
    }
    .Gpage-title {
        color: #ead153;
        text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .gallery-header {
        background-image: url('/images/Gallery/Gallery-header.png');
        background-size: cover;
        background-repeat: no-repeat;
        margin-top: 0%;
    }
    .gallery-cat {
        padding-left: 5rem;
        padding-right: 3rem;
    }
    .gallery-pdn {
        padding: 10px;
    }
    .mobile-mt0 {
        margin-top: 0rem !important;
    }
    .mapouter {
      position: relative;
      text-align: right;
      height: 350px !important;
      width: 350px !important;
    }
    .gmap_canvas {
      overflow: hidden;
      background: none !important;
      height: 300px !important;
      width: 352px !important;
    }
    #gmap_canvas {
      width: 352px !important;
      height: 300px !important;
    }
    .margin-0 {
      margin: 0px !important;
    }
    .contactpg-sec {
      padding-bottom: 0rem;
    }
    .Gpage-title {
      color: #ead153;
      text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    .contact-header {
      margin-top: 0px;
    }
    .group-single-img {
      width: 103%;
    }
    .font-size-31 {
      font-size: 17px;
    }
    .group-single-btn {
      background: #353d29;
      color: white;
      border-radius: 19px 19px 19px 19px;
      margin-right: 0rem !important;
      width: 45% !important;
    }
    .group-text-padding {
      padding-right: 1rem;
    }
    .card-width {
      width: 100%;
    }
    .group-single-title {
      background: #ead153;
      width: 122% !important;
      border-radius: 1px 19px 1px 1px;
     
      margin-left: -4rem !important;
    }
    .group-card-body-1 {
      padding-left: 0rem;
    }
    .group-card-1 {
      border: solid 2px #e1e1e2;
      box-shadow: 4px 1px 5px 1px #e1e1e2;
      border-radius: 24px 24px 24px 24px;
      margin-right: 1rem;
      margin-top: -2rem;
      background-image: url('/images/group-single/amphibians--group-UI-1-bg_05.png');
      background-size: cover;
      background-repeat: no-repeat;
      
    }
    .group-single-title-1 {
      background: #ead153;
      width: 102%;
      border-radius: 19px 19px 1px 1px;
      margin-left: 4rem;
    }
    .group-single-img-1 {
      width: 89%;
    }
    .group-single-img-1 {
      margin-left: 0rem;
    }
    .group-single-title-2 {
      background: #ead153;
      width: 124%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -4rem;
    }
    .group-single-img-3 {
      margin-left: -1rem;
    }
    .group-single-title-3 {
      background: #ead153;
      width: 115%;
      border-radius: 19px 19px 1px 1px;
      margin-left: 1rem;
    }
    .group-card-3 {
      border: solid 2px #e1e1e2;
      box-shadow: 4px 1px 5px 1px #e1e1e2;
      border-radius: 24px 24px 24px 24px;
      margin-right: 1rem;
      margin-top: -4rem;
      background-image: url('/images/group-single/amphibians--group-UI-1-bg_11.png');
      background-size: cover;
      background-repeat: no-repeat;
    }
    .group-card-5 {
      border: solid 2px #e1e1e2;
      box-shadow: 4px 1px 5px 1px #e1e1e2;
      border-radius: 24px 24px 24px 24px;
      margin-right: 1rem;
      margin-top: -2rem;
      background-image: url('/images/group-single/amphibians--group-UI-1-bg_17.png');
      background-size: cover;
      background-repeat: no-repeat;
    }
    .group-single-title-5 {
      background: #ead153;
      width: 91%;
      border-radius: 19px 19px 1px 1px;
      margin-left: 2rem;
    }
    .group-single-img {
      width: 96%;
    }
    .group-single-title-4 {
      background: #ead153;
      width: 110%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -3rem;
    }
    .group-single-title-6 {
      background: #ead153;
      width: 97%;
      border-radius: 19px 19px 1px 1px;
      margin-left: -7rem;
      margin-top: 3rem;
    }
    .single-group-header {
      background-image: url('/images/group-single/amphibians--group-header-banner.png');
      background-size: cover;
      background-repeat: no-repeat;
      margin-top: 0%;
    }
    .mobile-none {
      display: none;
    }
    .blog-main-padding {
      padding: 0rem;
    }
    .post-archive-btn {
      background: #353d29;
      color: white;
      width: 55% !important;
      border-radius: 18px 18px 18px 18px;
      border: none;
      align-items: center;
    }
    .blog-f-padding {
      padding: 2rem;
    }
    .font-m-14 {
      font-size: 13px;
    }
    .post-archive-btn-2 {
      background: #353d29;
      color: white;
      width: 86%;
      border-radius: 18px 18px 18px 18px;
      border: none;
    }
    .font-51 {
      font-size: 35px;
    }
    .post-archive-header {
      background-image: url('/images/posts/blog-header_02.png');
      background-repeat: no-repeat;
      background-size: cover;
      margin-top: 0rem;
    }
  .btn-m-align {
    text-align: center;
  } 
    
  
   
}
.display-none { display: none; }

/* mobile landscape */
/*landscape*/

@media (max-width: 667px) {
  .Gpage-title {
    color: #ead153;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .font-51 {
    font-size: 42px;
  }
  .post-archive-header {
    background-image: url('/images/posts/blog-header_02.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0rem;
  }
  .ms-2.h5.fw-bold.font-m-14 {
    font-size: 13px;
  }
  .btn-m-align {
    text-align: center;
  } 

}

/* tablet, landscape iPad, lo-res laptops ands desktops*/
@media screen and (min-width: 768px) and (max-width: 991px)  {
	.Gpage-title {
    color: #ead153;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .gallery-header {
    background-image: url('/images/Gallery/Gallery-header.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 23%;
    
  }
  .close {
    color: white;
    position: absolute;
    padding-top: 41px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
  }
  .margin-0 {
    margin: 0px !important;
  }
  .mapouter {
    position: relative;
    text-align: right;
    height: 350px;
    width: 387px;
  }
  .gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 350px;
    width: 385px;
  }
  #gmap_canvas {
    width: 385px;
  }
  .contactpg-sec {
    background-image: url('/images/contact/con-tab1.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 0px;
  }
  .font-size-30 {
    font-size: 16px;
  }
  .contact-header {
    background-image: url('/images/contact/amphibians-contact-us_02.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 21%;
  }

  /* Group-single */
  .group-card-1 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    
    margin-top: -2rem;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_05.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group-single-title-1 {
    background: #ead153;
    width: 115%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -6rem;
  }
  .group-single-img-3 {
    margin-left: -8rem;
  }
  .group-single-title {
    background: #ead153;
    width: 151%;
    border-radius: 1px 19px 1px 1px;
  
    margin-left: 0rem;
  }
  .group-card-1 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    margin-right: 4rem;
    margin-top: -2rem;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_05.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 1rem;
  }
  .group-single-title-2 {
    background: #ead153;
    width: 187%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -1rem;
  }
  .group-single-title-3 {
    background: #ead153;
    width: 150%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -10rem;
  
  }
  .group-card-3 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    margin-right: 5rem;
    margin-top: -4rem;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_11.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 1rem;
  }
  .group-single-title-4 {
    background: #ead153;
    width: 199%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -1rem;
  }
  .group-single-title-5 {
    background: #ead153;
    width: 127%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -1rem;
  }
  .group-card-5 {
    border: solid 2px #e1e1e2;
    box-shadow: 4px 1px 5px 1px #e1e1e2;
    border-radius: 24px 24px 24px 24px;
    margin-right: 4rem;
    margin-top: -2rem;
    background-image: url('/images/group-single/amphibians--group-UI-1-bg_17.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 1rem;
  }
  .group-single-title-6 {
    background: #ead153;
    width: 165%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -4rem;
    margin-top: 3rem;
  }
  .group-single-img-1 {
    margin-left: -9rem;
  }
  .group-card-body-1 {
    padding-left: 0rem;
  }
  .group-text-padding {
    padding-right: 0rem;
  }
  .card-width {
    width: 103%;
  }
  .group-single-btn {
    background: #353d29;
    color: white;
    border-radius: 19px 19px 19px 19px;
    margin-right: 0rem !important;
    width: 31% !important;
  }
  .single-group-header {
    background-image: url('/images/group-single/amphibians--group-header-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* margin-top: 19%; */
  }

  /* blog-archive */
  .blog-card-padding {
    padding: 0rem;
  }
  .font-m-14 {
    font-size: 12px;
  }
  .post-archive-btn-2 {
    background: #353d29;
    color: white;
    width: 31%;
    border-radius: 18px 18px 18px 18px;
    border: none;
  }

}
/* tab landscape */
@media (min-width: 992px) and (max-width: 1199px) {
  .group-text-padding {
    padding-right: 0rem;
  }
  .group-single-img-1 {
    margin-left: -11rem;
  }
  .group-single-title-1 {
    background: #ead153;
    width: 78%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -2rem;
  }
  .group-card-body-1 {
    padding-left: 0rem;
  }
  .card-width {
    width: 103%;
  }
  .group-single-title {
    background: #ead153;
    width: 100%;
    border-radius: 1px 19px 1px 1px;
    margin-left: -7rem;
    margin-left: -1rem;
  }
  .btn.group-single-btn {
    background: #353d29;
    color: white;
    border-radius: 19px 19px 19px 19px;
    margin-right: 18rem;
    width: 26%;
  }
  .group-single-title-2 {
    background: #ead153;
    width: 105%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -1rem;
  }
  .group-single-title-3 {
    background: #ead153;
    width: 85%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -2rem;
  }
  .group-single-img-3 {
    margin-left: -8rem;
  }
  .group-single-title-4 {
    background: #ead153;
    width: 138%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -4rem;
  }
  .group-single-img-2 {
    margin-left: -7rem;
  }
  .group-single-title-5 {
    background: #ead153;
    width: 81%;
    border-radius: 19px 19px 1px 1px;
    margin-left: 2rem;
  }
  .group-single-title-6 {
    background: #ead153;
    width: 97%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -5rem;
    margin-top: 3rem;
  }
  .blog-card-padding {
    padding: 0rem;
}
 
}

/* big landscape tablets, laptops, and desktops */
@media (min-width: 1025px) {
.padding-leftgroup {
padding-left: 3rem;
}
.padding-leftgroup-1 {
  padding-left: 6rem;
  }
  .group-single-title-4 {
    background: #ead153;
    width: 101%;
    border-radius: 19px 19px 1px 1px;
    margin-left: -5rem;
  }

 
}
/* @media only screen
and (min-device-width: 667px)
and (max-device-width:667px) { */

/* ── Single post page: featured image bottom overlay band ── */
.single-post-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.single-post-card .card-img-overlay {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: rgba(234, 222, 196, 0.85);
}

.single-post-card .single-blog-post-heading {
    font-size: 1.5rem !important;
    color: #353d29 !important;
    margin-bottom: 0;
    line-height: 1.3;
}


