@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Story+Script&display=swap');

@font-face {
  font-family: 'League Gothic Fallback';
  src: local('Arial');
  size-adjust: 110%;
  ascent-override: 85%;
  descent-override: 20%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Story Script Fallback';
  src: local('Comic Sans MS'), local('Comic Sans'), local('Chalkboard SE'), cursive;
  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: var(--secondary);}
.content a:hover {color: var(--tertiary);}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#f4f6f9;
  margin:0;
}

/* ===============================
   GLOBAL CONTAINER (MOBILE FIRST)
================================ */

.container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  width:100%;
  padding:15px 20px;
  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:#DAA744;
}

/* ===============================
   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:#DAA744;
}

/* ===============================
   CTA BUTTON
================================ */

.header-action{
  width:100%;
  margin-top:15px;
  display:none;
}

.cta-btn{
  display:inline-block;
  text-decoration:none;
  background-color:#DAA744;
  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 #DAA744;
    transition: .25s ease;
  }

  .has-dropdown:hover .dropdown{
    display:block;
  }
  
  .has-dropdown i {
    font-size: 16px;
    margin-left: 8px;
    color: #DAA744;
    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:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:72px;
  line-height:0.9;
  color:#fff;
  text-transform:uppercase;
  margin-bottom:15px;
}

.hero h1 span{
  color:#D71920
}

.hero h2{ font-family: 'Story Script',  'Story Script Fallback', cursive;
  font-size:24px;
  color:#DAA744;
  font-weight:600;
  margin-bottom:20px;
}

.hero p{
  color:#fff;
  font-size:16px;
  line-height:1.6;
  max-width:600px;
}

/* Tablet */

@media (min-width:768px){

  .hero{
    min-height:80vh;
  }

  .hero h1{
    font-size:100px;
  }

  .hero h2{
    font-size:30px;
  }

}

/* 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 h2{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

}

/* ===============================
   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;
}

/* ===============================
   CITY CARD
================================ */

.city-card{
  display:block;
  position:relative;
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
aspect-ratio: 1 / 1;
}

.city-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.city-card:hover img{
  transform:scale(1.05);
}

.city-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:20px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.05) 60%
  );
}

.city-overlay h3{
  color:#fff;
  font-size:22px;
  font-weight:700;
}

/* ===============================
   SWIPER CONTROLS
================================ */

.city-prev,
.city-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  background:#000;
  cursor:pointer;
  z-index:10;
}

.city-prev{
  left:10px;
}

.city-next{
  right:10px;
}

.city-prev::after,
.city-next::after{
content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.city-prev::after{
  transform: translate(-40%, -50%) rotate(-135deg);
}

.city-next::after{
  transform: translate(-60%, -50%) rotate(45deg);
}

/* ===============================
   TABLET
================================ */

@media (min-width:768px){

  .cities .intro h2{
    font-size:2.5em;
	line-height:2.6em;
  }

}

/* ===============================
   DESKTOP
================================ */

@media (min-width:1200px){

  .cities .intro h2{
    font-size:2.5em;
  }


  .city-prev{
    left:10px;
  }

  .city-next{
    right:10px;
  }

}
/* ===============================
   FEATURED EVENTS SECTION
================================ */

.featured{
  background:#111;
  padding:30px 0;
}

.events-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
  width:100%;
  margin-top:35px;
}

/* EVENT CARD */

.premium-event-card {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}


.premium-event-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.premium-event-card:hover img{
  transform:scale(1.06);
}

.card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.85) 10%,
    rgba(0,0,0,.1) 70%
  );
}

.card-content{
  position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.event-city {
    display: inline-block;
    background: #D71920;
    color: white;
    font-size: .75rem;
    font-weight: 700;
    padding: 7px 12px;
    margin-bottom: 14px;
    text-transform: uppercase;
    border-radius: 4px;
	
}

.event-venue {
	  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
    display: block;
    color: #DAA744;
    font-size: 1.5rem;
    letter-spacing: .1em;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
	text-shadow: 1px 1px #000;
}

.premium-event-card h3{
	  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
    color: #fff;
    font-size: 1.3rem;
	letter-spacing:.1em;
    line-height: 1.3;
    margin-bottom: 12px;
	text-transform: uppercase;
    font-weight: 700;
	text-shadow: 1px 1px #000;
}

.event-footer {
    display: grid;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    grid-template-columns: 1fr max-content;
    grid-gap: 10px;
}

.event-price {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    text-transform: uppercase;
}

.event-footer a{
    color: #DAA744;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
	text-align: right;
}

.event-footer a:hover{
  color:#fff;
}

/* TABLET */

@media (min-width:768px){

  .events-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* DESKTOP */

@media (min-width:1200px){

  .events-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

/* ===============================
   IDEAS SECTION
================================ */

.ideas{
  padding:30px 0;
  background-color: #084724;
  background-image: url(../images/backgrounds/grass-mobile.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color:#F4F4F4;
}

.ideas .intro{
  width:100%;
  text-align:center;
  margin-bottom:40px;
}

.ideas .intro h2{
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:1.8em;
  text-transform:uppercase;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.ideas-grid{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
}

/* IDEA CARD */

.ideas-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  min-height:360px;
}

.ideas-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.ideas-card:hover img{
  transform:scale(1.05);
}

.ideas-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.8) 10%,
    rgba(0,0,0,.15) 70%
  );
}

.ideas-category{
  display: inline-block;
  width: fit-content;
  background: #D71920;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.ideas-overlay h3{
  
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  color:#fff;
  font-size:1.5em;
  line-height:1.5em;
  letter-spacing:.1em;
  margin-bottom:18px;
  text-transform:uppercase
}

.ideas-btn{
  display:inline-block;
  text-decoration:none;
  background:#DAA744;
  color:#000;
  padding:10px 16px;
  border-radius:5px;
  font-weight:600;
  width:fit-content;
   text-transform:uppercase
}

.ideas-btn:hover{
  background:#fff;
}

/* TABLET */

@media (min-width:768px){

  .ideas-grid{
    grid-template-columns:repeat(2,1fr);
  }
.ideas .intro h2{
	font-size:2.5em;
	line-height:2.6em;
}
}

/* DESKTOP */

@media (min-width:1200px){

  .ideas{
    background-image: url(../images/backgrounds/grass.jpg);
  }

  .ideas-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

/* ===============================
   TRADITIONS SECTION
================================ */

.traditions{
  background:#000;
  padding:30px 0;
}

.traditions .intro{
  width:100%;
  text-align:center;
  margin-bottom:35px;
}

.traditions .intro h2{
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:1.8em;
  text-transform:uppercase;
  color:#fff;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.traditions-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
  width:100%;
}

/* INTRO BLOCK */

.traditions-intro{
  background:#111;
  padding:30px;
  border-radius:14px;
}

.traditions-intro p{
  color:#fff;
  line-height:1.8;
  margin-bottom:20px;
}


.btn-red {
    display: inline-block;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 4px;
    transition: .3s;
}

.btn-red:hover {
    background: #b51218;
}

/* CARD */

.tradition-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  min-height:320px;
}

.tradition-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tradition-card .card-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15)
  );
}

