:root {
  --erp-green: #00482f;
  --erp-green-dark: #003723;
  --erp-green-light: #8fd6bd;
  --erp-maroon: #800000;
  --erp-white: #ffffff;
  --erp-header-height: 82px;
  --erp-container: min(1180px, calc(100% - 48px));
}

#masthead.header-main{max-width: 80%; margin: auto;}

/* =========================================================
   THE EMERALD RIVER PARK
   HEADER MENU + HERO BANNER
   Prefix: erp-header__ / erp-banner__
   ========================================================= */



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #ffffff;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =========================================================
   SECTION: HERO BANNER
   ========================================================= */

.erp-banner {
  position: relative;
  min-height: 720px;
  padding-top: var(--erp-header-height);
  overflow: hidden;
  background: var(--erp-green-dark);
}

.erp-banner__background {
  position: absolute;
  inset: var(--erp-header-height) 0 0;
  background-image: url("assets/hero-background.jpg");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.erp-banner__overlay {
  position: absolute;
  inset: var(--erp-header-height) 0 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 55, 35, 0.98) 0%,
      rgba(0, 62, 40, 0.91) 26%,
      rgba(0, 66, 43, 0.70) 48%,
      rgba(0, 50, 32, 0.22) 72%,
      rgba(0, 0, 0, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.22)
    );
}

.erp-banner__container {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--erp-container);
  min-height: calc(720px - var(--erp-header-height));
  margin: 0 auto;
  align-items: center;
}

.erp-banner__content {
  width: min(640px, 58%);
  padding: 62px 0 54px;
}

.erp-banner__content h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 6.7vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.erp-banner__slogan {
  margin: 0 0 19px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.22;
}

.erp-banner__description {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.75;
}

.erp-banner__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 640px;
  gap: 8px;
  margin: 26px 0 28px;
}

.erp-banner__feature {
  display: flex;
  min-height: 66px;
  padding: 10px 11px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 6px;
  background: rgba(0, 72, 47, 0.35);
  backdrop-filter: blur(7px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.erp-banner__feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
}

.erp-banner__feature-icon {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
}

.erp-banner__feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.erp-banner__feature > span:last-child {
  display: block;
  min-width: 0;
}

.erp-banner__feature strong,
.erp-banner__feature small {
  display: block;
}

.erp-banner__feature strong {
  color: #ffffff;
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.erp-banner__feature small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.erp-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.erp-banner__button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.erp-banner__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.erp-banner__button:hover {
  transform: translateY(-2px);
}

.erp-banner__button--primary {
  background: var(--erp-maroon);
  box-shadow: 0 12px 28px rgba(65, 0, 0, 0.28);
}

.erp-banner__button--primary:hover {
  background: #650000;
}

.erp-banner__button--outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 72, 47, 0.18);
}

.erp-banner__button--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

/* =========================================================
   RESPONSIVE: TABLET
   ========================================================= */

@media (max-width: 1080px) {
  :root {
    --erp-header-height: 74px;
    --erp-container: min(100% - 34px, 920px);
  }

  .erp-header__toggle {
    display: block;
    order: 3;
  }

  .erp-header__cta {
    margin-left: auto;
  }

  .erp-header__nav {
    position: fixed;
    top: var(--erp-header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(0, 55, 35, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .erp-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .erp-header__nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .erp-header__nav a::after {
    display: none;
  }

  .erp-banner__content {
    width: min(650px, 72%);
  }

  .erp-banner__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 500px;
  }
}

/* =========================================================
   RESPONSIVE: MOBILE
   ========================================================= */

@media (max-width: 700px) {
  :root {
    --erp-container: min(100% - 28px, 620px);
  }

  .erp-header__brand {
    width: 138px;
  }

  .erp-header__brand img {
    height: 58px;
  }

  .erp-header__cta {
    display: none;
  }

  .erp-banner {
    min-height: 760px;
  }

  .erp-banner__background {
    background-position: 64% center;
  }

  .erp-banner__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 55, 35, 0.98) 0%,
        rgba(0, 62, 40, 0.88) 60%,
        rgba(0, 58, 38, 0.56) 100%
      ),
      linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.30));
  }

  .erp-banner__container {
    min-height: calc(760px - var(--erp-header-height));
    align-items: flex-end;
  }

  .erp-banner__content {
    width: 100%;
    padding: 54px 0 48px;
  }

  .erp-banner__content h1 {
    font-size: 51px;
  }

  .erp-banner__slogan {
    font-size: 26px;
  }

  .erp-banner__description {
    font-size: 13px;
  }

  .erp-banner__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .erp-banner__feature {
    min-height: 62px;
  }

  .erp-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .erp-banner__button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .erp-banner__features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}






#header .menu-item{margin-right: 2rem;}
	#header .menu-item .menu-item {margin-right: 0}
	#header .nav-dropdown-has-border .nav-dropdown {
	    border: 1px solid #ddd;
	    padding: 0 0.5rem;
	    box-shadow: none;
	}

