*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  border: none;
  padding: 0px;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
  outline: inherit;
}

@media (min-width: 901px) {
  .show-mobile-only {
    display: none;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  color: #10325F;
}

h1,
h2 {
  font-family: "Rammetto One", serif;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 599px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

h4 {
  font-size: 1.125rem;
}

strong {
  font-weight: 700;
}

.white {
  color: #FFFFFF;
}

.line-clamp, .line-clamp-4, .line-clamp-3, .line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.spacer {
  height: 1rem;
}

.text--red {
  color: #D60000;
}

.line-clamp, .line-clamp-4, .line-clamp-2, .line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
}

@media (min-width: 600px) {
  .list__columns--2 ul {
    column-count: 2;
    column-gap: 30px;
    width: max-content;
  }
  .list__columns--2 li {
    width: max-content;
  }
}

.container, .container--configs, .container--narrow, .container--small, .container--smaller {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  box-sizing: content-box;
  padding-left: 24px;
  padding-right: 24px;
}
.container--smaller {
  max-width: 900px;
}
.container--small {
  max-width: 700px;
}
.container--narrow {
  max-width: 500px;
}

.flex, .fdc {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.jcse {
  justify-content: space-evenly;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.aifs {
  align-items: flex-start;
}

.gap-0 {
  gap: 0.25rem;
}

.gap-1 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 1.5rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.row-reverse {
  flex-direction: row-reverse;
}

.display-none {
  display: none !important;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.zoom-out-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-out {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-out--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.rotate-wrapper {
  transform: rotate(0deg);
}

.rotate-image {
  transform-origin: center center;
}

.image {
  transform: translate3d(0);
}

.button, .button--white, .button--blue, .button--red {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  width: fit-content;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  color: #FFFFFF;
}
@media (max-width: 599px) {
  .button, .button--white, .button--blue, .button--red {
    margin: auto;
  }
}
.button--red {
  color: #FFFFFF;
  background-color: #D60000;
}
.button--blue {
  color: #FFFFFF;
  background-color: #386CA8;
}
.button--white {
  color: #10325F;
  background-color: #FFFFFF;
}
@media (max-width: 599px) {
  .button, .button--white, .button--blue, .button--red {
    font-size: 1.125rem;
  }
}

.button--stroke .button__flair {
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
}

.button__flair {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.button__label {
  position: relative;
  text-align: center;
  transition: color 50ms var(--ease-in-out-quart);
}

.button--stroke:hover {
  color: var(--button-hoverColor, var(--button-stroke));
  --fillColor: var(--button-hoverColor, var(--button-stroke));
}

.button--stroke:after {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 6.25rem;
  content: "";
  pointer-events: none;
}

.button__flair:before {
  aspect-ratio: 1/1;
  background: url("https://gsap.com/img/noise-button.png"), var(--button-stroke);
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 170%;
}

.button--stroke:hover .button__label {
  transition: color 0.15s var(--ease-in-out-quart);
}

.footer {
  position: relative;
  padding-bottom: 50px;
  background-color: #10325F;
  margin-top: -1px;
  /* background: url('../img/footerWave.svg'); 
  background-repeat: no-repeat;
  background-size: cover; */
}
.footer .email {
  color: #CCD9E8;
  text-decoration: underline;
  font-weight: 700;
}
.footer .email:hover {
  color: #FF4139;
}
.footer p, .footer a {
  font-size: 1.125rem;
  color: #FFFFFF;
}

.footer__content {
  gap: 50px;
}

.footer__column {
  gap: 25px;
}
.footer__column--first p {
  max-width: 275px;
}

.footer__socials {
  gap: 10px;
}

.footer__fg p {
  font-size: 0.75rem;
}

.nav__main {
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 25px;
}
@media (max-width: 985px) {
  .nav__main {
    justify-content: center;
  }
}

.nav__list {
  gap: 25px;
}
@media (max-width: 599px) {
  .nav__list {
    gap: 15px;
  }
}

.nav__link {
  font-size: 1.25rem;
  color: #10325F;
  font-weight: 700;
  text-align: center;
}
.nav__link:hover {
  text-decoration: underline;
}

.contact-page {
  background-color: #CCD9E8;
  margin-top: -1px;
}
.contact-page h1 {
  margin: auto;
  text-align: center;
}

.intro__contact {
  text-align: center;
  font-size: 1.25rem;
  max-width: 700px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 24px;
  text-wrap: pretty;
  margin-left: auto;
  margin-right: auto;
}

.contact__container {
  margin-top: 50px;
}

.contact-form {
  background-color: #FFFFFF;
  padding: 50px;
}
@media (max-width: 599px) {
  .contact-form {
    padding: 24px;
  }
}
.contact-form h2 {
  color: #386CA8;
  margin-bottom: 24px;
}
.contact-form .hide-label {
  display: none !important;
}
.contact-form ::placeholder {
  color: #10325F;
}
.contact-form label {
  padding-left: 5px;
}
.contact-form button {
  margin-top: 24px;
  cursor: pointer;
}
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 12px;
  color: #10325F;
  border: 1px solid #10325F;
  border-radius: 20px;
}

.contact-details__container {
  margin-top: 50px;
  padding-bottom: 50px;
  gap: 50px;
}
@media (max-width: 599px) {
  .contact-details__container {
    gap: 24px;
  }
}
.contact-details__container .contact__image {
  max-width: 600px;
}
.contact-details__container .contact__image img {
  border-radius: 20px;
}

.details__image {
  max-width: 330px;
}

.contact__details {
  gap: 24px;
}

.header__home--left, .header__home--right {
  flex: 1;
}
.header__home--left {
  max-width: 500px;
}
.header__home h1 {
  max-width: 500px;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .header__home {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  .header__home--left, .header__home h1 {
    max-width: none;
    text-align: center;
  }
}

.slide {
  width: 100%;
}

.services__home {
  background-color: #CCD9E8;
  padding-bottom: 100px;
  margin-top: -1px;
}
.services__home p, .services__home h2, .services__home h3 {
  text-align: center;
  margin: auto;
}
.services__home p {
  max-width: 800px;
  margin-bottom: 40px;
}
.services__home h3 {
  max-width: 155px;
  margin-top: 15px;
}

.services__list {
  margin-top: 40px;
  gap: 25px;
}
.services__list img {
  height: 141px;
  width: 141px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .services__list {
    justify-content: center;
  }
}

.quick-links {
  margin-top: -25px;
  gap: 25px;
}
@media (max-width: 1088px) {
  .quick-links {
    justify-content: center;
  }
}

.quick-link {
  width: 330px;
}
.quick-link img {
  height: 250px;
  object-fit: cover;
}
.quick-link a {
  display: flex;
  justify-content: center;
  font-family: "Rammetto One", serif;
  color: #FFFFFF;
  background-color: #D60000;
  font-size: 1.25rem;
  width: 100%;
  text-align: center;
  padding: 25px;
  border-radius: 0px 0px 20px 20px;
}
.quick-link a:hover {
  background-color: #114A8D;
}

.callout__home {
  margin-top: 50px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.callout__home p {
  max-width: 700px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 25px;
}

.text-block__home, .text-block__facility, .text-block__facility--3, .text-block__facility--2 {
  margin-top: 50px;
}
@media (max-width: 599px) {
  .text-block__home, .text-block__facility, .text-block__facility--3, .text-block__facility--2 {
    flex-direction: column;
  }
}
.text-block__home .text-block__left, .text-block__facility .text-block__left, .text-block__facility--3 .text-block__left, .text-block__facility--2 .text-block__left {
  flex: 1;
}
.text-block__home .text-block__left img, .text-block__facility .text-block__left img, .text-block__facility--3 .text-block__left img, .text-block__facility--2 .text-block__left img {
  object-fit: cover;
  min-height: 100%;
}
.text-block__home .text-block__right, .text-block__home .text-block__right--services, .text-block__facility .text-block__right, .text-block__facility .text-block__right--services, .text-block__facility--3 .text-block__right, .text-block__facility--3 .text-block__right--services, .text-block__facility--2 .text-block__right, .text-block__facility--2 .text-block__right--services {
  flex: 2;
  background-color: #10325F;
  padding: 50px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}

.insights__home {
  margin-top: 75px;
  margin-bottom: 75px;
  position: relative;
}
.insights__home h2 {
  color: #D60000;
  margin-bottom: 40px;
  text-align: center;
}
.insights__home--flex {
  gap: 40px;
}
@media (max-width: 1118px) {
  .insights__home--flex {
    justify-content: center;
  }
}

.post__preview img {
  width: 330px;
  height: 220px;
  object-fit: cover;
}
.post__preview .post__preview--bottom {
  padding: 25px;
  position: relative;
  width: 330px;
  background-color: #CCD9E8;
  border-radius: 0px 0px 20px 20px;
  height: 250px;
}
.post__preview .post__preview--bottom h3 {
  font-family: "Rammetto One", serif;
  margin-bottom: 15px;
  text-transform: none;
  font-size: 1.25rem;
}
.post__preview .post__preview--bottom .button--blue {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translate(-50%);
}

.intro__services h1 {
  text-align: center;
  margin: auto;
}

.wave__insights {
  margin-top: 50px;
}

.posts--gap {
  gap: 60px 30px;
}

#load-more {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.background__blog {
  background-color: #CCD9E8;
  padding-bottom: 100px;
  margin-top: -1px;
}

.container__blog {
  padding: 50px;
  background-color: #FFFFFF;
  position: relative;
}
.container__blog .button--red {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translate(-50%);
}
@media (max-width: 599px) {
  .container__blog .button--red {
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 24px;
  }
}
@media (max-width: 599px) {
  .container__blog {
    padding: 24px;
  }
}

.blog__title {
  gap: 50px;
}
.blog__title h1 {
  font-size: 1.75rem;
  flex: 1;
}
@media (max-width: 599px) {
  .blog__title {
    flex-direction: column;
  }
}

.text__blog {
  margin-top: 24px;
}

.blog__image {
  margin-left: -50px;
  flex: 1;
}
.blog__image img {
  border-radius: 0px 20px 20px 0px;
}

.content__headline {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 24px;
}

.text-with-image {
  gap: 24px;
}
@media (max-width: 599px) {
  .text-with-image {
    flex-direction: column;
  }
}

.text-with-image--left, .text-with-image--right {
  flex: 1;
}
.text-with-image--left img, .text-with-image--right img {
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}

.text-with-image--right {
  margin-top: 24px;
}

.blog__callout {
  padding: 24px;
  background-color: #10325F;
  color: #FFFFFF;
  font-family: "Rammetto One", serif;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 24px;
  border-radius: 20px;
}

.text-block__facility, .text-block__facility--3, .text-block__facility--2 {
  margin-top: 0px;
}
.text-block__facility h2, .text-block__facility--3 h2, .text-block__facility--2 h2 {
  font-size: 24px;
  text-wrap: pretty;
}

.text-block__facility--2 {
  flex-direction: row-reverse;
}
.text-block__facility--2 .text-block__right, .text-block__facility--2 .text-block__right--services {
  background-color: #D60000;
  flex: 1;
}
@media (max-width: 599px) {
  .text-block__facility--2 {
    flex-direction: column;
  }
}

.text-block__facility--3 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.text-block__facility--3 .text-block__right, .text-block__facility--3 .text-block__right--services {
  background-color: #386CA8;
  flex: 1;
}

.icons__background {
  background-color: #CCD9E8;
  padding: 50px 0px;
}

.icons__container, .icons__container--2 {
  gap: 24px;
  margin-top: -75px;
}
.icons__container--2 {
  margin-top: -25px;
}

.icons__facility, .icons__facility--2 {
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 336px;
  padding: 24px;
  gap: 24px;
}
.icons__facility p, .icons__facility--2 p {
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.icons__facility--2 {
  max-width: 244px;
  background-color: #CCD9E8;
}
.icons__facility--2 p {
  font-size: 16px;
}
.icons__facility--2 img {
  height: 90px;
}

.icons__container--long {
  margin-top: 24px;
}

.icons__facility--long {
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 1056px;
  padding: 24px;
  margin: auto;
  gap: 30px;
}

.icons__facility--long-img {
  width: 137px;
}

.icons__facility--long-text {
  max-width: 740px;
}

.service__text--facility {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.logo__facility {
  margin: auto;
}

.header__image--mobile {
  display: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .header__image--mobile {
    display: block;
  }
}

.header__services {
  position: relative;
  height: 500px;
}
.header__services h1 {
  color: #FFFFFF;
  text-align: center;
  text-shadow: black 1px 0 10px;
}

#servicesVideo {
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 900px) {
  #servicesVideo {
    display: none;
  }
}

#servicesVideo2 {
  object-fit: cover;
  min-height: 100%;
}
@media (max-width: 900px) {
  #servicesVideo2 {
    display: none;
  }
}

.services__image--mobile {
  display: none;
  object-fit: cover;
  min-height: 100%;
}
@media (max-width: 900px) {
  .services__image--mobile {
    display: block;
  }
}

.wave__services {
  margin-top: -100px;
}

.intro__services {
  background-color: #CCD9E8;
  padding-bottom: 75px;
  margin-top: -1px;
}
.intro__services p {
  text-align: center;
  font-weight: 600;
  font-size: 1.1875rem;
}
.intro__services strong {
  font-weight: 800;
}
.intro__services h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.5rem;
}

.service__services {
  border-top: 28px solid;
}
.service__services h2 {
  padding: 20px 40px;
  border-radius: 0px 0px 20px 20px;
  margin-top: -28px;
  width: fit-content;
  width: -moz-fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
  text-align: center;
}
.service__services .service__text, .service__services .service__text--facility {
  text-wrap: pretty;
  margin-top: 40px;
  margin-bottom: 40px;
}
.service__services .service__image {
  margin-bottom: 50px;
}

.canning {
  border-top-color: #114A8D;
}
.canning h2 {
  background-color: #10325F;
}

.bottling {
  border-top-color: #CCD9E8;
}
.bottling h2 {
  background-color: #386CA8;
}

.alcohol {
  border-top-color: #FF4139;
}
.alcohol h2 {
  background-color: #D60000;
}
.alcohol ul {
  font-family: "Rammetto One", serif;
  column-gap: 30px;
}
@media (min-width: 600px) {
  .alcohol ul {
    columns: 2;
    break-inside: avoid-column; /* Standard property for columns */
    page-break-inside: avoid; /* For older Firefox compatibility */
    -webkit-column-break-inside: avoid; /* For older Chrome/Safari/Opera */
    overflow: hidden;
  }
}

.text-block__right--services h2, .text-block__right--services p, .text-block__right--services ul {
  max-width: 600px;
}
.text-block__right--services h2 {
  font-size: 1.5625rem;
}

.configurations {
  gap: 35px 24px;
}

.configuration img, .configuration p {
  width: 170px;
}
.configuration p {
  text-align: center;
}

.container--configs {
  max-width: 1000px;
  margin-bottom: 50px;
}

.images__tray {
  gap: 24px;
}
@media (max-width: 599px) {
  .images__tray {
    flex-direction: column;
  }
}
.images__tray--container {
  flex: 1;
}

.callout__services {
  background-color: #D60000;
  padding: 50px 24px;
  border-radius: 24px;
  gap: 24px;
}
.callout__services h2 {
  color: #FFFFFF;
  text-align: center;
  text-wrap: pretty;
}

/*# sourceMappingURL=app.css.map */
