body,
#preloader {
  background: #0c042d;
  background-image: linear-gradient(90deg, transparent, #0d042fcc, #0d042fcc, transparent), url(../img/epicurea_bg_top.jpg);
  background-attachment: fixed;
  background-position: top center;
  background-size: contain, cover;
}

body {
  margin: 0;
  font-family: "Unbounded", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  color: #0c042d;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Spinner styles */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #2eddcb;
  border-top: 4px solid #fd008f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
p b {
  font-weight: 600;
}

img {
  width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  gap: 70px;
}

.txtBg {
  clear: left;
}
.txtBg.txt__bgDb {
  background-color: #0c042d;
}
.txtBg.txt__bgCy {
  background-color: #2eddcb;
}
.txtBg.txt__bgMg {
  background-color: #fd008f;
}
.txtBg.txt__bgYe {
  background-color: #fff100;
}
.txtBg.txt__bgWi {
  background-color: #fff;
}
.txt__cDb {
  color: #0c042d;
}
.txt__cCy {
  color: #2eddcb;
}
.txt__cMg {
  color: #fd008f;
}
.txt__cYe {
  color: #fff100;
}
.txt__cWi {
  color: #fff;
}
.txt__s68 {
  font-size: 68%;
}
.txt__s24px {
  font-size: 24px;
}
.txt__s32px {
  font-size: 32px;
}
.txt__Uppercase {
  text-transform: uppercase;
}
.txt__center {
  text-align: center;
}

h1 .txtBg,
h2 .txtBg {
  display: inline-block;
  padding: 5px 7px;
}

.btn {
  display: inline-flex;
  padding: 13px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  border: 1px solid;
}
.btn__bgDb {
  background-color: #0c042d;
}
.btn__bgCy {
  background-color: #2eddcb;
}
.btn__bgMg {
  background-color: #fd008f;
}
.btn__bgYe {
  background-color: #fff100;
}
.btn__bdDb {
  border-color: #0c042d;
}
.btn__bdCy {
  border-color: #2eddcb;
}
.btn__bdMg {
  border-color: #fd008f;
}
.btn__bdYe {
  border-color: #fff100;
}
.btn__cDb {
  color: #0c042d;
}
.btn__cCy {
  color: #2eddcb;
}
.btn__cMg {
  color: #fd008f;
}
.btn__cYe {
  color: #fff100;
}

#hero {
  background: url(../img/hero_bg.webp) no-repeat center;
  background-size: cover;
  height: 710px;
}
#hero .row {
  padding: 180px 30px;
}
#hero .logo img {
  max-width: 250px;
}
#hero .hero-text-container {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
#hero h1 {
  font-size: 64px;
  line-height: 0.8;
  margin: 0;
}
#hero h2 {
  font-weight: normal;
  font-size: 26px;
  margin: 0;
}

#valueproposition {
  background: white;
  max-width: 1100px;
  margin: -80px auto 0;
  border-radius: 20px;
  box-shadow: 0 0 20px -10px #0c042d;
  display: flex;
  overflow: hidden;
}
#valueproposition > div, #valueproposition > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid #2eddcb;
  font-size: 11px;
  color: #0c042d;
  text-decoration: none;
}
#valueproposition > div:last-child, #valueproposition > a:last-child {
  border: none;
}
#valueproposition > a {
  background: linear-gradient(to right, #fd008f 0, #fd008f 400px);
  background-size: 400px 3px;
  background-position: -400px 100%;
  background-repeat: no-repeat;
  animation: underline-pulse 2.5s linear infinite;
}
#valueproposition > a:hover {
  color: #fd008f;
}

@keyframes underline-pulse {
  0% {
    background-position: -400px 100%;
  }
  70% {
    background-position: -400px 100%;
  }
  100% {
    background-position: 400px 100%;
  }
}
#prod_categories {
  position: relative;
  height: 4em;
  overflow: hidden;
}
#prod_categories h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}
#prod_categories h2 span:first-child {
  opacity: 0;
}
#prod_categories h2:first-child span:first-child {
  opacity: 1;
}
#prod_categories h2:nth-child(1) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 0s;
}
#prod_categories h2:nth-child(2) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 2s;
}
#prod_categories h2:nth-child(3) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 4s;
}
#prod_categories h2:nth-child(4) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 6s;
}
#prod_categories h2:nth-child(5) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 8s;
}
#prod_categories h2:nth-child(6) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 10s;
}
#prod_categories h2:nth-child(7) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 12s;
}
#prod_categories h2:nth-child(8) span:last-child {
  opacity: 0;
  animation: fadeCycle 16s infinite;
  animation-delay: 14s;
}

