@charset "utf-8";
/* CSS Document */

/* ===============================
   1. GLOBAL RESET & DEFAULTS
================================ */

:root {
  --main: #000;
  --secondary: rgb(215, 25, 32);
  --tertiary: rgb(218, 167, 68);
}

.content a, .content a:visited, .mosaic-item a, .mosaic-item a:visited, .big-events-table td a { color: #D8A03A;}
.content a:hover, .mosaic-item a:hover {color: #1A2634;}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #FFFFFF;
	margin: 0;
	color: #08172d;
	font-size: 16px;
}

.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, .snippet-header h2 {
	color: #292727;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	}

main .content h1 {
font-size:1.8em;
}
	
main .content h2, .section-heading h2, .snippet-header 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-radius:12px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.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:1em 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{
  line-height:2em;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin:0 0 12px;
}

.section-header .brush{
  width:85px;
  height:auto;
  display:block;
  margin-bottom:18px;
}

.section-header p{
  font-size:1.05rem;
  line-height:1.7;
  margin:0;
}


/* ===============================
   HEADER
================================ */

.top-header{
  top:0;
  left:0;
  width:100%;
  background-color:#FFF;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  z-index:999;
}


.top-header .container{
padding-bottom:.5em;	
}
/* ===============================
   LOGO
================================ */

.logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.35rem;
    margin:0 auto;
}


.logo img{
    display:block;
    width:auto;
    max-height:100px;
}

@media (min-width:768px){

    .logo img{
        max-height:75px;
    }

}

/* ===============================
   MOBILE NAV DEFAULT
================================ */

.navbar{
  width:100%;
  position:relative;
}

.menu-toggle{
  display:block;
  background:none;
  border:none;
  color: #08172d;
  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:#08172d;;
  font-weight:500;
  font-size:16px;
  padding:12px 0;
  transition:color .3s ease;
}

.nav-item:hover,
.nav-item.active{
	color: #D8A03A;
}

/* ===============================
   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:#292727;
  text-decoration:none;
  padding:10px 0;
  font-size:14px;
}

.dropdown li a:hover{
  color:#D8A9A5;
}

/* ===============================
   CTA BUTTON
================================ */

.header-action{
  width:100%;
  margin-top:15px;
  display:none;
}

.cta-btn{
	display: inline-block;
	text-decoration: none;
	background-color: #08172d;
	color: #FFFFFF;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 14px;
	transition: background-color .3s ease;
}

.cta-btn:hover{
  background-color:#D8A03A;
}

/* ===============================
   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){
.top-header .container{
padding-bottom:2em;	
}
	
.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:#F3E7E5;
    padding:10px 20px;
    z-index:100;
    border-top: 3px solid #D8A9A5;
    transition: .25s ease;
  }

  .has-dropdown:hover .dropdown{
    display:block;
  }
  
  .has-dropdown i {
    font-size: 16px;
    margin-left: 8px;
    color: #D8A9A5;
    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 right/cover no-repeat;
	background-image: var(--hero-mobile);
	background-color: #FAF8F4;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 30px 0;
}


.hero .container{
  position:relative;
  z-index:2;
}

.hero-text{
  width:100%;
}

.hero-text h1 {font-size:4em;
color:#FFF;
text-transform:uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);}

.hero p{
  color:#FFF;
  font-size:1.5em;
  line-height:1.6;
  max-width:600px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.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: #D8A03A;
    color: #fff;
    border: 2px solid #D8A03A;
}

.hero-btn-primary:hover {
    background: #fff;
    color:  #D8A03A;
    border: 2px solid #fff;;
}

/* 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: 6em;  
  }
  .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-btn {
        min-width: 240px;
        height: 60px;
        font-size: 1rem;
    }
}

/* =========================================================
   WHAT WE DO
   Mobile first
========================================================= */

.what-we-do, .our-products {

	border-bottom: 1px solid #e5e5e5;
	padding: 40px 20px 44px;
	color: #08172d;
}

.what-we-do {
	background: #f9f9f9;	
}


/* Heading */

.what-we-do .section-heading, .our-products .section-heading {
	width:100%;
	text-align: center;
	margin-bottom: 30px;
}

.what-we-do .section-heading h2, .our-products .section-heading h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #08172d;
}

.section-heading span {
	display: block;
	width: 38px;
	height: 2px;
	margin: 8px auto 0;
	background: #d1a64b;
}


/* Grid */

.what-we-do__grid {
	display: grid;
	grid-template-columns: 1fr;
	width:100%
}


/* Individual items */

.what-we-do__item {
	position: relative;
	text-align: center;
	padding: 28px 15px;
}

.what-we-do__item + .what-we-do__item {
	border-top: 1px solid #e1e1e1;
}


/* Icons */

.what-we-do__icon {
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.what-we-do__icon img {
	display: block;
	width: auto;
	height: 48px;
	max-width: 58px;
	object-fit: contain;
}


/* Titles */

.what-we-do__item h3 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: #08172d;
}


/* Text */

.what-we-do__item p {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: #111;
}


/* =========================================================
   TABLET / DESKTOP
========================================================= */

@media (min-width: 768px) {

	.what-we-do {
		padding: 22px 30px 45px;
	}

	.what-we-do__heading {
		margin-bottom: 18px;
	}

	.what-we-do__heading h2 {
		font-size: 17px;
	}

	.what-we-do__grid {
		grid-template-columns: repeat(3, 1fr);
		align-items: stretch;
	}

	.what-we-do__item {
		padding: 10px 45px 4px;
	}

	.what-we-do__item + .what-we-do__item {
		border-top: 0;
		border-left: 1px solid #dedede;
	}

	.what-we-do__icon {
		height: 58px;
		margin-bottom: 9px;
	}

	.what-we-do__icon img {
		height: 50px;
	}

	.what-we-do__item h3 {
		font-size: 14px;
		margin-bottom: 9px;
	}

	.what-we-do__item p {
		font-size: 12px;
		line-height: 1.45;
	}

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {


	.what-we-do__item {
		padding-left: 55px;
		padding-right: 55px;
	}

}

/* =========================================================
   WHY DREAM BUILDERS
   Mobile first
========================================================= */

.why-dream-builders {
	background: #06213a;
	color: #fff;
	padding: 32px 20px 36px;
}

.why-dream-builders .section-heading {
	width:100%;
	text-align: center;
	margin-bottom: 30px;
}

.why-dream-builders .section-heading h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
}


/* Grid */

.why-dream-builders__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 20px;
	width:100%
}


/* Items */

.why-dream-builders__item {
	text-align: center;
	min-width: 0;
}


/* Icons */

.why-dream-builders__icon {
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.why-dream-builders__icon img {
	display: block;
	width: auto;
	height: 42px;
	max-width: 48px;
	object-fit: contain;
}


/* Titles */

.why-dream-builders__item h3 {
	margin: 0 0 7px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
}


/* Supporting copy */

.why-dream-builders__item p {
	margin: 0;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
	color: #fff;
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (min-width: 600px) {

	.why-dream-builders {
		padding: 28px 30px 34px;
	}

	.why-dream-builders__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px 24px;
	}

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 900px) {

	.why-dream-builders {
		padding: 18px 30px 24px;
	}

	.why-dream-builders__heading {
		margin-bottom: 18px;
	}

	.why-dream-builders__heading h2 {
		font-size: 16px;
	}

	.why-dream-builders__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 18px;
		align-items: start;
	}

	.why-dream-builders__icon {
		height: 44px;
		margin-bottom: 8px;
	}

	.why-dream-builders__icon img {
		height: 40px;
	}

	.why-dream-builders__item h3 {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.why-dream-builders__item p {
		font-size: 10px;
		line-height: 1.4;
	}

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

	.why-dream-builders__grid {
		gap: 24px;
	}

}

/*------------------------------------
    FEATURED / LATEST TRADITION CARD
------------------------------------*/

.article-feature-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s ease;
    margin-bottom: 2rem;
}

.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: #D8A03A;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.article-feature-card h2, .article-feature-card h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.1;
}

.article-feature-card h2 a, .article-feature-card h3 a {
    color: #1A2634;
    text-decoration: none;
}

.article-feature-card h2 a:hover, .article-feature-card h3 a:hover {
    color: #D8A03A;
}

.article-feature-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    flex: 1;
}

.article-feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.75rem;
    color: #D8A03A;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}

.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;
	margin-bottom:2rem;
}

