@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Bodoni+Moda:wght@400;500;600&family=Oswald:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Bodoni Moda Fallback';
  src: local('Times New Roman'), serif;
  size-adjust: 110%;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Oswald Fallback';
  src: local('Tahoma'), sans-serif;
  size-adjust: 92%;
  ascent-override: 110%;
  descent-override: 28%;
  line-gap-override: 0%;
}
/* ===============================
   1. GLOBAL RESET & DEFAULTS
================================ */

:root {
  --main: #000;
  --secondary: rgb(215, 25, 32);
  --tertiary: rgb(218, 167, 68);
}

.content a, .content a:visited { color: #C5B358;}
.content a:hover {color: #fff;}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #07101E;
	margin: 0;
	color: #C6CEDD;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

main .content h1, main .content h2, .section-heading h2, main .content h3, main .content h4, main .content p, .section-heading p, main .content ul {margin-bottom:2rem;}
main .content h1, main .content h2, .section-heading h2, main .content h3, main .content h4 {
	color:#fff;
	letter-spacing: .4em;
    font-family: 'Oswald Light', sans-serif;
    font-weight: 400;
	text-transform:uppercase;
	}

main .content h1 {
font-size:1.8em;
}
	
main .content h2, .section-heading h2 {
font-size:1.5em;
}

main .content ul {
    list-style-position: inside;
    list-style-type: square;	
}

/* ==========================================
   Article Image
   ========================================== */

.article-image {
    margin: 2rem 0;
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
	border:#27344C 1px solid;
    box-shadow:
        0 8px 24px rgba(0,0,0,.15);
}

.article-image figcaption {
    margin-top: .75rem;

    font-size: .9rem;
    line-height: 1.5;
    color: #8895AB;
    font-style: italic;
    text-align: center;
}

/* Tablet */
@media (min-width: 768px) {

    .article-image {
        margin: 2rem 0;
    }

}

/* Desktop */
@media (min-width: 1024px) {

    .article-image {
        margin: 2rem 0;
    }

}

/* ===============================
   GLOBAL CONTAINER (MOBILE FIRST)
================================ */

.container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  width:100%;
  padding:2em 1.5em;
  margin:0 auto;
}

/* progressively constrain width */
@media (min-width:1200px){
  .container{
    max-width:1200px;
  }
}

/* ===============================
   SHARED SECTION HEADER
================================ */

.section-header{
  flex-basis:100%;
  text-align: center;
}

.section-header h2{
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:clamp(1.8rem,4vw,1.8rem);
  line-height:2em;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#fff;
  margin:0 0 12px;
}

.section-header .brush{
  width:85px;
  height:auto;
  display:block;
  margin-bottom:18px;
}

.section-header p{
  color:rgba(255,255,255,72);
  font-size:1.05rem;
  line-height:1.7;
  margin:0;
}

/* ===============================
   HEADER
================================ */

.top-header{
  top:0;
  left:0;
  width:100%;
  background-color:#000;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  z-index:1000;
}

/* ===============================
   LOGO
================================ */
.logo {margin:0 auto;}

.logo img{
  display:block;
  max-height:100px;
  width:auto;
}

/* ===============================
   MOBILE NAV DEFAULT
================================ */

.navbar{
  width:100%;
  position:relative;
}

.menu-toggle{
  display:block;
  background:none;
  border:none;
  color:#fff;
  font-size:1.8rem;
  cursor:pointer;
  padding:10px 0;
  margin: 0 auto;
}

.nav-links{
  list-style:none;
  display:none;
  flex-direction:column;
  width:100%;
  gap:0;
  margin-top:15px;
}

.nav-links.active{
  display:flex;
}

.nav-links li{
  position:relative;
  width:100%;
}

.nav-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  text-decoration:none;
  text-transform:uppercase;
  color:#fff;
  font-weight:500;
  font-size:16px;
  padding:12px 0;
  transition:color .3s ease;
}

.nav-item:hover,
.nav-item.active{
  color:#C5B358;
}

/* ===============================
   DROPDOWN MOBILE
================================ */

.dropdown{
  display:none;
  list-style:none;
  padding-left:20px;
  margin-bottom:10px;
}

.has-dropdown.open .dropdown{
  display:block;
}

.dropdown li a{
  display:block;
  color:#fff;
  text-decoration:none;
  padding:10px 0;
  font-size:14px;
}

.dropdown li a:hover{
  color:#C5B358;
}

/* ===============================
   CTA BUTTON
================================ */

