:root {
  --brand-navy: #1a365d;
  --brand-gold: #6C5528;
  --brand-gold-hover: #7a5f2c;
  --brand-gold-light: #f4e9d5;
}
a {color:#1a365d;}
body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background-color: #ececed;
}
.navbar-brand {margin-right:0;}
/*WP fix*/
@media (min-width: 992px) {
  .wp-block-column {
    flex: 0 0 auto !important; /* Forces columns to grow/shrink based on Bootstrap */
  }
}
.rounded img {border-radius:1em;}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .navbar-brand {
    /*position: absolute;
	left:50%;
	transform: translateX(-50%);*/
    z-index: 101;
    padding: 0;
    margin-top: 75px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Adjust logo brand position on scroll */
  .navbar.scrolled .navbar-brand {
    margin-top: 0;
    transform: translateX(-50%) scale(0.8);
  }

  /* Shrink Navbar height on scroll */
  /*.navbar.scrolled {
	height: 70px;
}*/
  /* Shrink logo image on scroll */
  .navbar.scrolled .logo-img {
    height: 80px;
    box-shadow: none;
  }
}
.phone-link {
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.header-border {
  border-image: url(../images/border-img.png) 100% 0 0 0 / 13px 0 0 0 repeat; /*border-image-width: 6px 0 0 0;*/
}
.top-border {
  border-top: 4px solid #6C5528;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-navy);
}
.h5, .h6 {
  color: #fff;
}
.bg-tan {
  background-color: #6C5528;
}
.text-navy {
  color: var(--brand-navy)
}
.icon-color {
  background-color: rgba(185, 185, 185, .35);
  color: #fff
}
.icon-size {
  width: 2.5rem;
  height: 2.5rem;
}
a.icon-color:hover {
  background-color: var(--brand-gold);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Navbar Customization */
.navbar {
  /*height: 100px;*/
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
}
 .logo-img {
            height: 90px;
}
@media (min-width: 992px) {
  .navbar {
    height: 100px;
  }
  .navbar.scrolled {
    height: 75px;
  }
  .logo-img {
    height: 160px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
	.navbar-brand {position: absolute;
        left: 50%;
		transform: translateX(-50%);}
}
/* Responsive Mobile Tweeks */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
  }
  .nav-item {
    padding: 0.5rem 0;
  }
}
.nav-link {
  font-weight: 600;
  color: #475569 !important;
  position: relative;
  margin: 0 1rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
/* Hero Customization */
.hero-section {
  padding: 120px 0 100px 0;
  /*background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.7));
	background-size: cover;
	background-position: center;*/
  color: white;
}
/* Component Styles */
.btn-gold {
  background-color: var(--brand-gold);
  color: white;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: #b38f4a;
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid white;
  color: white;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  background-color: white;
  color: var(--brand-navy);
}
.card-program {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-navy);
  transition: all 0.3s ease;
  height: 100%;
  color: black;
}
.card-program:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.card-program .h4 {
  color: var(--brand-gold);
}
.icon-box {
  width: 64px;
  height: 64px;
  background: var(--brand-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}
.text-gold {
  color: var(--brand-gold);
}
/**LG & UP**/
@media (min-width: 992px) {}
/**INDIVIDUAL SIZES**/
/**XS**/
@media (max-width: 575px) {}
/**SM**/
@media (min-width: 576px) and (max-width: 767px) {}
/**MD**/
@media (min-width: 768px) and (max-width: 991px) {}
/**LG**/
@media (min-width: 992px) and (max-width: 1199px) {}
/**XLG**/
@media (min-width: 1200px) {}