/* =========================================================
   1. GLOBAL / RESET
   ========================================================= */
:root{
  --green:#587b20;
  --green-dark:#466518;
  --green-soft:#edfbb8;
  --cream:#fffef5;
  --text:#42631e;
  --white:#fff;
  --max-width:980px;
  --shadow:0 10px 28px rgba(55,82,25,.12);
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}

html{
  scroll-behavior:smooth;
  scroll-padding-top:82px;
}

body{
  font-family: 'Montserrat', sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,textarea{
  font:inherit;
}

/* =========================================================
   2. FLOATING MENU / HEADER
   ========================================================= */
.site-header{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  transform:none;
  width:100%;
}

.floating-menu{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:7px 12px 7px 16px;
  border-radius:0;
  border-radius:0;
  background:rgba(73,101,24,.96);
  box-shadow:0 8px 30px rgba(35,50,14,.22);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:9px;
  color:#fff;
  font-weight:700;
  white-space:nowrap;
}

.brand img{
  width:35px;
  height:39px;
  object-fit:cover;
  border-radius:8px;
  background:#fff;
  margin-left: 5px;
}

.brand span{
  font-size:16px;
  letter-spacing:.5px;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  list-style:none;
  margin-right: 10px;
}

.nav-links a{
  display:block;
  padding:10px 11px;
  border-radius:9px;
  color:#fff;
  font-size:12px;
  transition:background .25s ease,transform .25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  border-radius:10px;
  background:#fff;
  color:var(--green-dark);
  cursor:pointer;
  font-size:23px;
  line-height:1;
}

/* =========================================================
   3. HERO / HEADER BANNER
   ========================================================= */
#home{
  min-height:0;
}

.hero{
  width:100%;
  padding-top:0;
  background:#fff;
}

.hero-image{
  width:100%;
  height:auto;
  min-height:270px;
  object-fit:cover;
  object-position:center;
}

/* =========================================================
   4. COMMON SECTION STYLES
   ========================================================= */
.section{
  width:min(100%,var(--max-width));
  margin:0 auto;
  padding:42px 24px;
}

.section-title{
  margin-bottom:22px;
  text-align:center;
  font-size:25px;
  line-height:1.15;
  font-weight:700;
  color:var(--green);
  letter-spacing:-.5px;
}

.section-title::after{
  content:"";
  display:block;
  width:45px;
  height:3px;
  margin:9px auto 0;
  border-radius:99px;
  background:#9bbd54;
}

/* =========================================================
   5. SCROLL IMAGE ANIMATION
   ========================================================= */
.reveal-image{
  opacity:0;
  transform:translateY(40px) scale(.97);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
  
}
.hero-image {
	padding-top: 40px;
}
.reveal-image.from-left{
  transform:translateX(-45px) scale(.97);
}

.reveal-image.from-right{
  transform:translateX(45px) scale(.97);
}

.reveal-image.is-visible{
  opacity:1;
  transform:translate(0) scale(1);
  font-family: 'Montserrat', sans-serif;
}

.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
.delay-4{transition-delay:.32s}

/* =========================================================
   6. WHAT WE OFFER
   ========================================================= */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px 18px;
  max-width:720px;
  margin:0 auto;
}

.offer-card{
  overflow:hidden;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
}

.offer-card img{
  width:100%;
  height:auto;
  aspect-ratio:141 / 124;
  object-fit:cover;
}

/* DEE */
.cta-banner img {
    animation: ctaFloat 5s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform, filter;
}

