:root{
  --ink:#051214;
  --ink-2:#0C262A;
  --cream:#F4EEE1;
  --cream-2:#ECE3D0;
  --ember:#2FC2D4;
  --ember-lt:#8FEAF2;
  --paper-ink:#1B1B16;
  --woc-green:#153731;
  --woc-green-2:#0E2622;
  --woc-gold:#C9A227;
  --mel-terra:#B9683F;
  --mel-olive:#707A54;
  --mel-cream:#EFE6D5;
  --gv-forest:#33402A;
  --gv-amber:#A8763E;
  --gv-dark:#1B2317;
  --line:rgba(244,238,225,0.14);
  --line-dark:rgba(27,27,22,0.12);
  --serif:'Fraunces', serif;
  --sans:'Manrope', sans-serif;
  --mono:'Space Mono', monospace;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  background:var(--cream);
  color:var(--paper-ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.eyebrow{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  opacity:0.75;
}
.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 40px;
}
@media (max-width:700px){.container{padding:0 22px;}}

/* ===== NAV ===== */
/* ===========================
   NAVBAR
=========================== */

.nav{
  position:absolute;
  top:30px;
  left:0;
  width:100%;
  z-index:100;

  display:flex;
  justify-content:center;
  align-items:center;

  color:#fff;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.nav.scrolled{
  top:20px;
}

/* Logo */


/* Navigation */

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:220px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  opacity:.9;
  transition:.3s;
}

.nav-links a:hover{
  opacity:1;
}

/* Mobile */

@media(max-width:900px){

  .nav{
      flex-direction:column;
      gap:20px;
      padding:20px;
  }

  .nav-links{
      gap:35px;
      flex-wrap:wrap;
  }

}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;

  background-image: url("backgroundimage1 (1).jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.hero-logo{
    width:clamp(128px, 35vw, 152px);
    height:auto;
    display:block;
    margin:0 auto clamp(16px, 3vh, 35px);
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:220px;
  height:60px;

  margin-top:40px;

  border:1.5px solid white;
  border-radius:999px;

  background:transparent;
  color:white;

  text-decoration:none;
}
.hero-btn:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-2px);
}
.embers{position:absolute;inset:0;pointer-events:none;}
.ember-dot{
  position:absolute;
  bottom:-20px;
  width:4px;height:4px;
  border-radius:50%;
  background:var(--ember-lt);
  box-shadow:0 0 10px 3px rgba(95,224,232,0.85);
  animation:rise linear infinite;
  opacity:0;
}
@keyframes rise{
  0%{transform:translateY(0) translateX(0) scale(1);opacity:0;}
  8%{opacity:1;}
  60%{opacity:0.85;}
  100%{transform:translateY(-100vh) translateX(var(--drift,20px)) scale(0.3);opacity:0;}
}
.hero-inner{
  position:relative;
  z-index:2;

  padding:0 40px;

  max-width:1249px;
  margin:0 auto;
  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
@media (max-width:700px){
  .hero-inner{padding:0 22px;}
}
.hero h1 {
 font-family: 'Montserrat', var(--serif), sans-serif; /* Changed from var(--serif) */
  font-weight: 700; /* Increased weight slightly (Montserrat looks great at 600-800 for main headings) */
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 980px;

  text-align: center;
  margin: 0 auto;
}
.hero h1 em{
  font-style:italic;
  font-weight:400;
  color:var(--ember-lt);
}
.scroll-cue{
  position:absolute;
  bottom:40px;left:40px;
  z-index:2;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgba(244,238,225,0.5);
  display:flex;align-items:center;gap:10px;
}
.scroll-cue .line{width:1px;height:34px;background:linear-gradient(to bottom, rgba(244,238,225,0.6), transparent);animation:scrollline 2s ease-in-out infinite;}
@keyframes scrollline{0%,100%{transform:scaleY(1);}50%{transform:scaleY(0.4);}}

/* ===== INTRO STRIP (REDESIGNED) ===== */
.intro{
  background:var(--cream);
  min-height:100vh;
  padding:80px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--line-dark);
}

.intro-new{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-evenly;
  text-align:center;
  width:100%;
  height:100%;
  min-height:calc(100vh - 160px);
}

.intro-heading{
  font-family:var(--serif);
  font-size:clamp(48px, 8vw, 96px);
  font-weight:500;
  line-height:1.1;
  margin-bottom:0;
  color:var(--paper-ink);
}

.logo-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:clamp(24px, 3vw, 48px);
  width:100%;
  max-width:1100px;
  padding:0 24px;
}