@keyframes fadeCycle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#prod_categories {
  text-align: left;
  color: #fff;
  width: 404px;
  margin: 0 auto;
}

#prod_categories h2 {
  font-size: 29px;
}

#intro .row {
  margin: 190px auto 90px;
}
#intro p {
  margin: 0;
  text-align: center;
  line-height: 2;
  font-size: 28px;
}

#B2B {
  padding: 90px 0 190px;
}
#B2B .row > div {
  display: flex;
  align-items: center;
  width: 50%;
}
#B2B .swiper-button-next:after,
#B2B .swiper-button-prev:after {
  color: #fd008f;
}
#B2B .swiper-horizontal {
  padding-bottom: 30px;
  margin-bottom: -30px;
}
#B2B .swiper-pagination-bullet {
  background-color: #FFADDB;
  opacity: 1;
}
#B2B .swiper-slide {
  border-radius: 20px;
}
#B2B .swiper-pagination-bullet-active {
  background-color: #fd008f;
}
#B2B h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  margin: 0;
  line-height: 0.8;
}

#events {
  margin-top: 0;
  background: #fff;
  padding: 190px 30px;
  z-index: 3;
  position: relative;
}
#events .row > div {
  width: 50%;
}
#events .row > div:first-child {
  /* margin-right: -316px; */
  z-index: 1;
}
#events h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  margin: 0;
  line-height: 0.8;
}
#events .text-container {
  max-width: 540px;
}
#events .img-container {
  margin: 0 0 -300px -330px;
}

#ecommerce {
  background: #2eddcb url(../img/ecommerce_bg.webp) no-repeat;
  padding: 220px 30px;
  background-position: bottom center;
  background-size: 1920px;
  z-index: 2;
  position: relative;
}
#ecommerce .row {
  align-items: center;
  padding: 30px 0;
}
#ecommerce h2 {
  font-size: 64px;
  white-space: nowrap;
  padding: 9px 16px;
  line-height: 1;
  margin: 0;
}
#ecommerce p {
  margin: 0;
}
#ecommerce .btns {
  margin: 0 auto;
  gap: 20px;
  display: flex;
}
#ecommerce img {
  max-width: 800px;
  margin: 0 auto;
}

#wellnesswines {
  padding: 0;
  background: linear-gradient(180deg, black, transparent);
  z-index: 1;
  position: relative;
}
#wellnesswines .row {
  max-width: none;
}
#wellnesswines .row > div {
  width: 50%;
}
#wellnesswines .row > div:last-child {
  /* margin-right: -316px; */
  z-index: 1;
}
#wellnesswines h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  margin: 0;
  line-height: 1;
}
#wellnesswines .text-container {
  max-width: 760px;
  margin-left: -130px;
  margin-top: 310px;
}
#wellnesswines .img-container {
  margin: 0 -14vw 0 0;
}
#wellnesswines .img-container img {
  box-shadow: 0 0 220px black;
}

div#footer {
  padding: 190px 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/footer_divider.png) bottom right no-repeat;
  background-size: 100%;
}
div#footer p {
  margin: 0;
}
div#footer img {
  max-width: 570px;
  margin-top: 100px;
}
div#footer a.iconLink {
  display: inline-flex;
  height: 40px;
  width: 40px;
}
div#footer a.iconLink img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0 !important;
}
div#footer .btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
div#footer .btns .btn {
  margin-left: 10px;
}

.sellos__xs {
  background: #fff;
  padding: 19px;
  border-radius: 17px;
  display: none;
}

.sellos__xl {
  margin: 0 auto;
}

