* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --red: #ec2227;
  --primary-color: #85403f;
  --primary-color-2: #6e0c0b;
  --primary: #bb0b09;
  --primary-rgb: 41, 112, 132;
  --text-dark: #333333;
  --text-light: #767268;
  --box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
    0 1px 5px 0 rgb(0 0 0 / 20%);
  --box-shadow-lg: 0 2px 12px 5px rgb(0 0 0 / 5%),
    0 3px 11px -2px rgb(0 0 0 / 3%), 0 1px 15px 8px rgb(0 0 0 / 5%);
  --box-shadow-xl: 0px 33px 79px 0px rgba(0, 0, 0, 0.08);
  --header-font: "Bebas Neue", sans-serif;
  --max-width: 1300px;
}

html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}
.site {
  overflow: hidden;
  /* //padding: 0 30px; */
}
/* Links
--------------------------------------------- */

/* Navigation
--------------------------------------------- */
.text-primary {
    color: #bb0b09 !important;
}
.page-site-main {
  padding-top: 100px;
}
.main-header {
  padding: 0px 35px;
  position: fixed;
  left: 0;
  right: 0;
  height: 80px;
  max-width: 100vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
.sticky-top-nav a:hover {
  color: #cccccc;
}
.sticky-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  width: 100%;
  z-index: 1000;
  height: 40px;
  background: rgba(var(--primary-rgb), 0.9);
  color: var(--white);
  padding: 0px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-fluid .logo {
  height: 50px;
}
.btn-top {
  font-family: "Poppins", sans-serif;
  position: relative;
  background-color: rgb(186, 17, 17);
  border: 1px solid rgb(186, 17, 17);
  border-radius: 50px;
  height: 30px;
  line-height: 30px;

  padding: 2px 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  overflow: hidden;
  z-index: 3;
  white-space: nowrap;
  color: #fff;
}

.btn-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(200% + 1px);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  transform-origin: left;
  background: rgb(49, 3, 3);
}

.sticky-top-nav-login-btn a {
  margin: 0 10px;
  font-size: 16px !important;
}

.btn-top:hover::before {
  transform: translateX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.btn-top:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.navbar-cart {
  position: relative;
  margin-right: 30px;
}
.navbar-cart a {
  text-decoration: none;
}
.navbar-cart i {
  font-size: 30px;
  color: var(--primary-color);
}
.navbar-cart span {
  display: flex;
  position: absolute;
  top: 0;
  right: -20px;
  width: 25px;
  height: 25px;
  border-radius: 500px;
  background-color: #000;
  color: #fff;
  align-items: center;
  justify-content: center; /* Center the text horizontally */
  font-size: 14px;
}

@media only screen and (max-width: 1000px) {
  .navbar-cart {
    display: none;
  }
}

@media only screen and (max-width: 1120px) {
  .sticky-top-nav-login-btn {
    display: none;
  }
}

.sticky-top-nav a {
  color: #fff;
  font-size: 18px;
}

header .container-fluid {
  display: flex;
  width: 100vw;
  justify-content: space-between;
  align-items: center;
}
header .container-fluid .logo .logo-img {
  height: 90%;
  transition: height 0.4s ease-in;
}
header .container-fluid .logo .logo-img-small {
  height: 80%;
  transition: height 0.4s ease-in;
}
header .container-fluid .logo a img {
  height: 50px;
}
.sticky {
  box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
}
.container {
  width: 100%;
  position: relative;
  /* overflow: hidden; */
}
.container-hero{
  max-width: 80%;
}
.sitenavbar {
  position: relative;
}
.main-header-logo {
  margin: 5px;
  padding: 0;
  height: 20px;
}
.main-container {
  min-height: 100vh;
}
.main-header-logo img {
  width: auto;
  height: 30px;
}
.sitenavbar {
  padding-top: 10px;
}
.main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-decoration: none !important;
  list-style-type: none;
  padding: 0;
}
.main-navigation ul li {
  list-style: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  text-align: center;
  margin: 0px 4px;
  font-size: 16px;
  position: relative;
  height: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

.main-navigation ul li:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}
.main-navigation ul li a:hover {
  color: #ffffff;
}

.main-navigation ul li a {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  color: #000000;
  padding: 3px 3px;
}