@keyframes ctaFloat {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
    }

    20% {
        transform: translateY(-8px) scale(1);
        filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.15));
    }

    40% {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.18));
    }

    60% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
    }

    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
    }
}
.offer-details {
	text-align: center;
    padding: 8px 0;
    display: block;
    background: #506b21;
    color: white;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
}

   .package-container {
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); */
    border: 5px solid #9bbd54;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Use 400 for regular, 600 for semi-bold, etc. */
  font-style: normal;
    }

    /* =========================
       MAIN PACKAGE TABS
    ========================== */

    .package-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .package-tab {
        border: none;
        background: #E8F7C7;
        color: #333;
        padding: 10px 18px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .package-tab:hover {
        background: #e1e1e1;
        transform: translateY(-2px);
    }

    .package-tab.active {
        background: #506b21;
        color: #ffffff;
        box-shadow: 0 5px 15px rgba(244,163,0,0.30);
    }

    /* =========================
       PACKAGE CONTENT
    ========================== */

    .package-content {
        display: none;
        animation: fadeIn 0.35s ease;
    }

    .package-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .package-title {
        text-align: center;
        margin: 0 0 20px;
        font-size: 25px;
        font-weight: 800;
        color: #222;
    }

    /* =========================
       PAX TABS
    ========================== */

    .person-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .person-tab {
        border: 0 solid #f4a300;
        background: #E8F7C7;
        color: #333;
        padding: 10px 18px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .person-tab:hover {
        background: #e1e1e1;
    }

    .person-tab.active {
        background: #506b21;
        color: #ffffff;
    }

    /* =========================
       THIRD LEVEL TABS
    ========================== */

    .multiplier-section {
        display: none;
        margin-top: 10px;
        margin-bottom: 25px;
        animation: fadeIn 0.35s ease;
    }

    .multiplier-section.active {
        display: block;
    }

    .multiplier-title {
        text-align: center;
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 700;
        color: #555;
    }

    .multiplier-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .multiplier-tab {
	border: 0px solid #f4a300;
    background: #E8F7C7;
    color: #333;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
	font-weight: bold;
    }

    .multiplier-tab:hover {
        background: #e1e1e1;
        border-color: #f4a300;
        transform: translateY(-2px);
    }

    .multiplier-tab.active {
        background: #506b21;
        color: #ffffff;
        border-color: #f4a300;
        box-shadow: 0 5px 15px rgba(244,163,0,0.25);
    }

    /* =========================
       TOTAL PAX
    ========================== */

    .total-pax-box {
        display: none;
        text-align: center;
        background: #E8F7C7;
        border-radius: 18px;
        padding: 10px 20px;
        border: 5px solid #b6c996;
        margin-bottom: 20px;
        animation: fadeIn 0.35s ease;
    }

    .total-pax-box.active {
        display: block;
    }

    .total-pax-label {
        display: block;
        font-size: 14px;
        color: #777;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .total-pax {
        display: block;
        font-size: 42px;
        font-weight: 900;
        color: #506b21;
    }

    .calculation {
        color: #777;
        font-size: 15px;
    }

    /* =========================
       PRICE
    ========================== */

    .price-box {
        text-align: center;
        background: #fff8e8;
        border-radius: 18px;
        padding: 30px 20px;
        border: 1px solid #f5dfad;
    }

    .price-label {
        display: block;
        font-size: 14px;
        color: #777;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .price {
        display: block;
        font-size: 42px;
        font-weight: 900;
        color: #e89500;
    }

    .placeholder {
        text-align: center;
        padding: 50px 20px;
        color: #888;
        font-size: 18px;
    }
.selectlabel {
	margin-top: 15px; 
	text-align: center; 
	margin-bottom:15px;
    font-size: 16px;
    color: green;
    font-weight: bold;
  }

    /* =========================
       MOBILE
    ========================== */

    @media (max-width: 600px) {

        body {
            padding: 20px 12px;
        }

        .package-container {
            padding: 20px 15px;
            border-radius: 15px;
        }

        .package-tabs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .package-tab {
            width: 100%;
            padding: 13px 10px;
            font-size: 14px;
        }

        .person-tabs {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .person-tab {
            width: 100%;
        }

        .multiplier-tabs {
            gap: 8px;
        }

        .multiplier-tab {
       
            height: 48px;
        }

        .package-title {
            font-size: 22px;
        }

        .total-pax {
            font-size: 34px;
        }

        .price {
            font-size: 34px;
        }
    }
	
#bcgc_7f42a9 {
  --bc-green: #2f6b2f;
  --bc-dark-green: #235525;
  --bc-gold: #b18a25;
  --bc-text: #555;
  --bc-heading: #2c662b;
  --bc-border: #e8e8e8;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 36px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: var(--bc-text);
  line-height: 1.45;
  background: #fff;
}

#bcgc_7f42a9 *,
#bcgc_7f42a9 *::before,
#bcgc_7f42a9 *::after {
  box-sizing: border-box;
}

/* Package E Gift Set detail visibility */
#packageE #bcgc_7f42a9 #gifta {
  display: block;
}

#packageE #bcgc_7f42a9 #giftb,
#packageE #bcgc_7f42a9 #giftc {
  display: none;
}

#bcgc_7f42a9 .bcgc-title {
  margin: 0 0 22px;
  text-align: center;
  color: var(--bc-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: .2px;
}

#bcgc_7f42a9 .bcgc-a-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

#bcgc_7f42a9 .bcgc-product {
  text-align: center;
}

#bcgc_7f42a9 .bcgc-product img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 205px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

#bcgc_7f42a9 .bcgc-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--bc-dark-green);
  color: #fff;
  border: 2px solid var(--bc-gold);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

#bcgc_7f42a9 .bcgc-section {
  margin-top: 18px;
}

#bcgc_7f42a9 .bcgc-heading {
  margin: 0 0 12px;
  color: var(--bc-heading);
  font-size: clamp(20px, 2.5vw, 25px);
  line-height: 1.25;
  font-weight: 800;
}

#bcgc_7f42a9 .bcgc-heading span {
  color: #444;
  font-weight: 500;
}

#bcgc_7f42a9 .bcgc-list {
  margin: 0;
  padding-left: 22px;
  color: #5b5b5b;
  font-size: 13px;
}

#bcgc_7f42a9 .bcgc-list li {
  margin: 2px 0;
}

#bcgc_7f42a9 .bcgc-description {
  margin: 18px 0 0;
  font-size: 13px;
  color: #5b5b5b;
}

#bcgc_7f42a9 .bcgc-description strong {
  color: #444;
}

#bcgc_7f42a9 .bcgc-detail {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--bc-border);
}

#bcgc_7f42a9 .bcgc-detail:first-of-type {
  margin-top: 25px;
}

#bcgc_7f42a9 .bcgc-detail-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  display: block;
}

#bcgc_7f42a9 .bcgc-detail-content {
  min-width: 0;
}

#bcgc_7f42a9 .bcgc-detail .bcgc-heading {
  margin-bottom: 14px;
}

@media (max-width: 700px) {
  #bcgc_7f42a9 {
    padding: 22px 14px 30px;
  }

  #bcgc_7f42a9 .bcgc-a-products {
    gap: 8px;
  }

  #bcgc_7f42a9 .bcgc-product img {
    height: 150px;
  }

  #bcgc_7f42a9 .bcgc-label {
    min-width: 0;
    width: auto;
    padding: 4px 10px;
    font-size: 12px;
  }

  #bcgc_7f42a9 .bcgc-detail {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  #bcgc_7f42a9 .bcgc-detail-image {
    height: 210px;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  #bcgc_7f42a9 .bcgc-a-products {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #bcgc_7f42a9 .bcgc-product img {
    height: 205px;
  }

  #bcgc_7f42a9 .bcgc-label {
    font-size: 13px;
  }
}
/* end dee */


/* =========================================================
   7. FLAVORS
   ========================================================= */
.flavor-list{
  display:grid;
  gap:18px;
  max-width:760px;
  margin:0 auto;
}

.flavor-card{
  overflow:hidden;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
}

.flavor-card img{
  width:100%;
  height:auto;
}


/* =========================================================
   HOVER ANIMATIONS — WHAT WE OFFER + FLAVORS
   ========================================================= */
.offer-card,
.flavor-card{
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .35s ease;
}

.offer-card img,
.flavor-card img{
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    filter .35s ease;
  transform-origin:center center;
  will-change:transform;
}

@media (hover:hover) and (pointer:fine){
  .offer-card:hover,
  .flavor-card:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 34px rgba(55,82,25,.20);
  }

  .offer-card:hover img,
  .flavor-card:hover img{
    transform:scale(1.06);
    filter:saturate(1.08);
  }
}

@media (prefers-reduced-motion:reduce){
  .offer-card,
  .flavor-card,
  .offer-card img,
  .flavor-card img{
    transition:none;
  }
}

/* =========================================================
   8. PACKAGE RATES
   ========================================================= */
#packages{
  min-height:470px;
}

.package-space{
  max-width:820px;
  min-height:350px;
  margin:0 auto;
}

/* Optional editable package cards. Hidden by default so the
   supplied design remains unchanged. Add .show-packages to
   #package-content if you want to activate them. */

.show-packages #package-content{display:grid}

/* =========================================================
   9. OUT OF TOWN RATES
   ========================================================= */
#out-town {
	width: 100%;
	background:#E8F7C7;
}
.out-town{
  background:#E8F7C7;
}

.rate-grid{
  width:min(100%,620px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  font-family: 'Montserrat', sans-serif;
}

.rate-card{
  padding:12px 8px;
  border-radius:7px;
  background:#fff;
  text-align:center;
  box-shadow:0 3px 10px rgba(67,93,23,.08);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Use 400 for regular, 600 for semi-bold, etc. */
  font-style: normal;
}

.rate-card .place{
  display:block;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.rate-card .price{
  display:block;
  margin-top:2px;
  font-size:16px;
  font-weight:800;
}

.rate-note{
  max-width:650px;
  margin:14px auto 0;
  text-align:center;
  font-size:14px;
  color:#536f2b;
}
.rate-note a {
	font-weight: bold;
	text-decoration: underline;
}
.rate-note a:hover {
	color: #e89500;
}
/* =========================================================
   10. ABOUT US — LIVE HTML TEXT
   ========================================================= */
.about-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  max-width:820px;
  margin:0 auto;
  background:#E8F7C7;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.about-copy{
  padding:30px 30px 24px;
  background-color: #E8F7C7;
}

.about-copy h3{
  margin-bottom:16px;
  font-family:'Montserrat', sans-serif;
  font-size:31px;
  line-height:1.02;
  color:#315a2c;
}

.about-copy h3 span{
  font-style:italic;
}

.about-copy p{
  margin-bottom:13px;
  color:#52614b;
  font-size:13px;
  text-align: justify;
}

.about-copy strong{
  color:#3f6120;
}

.about-logos{
  width:100%;
  margin:10px auto 0;
  opacity:.98;
}

.about-collage{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  padding: 20px;
}

/* =========================================================
   11. CALL TO ACTION
   ========================================================= */
.cta{
  padding-top:25px;
  padding-bottom:40px;
}

.cta-image{
  width:100%;
  max-width:920px;
  margin:0 auto;
  border-radius:14px;
  box-shadow:var(--shadow);
}

.cta-link{
  display:block;
  width:fit-content;
  margin:18px auto 0;
  padding:12px 23px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(78,110,28,.22);
  transition:transform .25s ease,background .25s ease;
}

.cta-link:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
}

/* =========================================================
   12. FOOTER
   ========================================================= */
.site-footer{
  background:#e8f7c8;
  color:#3e5d20;
}

.footer-inner{
  width:min(100%,var(--max-width));
  margin:0 auto;
  padding:30px 24px 24px;
  display:grid;
  grid-template-columns:1.05fr 1fr 1fr 1fr;
  gap:20px;
}

.footer-brand{
  font-size:12px;
}

.footer-brand h4{
  margin-bottom:8px;
  font-size:15px;
}

.footer-brand p{
  margin-bottom:7px;
  font-size:11px;
  line-height:1.45;
}

.footer-col{
  background:#fffdf4;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(52,76,18,.08);
}

.footer-col h4{
  padding:9px 12px;
  background:var(--green);
  color:#fff;
  font-size:12px;
}