@media (max-width:900px){
  .logo-grid{
    grid-template-columns:1fr;
    gap:24px;
    max-width:420px;
  }
}

/* shared card base */
.mel-logo-card,
.woc-logo-card,
.gv-logo-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:clamp(260px, 32vh, 360px);
  padding:clamp(32px, 5vh, 56px) 24px;
  border-radius:8px;
  border:1px solid var(--line-dark);
  cursor:pointer;
  transition:all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mel-logo-card:hover,
.woc-logo-card:hover,
.gv-logo-card:hover{
  border-color:var(--ember);
  transform:translateY(-8px);
}

.mel-logo-card{
  background:#f8eee5;
}
.mel-logo-card:hover{
  background:#f8eee5ee;
}

.woc-logo-card{
  background:#0e4b42;
}
.woc-logo-card:hover{
  background:#0e4b42f3;
}

.gv-logo-card{
  background:var(--gv-forest);
}
.gv-logo-card:hover{
  background:#1f3a33f6;
}

/* logo box scales with card */
.logo-container{
  width:100%;
  height:clamp(90px, 12vh, 130px);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.logo-container img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

/* unified logo image sizing */
.mel_logo_image,
.woc_logo_image,
.gv_logo_image{
  max-height:clamp(90px, 12vh, 130px);
  max-width:160px;
  width:auto;
  height:auto;
}

.logo-label{
  font-family:var(--serif);
  font-size:clamp(18px, 2vw, 22px);
  font-weight:500;
  margin:0;
  transition:color 0.1s ease;
}

.mel-logo-card .logo-label{
  color:var(--paper-ink);
}
.mel-logo-card:hover .logo-label{
  color:var(--ember);
}

.woc-logo-card .logo-label,
.gv-logo-card .logo-label{
  color:#f5efe6;
}
.woc-logo-card:hover .logo-label,
.gv-logo-card:hover .logo-label{
  color:var(--ember);
}
/* ===== WOC - FULLY REDESIGNED ===== */
.venture.woc{
  background-image: url("backgroundimage1 (2).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color:var(--cream);
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 0;
  position:relative;
  overflow:hidden;
  text-align:center;
}
.venture.woc .container{
  max-width:900px;
}
.venture-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.venture.woc .v-copy{
  order:1;
}
.venture.woc .v-media{
  display:none;
}
.venture.woc .eyebrow{
  color:var(--woc-gold);
  margin-bottom:30px;
  letter-spacing:0.2em;
  font-size:11px;
}
.venture.woc h3{
  font-family:var(--serif);
  font-size:clamp(36px, 5vw, 60px);
  font-weight:400;
  line-height:1.1;
  margin-bottom:16px;
  color:var(--cream);
  letter-spacing:0.02em;
}
.woc-logo{
  margin-bottom:clamp(16px, 3vh, 32px);
  display:flex;
  justify-content:center;
}
.woc-logo img{
  max-width:clamp(140px, 18vh, 220px);
  height:auto;
}
.venture.woc .tagline{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(16px, 2.4vw, 22px);
  line-height:1.5;
  margin-bottom:20px;
  color:var(--woc-gold);
  opacity:1;
  letter-spacing:0.01em;
}
.venture.woc p.desc{
  font-size:15px;
  line-height:1.6;
  margin-bottom:clamp(20px, 4vh, 40px);
  color:rgba(244,238,225,0.85);
  max-width:none;
}
.venture.woc .v-facts{
  display:none;
}
.woc-features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:clamp(20px, 4vh, 40px);
  padding-top:clamp(20px, 4vh, 40px);
  border-top:1px solid rgba(201,162,39,0.4);
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:700px){
  .woc-features{
    grid-template-columns:1fr;
    gap:30px;
  }
}
.woc-feature{
  text-align:center;
  padding:20px 0;
}
.woc-feature-icon{
  font-size: 2rem;
  color: #c8a46b;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.woc-feature-icon i{
  line-height: 1;
}
.woc-feature-label{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--woc-gold);
  margin-bottom:8px;
}
.woc-feature-text{
  font-size:13px;
  line-height:1.5;
  color:rgba(244,238,225,0.8);
}
/* ===== STORY/ABOUT - FULLY REDESIGNED ===== */
.story{
   background-image: url("backgroundimage1 (3).png");
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position:relative;
  overflow:hidden;

  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 0;
}

