@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Volkhov:wght@400;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #211e20;
  font-family: "Open Sans", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

/***********************************
  Components
***********************************/
.gold {
  color: #d2c322;
}

.container {
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .container {
    width: 94%;
  }
}

@media (max-width: 600px) {
  .container {
    width: 100%;
  }
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .flex-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

a[href^="tel"],
a[href^="mailto"] {
  color: white;
  display: inline-block;
  text-decoration: none;
}

a[href^="tel"]:hover, a[href^="tel"]:focus,
a[href^="mailto"]:hover,
a[href^="mailto"]:focus {
  opacity: 0.8;
}

a[href^="tel"] {
  border: 1px solid white;
  border-radius: 5px;
  padding: 3px 5px;
  text-decoration: none;
}

a[href^="tel"]:before {
  content: "call: ";
}

/***********************************
  Section Header 
***********************************/
.logo {
  margin-top: 2em;
  width: 14em;
  -webkit-filter: drop-shadow(1px 1px 5px rgba(33, 30, 32, 0.4));
          filter: drop-shadow(1px 1px 5px rgba(33, 30, 32, 0.4));
}

.logo path {
  fill: #d2c322;
}

@media (max-width: 900px) {
  .logo {
    margin-top: 1.5em;
    width: 10em;
  }
}

.header {
  height: 100px;
  width: 100%;
  color: white;
  z-index: 1;
}

/***********************************
  Section Footer 
***********************************/
.footer {
  height: 60px;
  font-size: 1rem;
  color: .footer #211e20;
  background: #d2c322;
}

@media (max-width: 1200px) {
  .footer {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .footer {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .footer {
    text-align: center;
    padding: 1.5em;
    font-size: 1rem;
  }
}

/***********************************
  Section Hero 
***********************************/
.hero {
  position: relative;
  margin-top: -100px;
  min-height: calc(100vh - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .hero {
    height: 100%;
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 85%;
  max-width: 1280px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 1200px) {
  .hero__container {
    margin-top: 6em;
    width: 99%;
  }
}

@media (max-width: 900px) {
  .hero__container {
    margin-top: 6em;
  }
}

@media (max-width: 600px) {
  .hero__container {
    margin-top: 8em;
    display: block;
  }
}

.hero__leadbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 2em;
}

@media (max-width: 900px) {
  .hero__leadbox {
    margin-right: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .hero__leadbox {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.hero__leadbox .hero__leadbox__text {
  font-family: "Volkhov", serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .hero__leadbox .hero__leadbox__text {
    font-size: 2.875rem;
    line-height: 1.3;
  }
}

@media (max-width: 900px) {
  .hero__leadbox .hero__leadbox__text {
    font-size: 2.25rem;
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .hero__leadbox .hero__leadbox__text {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2em;
  }
}

.hero__infobox {
  border-radius: 2em;
  padding: 3em;
  background: rgba(125, 125, 125, 0.6);
  -webkit-box-shadow: 10px 10px 10px rgba(33, 30, 32, 0.4);
          box-shadow: 10px 10px 10px rgba(33, 30, 32, 0.4);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@supports ((-webkit-backdrop-filter: blur(40px)) or (backdrop-filter: blur(40px))) {
  .hero__infobox {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
  }
}

@media (max-width: 900px) {
  .hero__infobox {
    padding: 1.5em;
    margin-bottom: 1.5em;
  }
}

@media (max-width: 600px) {
  .hero__infobox {
    padding: 1.5em;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 2em;
  }
}

.hero__infobox__text {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.hero__infobox__text .info__title {
  color: #d2c322;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 1.75em;
  margin-bottom: 0.375em;
}

@media (max-width: 900px) {
  .hero__infobox__text .info__title {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
  .hero__infobox__text .info__title {
    font-size: 1.325rem;
  }
}

.hero__infobox__text .info__text {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.325em;
}

@media (max-width: 900px) {
  .hero__infobox__text .info__text {
    font-size: 1.2em;
  }
}

@media (max-width: 600px) {
  .hero__infobox__text .info__text {
    font-size: 1.2rem;
  }
}

.hero__infobox__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2em;
}

.hero__infobox__image .img-bottle {
  width: 100px;
  margin-left: auto;
}

.hero__slides {
  overflow: hidden;
}

.hero__slides figure {
  -webkit-animation: imageAnimation 18s linear infinite 0s;
          animation: imageAnimation 18s linear infinite 0s;
  background-size: cover;
  background-position: center center;
  color: transparent;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.hero__slides figure:nth-child(1) {
  background-image: url("../img/hero/olive-1.jpg");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.hero__slides figure:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  background-image: url("../img/hero/olive-2.jpg");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.hero__slides figure:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
  background-image: url("../img/hero/olive-3.jpg");
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

@-webkit-keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  20% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  53% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  20% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  53% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */