/* Sticky header */
.rp-header{position:sticky;top:0;z-index:999;background:#fff;border-bottom:2px solid var(--rp-maroon);}
.rp-header .rp-container{display:flex;align-items:center;justify-content:space-between;padding:.5rem 1rem;}
.rp-logo{height:60px;}
.rp-nav ul{display:flex;gap:1rem;list-style:none;margin:0;padding:0;}
.rp-nav li{position:relative;}
.rp-nav a{padding:.5rem;font-weight:600;}
.rp-nav .sub-menu{display:none;position:absolute;background:#fff;min-width:180px;box-shadow:0 2px 5px rgba(0,0,0,.2);}
.rp-nav li:hover>.sub-menu{display:block;}
.rp-hamburger{display:none;flex-direction:column;cursor:pointer;}
.rp-hamburger span{height:3px;width:25px;background:var(--rp-maroon);margin:3px 0;}
@media(max-width:768px){
 .rp-nav{display:none;}
 .rp-hamburger{display:flex;}
 .rp-nav.open{display:block;}
 .rp-nav ul{flex-direction:column;}
}
/* Hero */
.rp-hero{height:80vh;background:var(--rp-maroon);color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
/* Counter */
.rp-counter{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;}
.rp-counter .item{text-align:center;}
.rp-counter .num{font-size:2rem;font-weight:700;color:var(--rp-gold);}
/* Cards */
.rp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem;}
.rp-card{border:1px solid #ddd;border-radius:8px;overflow:hidden;}
.rp-card img{aspect-ratio:16/9;object-fit:cover;}
.rp-card-body{padding:1rem;}
/* Footer */
.rp-footer{background:var(--rp-maroon);color:#fff;padding:2rem 0;}
.rp-footer .rp-container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;}
.rp-footer .rp-logo{height:50px;}
.rp-footer .socials a{margin-left:.5rem;font-size:1.5rem;color:var(--rp-gold);}


p.cta-description {
	color: white;
}

p.section-subtitle {
    display: none;
}


@media (min-width: 1600px) {
	button.dropdown-toggle {
		display: none
	}
}

@media (max-width: 765px) {
	button.dropdown-toggle {
		display: absolute;
		padding: 0 0 0 900px;
	}
}