.story-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.story h2{
  font-family:var(--serif);
  font-size:clamp(30px, 4vw, 48px);
  font-weight:500;
  line-height:1.15;
  position:static;
  color:#1f6678;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.story-body{
  padding:0;
}
.story-body p{
  font-size:14.5px;
  line-height:1.6;
  color:#2a4a50;
  margin-bottom:16px;
  max-width:100%;
}
.story-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:clamp(24px, 4vh, 40px);
  max-width:100%;
}
@media (max-width:700px){
  .story-stats{
    grid-template-columns:1fr;
    gap:20px;
  }
}
.stat-box{
  background:white;
  padding:clamp(18px, 3vh, 28px) 20px;
  border-radius:8px;
  text-align:center;
  box-shadow:0 4px 15px rgba(31,102,120,0.12);
  border-top:4px solid #1f6678;
  transition:transform 0.3s ease;
}
.stat-box:hover{
  transform:translateY(-5px);
}
.stat-icon{
  font-size: 2.2rem;
  color: #0E5A73;
  margin-bottom: 15px;
  display: block;
}
.stat-icon i{
  line-height: 1;
}
.stat-number{
  font-family:var(--serif);
  font-size:36px;
  font-weight:600;
  color:#1f6678;
  margin-bottom:8px;
}
.stat-label{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#1f6678;
  opacity:0.85;
}
/* ===== MELBEAN - OUR STORY SECTION ===== */

/* Dark Brown Outer Container */
.venture.mel {
  background-color: #2b1810 !important;
  background-image: url("backgroundimage1 (1).png");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

/* Hide old pseudo-elements */
.venture.mel::before,
.venture.mel::after {
  display: none !important;
}

/* Full-width SVG wave positioning */
.venture.mel .wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Color & Tone adjustment for texture image inside wave */
.wave-bg pattern image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) contrast(0.95) brightness(0.98);
}

/* Grid & Text Positioning over Wave */
.venture.mel .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px; /* More space between text and logo */
  align-items: center;
  max-width: 1000px; /* Increased from 1100px for a wider look */
  margin: 0 auto;
  padding: 60px 20px; /* Added internal padding to give text space */
  background: transparent !important;
  clip-path: none !important;
}

/* Responsive view for mobile/tablets */
@media (max-width: 900px) {
  .venture.mel .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .venture.mel .v-copy {
    text-align: center;
  }
}

/* Typography & Elements */
.venture.mel .v-copy {
  text-align: left;
}

