@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.title-secondary {
  display: inline-block;
  color: #fff;
  background-color: #70f0aa;
  padding: 0rem 0.8rem;
  border-radius: 4px;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.title-primary {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 8px;
  transition: all 0.2s;
  border-radius: 10px;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: visible;
  opacity: 1;
  transform: translateZ(-1px);
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::before {
  animation-name: buttonAnimation;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@keyframes buttonAnimation {
  0% {
    transform: scaleX(0.9) scaleY(0.9) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
  50% {
    transform: scaleX(1.1) scaleY(1.2) translateZ(-1px);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2) scaleY(1.4) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
}
.btn img {
  width: 2.8rem !important;
  height: auto !important;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-green-whatsapp {
  background-color: #05a73b;
}
.btn--bg-green-whatsapp:hover {
  background-color: #048e32;
}
.btn--border-white {
  border: 1px solid #fff;
}
.btn--border-white:hover {
  background-color: #d9d9d9;
  color: #000;
}
.btn--bg-purple {
  background-color: #7f36ff;
}
.btn--bg-purple:hover {
  background-color: #5400e9;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}
.form-group--column {
  flex-direction: column;
  align-items: center;
}
.form-group label {
  font-weight: 700;
  color: #76461b;
  text-transform: uppercase;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #25292b;
  color: #292929;
  background-color: rgba(248, 217, 167, 0.52);
  border: 2px solid #fff;
  border-radius: 20px;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border: 2px solid #f2f2f2;
}
.form-group .wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #05a73b;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.faq-item {
  border-left: 8px solid #a29280;
  border-radius: 4px 12px 12px 4px;
  padding: 2rem;
  height: max-content;
  background: linear-gradient(64deg, #fff, #f1f0fb);
  box-shadow: inset 0 5.72px 17.17px rgba(74, 58, 255, 0.06);
  color: #666666;
  transition: all 0.2s ease-in;
}
.faq-item:has(.collapsed) {
  border-color: #f1f2f9;
  background: #fff;
  box-shadow: inset 0 1.14px 4.58px rgba(25, 33, 61, 0.06);
}
.faq-item:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.faq-item__question button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
.faq-item__question button i {
  transition: all 0.2s ease-in;
  transform: rotate(180deg);
  color: #666666;
}
.faq-item__question button.collapsed i {
  transform: rotate(0deg);
}
.faq-item__answer {
  padding-top: 2rem;
  font-size: 1.6rem;
}

.footer {
  background: linear-gradient(to bottom, #df2830, #a10007);
  padding-top: 6rem;
}
.footer *,
.footer a {
  color: #fff;
}
.footer-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer-logo {
  flex-basis: 20rem;
}
.footer-logo img {
  width: 100%;
}
.footer-infos {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer-infos__up {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.footer-infos__up strong {
  text-align: center;
}
.footer-infos__up-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-infos__up-contact a:hover span {
  text-decoration: underline;
}
.footer-infos__up-contact a i {
  font-size: 1.4rem;
}
.footer-infos__separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #d9d9d9, transparent);
}
.footer-infos__bottom address {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0;
}
.footer-infos__bottom address a:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-social span {
  font-weight: 700;
  font-size: 1.8rem;
}
.footer-social__items {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.footer-social__item {
  font-size: 2.4rem;
  transition: all 0.2s ease-in;
}
.footer-social__item:hover {
  transform: scale(1.1);
}
.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 2rem 0rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-copyright a:hover {
  text-decoration: underline;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.2s ease-in;
  padding: 3rem;
}
@media (max-width: 991px) {
  .header {
    padding: 0.2rem;
  }
}
.header.scrolled {
  background: #df2830;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
@media (max-width: 991px) {
  .header.scrolled {
    padding: 0.2rem !important;
  }
}
.header--intern {
  background: #df2830;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
@media (max-width: 991px) {
  .header--intern {
    padding: 0.2rem !important;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    overflow: auto;
    background-color: #fff;
    z-index: 99999;
    transform: translate(100%);
    transition: all 0.2s ease-in;
  }
  .header-nav.opened {
    transform: translate(0%);
  }
}
.header-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .header-nav ul {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
  }
}
.header-nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in;
  text-decoration: none;
  display: block;
}
@media (max-width: 991px) {
  .header-nav ul li a {
    color: #be0109;
  }
}
.header-nav ul li a.active {
  font-weight: 900;
}
.header-nav ul li a:hover {
  transform: scale(1.05);
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  z-index: 9999;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__text {
  width: 40rem;
  max-width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 25rem;
}
@media (max-width: 991px) {
  .banner-item__text {
    padding-bottom: 20%;
  }
}
.banner-item__text h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 2rem;
}
.banner-item__text p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .banner-item__text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .banner-item__text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .banner-item__text p {
    font-size: 1rem;
  }
}
.banner-item__text .btn {
  font-size: 1.8rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 66.67%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #70f0aa !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #42eb8f !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

section {
  scroll-margin-top: 6.4rem;
}
@media (max-width: 991px) {
  section {
    scroll-margin-top: 4rem;
  }
}

.hero {
  text-align: center;
}
.hero a {
  display: block;
  width: 100%;
}
.hero-image {
  width: 100%;
}

.products {
  height: 100%;
}
.products-carousel .owl-stage-outer {
  overflow: clip !important;
}
.products-carousel .owl-stage {
  display: flex;
}
.products-carousel .owl-item {
  align-self: stretch;
  float: left;
  -webkit-backface-visibility: hidden; /* Remove glitches de renderização */
  transform: translate3d(0, 0, 0);
}
.products-carousel .owl-dots {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translate(-50%);
}
.products-carousel .owl-dot span {
  background-color: rgba(162, 146, 128, 0.7) !important;
}
.products-carousel .owl-dot.active span {
  background-color: #df2830 !important;
}
.products-carousel .owl-prev,
.products-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.products-carousel .owl-prev {
  left: 2%;
}
.products-carousel .owl-next {
  right: 2%;
}
.products-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.products-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #292929 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.products-carousel .owl-nav [class*=owl-]:hover {
  background-color: #434343 !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}
.products-item {
  background-color: #e3dad0;
  padding: 4rem 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column; /* Para você organizar o conteúdo interno (título, texto, botão) */
  flex: 1 0 auto;
}
.products-item > .container > .row {
  align-items: center;
}
@media (max-width: 767px) {
  .products-item > .container > .row {
    align-items: unset;
  }
}
.products-item__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 5rem;
}
@media (max-width: 575px) {
  .products-item__left {
    margin-bottom: 2rem;
  }
}
.products-item__title {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #be0109;
  font-size: 3.2rem;
  text-transform: uppercase;
  line-height: 1;
}
.products-item__title strong {
  display: block;
  font-size: 8rem;
}
@media (max-width: 575px) {
  .products-item__title {
    text-align: center;
  }
}
.products-item__image img {
  width: 45.1rem !important;
  max-width: 100%;
  height: auto !important;
}
@media (max-width: 575px) {
  .products-item__image img {
    display: block;
    margin: auto;
    width: 30rem !important;
  }
}
.products-item__cta {
  text-align: center;
  width: 45.1rem;
  max-width: 100%;
}
@media (max-width: 575px) {
  .products-item__cta {
    width: 100%;
  }
}
.products-item__description {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #a29280;
}
.products-item__description h2,
.products-item__description h3 {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}
.products-item--red {
  background-color: #be0109;
  color: #fff;
}
.products-item--red .products-item__title {
  color: #fff;
}
.products-item--red .products-item__description {
  color: #fff;
}
.products-item--red .products-item__description h2,
.products-item--red .products-item__description h3 {
  color: rgba(255, 255, 255, 0.8);
}
.beer-taps {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .beer-taps .container {
    max-width: 100% !important;
  }
}
.beer-taps__header {
  text-align: center;
}
.beer-taps__header > * {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .beer-taps__header > * {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .beer-taps__header > * {
    font-size: 2rem;
  }
}
.beer-taps__header h2 {
  text-align: center;
  color: #be0109;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.beer-taps__header h2 strong {
  font-weight: 700;
  display: block;
}
.beer-taps__header p {
  display: inline-block;
  padding: 0.4rem 2rem;
  color: #fff;
  background-color: #be0109;
  border-radius: 0 0 0.8rem 0.8rem;
  margin: 0;
}
.beer-taps__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
  margin: 3.2rem 0;
}
@media (max-width: 1199px) {
  .beer-taps__cards {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .beer-taps__cards {
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .beer-taps__cards {
    grid-template-columns: 1fr;
  }
}
.beer-taps-card {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beer-taps-card__content {
  background-image: url("../images/beer-tap-card-bg.png");
  background-size: 100% 100%, cover;
  background-position-y: 13rem;
  background-repeat: no-repeat;
  padding: 0 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-weight: 500;
}
@media (max-width: 991px) {
  .beer-taps-card__content {
    font-size: 1.4rem;
    padding: 0 2.4rem 2.4rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .beer-taps-card__content {
    background-position-y: 10rem;
  }
}
.beer-taps-card__image {
  margin-bottom: 1.2rem;
}
.beer-taps-card__image img {
  height: 40rem;
  width: auto !important;
  max-width: 100%;
}
@media (max-width: 1399px) {
  .beer-taps-card__image img {
    height: 30rem;
  }
}
@media (max-width: 991px) {
  .beer-taps-card__image img {
    height: 20rem;
  }
}
@media (max-width: 575px) {
  .beer-taps-card__image img {
    height: 25rem;
  }
}
.beer-taps-card__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991px) {
  .beer-taps-card__title {
    font-size: 2.8rem;
  }
}
.beer-taps-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}
.beer-taps-card__price-header {
  font-size: 1.4rem;
}
.beer-taps-card__price-wrapper {
  display: flex;
  gap: 0.8rem;
}
.beer-taps-card__price-currency {
  font-size: 2.4rem;
}
.beer-taps-card__price-value {
  display: flex;
  align-items: baseline;
  font-size: 2rem;
  line-height: 1;
}
.beer-taps-card__price-value strong {
  font-size: 5.6rem;
  font-weight: 800;
}
.beer-taps-card__price-footer {
  font-size: 1.6rem;
}
.beer-taps-card .btn {
  text-transform: uppercase;
}
.beer-taps__footer p {
  text-align: center;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #be0109;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .beer-taps__footer p {
    font-size: 2rem;
  }
}
.beer-taps__footer p strong {
  display: block;
}

.page-banner img {
  width: 100%;
}

.order {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .order .container {
    max-width: 100%;
  }
}
.order-header h2 {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #be0109;
  text-transform: uppercase;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}
.order-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
@media (max-width: 767px) {
  .order-steps {
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .order-steps {
    flex-direction: column;
  }
}
.order-step {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 1.6rem;
  border-radius: 12px;
  border: 2.5px solid #be0109;
  flex: 1;
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 575px) {
  .order-step {
    width: 30rem;
    max-width: 100%;
  }
}
.order-step__header {
  background-color: #be0109;
  color: #fff;
  display: block;
  padding: 0rem 1.2rem;
  border-radius: 8px;
}
.order-step__description {
  color: #be0109;
  margin: 0;
}
.order-cta {
  text-align: center;
  margin-top: 3.2rem;
}

.event-main {
  padding: 3.2rem 0 0 0;
  background-image: url("../images/event-bg.png");
  background-size: cover;
  background-position-y: -16rem;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .event-main {
    background-position-y: -12rem;
  }
}
@media (max-width: 575px) {
  .event-main {
    background-position-y: -10rem;
  }
}
@media (max-width: 400px) {
  .event-main {
    background-position-y: -8rem;
  }
}
.event-content {
  color: #fff;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 2rem;
  width: 90rem;
  max-width: 100%;
  margin: auto;
}
.event-content h2 {
  font-size: 4.8rem;
  width: 40rem;
  max-width: 100%;
  margin: auto;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
}
.event-content p {
  margin: 0;
}
.event-content img {
  margin-top: 2rem;
  max-width: 100%;
}
.event-envs {
  padding-bottom: 6rem;
}
.event-envs__items {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.event-envs__item {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 18.8rem;
}
.event-envs__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.event-envs__item h3 {
  position: relative;
  color: #fff;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  text-transform: uppercase;
  text-align: center;
}
.event-envs__item--text-sm h3 {
  font-size: 2.4rem;
}

.quote {
  padding: 4rem 0;
  background-image: url("../images/quote-bg.jpg");
  background-size: cover;
  background-repeat: no-repear;
}
.quote-form {
  width: 90rem;
  max-width: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem 6rem;
}
@media (max-width: 575px) {
  .quote-form {
    padding: 2rem;
  }
}
.quote-form .form-wrapper {
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .quote-form .form-wrapper {
    padding: 0;
  }
}
.quote-form__title {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #76461b;
  font-size: 3.2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .quote-form .form-group {
    flex-direction: column;
  }
}
.quote-form .form-group label {
  text-align: center;
}
.quote-form .form-submit .btn {
  background-color: #be0109;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  margin-top: 2rem;
  width: 100%;
}

.faq {
  padding: 4rem 0;
}
.faq-header h2 {
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #76461b;
  text-transform: uppercase;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}
.faq-items {
  width: 70rem;
  max-width: 100%;
  margin: auto;
}

.parallax {
  position: relative;
  aspect-ratio: 1920/406;
}
@media (max-width: 575px) {
  .parallax {
    aspect-ratio: 1/1;
  }
}
.parallax::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(47, 47, 47, 0.58);
}
.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .parallax-image {
    aspect-ratio: 1/1 !important;
  }
}
.parallax-text {
  font-family: "Cheddar Jack", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.4rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4rem;
  transform: translate(-50%);
  line-height: 1;
  text-align: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .parallax-text {
    bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .parallax-text {
    bottom: 0rem;
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .parallax-text {
    bottom: 50%;
    transform: translate(-50%, 50%);
    font-size: 4.8rem;
  }
}

.page-404 {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 6rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #be0109;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #be0109;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

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