.header-action{
  width:100%;
  margin-top:15px;
  display:none;
}

.cta-btn{
	display: inline-block;
	text-decoration: none;
	background-color: #C5B358;
	color: #000;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 14px;
	transition: background-color .3s ease;
}

.cta-btn:hover{
  background-color:#fff;
}

/* ===============================
   TABLET
================================ */

@media (min-width:768px){

  .header-action{
    width:auto;
    margin-top:0;
  }
  
  .section-header h2{
	    font-size:clamp(2.5rem,4vw,2.5rem);
  line-height:2.6em;
  }

}

/* ===============================
   DESKTOP NAV
================================ */

@media (min-width:992px){
.logo {
margin:unset;
}

  .navbar{
    width:auto;
  }

  .menu-toggle{
    display:none;
  }

  .nav-links{
    display:flex !important;
    flex-direction:row;
    gap:30px;
    margin-top:0;
    width:auto;
  }

  .nav-links li{
    width:auto;
  }
  
  .nav-links li a {
	padding: 15px 0;  
  }

  .nav-item{
    width:auto;
    padding:0;
  }

  .dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#111;
    padding:10px 20px;
    z-index:100;
    border-top: 3px solid #C5B358;
    transition: .25s ease;
  }

  .has-dropdown:hover .dropdown{
    display:block;
  }
  
  .has-dropdown i {
    font-size: 16px;
    margin-left: 8px;
    color: #C5B358;
    transition: transform .3s ease;
}
  
  .has-dropdown:hover i, .has-dropdown.open i {
    transform: rotate(180deg);
  }

  .header-action{
    width:auto;
	display:block;
  }

}
/* ===============================
   HERO SECTION (MOBILE FIRST)
================================ */