/* Reduced Heading Size */
.story-heading {
  font-family: var(--serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(22px, 3vw, 28px); /* Reduced from 32px-44px */
  font-weight: 700;
  color: #2b1810;
  margin-bottom: 10px;
}

/* Reduced Paragraph Text Size */
.story-text {
  font-family: sans-serif;
  font-style: italic;
  font-size: 13.5px; /* Reduced from 15px */
  line-height: 1.20;
  color: #3d2a20;
  max-width: 440px;
}

/* Slightly smaller script accent to match text scaling */
.script-tagline img {
  width: 150px;
  margin-top: 12px;
}

.venture.mel .v-media {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.mealbean-logo {
  margin-left: auto;
  transform: translateX(70px);

  max-width: 400px;
  width: 100%;
  height: auto;
}
.script-tagline {
  font-family: 'Brittany Signature', cursive;
  font-size: 38px;
  color: #2b1810;
  line-height: 0.90;
  margin-top: -10px; /* Changed from 15px to -30px to pull it upwards */
  display: inline-block;
  transform: rotate(-3deg);
}

/* Indents the second word under the first */
.script-tagline .indent {
  padding-left: 35px;
  display: block;
}
/* ===== GLASS VALLEY - KEEP ORIGINAL ===== */
.venture.gv {
  background: var(--gv-dark);
  color: var(--cream);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venture.gv .eyebrow {
  color: var(--gv-amber);
}

.venture.gv .v-facts {
  border-color: rgba(244, 238, 225, 0.2);
}

.venture.gv .v-facts .f-val {
  color: var(--cream);
}

.venture.gv .v-copy p.desc {
  color: rgba(244, 238, 225, 0.8);
}

/* Logo Styling - Controls logo size and centering */
.gv-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.gv-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

/* Content Container */
.v-copy {
  padding-top: 0;
}

.v-copy .eyebrow {
  margin-bottom: 14px;
}

/* Text Styles */
.v-copy h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 14px;
}

.v-copy .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 14px;
  opacity: 0.9;
}

.v-copy p.desc {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Centered Facts Grid */
.v-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.v-facts .f-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.v-facts .f-val {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
/* ===== LAUNCH - FULLY REDESIGNED ===== */
.launch{
  background:linear-gradient(180deg, rgba(20,30,35,0.95) 0%, rgba(5,18,20,0.98) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><pattern id="arch" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><line x1="0" y1="60" x2="60" y2="0" stroke="rgba(201,162,39,0.05)" stroke-width="1"/><line x1="60" y1="0" x2="120" y2="60" stroke="rgba(201,162,39,0.05)" stroke-width="1"/></pattern></defs><rect width="1440" height="900" fill="url(%23arch)"/></svg>');
  color:var(--cream);
  padding:80px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.launch > .container{
  position:relative;
  z-index:2;
}
.launch .eyebrow{
  color:var(--woc-gold);
  margin-bottom:30px;
  justify-content:center;
  display:flex;
  letter-spacing:0.15em;
  font-size:11px;
}
.launch h2{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(44px, 8vw, 84px);
  line-height:1.05;
  margin-bottom:30px;
}
.launch h2 em{
  font-style:italic;
  color:var(--woc-gold);
  font-weight:400;
}
.launch p{
  margin:28px auto 0;
  max-width:600px;
  color:rgba(244,238,225,0.75);
  font-size:16px;
  line-height:1.7;
}
.launch-ventures{
  margin-top:60px;
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(244,238,225,0.55);
}
.launch-ventures span{color:var(--woc-gold);margin-right:6px;}

/* ===== FOOTER ===== */
footer{
  background:var(--ink);
  color:rgba(244,238,225,0.85);
  padding:90px 0 40px;
  border-top:1px solid var(--line);
}
.foot-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:50px;
  padding-bottom:70px;
}
@media (max-width:820px){.foot-grid{grid-template-columns:1fr 1fr;gap:40px;}}
@media (max-width:520px){.foot-grid{grid-template-columns:1fr;}}
.foot-mark{
  font-family:var(--serif);
  font-size:30px;
  font-weight:600;
}
.foot-tag{
  margin-top:14px;
  font-size:14.5px;
  color:rgba(244,238,225,0.78);
  max-width:260px;
  line-height:1.6;
}
.foot-col .eyebrow{color:var(--ember-lt);margin-bottom:18px;}
.foot-col a, .foot-col p{
  display:block;
  font-size:14.5px;
  color:rgba(244,238,225,0.78);
  margin-bottom:12px;
  line-height:1.5;
}
.foot-col a:hover{color:var(--ember-lt);}
.foot-bottom{
  display:flex;
  justify-content:space-between;
  padding-top:28px;
  border-top:1px solid var(--line);
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:0.05em;
  color:rgba(244,238,225,0.45);
  flex-wrap:wrap;
  gap:12px;
}

/* reveal animation */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .8s ease, transform .8s ease;}
.reveal.in{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
  .reveal{transition:none;opacity:1;transform:none;}
  html{scroll-behavior:auto;}
}

/* ===== LIGHTBOX ===== */
.zoomable{cursor:zoom-in;}
.lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(5,12,13,0.94);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease;
}
.lightbox.open{opacity:1;visibility:visible;}
.lightbox img{
  max-width:min(94vw,1400px);
  max-height:88vh;
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 30px 80px rgba(0,0,0,0.5);
  cursor:zoom-out;
  transform:scale(0.96);
  transition:transform .28s ease;
}
.lightbox.open img{transform:scale(1);}
.lightbox .lb-close{
  position:absolute;
  top:22px;right:24px;
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid rgba(244,238,225,0.25);
  background:rgba(244,238,225,0.06);
  color:var(--cream);
  font-size:20px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s, transform .2s;
}
.lightbox .lb-close:hover{background:rgba(244,238,225,0.16);transform:rotate(90deg);}
.lightbox .lb-cap{
  position:absolute;
  bottom:26px;left:50%;
  transform:translateX(-50%);
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(244,238,225,0.6);
  text-align:center;
  max-width:80vw;
}
@media (max-width:600px){
  .lightbox{padding:16px;}
  .lightbox .lb-close{top:14px;right:14px;width:40px;height:40px;}
}
.insta_logo{
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:6px;
  vertical-align:middle;
}
.facebook_logo{
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:6px;
  vertical-align:middle;
}

.visit-address {
    display: grid !important;
    grid-template-columns: 24px auto;
    column-gap: 10px;
    align-items: center;
}

.visit-pin {
    width: 22px !important;
    height: 22px !important;
    grid-column: 1;
    grid-row: 1;
    align-self: center !important;
    margin: 0 !important;
}

.visit-text {
    grid-column: 2;
    grid-row: 1;
    line-height: 1.5;
}

.email_logo{
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:6px;
  vertical-align:middle;
}
.web_logo{
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:6px;
  vertical-align:middle;
}
.phone_logo{
  width:20px;
  height:20px;
  display:inline-block;
  margin-right:6px;
  vertical-align:middle;
}