.footer-col ul{
  list-style:none;
  padding:8px 12px 10px;
}

.footer-col li+li{
  margin-top:5px;
}

.footer-col a{
  display:block;
  padding:2px 0;
  font-size:11px;
  transition:color .2s ease,transform .2s ease;
}

.footer-col a:hover{
  color:#e89500;
  transform:translateX(3px);
}

.contact-list a{
  display:flex;
  align-items:flex-start;
  gap:7px;
}

.contact-icon{
  flex:0 0 21px;
  width:21px;
  height:21px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:11px;
}

.social-list{
  display:flex !important;
  flex-direction:column;
  gap:7px;
}

.social-list li+li{
  margin-top:0 !important;
}

.social-list a{
  display:flex !important;
  align-items:center;
  gap:9px;
  font-size:12px !important;
  font-weight:600;
  padding:4px 0 !important;
}

.social-icon{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:var(--green);
  color:#fff;
  font-size:16px;
  font-weight:800;
  line-height:1;
  box-shadow:0 3px 8px rgba(55,82,25,.18);
}

.social-icon.facebook{
  font-family:'Montserrat', sans-serif;
}

.social-icon.instagram{
  font-size:18px;
}

.social-icon.tiktok{
  font-size:18px;
}

.social-icon.shopee{
  font-size:16px;
}

.copyright{
  padding:9px 20px;
  text-align:center;
  background:var(--green-dark);
  color:#fff;
  font-size:10px;
}

/* =========================================================
   13. RESPONSIVE
   ========================================================= */
@media (max-width:900px){
  :root{--max-width:960px}

  .site-header{
    width:100%;
    top:0;
  }

  .nav-links a{
    padding:9px 7px;
    font-size:11px;
  }

  .hero-image{
    min-height:240px;
  }
  .offer-details {
	font-size: 14px;
  }
}

@media (max-width:700px){
  html{scroll-padding-top:75px}

  .floating-menu{
    min-height:54px;
    padding:0;
	padding:7px 12px 7px 16px;
  }

  .brand img{
    width:40px;
    height:35px;
  }

  .brand span{font-size:16px}

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:62px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:8px;
    border-radius:13px;
    background:rgba(73,101,24,.98);
    box-shadow:0 12px 30px rgba(35,50,14,.22);
  }

  .nav-links.open{display:flex}

  .nav-links a{
    padding:12px 13px;
    font-size:13px;
  }

  .hero-image{
    min-height:210px;
    object-fit:cover;
  }

  .section{
    padding:35px 16px;
  }

  .section-title{
    font-size:22px;
    margin-bottom:18px;
  }

  .offer-grid{
    gap:16px 10px;
  }

  .flavor-list{
    gap:13px;
  }

  #packages{
    min-height:390px;
  }

  .package-space{
    min-height:300px;
  }

  .rate-grid{
    grid-template-columns:repeat(3,1fr);
    gap:7px;
  }

  .rate-card{
    padding:9px 4px;
  }

  .rate-card .place{font-size:8px}
  .rate-card .price{font-size:10px}

  .about-wrap{
    grid-template-columns:1fr;
  }

  .about-copy{
    padding:25px 22px 20px;
    order:1;
  }

  .about-collage{
    order:2;
  }

  .about-copy h3{
    font-size:27px;
  }

  .about-copy p{
    font-size:12px;
  }

  .about-logos{
    max-width:180px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    padding:25px 16px 20px;
  }
  .offer-details {
	font-size: 14px;
  }
}

@media (max-width:430px){
  .hero-image{
    min-height:185px;
  }

  .offer-grid{
    grid-template-columns:1fr 1fr;
  }

  .rate-card .place{font-size:7px}
  .rate-card .price{font-size:9px}

  .cta{
    padding-left:12px;
    padding-right:12px;
  }
   .offer-details {
	font-size: 9px;
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal-image{
    opacity:1;
    transform:none;
    transition:none;
  }
  *{scroll-behavior:auto!important}
}

<!--DEE-->