.projects-shortcode-wrapper{margin: 2rem 0 2rem}
.main-proj .img-anima{
	border-radius: 1rem;
    overflow: hidden;
    padding-top: 130%;
    position: relative;
}
.main-proj .img-anima img {
    left: 0;
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.main-proj .t-proj{margin-top: 1rem;    color: #fff;font-weight: 600;}

#header-contact a{    font-size: 1.2rem;    color: #de5d26;}
.page-wrapper.proj-single{padding-top: 0; padding-bottom: 0}
.page .page-wrapper {padding-top: 0;}
.pb-0,section.section.pb-0{padding-bottom: 0 !important}
.pt-0,section.section.pt-0{padding-top: 0 !important}
.tabbed-content .nav.nav-pills .tab.active a{background: #de5d26}
.tabbed-content h4{color: #de5d26; display: block; line-height: 1.05; position: relative; width: 100%; font-size: 31px; text-transform: uppercase;}

.mt-2{margin-top: 2rem}
.scroll-to-bullets a { background-color: #de5d26;}
.scroll-to-bullets a.active{border-color: #de5d26;}
.nav.nav-pills > li > a { color: #000;}
.nav.nav-pills > li.active > a { color: #fff;}

.box-vision{background: #f6a51c; position: relative; border-radius: 50%; width: 8.5rem; height: 8.5rem; margin: auto; display: flex ; align-items: center;    justify-content: center;}
    .box-vision:before{position: absolute; content: ''; width: calc(100% + 1rem);height: calc(100% + 1rem); left:-0.5rem; top:-0.5rem;
    border: 0.2rem solid #f6a51c; border-radius: 50%; }
    .w-box-vision:after{
        position: absolute; content: ''; width: 0.2rem; height: calc(100% - 8.5rem); left: 50%; top:8.5rem; background: #f6a51c; z-index: -1;
    }
    .box-vision .t-vision{color: #fff; margin-bottom: 0;    font-size: 1.2rem;}

.box-cont-vision p{margin-bottom: 0.5rem}    


.blog-single .html-before-comments .box-text{text-align: left !important; padding: 0;}
.blog-single .html-before-comments .post-date{display: none !important;}
.blog-single .html-before-comments .post-title{margin-top: 0.5rem; color: #333;}
.blog-single .html-before-comments .from_the_blog_excerpt{display: none;}

.recent-blog-posts a{color: #0e0c0c; font-size: 1rem;}
.blog-single .entry-content h2,.blog-single .entry-content h3,.blog-single .entry-content h4,.blog-single .entry-content h6,.blog-single .entry-content h6{font-size: 1.5rem;color: #0e0c0c;}
.blog-single .post-sidebar,.blog-archive .post-sidebar{padding-right: 0; padding-left: 1.5rem}

.blog-single h1.entry-title{color: #353535;}

.main-proj{position: relative;}
.des-product{position: absolute; bottom: 0; background: linear-gradient(180deg, #fff0, #000000e0 75%); color: #fff; padding:9rem 1.2rem 1.5rem; border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem }
.des-proj { font-size: 1rem; line-height: 1.4rem; }
.ani-img img{transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;}
.ani-img:hover img{transform: scale(1.1); }

#post-list .post-item .col-inner{box-shadow: none !important}
#post-list .box-text{ padding-left:0; padding-right:0 }
.wpcf7-list-item-label{font-weight: normal;}
.section-tuvan-2 .wpcf7-list-item-label,.section-tuvan-2 .wpcf7-list-item-label a{color: #fff;}
.section-tuvan-2 .wpcf7-list-item-label a{text-decoration: underline;}
@media (min-width: 768px) {
    .projects-shortcode-grid{
        display: grid;
        gap: 1.5rem 1.5rem;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }
    .nav-box>li>a, .nav-pills>li>a{padding: 0 1em; }
}	
#footer .ux_logo .ux-logo-link {padding: 0 !important; margin-bottom: 1rem;}
#footer a{color: #0a1437;}

.wpcf7-form input, .wpcf7-form select, .wpcf7-form textarea{outline: none; box-shadow: none;}

.accordion-title.active{background-color: #de5d26; color: #fff; border-top: 0;}
.no-heading .title-overlay{background-color: transparent;}

.section-tuvan-2{background-color: #de5d26}
.section-tuvan-2 .b-title,.section-tuvan-2 form > *{color: #fff;}
.img-radius{border-radius: 1rem; overflow: hidden;}
@media (max-width:550px) {
    #logo img{padding-top: 0.5rem; padding-bottom: 0.5rem}
    .projects-shortcode-grid .main-proj{margin-bottom: 1rem}
    .main-proj .t-proj {font-size: 1.3rem; }
    .post-item .post-title{font-size: 1.2rem}
    .copyright-footer { grid-template-columns: none; justify-content: center; text-align: center; }
    .w-copy{order: 2}
    .chinhsach { order: 1;         text-align: center;}
     .mb-0{margin-bottom: 0px !important}
     .pb-0{padding-bottom: 0px !important}
     .pt-0{padding-top: 0px !important}
    .logo-partner img{height: auto !important}
    .banner-home .flickity-viewport{height: auto !important; min-height: 20rem}
    .banner-home .banner-bg{max-height: 20rem}

}    