.hero{
  position:relative;
  background: center center/cover no-repeat;
  background-image: var(--hero-mobile);
  min-height:70vh;
  display:flex;
  align-items:center;
  padding:30px 0;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero-text{
  width:100%;
}

.hero h1{
  font-family:'Bodoni Moda', serif;
  font-size:56px;
  line-height:0.9;
  color:#fff;
  text-transform:uppercase;
  margin-bottom:15px;

}

.hero h1 span.sml {
	font-family:'Oswald Light', sans-serif;
	font-size:.25em;
	letter-spacing:.4em;
	font-weight: 400;

}

.hero h1 span.fancy {
  color:#C5B358;
  font-family: 'Allura', cursive;
  text-transform: none;
  font-weight: 400;
}

.hero h2{
	font-family: 'Allura', cursive;
	font-size: 24px;
	color: #C5B358;
	font-weight: 400;
	margin-bottom: 20px;

}

.hero p{
  color:#fff;
  font-size:16px;
  line-height:1.6;
  max-width:600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;

    width: 100%;
    min-height: 56px;
    padding: 0 1.5rem;

    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;

    border-radius: 4px;
    transition: .25s ease;
    cursor: pointer;
}

.hero-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Primary */

.hero-btn-primary {
    background: #C5B358;
    color: #000;
    border: 2px solid #C5B358;
}

.hero-btn-primary:hover {
    background: #E6BE8A;
    border-color: #E6BE8A;
}

/* Secondary */

.hero-btn-secondary {
    background: rgba(0,0,0,.25);
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
    backdrop-filter: blur(3px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: #fff;
}


/* Tablet */

@media (min-width:768px){

  .hero{
    min-height:80vh;
  }

  .hero h1{
    font-size:100px;
  }

  .hero h2{
    font-size:30px;
  }
  
  .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .hero-btn {
        width: auto;
        min-width: 220px;
    }

}

/* Desktop */

@media (min-width:1200px){

  .hero{
    background-image: var(--hero-desktop);
    min-height:95vh;
  }
  
  .hero .container {
	display:grid;
	grid-template-columns: repeat(3, 1fr);  
  }

  .hero h1{
    font-size:144px;
  }
  
  .hero h1 span.fancy{
    font-size:124px;
  }

  .hero h2{
    font-size:72px;
  }

  .hero p{
    font-size:18px;
  }


  .hero-btn {
        min-width: 240px;
        height: 60px;
        font-size: 1rem;
    }
}

/* ===============================
   COUNTDOWN SECTION
================================ */

.countdown-banner{
    background:linear-gradient(90deg,#250d34,#3f184e,#5a1e54);
    color:#fff;
    padding:25px 20px;
}

.countdown-inner{
    max-width:1280px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.event-info,
.countdown-wrapper,
.first-time{
    text-align:center;
}

.event-info h2{
    margin:0;
    text-transform:uppercase;
    font-size:2rem;
    letter-spacing:2px;
}

.date{
    text-transform:uppercase;
    font-size:.9rem;
    letter-spacing:1px;
    margin:8px 0;
}

.subtitle{
    opacity:.9;
    margin-bottom:20px;
}

.calendar-btn,
.guide-btn{
    display:inline-block;
    padding:12px 28px;
    border:2px solid #C5B358;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:.8rem;
    letter-spacing:1px;
    transition:.3s;
}

.calendar-btn:hover,
.guide-btn:hover{
    background:#C5B358;
    color:#23142d;
}

.countdown-title{
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:18px;
    font-size:.85rem;
}

.countdown{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.time-box{
    background:rgba(0,0,0,.28);
    padding:18px;
}

.time-box span{
    display:block;
    font-size:2.5rem;
    font-weight:700;
    line-height:1;
}

.time-box small{
    display:block;
    margin-top:8px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.7rem;
    opacity:.85;
}

.first-time h3{
    margin:0 0 15px;
    color:#C5B358;
    font-size:2rem;
    font-family: 'Allura', cursive;
}

.first-time p{
    max-width:320px;
    margin:0 auto 20px;
    line-height:1.6;
}

.guide-btn{
    background:#C5B358;
    color:#22152d;
    font-weight:700;
}

.guide-btn:hover{
    background:#fff;
}

@media(min-width:900px){

    .countdown-banner{
     padding: 25px 0;

    }

    .countdown-inner{
        display:grid;
        grid-template-columns:320px 1fr 320px;
        align-items:stretch;
        gap:0;
    }

    .event-info,
    .countdown-wrapper,
    .first-time{
        display:flex;
        flex-direction:column;
        justify-content:center;
        padding:40px;
        text-align:center;
    }

    .event-info{
        border-right:1px solid rgba(255,255,255,.18);
    }

    .first-time{
        border-left:1px solid rgba(255,255,255,.18);
    }

    .countdown{
        display:flex;
        justify-content:center;
        gap:14px;
    }

    .time-box{
        width:100px;
        padding:22px 0;
    }

}

/* ====================================
   Plan Your Riverfire
==================================== */

.rf-plan{
    padding:2rem 0;
}

.rf-plan .container{
    max-width:1280px;
    margin:auto;
}

.rf-plan .section-heading{
    text-align:center;
    margin-bottom:2.5rem;
	width:100%;
}

.rf-plan .section-heading .eyebrow{
    display:inline-block;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:#C5B358;
    margin-bottom:.5rem;
}

.rf-plan .section-heading h2{
    margin:.25rem 0 1rem;
	color:#fff;
	letter-spacing: .4em;
    font-family: 'Oswald Light', sans-serif;
    font-weight: 400;
	text-transform:uppercase;
}

.rf-plan .section-heading p{
    max-width:700px;
    margin:auto;
}

.plan-grid{
    display:grid;
    gap:1.5rem;
}

.plan-card{
    position:relative;
    min-height:360px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    background-size:cover;
    background-position:center;
	 border:1px #C5B358 solid;
}

.plan-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(16,26,43,.92),
        rgba(16,26,43,.55),
        rgba(16,26,43,.15)
    );
}

.plan-card-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding:2rem;
    box-sizing:border-box;
}

.card-tag{
    display:inline-block;
    background:#C5B358;
    color:#101A2B;
    padding:.4rem .75rem;
    font-size:.75rem;
    font-weight:700;
    margin-bottom:1rem;
}

.plan-card-content h3{
    color:#fff;
    margin:0 0 .75rem;
	text-transform:uppercase
}

.plan-card-content p{
    margin-bottom:1.5rem;
}

.button{
    display:inline-block;
    background:#C5B358;
    color:#101A2B;
    padding:.8rem 1.5rem;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
	text-transform:uppercase;
}

.button:hover{
    background:#fff;
}


/* Tablet */

@media (min-width:768px){

    .plan-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .places{
        grid-column:1 / -1;
        min-height:420px;
    }

}

/* Desktop */

@media (min-width:1100px){

    .plan-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .places{
        grid-column:auto;
        min-height:420px;
    }

}

/* ===============================
   CITIES SECTION
================================ */

.cities{
  padding:30px 0;
  background:#fff;
}

.cities .intro{
  width:100%;
  text-align:center;
  margin-bottom:30px;
}

.cities .intro h2{
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:1.8em;
  text-transform:uppercase;
  margin-bottom:10px;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.cities .intro p{
  font-size:16px;
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
}

/* ===============================
   SWIPER WRAPPER
================================ */

.citySwiper{
  position:relative;
  width:100%;
  padding:10px 35px;
  overflow:visible;
}

.swiper-wrapper{
  align-items:stretch;
}

.swiper-slide{
  height:auto;
}



/*------------------------------------
    FEATURED / LATEST TRADITION CARD
------------------------------------*/

.article-feature-card {
	display: flex;
	flex-direction: column;
	background: #101A2B;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,.08);
	transition: .3s ease;
	margin-bottom: 2rem;
	border: 1px #C5B358 solid;
}

.article-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.article-feature-card__image {
    display: block;
}

.article-feature-card__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.article-feature-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.article-feature-card__category {
    display: inline-block;
    margin-bottom: .75rem;
    color: #d5a53a;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.article-feature-card h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.1;
}

.article-feature-card h2 a {
    color: #111;
    text-decoration: none;
}

.article-feature-card h2 a:hover {
    color: #c31d24;
}

.article-feature-card p {
	margin: 0;
	color: #C6CEDD;
	line-height: 1.7;
	flex: 1;
}

.article-feature-card__link {
	display: inline-flex;
	align-items: center;
    gap: .6rem;
	margin-top: 1.75rem;
	color: #C5B358;
	font-weight: 400;
	text-decoration: none;
	transition: .2s;
	font-family:'Oswald Light', sans-serif;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.article-feature-card__link:hover {
    gap: 1rem;
}

.article-feature-card__link i {
    font-size: .9rem;
}

@media (min-width:768px){

    .article-feature-card{
        flex-direction:row;
    }

    .article-feature-card__image{
        flex:0 0 40%;
    }

    .article-feature-card__image img{
        height:100%;
        min-height:320px;
    }

    .article-feature-card__content{
        flex:1;
        justify-content:center;
    }

}

@media (min-width:1200px){

    .article-feature-card__content{
        padding:3rem;
    }

    .article-feature-card h2{
        font-size:2.6rem;
    }

    .article-feature-card p{
        font-size:1.05rem;
    }

}

/*=============================
    ARTICLE GRID
=============================*/

.article-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2rem;
}

.article-card{
	background: #101A2B;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	transition: .3s;
	border: 1px #C5B358 solid;
}

.article-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(0,0,0,.14);
}

.article-card img{
    width:100%;
    height:220px;
    display:block;
    object-fit:cover;
}

.article-card__content{
    padding:1.5rem;
}

.article-card__category{
    display:inline-block;
    margin-bottom:.75rem;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#d5a53a;
}

.article-card h3{
	margin: 0 0 1rem;
	font-size: 1.2rem;
	line-height: 1.25;
	font-family: 'Oswald Light', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.4em;
}

.article-card h3 a{
	color: #C5B358;
	text-decoration: none;
}

.article-card h3 a:hover{
	color: #fff;
}

.article-card p{
	margin: 0;
	color: #C6CEDD;
	line-height: 1.65;
}

.article-card__link{
	display: inline-flex;
	align-items: center;





    gap:.5rem;
	margin-top: 1.5rem;
	color: #C5B358;
	font-weight: 400;
	text-decoration: none;
	transition: .2s;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	font-family: 'Oswald Light', sans-serif;
}

.article-card__link:hover{
    gap:.9rem;
}

.article-card__link i{
    font-size:.9rem;
}

@media (min-width:768px){

    .article-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (min-width:1024px){

    .article-grid{
        grid-template-columns:repeat(3,1fr);
        gap:2.5rem;
    }

    .article-card img{
        height:240px;
    }

}

/* ===============================
   SUBSCRIBE SECTION
================================ */

.subscribe{
	background-color: #16233A;
	color: #F4F4F4;
	padding: 30px 0;
	text-align: center;
}

.subscribe .intro{
  width:100%;
  margin-bottom:30px;
}

.subscribe .intro h2{
	font-family: 'Oswald Light', "sans-serif;";
	font-size: 1.8em;
	text-transform: uppercase;
	margin-bottom: 12px;
	letter-spacing: 0.4em;
	line-height: 2em;
	font-weight: 400;
}

.subscribe .intro p{
  max-width:650px;
  margin:0 auto;
  font-size:16px;
  line-height:1.7;
}

/* SOCIAL LINKS */

.social-links{
  width:100%;
  display:flex;
  justify-content:center;
  gap:20px;
}

.social-links a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:20px;
  transition:all .3s ease;
}

.social-links a:hover{
  background:#fff;
  color:#000;
}

/* DESKTOP */

@media (min-width:1200px){
	
	.subscribe .intro h2{
	font-size: 2em;
	line-height: 2em;
	}

  .subscribe{
  }

}

/* ===============================
   FOOTER
================================ */

.site-footer{
  background:linear-gradient(rgba(0, 0, 0, .88), rgba(0, 0, 0, .92));
  padding:60px 0 30px;
}

/* FOOTER GRID */

.footer-grid{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:35px;
  margin-bottom:50px;
}

.footer-brand img{
  max-width:220px;
  width:100%;
  height:auto;
  margin-bottom:20px;
}

.footer-brand p{
  color:#ccc;
  line-height:1.7;
}

/* FOOTER COLUMNS */

.footer-column h2{
color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.footer-column ul{
  list-style:none;
}

.footer-column li{
  margin-bottom:10px;
  color: rgba(255, 255, 255, .75);
}

.footer-column a{
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-column h2 a{ 
color: #fff;
}

.footer-column a:hover{
  color:#C5B358;
}

/* FOOTER BOTTOM */

.footer-bottom{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:20px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.1);
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-left span,
.footer-left a{
  color:#aaa;
  font-size:14px;
  text-decoration:none;
}

.footer-left a:hover{
  color:#fff;
}

/* SLOGAN */

.footer-slogan{
  display:flex;
  flex-direction:column;
  gap:5px;
  letter-spacing: .4em;
    font-family: 'Oswald Light', sans-serif;
    font-weight: 400;
	text-transform:uppercase;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-slogan .white{
  color:#fff;
}

.footer-slogan .gold{
  color:#C5B358;
}

/* ===============================
   TABLET BREAKPOINT
================================ */

@media (min-width:768px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
  }

  .footer-bottom{
    gap:30px;
  }

}

/* ===============================
   DESKTOP BREAKPOINT
================================ */

@media (min-width:1200px){

  .site-footer{
    padding:80px 0 30px;
  }

  .footer-grid{
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:50px;
  }

  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .footer-left{
    flex-direction:row;
    gap:25px;
    align-items:center;
  }

  .footer-slogan{
    text-align:right;
  }

}

/* ===============================
   GLOBAL IMAGE RULES
================================ */

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ===============================
   LINKS DEFAULT
================================ */

a{
  transition:all .3s ease;
}

/* ===============================
   ACCESSIBILITY / SMOOTHNESS
================================ */

button{
  font-family:inherit;
  cursor:pointer;
}

html{
  scroll-behavior:smooth;
}

/* ===============================
   LARGE DESKTOP CONTAINER
================================ */

@media (min-width:1400px){

  .container{
    max-width:1320px;
  }

}

.content h2, .content h3, .content h4, .content p {margin-bottom: 10px;}

ul.mosaic-container {
	  display:grid;
    gap:2rem;
}

.mosaic-columns-3 li {
 width: 100%;  
}

.mosaic-item {


}

.mosaic-container li {
 list-style:none;   
  background:#101A2B;
    border:1px #C5B358 solid;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
	position:relative;
}

.mosaic-item .padding {
}

.mosaic-item .mosaic-image {
    width: 100%;
    height: auto;
    margin-bottom: 0px; 
}

.mosaic-item .mosaic-head {
    margin: 1.5em;
}

.mosaic-item .mosaic-title {
    line-height: 1.2em;
    font-size: 1.4em;
    padding-bottom:1rem;
	margin-bottom:0 !important;
}

.mosaic-item .mosaic-infos {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #C5B358;
    border-bottom: 1px solid #C5B358;
    font-size: 13px;
    font-weight: bold;
    margin: 0
}

.mosaic-item .mosaic-infos a{
    text-decoration:none;
}

.mosaic-item .mosaic-infos a:last-child {text-align:right;}

.mosaic-text {
margin: 1.5em 1.5em 4.5em;
}
.mosaic-text h4, .mosaic-text p{
    padding-bottom: 1.5em;
	margin-bottom:0 !important;
    
}

.mosaic-text p:last-child {
	padding-bottom: 0;
}
.mosaic-text h4 {
 font-size:1.2em;
}

.mosaic-text h4 strong {
    font-weight: 700;
}

.mosaic-links{
margin: 0 1.5em 1.5em; 
position:absolute;
bottom:0;
}

.mosaic-links a {
    margin-right: 1.5em;
    text-decoration: none;
}

.mosaic-links a:last-of-type {
    margin-right: 0;
}


.mosaic-corner-badge {
    border-color: transparent;
    border-style: solid;
    border-width: 67px 67px 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}




/* ==========================================================================
   BIG EVENTS TABLE
   Mobile First
   ========================================================================== */

.big-events-table{
    width:100%;
    margin:0 0 2rem;
    border-collapse:collapse;
}

.big-events-table,
.big-events-table tbody,
.big-events-table tr,
.big-events-table td{
    display:block;
}

/* Hide headings on mobile */

.big-events-table thead{
    display:none;
}

/* Card */

.big-events-table tr{
    margin:0 0 1.5rem;
    padding:1.25rem;
    background:#101A2B;
    border:1px solid #C5B358;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:background-color .2s ease;
}

.big-events-table tr:hover{
    background:#07101E;
}

/* Cells */

.big-events-table td{
    padding:.6rem 0;
    border:0;
}

/* Labels */

.big-events-table td::before{
    content:attr(data-label);
    display:block;
    margin-bottom:.25rem;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#777;
}

/* Business heading */

.big-events-table .business-name{
    margin-bottom:.75rem;
    padding-bottom:.75rem;
    border-bottom:1px solid #e6e6e6;
}

.big-events-table .business-name::before{
    color:#C5B358;
}

.big-events-table .business-name span{
    display:block;
    font-size:1.4rem;
    font-weight:700;
    color:#fff;
    line-height:1.3;
}

/* Comments */

.big-events-table td[data-label="Comments"]{
    margin-top:.75rem;
    padding-top:.75rem;
    border-top:1px solid #e6e6e6;
}

.big-events-table td a{
    word-break:break-word;
}

/* ==========================================================================
   Tablet / Desktop
   ========================================================================== */

@media (min-width:768px){

    .big-events-table{
        display:table;
    }

    .big-events-table thead{
        display:table-header-group;
    }

    .big-events-table tbody{
        display:table-row-group;
    }

    .big-events-table tr{
        display:table-row;
        margin:0;
        padding:0;
        background:transparent;
        border:0;
        border-radius:0;
        box-shadow:none;
    }

    .big-events-table tr:nth-child(even){
        background:rgba(102,102,102,.10);
    }

    .big-events-table tbody tr:hover{
        background:rgba(102,102,102,.30);
    }

    .big-events-table th,
    .big-events-table td{
        display:table-cell;
        padding:1rem;
        vertical-align:top;
    }

    .big-events-table th{
        background:#101A2B;
        color:#fff;
        text-align:left;
        border-top:1px solid #C5B358;
        border-bottom:1px solid #C5B358;
    }

    .big-events-table td{
        border:0;
    }

    .big-events-table td::before{
        display:none;
    }

    .big-events-table .business-name{
        margin:0;
        padding:1rem;
        border:0;
    }

    .big-events-table .business-name span{
        display:inline;
        font-size:inherit;
        font-weight:inherit;
        color:inherit;
    }

    .big-events-table td[data-label="Comments"]{
        margin:0;
        padding:1rem;
        border:0;
    }

}

.twoCol {
gap: 15px;
margin: 0 0 15px;
flex-wrap: wrap;

}
.ltr {
display:flex;
flex-direction: row;
}
.rtl {
display:flex;
flex-direction: row-reverse;
}

.twoCol div.col-1, .twoCol div.col-2 {width: 100%;}

@media (min-width:768px){

.mosaic-container {
 grid-template-columns:repeat(2,1fr);
}

.twoCol div.col-1 {width: calc(66.66% - 8px);  }
.twoCol div.col-2 {width: calc(33.33% - 8px);  }

}


@media (min-width:1100px){

.mosaic-container {
 grid-template-columns:repeat(3,1fr);  
}

}

/* Rich Snippet Summary*/

.snippet-summary {
    padding: 1.5rem;
}

.snippet-header {
    margin-bottom: 1.5rem;
}


.snippet-header p {
    margin: .4rem 0 0;
}

.snippet-grid {
    display: grid;
    gap: 1rem;
}

.snippet-card {
	background-color: #101A2B;
    border: 1px #C5B358 solid;
    padding: 1rem 1.25rem;
	box-shadow:0 8px 24px rgba(0, 0, 0, .08);
}

.snippet-card h3 {
    margin: 0 0 .5rem;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}

.snippet-card p {
    margin: 0;
    line-height: 1.6;
}

@media (min-width:768px){

    .snippet-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .snippet-card-full{
        grid-column:1 / -1;
    }

}