.article-card{
    background:#f9f9f9;
    border-radius:6px;
	border: 1px solid #EBECEC;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
	text-align:center
}

.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:#D8A03A;
}

.article-card h3{
    margin:0 0 1rem;
    font-size: 1.1rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.article-card h3 a{
    color:#1A2634;
    text-decoration:none;
}

.article-card h3 a:hover{
    color:#D8A03A;
}

.article-card p{
    margin:0;
    color:#555;
    line-height:1.65;
	font-size: 0.8em;
}

.article-card__link{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    margin-top:1.5rem;
    color: #08172d;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
	font-size: 1em;
	text-transform:uppercase;
}

.article-card__link:hover{
    gap:.9rem;
	color:#D8A03A;
}

.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;
		margin-bottom:2.5rem;
    }

    .article-card img{
        height:240px;
    }

}


/* ===============================
   MORE BIG DAYS SECTION
================================= */

.more-big-days {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s ease;
    margin-bottom: 2rem;
}

.more-big-days:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.more-big-days__tellus {
    display: block;
}

.more-big-days__tellus img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.more-big-days__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}


.more-big-days h2, .more-big-days h3 {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	line-height: 1.1;
	font-family: 'Playfair Display', "Times New Roman", serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 400;
}

.more-big-days a

.more-big-days p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    flex: 1;
}

.more-big-days a {
	color: #D8A03A;
}

.more-big-days a:hover {
	color: #1A2634;
}
@media (min-width:768px){

    .more-big-days{
        flex-direction:row-reverse;
    }

    .more-big-days__tellus{
        flex:0 0 40%;
    }

    .more-big-days__tellus img{
        height:100%;
        min-height:320px;
    }

    .more-big-days__content{
        flex:1;
        justify-content:center;
    }

}

@media (min-width:1200px){

    .more-big-days__content{
        padding:3rem;
    }

    .more-big-days h2{
        font-size:2.6rem;
    }

    .more-big-days p{
        font-size:1.05rem;
    }

}

/* ===============================
   SUBSCRIBE SECTION
================================ */

.subscribe{
	background-color: #FFF;
	color: #08172d;
	padding: 30px 0;
	text-align: center;
}

.subscribe .intro{
  width:100%;
  margin-bottom:30px;
}

.subscribe .intro h2{
	font-size: 1.8em;
	text-transform: uppercase;
	margin-bottom: 12px;
	letter-spacing: 0.1em;
	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: #292727;
	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: #292727;
}

/* 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;
	background-color: #08172d;
}

/* FOOTER GRID */

.footer-grid{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:35px;
  margin-bottom:50px;
}


.footer-brand img{
  max-width:150px;
  width:100%;
  height:auto;
  margin-bottom:20px;
}

.footer-brand p{
	color: #D8A03A;
	line-height: 1.7;
	font-weight: 700;
	text-transform: uppercase;
}

/* FOOTER COLUMNS */

.footer-column h2{
	color: #D8A03A;
	font-size: 1rem;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 0.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: #D8A9A5;
}

/* 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;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1;
}

.footer-slogan .white{
  color:#fff;
}

.footer-slogan .highlight{
  color:#D8A9A5;
  font-family: 'Parisienne', cursive;
  text-transform: none;
  font-size: 2.6rem;
}

/* ===============================
   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:1fr 1fr 1fr 2fr;
    gap:50px;
  }
  
  .footer-guides-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 2rem;
}

.footer-guides-list li {
    margin: 0;
}

.footer-guides-list a {
    display: block;
    text-decoration: none;
}

  .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:#fff;
    border-radius:12px;
    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 #D8A03A;
    border-bottom: 1px solid #D8A03A;
    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:#1A2634;
	color:#fff;
    border-radius:12px;
    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;
}

.big-events-table td a:hover {
color: #fff;	
}

/* ==========================================================================
   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;
		color:rgb(7, 26, 51);
    }

    .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:#1A2634;
        color:#fff;
        text-align:left;
    }

    .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;
    }
	
	.big-events-table td a:hover {
color: #1A2634;
}

}

.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: #FFFFFF;
	padding: 1rem 1.25rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	border-radius: 12px;
}

.snippet-card h3 {
    margin: 0 0 .5rem;
    font-size: .95rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #1A2634;
}

.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;
    }

}
