@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700|Oswald:400,500,600,700&display=swap');
:root {
  --primary: #1A202C;
  --secondary: #aaa7a8;
  --dark: #1A202C;
  --primaryFont: 'Oswald', sans-serif;
  --bodyLight: rgb(164, 164, 164);
  --bodyFont: 'Lato', sans-serif;
}

body {
  /* margin: 1rem; */
  font-family: var(--bodyFont);
  background: #f5f5f6;
}

.section__locations {
  height: 100vh;
  padding: 0px;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-westport.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 0.25s;
  padding-top: 15vh;
}

.columns__loc {
  height: 50%;
  width: 100%;
}

.location-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.location-box__westport {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-westport.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 0.25s; */
}

.location-box__loc2 {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-west.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 0.5s; */
}

.location-box__loc3 {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-east.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 0.75s; */
}

.location-box__loc4 {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-old-saybrook.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 1s; */
}

.location-box__loc5 {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/mystic-foxwoods.jpg');
  background-position: center !important;
  background-size: cover;
  animation-delay: 1s; */
}

.home-logo-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  top: 10px;
  left: 50%;
  /* height: 100%; */
  pointer-events: none;
  z-index: 1;
  transform: translateX(-50%);
}

.home-logo-container img {
  max-width: 400px;
}

.button.is-outlined {
  border-color: white;
  background: transparent;
  text-transform: uppercase;
  color: white;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.button.is-outlined:hover {
  background: white;
  color: black;
}

.title {
  font-family: var(--primaryFont);
}

@media (max-width: 768px) {
  .section__locations .column {
    height: 50%;
  }
  .home-logo-container img {
    max-width: 150px;
  }
  .title {
    font-size: 1.25rem;
  }
  .button.is-medium {
    font-size: 0.75rem;
  }

  .section__locations {
    height: auto;
  }

  .location-box {
    padding: 2rem;
  }
}



.popup-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.206);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  margin: 0 auto;
  width: 80%;
  max-width: 400px;
  /* top: 5%; */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-shadow: 2px 5px 25px rgb(0 0 0);
  border-radius: 6px;
  position: absolute;
  text-align: center;
  background: white;
}

.popup-btn-container {
  text-align: end;
  position: absolute;
  right: 5px;
  height: 30px;
  width: 30px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

.popup-content {
  /* height: 80vh; */
  overflow-y: auto;
}
.inner-text {
  color: #1A202C ;
  font-weight: 800;
  font-size: 1.5rem;
}

.popup-content p {
	margin: .75rem 0;
}

.popup-btn-container button {
  font-size: 2.5rem;
  cursor: pointer;


}

.close {
  display: none;
}

@media (max-width: 768px){
  .popup {
    width: 100%;
  }
}

.popup a {
	/* make button full primary color and text white and medium size using padding */
	background: #5e0001;
	color: white;
	padding: .5rem 2rem;
	border: 2px solid #1c1717;
}

.popup a:hover {
	background-color: transparent;
	color: #5e0001;
	transition: all .5;
}
.section__locations .title {
	color: white
}

.section__coffee-hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/coffee.jpg');
  background-position: center !important;
  background-size: cover;
}