@media (max-width: 1270px) {
  section#B2B {
    padding: 90px 30px 190px;
  }

  #B2B h2 {
    font-size: 5vw;
  }

  #B2B .row {
    gap: 30px;
  }

  #ecommerce h2 {
    font-size: 5vw;
  }
}
@media (max-width: 992px) {
  #hero .row {
    flex-direction: row;
    padding: 30px;
    gap: 30px;
  }

  #hero h1 {
    font-size: 5.5vw;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  #hero h1 {
    font-size: 5.5vw;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  #hero h2 {
    font-size: 2.7vw;
  }

  #hero {
    height: 59vw;
  }

  #hero .hero-text-container {
    max-width: 37vw;
  }

  #intro .row {
    margin: 80px 30px;
  }

  section#B2B {
    padding: 30px;
  }

  section#B2B .row {
    gap: 30px;
  }

  #intro p {
    font-size: 3vw;
  }

  #events {
    margin: 80px 0 0;
    padding: 80px 30px;
  }

  #ecommerce h2 {
    font-size: 5vw;
  }

  #ecommerce .row:first-child {
    flex-direction: column;
  }

  section#ecommerce {
    padding: 80px 30px;
    z-index: 4;
    position: relative;
  }

  #ecommerce h2 {
    font-size: 7.6vw;
  }

  .txt__s24px {
    font-size: 3.2vw;
  }

  #ecommerce .txt__s24px {
    text-align: center;
  }

  .txt__s32px {
    font-size: 3.6vw;
  }
}
@media (max-width: 767px) {
  .sellos__xs {
    display: block;
  }

  .sellos__xl {
    display: none;
  }

  #hero {
    height: auto;
  }

  #hero .hero-text-container {
    max-width: none;
  }

  #hero .row {
    flex-direction: column;
    padding: 30px 30px 90px;
    gap: 30px;
  }

  #hero .row > div:first-child {
    text-align: center;
  }

  #hero h1 {
    font-size: 12.5vw;
    text-align: center;
  }

  #hero h1 > div {
    white-space: nowrap;
  }

  #hero h2 {
    font-size: 5vw;
    text-align: center;
  }

  #hero h2 + div {
    text-align: center;
  }

  section#valueproposition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: -50px 10px 40px;
  }

  #valueproposition > div:nth-child(3) {
    display: none;
  }

  #prod_categories {
    width: 85vw;
  }

  #prod_categories h2 {
    font-size: 5.6vw;
  }

  #intro .row {
    margin: 80px 30px;
  }

  #intro p {
    font-size: 5vw;
  }

  section#B2B {
    padding: 0px;
  }

  #B2B h2 {
    font-size: 10.7vw;
  }

  #B2B .row {
    flex-direction: column;
  }

  #B2B .row > div {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  p {
    font-size: 5vw;
  }

  section#events {
    margin-top: 80px;
    padding: 80px 30px 0;
  }

  #events h2 {
    font-size: 12.7vw;
  }

  #events .text-container {
    max-width: 100%;
  }

  #events .row {
    flex-direction: column;
  }

  #events .row > div {
    width: 100%;
  }

  #events .img-container {
    margin: -30px;
  }

  section#ecommerce {
    padding: 80px 30px;
  }

  #ecommerce h2 {
    font-size: 8.6vw;
  }

  #ecommerce .row {
    flex-direction: column;
    gap: 30px;
  }

  .txt__s24px {
    font-size: 5vw;
  }

  p.txt__s32px {
    font-size: 7vw;
  }

  #ecommerce .btns {
    flex-direction: column;
    text-align: center;
  }

  #wellnesswines .row {
    flex-direction: column;
    gap: 0;
  }

  #wellnesswines .row > div {
    width: 100%;
  }

  #wellnesswines .img-container {
    margin: 0;
  }

  #wellnesswines .text-container {
    margin: 0;
    padding: 0 30px;
  }

  #wellnesswines h2 {
    font-size: 11vw;
  }

  div#footer {
    padding: 80px 24px;
  }

  div#footer .btns {
    gap: 10px;
  }

  div#footer .btns .btn {
    padding-left: 13px;
    padding-right: 13px;
  }

  #ecommerce .btn {
    display: block;
  }
}

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