@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --vino: #981242;
  --lightGrey: #c9c9c9;
  --grey: #4e4e4e;
  --charcoal: #414141;
}
body {
  background-color: #ffffff;
}
h1 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.5rem;
}
h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
}
.headerWrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .col-md-9 {
  padding-top: 0px;
}
@media (min-width: 768px) {
  header .col-md-9 {
    padding-top: 50px;
  }
}
a:link.nav-link,
a:visited.nav-link {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--grey);
}
a:hover.nav-link {
  color: var(--vino);
}
.navbar-toggler {
  margin-top: -220px;
}
.hero {
  background-image: url(../photos/backHero.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .overlay {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero .overlay {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}
.hero .overlay p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero .overlay p {
    font-size: 3rem;
  }
}
.hero .overlay .btn {
  background-color: var(--vino);
  color: #ffffff;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: all 0.375s ease;
  -moz-transition: all 0.375s ease;
  -ms-transition: all 0.375s ease;
  -o-transition: all 0.375s ease;
  transition: all 0.375s ease;
}
.hero .overlay .btn:hover {
  background-color: #ffffff;
  color: var(--vino);
}
a:link,
a:visited {
  color: var(--vino);
  text-decoration: none;
}
.intro {
  padding-top: 90px;
  padding-bottom: 90px;
}
.intro p,
.content p {
  font-family: "Raleway", sans-serif;
  color: var(--grey);
  font-size: 0.975rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .intro p,
  .content p {
    font-size: 1.25rem;
  }
}
.content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.content.menu p span {
  font-weight: 600;
  display: block;
}
.leadIns {
  padding-top: 90px;
  padding-bottom: 90px;
}
.leadIns .btn {
  background-color: var(--vino);
  border-color: #ffffff;
  color: #ffffff;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transition: all 0.375s ease;
  -moz-transition: all 0.375s ease;
  -ms-transition: all 0.375s ease;
  -o-transition: all 0.375s ease;
  transition: all 0.375s ease;
}
.leadIns .btn:hover {
  background-color: #ffffff;
  color: var(--vino);
  border-color: var(--vino);
}
.leadIns .card {
  border-style: none;
  text-align: center;
}
footer {
  background-color: var(--charcoal);
  color: var(--lightGrey);
  padding-top: 90px;
  padding-bottom: 90px;
}
footer .row {
  margin-bottom: 90px;
  padding-left: 75px;
}
@media (min-width: 768px) {
  footer .row {
    padding-left: 175px;
  }
}
footer p,
footer ul {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
}
footer a:link,
footer a:visited {
  color: var(--lightGrey);
  text-decoration: none;
}
footer a:hover {
  color: #ffffff;
}
.bi-facebook {
  font-size: 2.125rem;
  margin-right: 35px;
}
.bi-instagram {
  font-size: 2.125rem;
}
.d-flex {
  overflow: hidden;
}
.hideOnSmall {
  display: none;
}

@media (min-width: 768px) {
.hideOnSmall {
  display: inline-block;
}

}
.stretchOnSmall {
  width: 150%;
}
@media (min-width: 768px) {
.stretchOnSmall {
  width: initial;
}

}