.main-navigation ul li ul {
  width: max-content;
  position: absolute;
  display: list-item;
  top: 40px;
  left: 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  list-style: none !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in;
  border-radius: 10px;
  border: none;
}
.drpdwn-menu {
  max-height: 1000px !important;
  transition: max-height 0.4s ease-in;
}

.menu-item-has-children:hover ul {
  max-height: 500px;
}

.main-navigation ul li ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 10px;
  width: 100%;
}

.main-navigation ul li ul li:hover {
  background-color: var(--primary-color-2);
  border-radius: 0px;
}
.main-navigation ul li ul li a {
  text-decoration: none;
  color: #000000;
}
.contact-mobile {
  display: none;
}
.contact p {
  font-size: 20px;
}
/* Hamburger Menu */

.hamburger-div {
  justify-content: center;
  align-items: center;
  display: none;
}
.hamburger-btn {
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: all 0.5s;
  position: relative;
  background-color: transparent;
  border: none;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 24px;
  height: 3px;
  transform: rotate(0);
  transition: all 0.5s;
  background-color: #151515;
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}

.open {
  transform: rotate(90deg);
  transform: translateY(0px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translate(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translate(-6px);
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}
.links {
  display: none;
}
.links a {
  margin: 10px 10px;
}
@media only screen and (max-width: 1120px) {
  .main-header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 40px;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
  }
  header .container-fluid .logo .logo-img {
    height: 40px;
  }
  .contact {
    display: none;
  }

  .main-navigation {
    position: fixed;
    top: 55px;
    right: -100%;
    bottom: 0;
    width: 50%;
    max-width: 100vw;
    align-items: unset;
    background-color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: right 0.4s;
    padding-top: 20px;
    overflow-y: scroll;
    min-height: 100vh;
    z-index: 10000;
    padding-bottom: 100px;
  }
  .contact-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .main-navigation .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
  .contact-mobile .ri-phone-line {
    font-size: 25px;
  }
  .contact-mobile p {
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 20px;
  }
  .main-navigation-open {
    right: 0%;
    top: 90px;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li {
    padding: 0px;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li a {
    color: #000000;
    padding: 15px 0px;
  }
  .main-navigation ul li ul {
    position: relative;
    top: 5px;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
    width: 100%;
  }

  .drpdwn-menu {
    max-height: 1000px !important;
    transition: max-height 0.4s ease-in;
  }

  .main-navigation ul li ul li:hover {
    background-color: var(--primary-color-2);
  }
  .main-navigation ul li ul li a {
    color: #fff;
  }

  .hamburger-div {
    display: flex;
  }
}
@media only screen and (max-width: 1205px) {
  .main-navigation ul li a i {
    display: none;
  }
}
@media only screen and (max-width: 455px) {
  .main-header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0px;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
    padding: 0 10px;
  }
  .sticky-top-nav {
    height: 25px;
    padding: 0px 20px;
  }
  .sticky-top-nav a {
    font-size: 10px;
  }
  header .container-fluid .logo .logo-img {
    height: 30px;
  }
  .container-fluid .logo {
    height: 50px;
    display: flex;
    align-items: center;
  }
  .contact {
    display: none;
  }

  .main-navigation {
    position: absolute;
    top: 55px;
    right: -100%;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    align-items: unset;
    background-color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: right 0.4s;
    overflow-y: scroll;
  }
  .contact-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .main-navigation .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-mobile .ri-phone-line {
    font-size: 25px;
  }
  .main-navigation-open {
    right: 0%;
    top: 60px;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li {
    padding: 0px;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li a {
    color: #000000;
    padding: 15px 0px;
  }
  .main-navigation ul li ul {
    position: relative;
    top: 5px;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
  }

  .drpdwn-menu {
    max-height: 1000px !important;
    transition: max-height 0.4s ease-in;
  }

  .main-navigation ul li ul li:hover {
    background-color: var(--primary-color-2);
  }
  .main-navigation ul li ul li a {
    color: #fff;
  }

  .hamburger-div {
    display: flex;
  }
}

#template-mo-zay-hero-carousel {
  background: #efefef !important;
}

/*---------------------------------------
      ----------- Header Banner---------
----------------------------------------------*/

.header__container {
  max-width: var(--max-width);
  margin: auto;
  padding-block: 8rem 2rem;
  padding-inline: 1rem;
  display: grid;
  gap: 2rem;
  overflow-x: hidden;
  padding-top: 100px;
  overflow: hidden;
}

.header__container a {
  color: #fff;
  font-weight: 600;
}

.header__image {
  position: relative;
  isolation: isolate;
  padding: 25px;
}



.header__image img {
  max-width: 100%;
  margin-inline: auto;
}

.header__image__card {
  position: absolute;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  background-color: #fff;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header__image__card span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.header__image__card-1 {
  top: 25%;
  left: 4%;
  transform: translate(-50%, -50%);
}

.header__image__card-2 {
  top: 10%;
  right: 2rem;
  transform: translateY(-50%);
}

.header__image__card-3 {
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}

.header__image__card-4 {
  top: 70%;
  right: 0;
  transform: translateY(-50%);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 5.5rem;
  text-align: center;
  line-height: 1.2;
}

.header__content h1 span {
  color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  columns: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.header__content form {
  margin-bottom: 4rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem 0;
  border-radius: calc(1rem + 10px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.header__content .input__row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.header__content .input__group {
  flex: 1;
}

.header__content .input__group h5 {
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.header__content .input__group > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__content input {
  width: 100%;
  outline: none;
  border: none;
  font-size: 1rem;
  background-color: transparent;
}

.header__content input::placeholder {
  font-weight: 600;
  color: var(--text-dark);
}

.header__content .input__group span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.header__content button {
  width: 100%;
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.header__content button:hover {
  background-color: var(--primary-color-2);
}

.header__content .bar {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 768px) {
  .header__container {
    padding-block: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-top: 50px;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, p, .bar) {
    text-align: left;
  }
}

@media (width > 1024px) {
  .header__content form {
    flex-direction: row;
  }

  .header__content button {
    width: fit-content;
  }
}

/*---------------------------------------
      ----------- Header Banner---------
----------------------------------------------*/

/*---------------------------------------
      ----------- two-side-section"---------
----------------------------------------------*/

.two-side-section {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background-color: #20b51d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .two-side-section::before {
  position: absolute;
  content: "0";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 70rem;
  font-weight: 200;
  color: var(--primary-color);
  z-index: -1;
  opacity: 0.5;
} */

.two-side-section img {
  position: absolute;
  width: 100%;
  max-width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  z-index: 40;
}

.two-side-section h4 {
  position: absolute;
  width: 100%;

  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 5rem;
  letter-spacing: 25px;
  text-transform: uppercase;
}
.text__left-top {
  color: transparent;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke: 3px #000;
  z-index: 41;
}

.text__left-bottom {
  color: #000;
  -webkit-text-fill-color: #000;
  -webkit-text-stroke: 3px #000;
  z-index: 35;
}

.text__left {
  transform: translate(-50%, -50%);
}

.two-side-section::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  z-index: -1;
  animation: body-bg 1s ease-in-out forwards;
}

@media only screen and (max-width: 455px) {
  .two-side-section img {
    max-width: 350px;
  }

  .two-side-section h4 {
    font-size: 1.5rem;
    letter-spacing: 15px;
  }
  .text__left-top {
    -webkit-text-stroke: 1px #000;
  }

  .text__left-bottom {
    -webkit-text-stroke: 1px #000;
  }
}

@keyframes body-bg {
  0% {
    width: 0vw;
  }
  100% {
    width: 50vw;
  }
}

/*---------------------------------------
      -----------end two-side-section"---------
----------------------------------------------*/

/*---------------------------------------
      ----------- carousel---------
----------------------------------------------*/

#secondary-banner {
  position: relative;
  margin-bottom: 80px;
  height: 400px;
  margin-top: 70px;
  overflow: hidden;
  background-size: cover;
  
  background-position: center center;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#secondary-banner h1 {
  color: #fff;
  font-size: 50px;
  z-index: 3;
  position: relative;
  font-weight: 600;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
#secondary-banner p {
  color: #fff;
  font-size: 30px;
  z-index: 3;
  position: relative;
  text-shadow: 0px 0px 5px rgb(0, 0, 0);
}
.secondary-banner-background-overlay {
  background-color: transparent;
      background-image: linear-gradient(160deg, #000000 0%, #000000 100%);
  opacity: 0.4;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

/* Carousel Hero */
#template-mo-zay-hero-carousel .carousel-indicators button {
  margin-top: -20px;
  background-color: #59ab6e;
}

/* Carousel Brand */
.tempaltemo-carousel .h1 {
  font-size: 0.5em !important;
  color: #000 !important;
}
.h1-text-success {
  color: var(--primary-color);
}

.ri-arrow-right-s-line,
.ri-arrow-left-s-line {
  font-size: 60px;
  color: var(--primary-color) !important;
}
/*---------------------------------------
      -----------end carousel---------
----------------------------------------------*/

/*---------------------------------------
      -----------contact-us/---------
----------------------------------------------*/

.text-end {
  text-align: left !important;
}

/*---------------------------------------
      -----------end carousel---------
----------------------------------------------*/

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.woocommerce ul.products li.product .price {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 16px;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .woocommerce .products ul,
  .woocommerce ul.products {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    float: left;
    position: relative;
    width: 26%;
  }
}
@media only screen and (max-width: 455px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 95%;
    float: left;
    clear: both;
    margin: 0 0 2.992em;
  }
  .woocommerce .products ul,
  .woocommerce ul.products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.editor-styles-wrapper
  table.wc-block-cart-items
  .wc-block-cart-items__row
  .wc-block-components-product-name,
table.wc-block-cart-items
  .wc-block-cart-items__row
  .wc-block-components-product-name {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.wc-block-components-product-metadata
  .wc-block-components-product-metadata__description
  > p,
.wc-block-components-product-metadata
  .wc-block-components-product-metadata__variation-data {
  font-size: 15px;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background-color: #f3273e;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  content: " ";
  display: none !important;
}

.section-middle-about-us {
  padding: 50px 0px 50px 0px;
  --widgets-spacing: 20px 20px;
  background-color: #00b6d2;
  background-image: url("../assets/background_img_02.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}

.section-middle-about-us-background-overlay {
  background-color: #00b6d2;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.82;
}

.section-middle-about-us-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  color: #fff;
  padding: 5px 20px 20px 5px;
}

.section-middle-about-us h1 {
  font-size: 45px;
  font-weight: 500;
}

.section-middle-about-us li {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 10px 0;
}

.section-middle-about-us-column {
  max-width: 1200px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.section-middle-about-us-image-right {
  z-index: 1;
  text-align: right;
  margin-block-end: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.section-middle-about-us-image-left {
  z-index: 1;
  text-align: left;
  margin-block-end: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.section-middle-about-us-image-left .ection-middle-about-us-image-container {
  margin: -230px 0px -145px 0px;
}
.section-middle-about-us-image-container {
  margin: -145px 0px -271px 0px;
}
.section-middle-about-us-image-container img {
  width: 19%;

  vertical-align: middle;
  display: inline-block;
}

.section-middle-about-us-heading h2 {
  padding-top: 100px;
  color: #fff;
  font-size: 35px !important;
  margin: auto;
  text-align: center;
}

.section-middle-about-us-text {
  padding-bottom: 100px;
  color: #fff;
  font-size: 20px !important;
  margin: auto 200px;
  text-align: center;
  font-weight: 300;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.bg-black {
  background-color: #1d242d !important;
  text-align: center;
  font-weight: 300;
}
.copyright-text {
  margin: 0;
}

/*---------------------------------------
      ----------- features1-section---------
----------------------------------------------*/
.features1-section {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../assets/back-1134x680.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  word-wrap: break-word;
}

.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--primary-color-2);
}
.features1-section .container-fluid {
  padding: 0;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.features1-section .container-fluid {
  position: relative;
  word-wrap: break-word;
}

.features1-section .justify-content-center {
  align-items: center;
  background: transparent;
  padding: 0px;
  margin: 0;
}
@media (min-width: 992px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.justify-content-center {
  -webkit-justify-content: center;
}
.row {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}
.features1-section .right-side {
  padding-right: 0px;
}
.features1-section .right-side {
  padding-left: 0;
}

.features1-section .left {
  padding-right: 0;
  padding-left: 45px;
}
.features1-section .left {
  max-width: 490px;
  padding: 20px 0;
  padding-right: 45px;
  margin: auto;
}
.features1-section .mbr-section-title {
  width: 100%;
  margin: 0 0 26px;
  color: #ffffff;
  font-weight: 700;
}
.features1-section .mbr-text,
.features1-section .link {
  color: #ffffff;
}
/*---------------------------------------
      -----------End features1-section---------
----------------------------------------------*/

/*---------------------------------------
      ----------- Footer---------
----------------------------------------------*/
.bg-dark-footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #000000;
}

.bg-dark-footer .container {
  position: relative;
  word-wrap: break-word;
}
.media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 992px) {
  .media-container-row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.media-container-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}
.align-center {
  text-align: center;
}
.mbr-white {
  color: #ffffff;
}
.media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.row {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}

.media-container-row .row-copirayt p {
  width: 100%;
  font-size: 1rem;
}
.media-container-row .footer-list-ul {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  margin: 0;
}

.media-container-row .footer-list-ul li a {
  color: #fff;
  text-decoration: none;
}

.menu-item {
  padding: 0 2rem 2rem 2rem;
}

@media (max-width: 445px) {
  .menu-item {
    padding: 0 0.5rem 2rem 0.5rem;
  }
}

/*---------------------------------------
      -----------end Footer---------
----------------------------------------------*/

/*----------------------
single-product --------------------*/

.single-product-container {
  padding-top: 100px;
}

.wc-block-cart .wc-block-cart__submit-container {
  padding: 0;
  background: rgb(82, 24, 135);
}

.wc-block-cart .wc-block-cart__submit-container a {
  color: #fff;
  text-decoration: none;
}

.wc-block-components-totals-shipping .wc-block-components-totals-item {
  flex-direction: column;
}
body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link) {
  min-height: 3em;
  background-color: var(--primary-color);
  color: #fff;
}

/********--------------*/

/*----------------------
animation --------------------*/
.animated {
  animation-duration: 1.25s;
}

@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}
.product-btn {
  
    padding: 0.6rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1.3rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 35px;
    width: fit-content;
}
.product-btn a{
  
    color: #fff !important;
    text-decoration: none;
}
.product-btn:hover {
    background-color: var(--primary-color-2);
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}
.carousel{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
   
}

.list{
    width: 100%;
    height: 100%;
}

.item{
    width: 100%;
    height: 100%;
    background-color: var(--background);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
}
.item img.fruit{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
}
.item .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 8rem;
    color: #eee;
    font-weight: bold;
    white-space: nowrap;
}
.text__left-top {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px #683f3a;
    z-index: 41;

}
.text__left-bottom {
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 1px #fff;
    z-index: 35;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.76);
}
.item.active{
    display: block;
}
.item.hidden{
    display: block;
    pointer-events: none;
    background-color: transparent;
    z-index: 1;
}


#prev,
#next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #eee9;
    background-color: #eee5;
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    cursor: pointer;
    z-index: 150;
}
#prev{
    left: 20px;
}
#next{
    right: 20px;
}


@keyframes toActive{
    from{
        top: 100%;
        opacity: 0;
    }
}
@keyframes toOut{
    from{
        top: 50%;
        opacity: 1;
    }
}
.item.active img.fruit{
    animation: toActive 0.5s ease-in-out 1;
}
.item.hidden img.fruit{
    animation: toOut 0.8s ease-in-out 1;
    top: -100%;
    opacity: 0;
}
.item.active .content{
    animation: toActive 0.8s ease-in-out 1;
}
.item.hidden .content{
    opacity: 0;
}


.carousel.right .item.active img.fruit{
    animation: toActivePrev 0.5s ease-in-out 1;
}
.carousel.right .item.hidden img.fruit{
    animation: toOut 0.8s ease-in-out 1;
    top: 100%;
    opacity: 0;
}
.carousel.right .item.active .content{
    animation: toActivePrev 0.8s ease-in-out 1;
}


@keyframes toActivePrev{
    from{
        top: 0;
        opacity: 0;
    }
}





:root{
    --width-mockup: calc(371px / 1.5);
    --height-mockup: calc(673px / 1.5);
}



.shadow{
    width: var(--width-mockup);
    height: 100px;
    background-color: #0008;
    border-radius: 50%;
    position: absolute;
    top:  calc((65% + (var(--height-mockup) / 2)));
    left: 50%;
    transform: translateX(-50%);
    filter: blur(20px);
}
@media screen and (max-width: 768px) {
    .item .content{
        transform: translate(-50%, -50%) scale(.5);
    }
    .item img.fruit{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.can-container{
    height: 100%;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.item.active .can-container{
    display: flex;
}
.can-image{
height: 80%;
width: auto;
margin: auto;
z-index: 10;
}

.item.active img.can-image{
    animation: toActiveCan 0.5s ease-in-out 1;
}
.item.hidden img.can-image{
    animation: toOutCan 0.8s ease-in-out 1;
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes toActiveCan{
    from{
        transform: translateY(100%);
        opacity: 0;
    }
}

.hero__items {
    height: 100vh;
    padding-top: 230px;
}
.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.hero__slider.owl-carousel .owl-nav button {
    font-size: 36px;
    color: #333333;
    position: absolute;
    left: 75px;
    top: 50%;
    margin-top: -18px;
    line-height: 29px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 75px;
}

.owl-nav .ri-arrow-right-line, .owl-nav .ri-arrow-left-line{
  font-size: 36px;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h6 {
    opacity: 1;
        top: 0;
}
.hero__text h6 {
    color: #e53637;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}
.hero__text h2 {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 30px;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
}
.hero__text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 35px;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all, 0.9s;
    -o-transition: all, 0.9s;
    transition: all, 0.9s;
}
.hero__text .primary-btn {
    position: relative;
    top: 100px;
    opacity: 1;
    -webkit-transition: all, 1.1s;
    -o-transition: all, 1.1s;
    transition: all, 1.1s;
}
.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
    top: 0;
    opacity: 1;
}
.hero__slider.owl-carousel .owl-item.active .hero__text p {
    top: 0;
    opacity: 1;
}
.primary-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 30px;
    color: #ffffff;
    background: var(--primary-color);
    letter-spacing: 4px;
    text-decoration: none;
}
.primary-btn:hover {
    background: #3f0606;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.hero__image{
  width: 58%;
}

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

.hero__slider {
  height: 100vh;
}


.top-footer {
    background: #f3f2ee;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 125px;
}

.top-footer__text:before {
    position: absolute;
    left: -485px;
    top: 0;
    height: 300px;
    width: 600px;
    background: #ffffff;
    z-index: -1;
    content: "";
}
.top-footer__text {
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.top-footer__text h2 {
    color: var(--primary-color);
    font-weight: bold;
    line-height: 72px;
    font-size: 34px;
}

.top-footer__text2 span, .top-footer__text2 h2, .top-footer__text2 .cd-item{
    padding-top: 20px;
    padding-bottom: 20px;

}
.top-footer__text2 h2{
    color: var(--primary-color);
    font-weight: bold;

}

.bg-secondary {
    background-color: #F2F2F4 !important;
}
.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}
.mt-5, .my-5 {
    margin-top: 3rem !important;
}
h1, .h1 {
    font-size: 2.5rem;
}

a:visited {
    color: #fff;
}
.about-us-btn{
  padding-top: 30px;
}




@media only screen and (max-width: 600px) {
  .hero__items {
    height: 100vh;
    padding-top: 100px;
}
.container-hero {
    max-width: 100%;
    height: 100%;
}
.hero__image {
    width: 100%;
}
.row {
    height: 100%;
}
.hero__slider.owl-carousel .owl-nav button {

    left: 5px;
    top: 30%;
}
.hero__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 5px;
}
.hero__text .primary-btn {
   
    top: 10px; 
}
.hero__text{
  text-align: center;

}
.can-image {
    height: auto;
    width: auto;
    margin: auto;
    z-index: 10;
}
.item .content {
  font-size: 5rem;
}
.shadow {

    width: var(--width-mockup);
    height: 30px;
    background-color: #0008;
    border-radius: 50%;
    position: absolute;
    top: calc((55% + (var(--height-mockup) / 2)));
    left: 50%;
    transform: translateX(-50%);
    filter: blur(20px);
}
#prev, #next {
  
    top: 60%;

}
}

@media only screen and (max-width: 1000px) {
.hero__image {
    width: 100%;
}
.hero__items {
    height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}
.hero__text .primary-btn {
    position: relative;
    top: 10px;
}
}
.hero__text_main{
  padding-bottom: 100px;
}

@media only screen and (max-width: 1200px) {
.hero__text .primary-btn {
    position: relative;
    top: 10px;
}
}