/** Shopify CDN: Minification failed

Line 173:13 Expected identifier but found whitespace
Line 173:15 Unexpected "{"
Line 173:24 Expected ":"
Line 193:8 Expected identifier but found "{"
Line 193:9 Unexpected "{"
Line 193:18 Expected ":"
Line 200:8 Expected identifier but found "{"
Line 200:9 Unexpected "{"
Line 200:18 Expected ":"
Line 214:8 Expected identifier but found "{"
... and 2 more hidden warnings

**/
.brook37-event-section {
  background: #f4f1ed;
  padding: var(--padding-70) 0;
  border-bottom: 1px solid #e8e0d4;
}

.event-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap:clamp(2rem, 3.125vw, 5rem);
  row-gap: 3rem;
  align-items:center;
}

.event-grid .event-content{
  text-align:center;
}

.event-grid .event-content .top-logo {
  max-width: 16rem;
  margin: 0 auto 14px;
  display: block;
}

.event-grid .event-content .small-heading {
  font-size: clamp(1.7rem, 1.75vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #222;
  font-family: var(--Mhiora-Font);
}

.event-grid .event-content .small-heading em{
  color:#d78f87;
  font-style:normal;
}

.event-grid .event-content .event-logo {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  mix-blend-mode: darken;
}

.main-heading{
  font-size:72px;
  line-height:1.05;
  font-weight:400;
  margin:0 0 30px;
  color:#d78f87;
}

.event-logo{
  max-width:100%;
  margin-bottom:30px;
}

.event-date{
  font-size:28px;
  font-weight:700;
  margin-bottom:30px;
  color:#111;
}

.event-grid .event-content .booth-box {
  display: inline-block;
  border: 1px solid #d8b2a5;
  padding: 15px 40px;
  font-size: clamp(2rem, 1.875vw, 3rem);
  font-weight: 700;
  color: #d78f87;
  line-height: 1;
  margin-bottom: 15px;
}

.event-grid .event-content .event-description {
  max-width: 571px;
  margin: 0 auto 25px;
  font-size: clamp(1.6rem, 1.375vw, 2.2rem);
  line-height: 1.5;
  color: #666;
}

.event-grid .event-content .location-box {
  border: 1px solid #d8b2a5;
  padding: 18px 25px;
  color: #c97d64;
  font-size: clamp(1.6rem, 1.375vw, 2.2rem);
  margin-bottom: 20px;
  display: inline-block;
}

.event-grid .event-images .image-box.top {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
}

.event-btn{
  display:inline-block;
  background:#1b120d;
  color:#fff;
  text-decoration:none;
  padding:18px 35px;
  line-height: 1.2;
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  letter-spacing:2px;
  text-transform:uppercase;
}

.event-images{
  display:flex;
  flex-direction:column;
  gap:35px;
}

.image-box img{
  width:100%;
  display:block;
  border-radius:6px;
}

@media screen and (max-width:989px){

  .main-heading{
    font-size:48px;
  }

  .small-heading{
    font-size:22px;
  }

  .event-date,
  .location-box,
  .event-description{
    font-size:18px;
  }

  .booth-box{
    font-size:24px;
  }
  .event-btn {
    padding: 10px 20px;
  }
  .event-grid .event-content .location-box {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .event-grid{
    grid-template-columns:1fr;
  }
}


.countdown-section{
  background: {{ section.settings.bg_color }};
  padding: 50px 20px;
}

.countdown-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.countdown-item{
  text-align:center;
}

.countdown-number{
  display:block;
  font-size:60px;
  font-weight:600;
  color:{{ section.settings.text_color }};
  line-height:1;
}

.countdown-label{
  display:block;
  margin-top:8px;
  color:{{ section.settings.text_color }};
  font-size:16px;
}

.countdown-divider {
  width: 2px;
  height: 80px;
  background: rgb(0 0 0 / 30%);
  display: block;
}

.countdown-heading{
  text-align:center;
  margin-bottom:30px;
  color:{{ section.settings.text_color }};
}

@media only screen and (max-width: 991px) {
  .countdown-number {
    font-size: 35px;
  }
 .countdown-wrapper {
    gap: 10px;
  } 
}

@media(max-width:767px){
  .countdown-number{
    font-size:36px;
  }

  .countdown-divider{
    display:none;
  }

  .countdown-wrapper{
    gap:20px;
  }
}