.tradition-card h3{
  color:#fff;
  font-size: 1.3rem;
  letter-spacing:.05rem;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
    font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
    text-transform: uppercase;
}

.arrow{
	display: inline-block;
    transition: .3s;
  color:#DAA744;
  font-size: 1.6rem;
    font-weight: 700;
}

.tradition-card:hover .arrow {
    transform: translateX(5px);
}

/* TABLET */

@media (min-width:768px){

.traditions .intro h2{
font-size: 2.5em;
line-height:2.6em;
}

  .traditions-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
   .traditions-grid > *:first-child {
  grid-column: 1 / -1;
}

}

/* DESKTOP */

@media (min-width:1200px){

  .traditions-grid{
    grid-template-columns: 320px repeat(4, 1fr);
    gap: 15px;
  }

.traditions-grid > *:first-child {
  grid-column: unset;
}
}
/* ===============================
   SUBSCRIBE SECTION
================================ */

.subscribe{
  background-color: #D71920;
  color: #F4F4F4;
  padding:30px 0;
  text-align:center;
}

.subscribe .intro{
  width:100%;
  margin-bottom:30px;
}

.subscribe .intro h2{
  font-family:'League Gothic', 'League Gothic Fallback', sans-serif;
  font-size:1.8em;
  text-transform:uppercase;
  margin-bottom:12px;
      letter-spacing: 0.1em;
    line-height: 2em;
}

.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: 2.5em;
line-height:2.6em;
	}

  .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:#DAA744;
}

/* 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:700;
  text-transform:uppercase;
  text-align: right;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.footer-slogan .white{
  color:#fff;
}

.footer-slogan .gold{
  color:#DAA744;
}

/* ===============================
   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: flex;
      flex-wrap: wrap;
      margin:0 0 15px 0;
      padding:0;
      gap: 12px;
}

.mosaic-columns-3 li {
 width: 100%;  
}

.mosaic-item {
    box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #d3d3d3; 
    position: relative;
}

.mosaic-container li {
 list-style:none;   
}

.mosaic-item .padding {
    padding: 10px;
}

.mosaic-item .mosaic-image {
    width: 100%;
    height: auto;
    margin-bottom: 0px; 
}

.mosaic-item .mosaic-head {
    margin: 0 -10px 10px;
    padding: 10px;
    border-bottom: 1px dashed #ddd;
}

.mosaic-item .mosaic-title {
    line-height: 1.2em;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.4em;
    margin-bottom: 5px;
}

.mosaic-item .mosaic-infos {
    font-size: 13px;
    font-weight: bold;
    margin: 0
}

.mosaic-item .mosaic-infos a{
    text-decoration:none;
}

.mosaic-text h4, .mosaic-text p{
    margin: 0 0 10px;
    
}

.mosaic-text h4 {
 font-size:1.2em;
}

.mosaic-text h4 strong {
    font-weight: 700;
}

.mosaic-links a {
    margin: 0 5px;
    text-decoration: none;
}

.mosaic-links a:first-of-type {
    margin-left: 0;
}


.mosaic-corner-badge {
    border-color: transparent;
    border-style: solid;
    border-width: 67px 67px 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.mosaic-corner-badge {
    border-right-color: var(--secondary) !important;
}


.big-events-table {
 border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;   
}

.big-events-table thead tr {
    background-color: var(--secondary);
    color: white;
}

.big-events-table tr:nth-child(even) {
    background-color: rgba(102, 102, 102, 0.1);
}

.big-events-table tbody tr:hover {
    background-color: rgba(102, 102, 102, 0.3);
}

.big-events-table th, .big-events-table td {
    margin: 0;
    padding: 10px;
}

.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 only screen and (min-width: 480px) {

.mosaic-columns-3 li {
 width: calc(50% - 8px);  
}

.twoCol div.col-1 {width: calc(66.66% - 8px);  }
.twoCol div.col-2 {width: calc(33.33% - 8px);  }

}


@media only screen and (min-width: 720px) {

.mosaic-columns-3 li {
 width: calc(33.33% - 8px);  
}

}