@import "https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
/*---------------------------------------
    Rotate Circle  Animation
---------------------------------------*/
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*---------------------------------------
    Ken Burns Animation
---------------------------------------*/
@keyframes kenBurns {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
}
/*---------------------------------------
        Caption Animation
---------------------------------------*/
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 80px));
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #7e7880;
}

a {
  color: #ffffff;
  transition: all 0.3s ease-in-out 0s;
}
a:hover {
  color: #2f2483;
  text-decoration: none;
}

h1 {
  font-family: "Cormorant", serif;
  font-size: 64px;
  font-weight: 500;
  color: #514633;
}

h2 {
  font-family: "Cormorant", serif;
  font-size: 54px;
  font-weight: 500;
  color: #514633;
}

h3 {
  font-family: "Cormorant", serif;
  font-size: 54px;
  font-weight: 500;
  color: #514633;
}

h4 {
  font-family: "Cormorant", serif;
  font-size: 54px;
  font-weight: 500;
  color: #514633;
}

h5 {
  font-family: "Cormorant", serif;
  font-size: 54px;
  font-weight: 500;
  color: #514633;
}

h6 {
  font-family: "Cormorant", serif;
  font-size: 54px;
  font-weight: 500;
  color: #514633;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: 500;
  color: #7e7880;
}

.btn-whatsApp,
.btn-faq {
  position: fixed;
  top: 200px;
  bottom: auto;
  left: auto;
  right: -3px;
  display: flex;
  align-items: center;
  text-indent: -9999px;
  width: 49px;
  height: 49px;
  background: #2f2483 url(../img/whatsapp-icon.png) center center no-repeat;
  background-size: auto 32px;
  z-index: 9999;
  border-radius: 10px 0px 0px 10px;
}
.btn-whatsApp:hover,
.btn-faq:hover {
  right: 0;
}

.btn-faq {
  top: 260px;
  background: #f0a200 url(../img/faq-icon.png) center center no-repeat;
  background-size: auto 32px;
}

button:not(.slick-dots button) {
  width: auto;
  height: auto;
  line-height: unset;
  border: none;
  overflow: hidden;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out 0s;
}
button:not(.slick-dots button).btn-blue {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #2f2483;
  color: #ffffff;
  margin: 0;
}
button:not(.slick-dots button).btn-blue:hover {
  color: #030303;
  background-color: #f0a200;
}
button:not(.slick-dots button).btn-brown {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #7e6d4f;
  color: #ffffff;
  display: block;
  margin: 100px auto 0;
}
button:not(.slick-dots button).btn-brown:hover {
  background-color: #2f2483;
}
button:not(.slick-dots button).btn-outline {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: transparent;
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}
button:not(.slick-dots button).btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

a.button {
  width: auto;
  height: auto;
  line-height: unset;
  border: none;
  overflow: hidden;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out 0s;
}
a.button.btn-blue {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #2f2483;
  color: #ffffff;
  margin: 0;
}
a.button.btn-blue:hover {
  color: #030303;
  background-color: #f0a200;
}
a.button.btn-brown {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #7e6d4f;
  color: #ffffff;
  display: block;
  margin: 100px auto 0;
}
a.button.btn-brown:hover {
  background-color: #2f2483;
}
a.button.btn-outline {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: transparent;
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}
a.button.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #2f2483;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  height: 97px;
  top: 0;
  border-top: 14px solid #f0a200;
}
#header.sticky-top {
  transition: all 0.5s ease 0s;
}
#header > .container-fluid {
  height: 100%;
}
#header .logo {
  margin: -17px 0 0 0;
  padding: 0;
}
#header .logo a {
  color: #2c4964;
}
#header .logo img {
  max-height: 80px;
}

.header-links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.header-links .header-contact {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.header-links .header-contact > a > img {
  max-height: 15px;
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.header-links .header-contact > a:hover > img {
  opacity: 0.7;
}
.header-links .header-social {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.header-links .header-social > a > img {
  max-height: 17px;
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.header-links .header-social > a:hover > img {
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul {
  display: flex;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 20px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 500;
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  padding: 5px 2px;
  letter-spacing: 1px;
}
.nav-menu a:hover {
  color: #ffb200;
}
.nav-menu .active > a {
  color: #ffb200;
}
.nav-menu li:hover > a {
  color: #ffb200;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}
.nav-menu .drop-down ul a:hover {
  color: #1977cc;
}
.nav-menu .drop-down ul .active > a {
  color: #1977cc;
}
.nav-menu .drop-down ul li:hover > a {
  color: #1977cc;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 0 !important;
}
.mobile-nav-toggle i {
  color: #ffb200;
  font-size: 20px;
}

.mobile-nav {
  position: fixed;
  top: 85px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover {
  color: #1977cc;
  text-decoration: none;
}
.mobile-nav .active > a {
  color: #ffb200;
  text-decoration: none;
}
.mobile-nav li:hover > a {
  color: #1977cc;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #ffb200;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 54px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  color: #514633;
  text-transform: uppercase;
}
.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-size: contain !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  padding: 0;
}
#hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 6px;
  margin: auto;
  width: 2024px;
  height: 10px;
  background: url(../img/small-triangle-2.svg) 0 0 no-repeat;
  background-size: contain;
  display: block;
  pointer-events: none;
  z-index: 1;
  transform: rotate(180deg);
}

.hero-slider {
  overflow: hidden;
}
.hero-slider .slick-slide {
  opacity: 0;
  transition: opacity 1.2s linear;
}
.hero-slider .slick-slide.slick-active {
  opacity: 1;
}

/* Overlay */
.slide {
  position: relative;
  height: 0;
  padding-top: 41.6666666667%;
  overflow: hidden;
}
.slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: block;
  pointer-events: none;
  z-index: 1;
}

.slide-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1);
}
.slide-image img.kb-animate {
  animation: kenBurns 6s linear forwards;
}

/* Caption */
.caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffb200;
  max-width: 990px;
  margin: auto;
  opacity: 0;
}
.caption span {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.caption h1 {
  font-size: 64px;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 55px;
}
.caption p {
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.slick-current .caption {
  animation: slideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: auto;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.slick-dots li {
  float: none;
  display: inline-block;
  width: 15px;
  height: 15px;
}
.slick-dots li button {
  border: none;
  background-color: #f0a200;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-indent: -9999px;
  padding: 0 !important;
}
.slick-dots li button:hover {
  background-color: #ffffff;
}
.slick-dots li.slick-active button {
  background-color: #ffffff;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  .caption h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .slide {
    padding-top: 65%;
  }
  .caption h1 {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #hero::before {
    height: 7px;
  }
  .slide {
    padding-top: 100%;
  }
  .slide-bg {
    /*
     * Slightly more overscan on mobile.
     */
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
  }
  .caption {
    width: calc(100% - 30px);
  }
  .caption h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 30px;
  }
  .caption .btn-outline {
    min-width: 140px;
    min-height: 46px;
    padding: 10px 20px;
  }
  .hero-slider .slick-dots {
    bottom: 25px;
    gap: 7px;
  }
  .hero-slider .slick-dots li,
  .hero-slider .slick-dots li button {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 480px) {
  .slide {
    padding-top: 120%;
  }
  .caption h1 {
    font-size: 29px;
  }
  .desktop-break {
    display: none;
  }
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about-us {
  padding: 108px 0 128px;
  background-color: #ffffff;
}
#about-us .row.top-row {
  position: relative;
}
#about-us .row.top-row::before {
  content: "";
  position: absolute;
  left: -20px;
  right: auto;
  top: 170px;
  bottom: auto;
  margin: auto;
  width: 250px;
  height: 354px;
  background: url(../img/Vector-Smart-Object-1.png) left top no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}
#about-us .row.top-row::after {
  content: "";
  position: absolute;
  left: auto;
  right: -90px;
  top: 145px;
  bottom: auto;
  margin: auto;
  width: 409px;
  height: 575px;
  background: url(../img/Vector-Smart-Object-2.png) right top no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}
#about-us .row.top-row .rotating-circle {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -80px;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #fcfcfc url(../img/breads-icon.png) center center no-repeat;
  background-size: auto 54px;
  border-radius: 50%;
  z-index: 1;
}
#about-us .row.bottom-row {
  position: relative;
}
#about-us .row.bottom-row::before {
  content: "";
  position: absolute;
  left: -20px;
  right: auto;
  top: auto;
  bottom: -100px;
  margin: auto;
  width: 320px;
  height: 226px;
  background: url(../img/Vector-Smart-Object-3.png) left center no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}
#about-us .row.bottom-row::after {
  content: "";
  position: absolute;
  left: auto;
  right: -50px;
  top: auto;
  bottom: -100px;
  margin: auto;
  width: 250px;
  height: 354px;
  background: url(../img/Vector-Smart-Object-4.png) left bottom no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}
#about-us .img-box img {
  width: 100%;
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out 0s;
}
#about-us .img-box img.about-img-2 {
  width: 90%;
}
#about-us .img-box:hover img {
  filter: grayscale(1);
}
#about-us .info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#about-us .info-box span {
  font-size: 12px;
  color: #514633;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#about-us .info-box h2 {
  font-size: 54px;
  color: #030303;
}
#about-us .info-box h3 {
  font-family: "Cabin", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #030303;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: italic;
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
#featured,
#products {
  background-color: #f6f4f2;
  padding: 80px 0;
}
#featured .section-title h2::before,
#products .section-title h2::before {
  display: none;
}
#featured .my-masonry-grid,
#products .my-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
#featured .my-masonry-grid .my-masonry-grid-item:nth-child(3n+2),
#products .my-masonry-grid .my-masonry-grid-item:nth-child(3n+2) {
  margin-top: 40px;
}
#featured .masonry-box,
#products .masonry-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#featured .masonry-box .img-box,
#products .masonry-box .img-box {
  overflow: hidden;
}
#featured .masonry-box .img-box > a,
#products .masonry-box .img-box > a {
  display: block;
}
#featured .masonry-box .img-box > a img,
#products .masonry-box .img-box > a img {
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
}
#featured .masonry-box .info-box,
#products .masonry-box .info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
}
#featured .masonry-box .info-box > h4,
#products .masonry-box .info-box > h4 {
  font-size: 22px;
  color: #4c4230;
  transition: all 0.3s ease-in-out 0s;
}
#featured .masonry-box:hover .img-box img,
#products .masonry-box:hover .img-box img {
  transform: scale(1.1);
  filter: grayscale(1);
}
#featured .masonry-box:hover .info-box > h4,
#products .masonry-box:hover .info-box > h4 {
  color: #ffb200;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#products,
#product-gallery {
  padding-bottom: 250px;
}
#products .section-title h2,
#product-gallery .section-title h2 {
  font-size: 54px;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
#video {
  padding: 0;
}

.video-banner {
  position: relative;
  background: url(../img/video-img-large.jpg) 0 center no-repeat;
  background-size: cover;
  min-height: 800px;
}
.video-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -1px;
  margin: auto;
  width: 2024px;
  height: 10px;
  background: url(../img/small-triangle-2.svg) 0 0 no-repeat;
  background-size: contain;
  display: block;
  pointer-events: none;
  z-index: 1;
  transform: rotate(180deg);
}
.video-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  bottom: auto;
  margin: auto;
  width: 2024px;
  height: 10px;
  background: url(../img/small-triangle-2.svg) 0 0 no-repeat;
  background-size: contain;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.video-banner .video-trigger {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 190px;
  height: 190px;
}
.video-banner .video-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: url(../img/Vector-Smart-Object-5.png) center center no-repeat;
  background-size: contain;
  animation: rotateCircle 10s linear infinite;
}
.video-banner .video-trigger .play-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 29px;
  height: 33px;
  background: url(../img/play-btn.png) center center no-repeat;
  background-size: contain;
}

/*--------------------------------------------------------------
# Quality
--------------------------------------------------------------*/
#quality,
#product-gallery {
  background-color: #fafafa;
  padding-bottom: 70px;
}
#quality .btn-blue,
#product-gallery .btn-blue {
  display: block;
  margin: 55px auto 0;
}
#quality .section-title h2::before,
#product-gallery .section-title h2::before {
  width: 276px;
  height: 214px;
  background: url(../img/cake-vecotr-element-1.png) 0 center no-repeat;
  top: -60px;
}

/* =========================================
   MASONRY GRID
========================================= */
.my-masonry-grid-2 {
  --gap: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  width: 100%;
  margin: 0 auto;
}
.my-masonry-grid-2 .masonry-grid-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-width: 0;
}
.my-masonry-grid-2 .masonry-grid-column.masonry-grid-column-1 {
  flex-direction: column;
}
.my-masonry-grid-2 .masonry-grid-column.masonry-grid-column-2 {
  flex-direction: column-reverse;
}
.my-masonry-grid-2 .masonry-grid-column.masonry-grid-column-3 {
  flex-direction: column;
}
.my-masonry-grid-2 .masonry-grid-column.masonry-grid-column-4 {
  flex-direction: column-reverse;
}
.my-masonry-grid-2 .my-masonry-grid-item {
  width: 100%;
  overflow: hidden;
}
.my-masonry-grid-2 .my-masonry-grid-item.is-tall {
  aspect-ratio: 0.72/1;
}
.my-masonry-grid-2 .my-masonry-grid-item.is-short {
  aspect-ratio: 1.3/0.72;
}

.quality-item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.quality-item a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
}
.quality-item a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease 0s;
}
.quality-item a:hover img {
  transform: scale(1.1);
}

#product-gallery .my-masonry-grid-2 .masonry-grid-column {
  justify-content: flex-end;
}
#product-gallery .my-masonry-grid-2 .masonry-grid-column:nth-child(even) {
  flex-direction: column-reverse;
}
#product-gallery .my-masonry-grid-2 .masonry-grid-column:nth-child(odd) {
  flex-direction: column;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery {
  padding-bottom: 290px;
}
#gallery .section-title h2::before {
  width: 184px;
  height: 212px;
  background: url(../img/puff-vector-element-2.png) 0 center no-repeat;
  top: -60px;
}
#gallery .gallery-item {
  height: 100%;
  overflow: hidden;
}
#gallery .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 0.3s ease 0s;
}
#gallery .gallery-item:hover img {
  transform: scale(1.1);
}
#gallery .btn-blue {
  display: block;
  margin: 55px auto 0;
}

/*--------------------------------------------------------------
# Product Gallery
--------------------------------------------------------------*/
#product-gallery {
  padding-bottom: 350px;
}
#product-gallery .btn-blue {
  display: table;
  margin: 50px auto 0;
}

/*--------------------------------------------------------------
# Talent 
--------------------------------------------------------------*/
#talent {
  padding-top: 80px;
  padding-bottom: 0;
}
#talent .parallax-bg {
  position: absolute;
  left: auto;
  right: 0;
  top: 420px;
  bottom: auto;
  margin: auto;
  width: 30vw;
  height: 330px;
  background-color: #f4ebe5;
  will-change: transform;
}
#talent .parallax-bg:first-of-type {
  top: 150px;
  left: 0;
  right: auto;
  width: 48vw;
  height: 385px;
}
#talent .img-box img {
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out 0s;
}
#talent .img-box:hover img {
  filter: grayscale(1);
}
#talent .info-box span {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
#talent .info-box h2 {
  color: #030303;
  margin-bottom: 15px;
  line-height: 1.1;
  position: relative;
}
#talent .info-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 266px;
  height: 271px;
  background: url(../img/Vector-Smart-Object12.png) center center no-repeat;
  background-size: auto 80%;
}
#talent .info-box p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 10px;
}

#career-form {
  padding-top: 80px;
  padding-bottom: 300px;
}
#career-form .wpcf7-form p {
  position: relative;
  margin-bottom: 0;
}
#career-form .wpcf7-form p .wpcf7-spinner {
  position: absolute;
  right: 10px;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}
#career-form h5 {
  font-family: "Cabin", sans-serif;
  font-size: 12px;
  color: #514633;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: -15px;
  margin-right: -15px;
}
#career-form .form-bg {
  padding: 40px 15px 25px;
  background-color: #f4ebe5;
}
#career-form form .form-control {
  border-radius: 0;
  border-color: #000000;
  background-color: transparent;
  color: #514633;
  padding: 0.375rem 0.75rem;
  letter-spacing: 1px;
}
#career-form form .form-control::-moz-placeholder {
  color: #514633;
}
#career-form form .form-control::placeholder {
  color: #514633;
}
#career-form form input[type=file] {
  border: none;
  padding: 0;
}
#career-form .btn-submit {
  min-width: 500px;
  background-color: #2f2483;
  border-radius: 0;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#career-form .btn-submit:hover {
  background-color: #7e6d4f;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  background: url(../img/footer-bg.jpg) 0 center no-repeat;
  background-size: cover;
  padding-top: 60px;
}
#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  pointer-events: none;
  background-color: #100c2c;
  opacity: 0.73;
}
#footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -360px;
  bottom: auto;
  width: 100%;
  height: 360px;
  background: url(../img/footer-grain.png) center bottom no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

.footer-top h4 {
  font-size: 18px;
  color: #ffb200;
  text-transform: uppercase;
}

.footer-logo {
  display: block;
  margin-bottom: 40px;
}
.footer-logo img {
  max-width: 80px;
}

.footer-info {
  font-family: "Cormorant", serif;
  color: #ffffff;
  padding-right: 20%;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
}
.footer-links li {
  width: 49%;
}
.footer-links li a {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links li a:hover {
  color: #ffb200;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.footer-contact a {
  font-size: 12px;
  line-height: 25px;
  color: #ffffff;
}
.footer-contact a:hover {
  color: #ffb200;
}
.footer-contact a.footer-address {
  background: url(../img/placeholder-img.png) left center no-repeat;
  background-size: auto 16px;
  padding-left: 30px;
}
.footer-contact a.footer-phone {
  background: url(../img/telephone-img.png) left center no-repeat;
  background-size: auto 16px;
  padding-left: 30px;
}
.footer-contact a.footer-email {
  background: url(../img/arroba-img.png) left center no-repeat;
  background-size: auto 16px;
  padding-left: 30px;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid #ffb200;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links a:hover {
  border-color: #ffffff;
}
.social-links a img {
  max-height: 16px;
}

.footer-bottom {
  position: relative;
  padding: 20px 0;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 1px;
  margin: auto;
  display: block;
  background-color: #f0a200;
}
.footer-bottom .copyright {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Interior Banner
--------------------------------------------------------------*/
#int-banner {
  min-height: 394px;
}
#int-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: block;
  pointer-events: none;
  z-index: 1;
}
#int-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -1px;
  margin: auto;
  width: 2024px;
  height: 10px;
  background: url(../img/small-triangle-2.svg) center bottom no-repeat;
  background-size: contain;
  display: block;
  pointer-events: none;
  z-index: 1;
  transform: rotate(180deg);
}
#int-banner div.col-md-5 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
#int-banner div.col-md-5 .caption-box {
  position: relative;
  z-index: 1;
}
#int-banner div.col-md-5 .caption-box h1 {
  color: #ffffff;
}

/*--------------------------------------------------------------
# History Contribution Values
--------------------------------------------------------------*/
#history,
#contribution,
#values {
  padding-top: 150px;
  padding-bottom: 0;
}
#history .parallax-bg,
#contribution .parallax-bg,
#values .parallax-bg {
  position: absolute;
  left: 0;
  right: auto;
  top: 100px;
  bottom: auto;
  margin: auto;
  width: 53vw;
  height: 500px;
  background-color: #f4ebe5;
  will-change: transform;
  z-index: -1;
}
#history::after,
#contribution::after,
#values::after {
  content: "";
  position: absolute;
  left: auto;
  right: -110px;
  top: auto;
  bottom: 0;
  width: 524px;
  height: 567px;
  background: url(../img/Vector-Smart-Object6.png) right bottom no-repeat;
  background-size: auto 50%;
  z-index: -1;
}
#history .img-box img,
#contribution .img-box img,
#values .img-box img {
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out 0s;
}
#history .img-box:hover img,
#contribution .img-box:hover img,
#values .img-box:hover img {
  filter: grayscale(1);
}
#history .info-box span,
#contribution .info-box span,
#values .info-box span {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
#history .info-box h2,
#contribution .info-box h2,
#values .info-box h2 {
  color: #030303;
  margin-bottom: 15px;
}
#history .info-box p,
#contribution .info-box p,
#values .info-box p {
  font-family: "Nunito Sans", sans-serif;
  text-align: justify;
}

#contribution {
  padding-top: 150px;
}
#contribution .parallax-bg {
  left: auto;
  right: 0;
}
#contribution::after {
  content: "";
  position: absolute;
  left: -35px;
  right: auto;
  top: auto;
  bottom: 0;
  width: 465px;
  height: 497px;
  background: url(../img/Vector-Smart-Object7.png) left bottom no-repeat;
  background-size: auto 50%;
  z-index: -1;
}

#values {
  padding-top: 150px;
  padding-bottom: 415px;
}
#values .parallax-bg {
  left: 0;
  right: auto;
}
#values::after {
  content: "";
  position: absolute;
  left: auto;
  right: -40px;
  top: auto;
  bottom: 300px;
  width: 439px;
  height: 460px;
  background: url(../img/Vector-Smart-Object8.png) right bottom no-repeat;
  background-size: auto 50%;
  z-index: -1;
}

/*--------------------------------------------------------------
# Office Factory Form
--------------------------------------------------------------*/
#office,
#factory,
#form {
  background: url(../img/Vector-Smart-Object9.png) left -50px bottom no-repeat;
  background-size: auto 50%;
  padding-bottom: 35px;
}
#office .parallax-bg,
#factory .parallax-bg,
#form .parallax-bg {
  position: absolute;
  left: auto;
  right: 0;
  top: 150px;
  bottom: auto;
  margin: auto;
  width: 53vw;
  height: 500px;
  background-color: #f4ebe5;
  will-change: transform;
}
#office .img-box img,
#factory .img-box img,
#form .img-box img {
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out 0s;
}
#office .img-box:hover img,
#factory .img-box:hover img,
#form .img-box:hover img {
  filter: grayscale(1);
}
#office .info-box,
#factory .info-box,
#form .info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 40px;
}
#office .info-box h2,
#factory .info-box h2,
#form .info-box h2 {
  color: #030303;
}
#office .info-box a,
#factory .info-box a,
#form .info-box a {
  color: #7e7880;
  font-size: 14px;
  display: flex;
  justify-content: center;
  padding-left: 30px;
  letter-spacing: 1px;
}
#office .info-box a.address,
#factory .info-box a.address,
#form .info-box a.address {
  background: url(../img/placeholder-blue.png) left top no-repeat;
  background-size: 16px auto;
}
#office .info-box a.telephone,
#factory .info-box a.telephone,
#form .info-box a.telephone {
  background: url(../img/telephone-blue.png) left top no-repeat;
  background-size: 16px auto;
}
#office .info-box a.email,
#factory .info-box a.email,
#form .info-box a.email {
  background: url(../img/arroba-blue.png) left top no-repeat;
  background-size: 16px auto;
}
#office .info-box p,
#factory .info-box p,
#form .info-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: #7e7880;
  letter-spacing: 1px;
}
#office .info-box p strong,
#factory .info-box p strong,
#form .info-box p strong {
  font-weight: 600;
  color: #7e7880;
}
#office .info-box span,
#factory .info-box span,
#form .info-box span {
  font-size: 16px;
  color: #514633;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#office .info-box .address-box,
#office .info-box .time-box,
#factory .info-box .address-box,
#factory .info-box .time-box,
#form .info-box .address-box,
#form .info-box .time-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#factory {
  background: url(../img/Vector-Smart-Object10.png) right -50px bottom no-repeat;
  background-size: auto 50%;
  padding-top: 50px;
  padding-bottom: 50px;
}
#factory .parallax-bg {
  left: 0;
  right: auto;
}

#form,
.modal {
  background: url(../img/Vector-Smart-Object11.png) left -50px bottom no-repeat;
  background-size: auto 50%;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 250px;
}
#form .close,
.modal .close {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
  bottom: auto;
  padding: 0;
  margin: 0;
}
#form .close span,
.modal .close span {
  font-size: 34px;
  display: block;
  text-align: center;
  line-height: 0.5;
  color: #030303;
}
#form h4,
.modal h4 {
  font-family: "Cabin", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
#form .info-box,
.modal .info-box {
  gap: 20px;
}
#form form,
.modal form {
  display: flex;
  flex-direction: column;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
}
#form form .form-control,
.modal form .form-control {
  border-radius: 0;
  border-color: #000000;
  background-color: transparent;
  color: #514633;
  letter-spacing: 1px;
}
#form form .form-control::-moz-placeholder, .modal form .form-control::-moz-placeholder {
  color: #514633;
}
#form form .form-control::placeholder,
.modal form .form-control::placeholder {
  color: #514633;
}
#form form .btn-submit,
.modal form .btn-submit {
  background-color: #2f2483;
  border-radius: 0;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#form form .btn-submit:hover,
.modal form .btn-submit:hover {
  background-color: #7e6d4f;
}

/*--------------------------------------------------------------
# Csr 
--------------------------------------------------------------*/
.csr {
  padding-bottom: 340px !important;
}
.csr::after {
  background: url(../img/environment-doodle-vector-with-hand-holding-globe.png) right bottom no-repeat !important;
  background-size: auto 50% !important;
  right: -90px !important;
  bottom: 170px !important;
}
.csr .parallax-bg {
  top: 75px !important;
}

.csr-slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 31px;
  height: 41px;
  text-indent: -9999px;
  font-size: 0;
  color: transparent;
  z-index: 3;
}
.csr-slider .slick-arrow:hover {
  opacity: 0.7;
}
.csr-slider .slick-arrow.slick-prev {
  left: -40px;
  right: auto;
  background: url(../img/down-arrow-copy.png) left center no-repeat;
  background-size: contain;
}
.csr-slider .slick-arrow.slick-next {
  left: auto;
  right: -40px;
  background: url(../img/down-arrow.png) right center no-repeat;
  background-size: contain;
}

/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/
#product-details {
  overflow: visible;
  padding-bottom: 350px;
}

.xzoom-container {
  position: sticky;
  top: 130px;
}

.product-title-box p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
}

.product-info-box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 10px;
}
.product-info-box ul li {
  width: 49%;
  display: flex;
  align-items: center;
  gap: 15px 10px;
}
.product-info-box ul li img {
  max-width: 37px;
}
.product-info-box ul li span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.1;
}

.product-thumbnail-box {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.product-msg-box {
  background-color: #f6f4f2;
  border-radius: 0 25px 0 25px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
}
.product-msg-box img {
  max-width: 37px;
}
.product-msg-box p {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #7e7880;
  line-height: 1.2;
}

.product-related-box h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.product-related-box .related-products {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.product-related-box .related-products .related-product {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-related-box .related-products .related-product .img-box {
  overflow: hidden;
}
.product-related-box .related-products .related-product .img-box img {
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
}
.product-related-box .related-products .related-product .img-box:hover img {
  transform: scale(1.1);
  filter: grayscale(1);
}
.product-related-box .related-products .related-product .info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-related-box .related-products .related-product .info-box h4 {
  font-size: 18px;
  color: #4c4230;
  text-align: center;
  margin: 0;
}

.xzoom-thumbs {
  display: flex;
  gap: 10px;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
body.privacy-policy .parallax-bg {
  display: none;
}
body.privacy-policy h2.wp-block-heading,
body.privacy-policy h3.wp-block-heading {
  font-size: 34px;
  color: #030303;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1799px) {
  .video-banner {
    min-height: 600px;
  }
  .video-banner .video-trigger {
    width: 140px;
    height: 140px;
  }
  .video-banner .video-trigger::before {
    width: 140px;
    height: 140px;
  }
  #about-us .row.top-row::before, #about-us .row.top-row::after, #about-us .row.bottom-row::before, #about-us .row.bottom-row::after {
    width: 15%;
  }
  #quality .section-title h2::before,
  #product-gallery .section-title h2::before {
    width: 12%;
  }
  #gallery .section-title h2::before {
    width: 10%;
  }
}
@media (max-width: 1365px) {
  .nav-menu > ul > li {
    padding: 8px 10px;
  }
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
  .section-title h2 {
    font-size: 44px;
  }
  #product-gallery .section-title h2,
  #products .section-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 44px;
  }
  #header .logo {
    margin: -25px 0 0 0;
  }
  #header .logo img {
    max-height: 70px;
  }
  .header-links {
    gap: 25px;
  }
  .nav-menu > ul > li {
    padding: 8px 8px;
  }
  .caption h1 {
    font-size: 54px;
  }
  #about-us .info-box h2 {
    font-size: 44px;
  }
  #about-us .info-box h3 {
    font-size: 20px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  #product-gallery .section-title h2,
  #products .section-title h2 {
    font-size: 34px;
  }
  #featured .masonry-box .info-box > h4,
  #products .masonry-box .info-box > h4 {
    font-size: 18px;
  }
  .video-banner {
    min-height: 400px;
  }
  .video-banner .video-trigger::before {
    width: 120px;
    height: 120px;
  }
  .footer-logo img {
    max-width: 70px;
  }
  .footer-links li {
    width: 48%;
  }
  .footer-contact a {
    line-height: normal;
  }
  #int-banner {
    min-height: 400px;
  }
  #office .parallax-bg,
  #factory .parallax-bg,
  #form .parallax-bg {
    height: 350px;
  }
  .csr-slider .slick-arrow {
    transform: scale(0.7);
  }
  .csr-slider .slick-arrow.slick-prev {
    left: -30px;
  }
  .csr-slider .slick-arrow.slick-next {
    right: -30px;
  }
  .csr::after {
    background-size: auto 35% !important;
  }
  .product-info-box ul li {
    width: 48%;
  }
  .caption h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 34px;
  }
  body.privacy-policy h2.wp-block-heading,
  body.privacy-policy h3.wp-block-heading {
    font-size: 34px;
  }
  .slide {
    height: 80vh;
  }
  .caption h1 {
    font-size: 44px;
    margin-bottom: 45px;
  }
  #about-us .info-box h2 {
    font-size: 34px;
  }
  #about-us .info-box h3 {
    font-size: 18px;
  }
  #about-us .row.top-row .rotating-circle {
    width: 90px;
    height: 90px;
  }
  p {
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  #product-gallery .section-title h2,
  #products .section-title h2 {
    font-size: 30px;
  }
  #featured .masonry-box .info-box,
  #products .masonry-box .info-box {
    min-height: 100px;
  }
  #featured .masonry-box .info-box > h4,
  #products .masonry-box .info-box > h4 {
    font-size: 16px;
  }
  .video-banner {
    min-height: 50vw;
  }
  .video-banner .video-trigger {
    width: 100px;
    height: 100px;
  }
  .video-banner .video-trigger::before {
    width: 100px;
    height: 100px;
  }
  #gallery {
    padding-bottom: 150px;
  }
  #int-banner {
    min-height: 300px;
  }
  #office .parallax-bg,
  #factory .parallax-bg,
  #form .parallax-bg {
    height: 300px;
  }
  #history .parallax-bg,
  #contribution .parallax-bg,
  #values .parallax-bg {
    height: 350px;
  }
  #talent .parallax-bg {
    height: 150px;
  }
  #talent .parallax-bg:first-of-type {
    height: 200px;
  }
  #talent .info-box h2::before {
    background-size: auto 50%;
  }
  .product-info-box ul li span {
    font-size: 14px;
  }
  .product-related-box .related-products .related-product .info-box h4 {
    font-size: 16px;
  }
  .slide {
    padding-top: 65%;
  }
  .caption h1 {
    font-size: 44px;
    margin-bottom: 40px;
  }
  .my-masonry-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .masonry-grid-column {
    gap: 10px;
  }
  .masonry-grid-column.masonry-grid-column-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .masonry-grid-column.masonry-grid-column-2 {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column-reverse;
  }
  .masonry-grid-column.masonry-grid-column-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .masonry-grid-column.masonry-grid-column-4 {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  button:not(.slick-dots button).btn-blue {
    margin: auto;
  }
  .slide {
    height: 70vh;
  }
  .caption h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .slick-dots {
    bottom: 35px;
  }
  #about-us {
    padding: 70px 0;
  }
  #about-us .img-box img.about-img-2 {
    width: 100%;
  }
  #about-us .row.top-row .rotating-circle {
    bottom: -60px;
  }
  #featured .masonry-box .info-box > h4,
  #products .masonry-box .info-box > h4 {
    font-size: 20px;
  }
  #quality {
    padding-bottom: 30px;
  }
  #quality .section-title h2::before,
  #gallery .section-title h2::before,
  #product-gallery .section-title h2::before {
    width: 15%;
  }
  #gallery .gallery-item img {
    width: 100%;
  }
  section {
    padding: 70px 0;
  }
  #featured .my-masonry-grid,
  #products .my-masonry-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  #featured .my-masonry-grid .my-masonry-grid-item:nth-child(3n+2),
  #products .my-masonry-grid .my-masonry-grid-item:nth-child(3n+2) {
    margin-top: 0;
  }
  #featured .masonry-box .info-box,
  #products .masonry-box .info-box {
    min-height: 100px;
  }
  .my-masonry-grid .my-masonry-grid-item .masonry-box img {
    width: 100%;
  }
  .my-masonry-grid-2 .masonry-grid-item .quality-item img {
    width: 100%;
  }
  #int-banner {
    min-height: 35vw;
  }
  #int-banner div.col-md-5 {
    left: 0;
    right: 0;
  }
  #history,
  #contribution,
  #values {
    padding-top: 100px;
  }
  #history .parallax-bg,
  #contribution .parallax-bg,
  #values .parallax-bg {
    width: 90vw;
    height: 300px;
    top: 90px;
  }
  #values {
    padding-bottom: 215px;
  }
  #values::after {
    bottom: 0;
  }
  #office,
  #factory,
  #form {
    background-size: auto 25%;
  }
  #office .parallax-bg,
  #factory .parallax-bg,
  #form .parallax-bg {
    width: 90vw;
    height: 60vw;
  }
  #form {
    margin-bottom: 100px;
  }
  .csr-slider .slick-arrow.slick-prev {
    left: 10px;
    background: #fafafa url(../img/down-arrow-copy.png) center center no-repeat;
    background-size: auto 24px;
  }
  .csr-slider .slick-arrow.slick-next {
    right: 10px;
    background: #fafafa url(../img/down-arrow.png) center center no-repeat;
    background-size: auto 24px;
  }
  #talent .parallax-bg {
    top: auto;
    bottom: 0;
    width: 80vw;
  }
  #talent .parallax-bg:first-of-type {
    top: 150px;
    bottom: auto;
    width: 80vw;
    height: 350px;
  }
  #talent .info-box h2::before {
    background-size: auto 50%;
  }
  #career-form .btn-submit {
    min-width: 100%;
  }
  .mobile-floating-buttons {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
  }
  .mobile-floating-buttons .btn-whatsApp,
  .mobile-floating-buttons .btn-faq {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
    width: 100%;
  }
  #footer {
    padding-bottom: 50px;
  }
  .footer-info {
    padding-right: 0;
  }
  #hero::before {
    height: 7px;
  }
  .slide {
    padding-top: 100%;
  }
  .slide-bg {
    /*
     * Slightly more overscan on mobile.
     */
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
  }
  .caption {
    width: calc(100% - 30px);
  }
  .caption h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 30px;
  }
  .caption .btn-outline {
    min-width: 140px;
    min-height: 46px;
    padding: 10px 20px;
  }
  .hero-slider .slick-dots {
    bottom: 25px;
    gap: 7px;
  }
  .hero-slider .slick-dots li,
  .hero-slider .slick-dots li button {
    width: 11px;
    height: 11px;
  }
  #about-us .btn-blue {
    margin: auto;
  }
  .my-masonry-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .masonry-grid-column {
    gap: 8px;
  }
  .masonry-grid-column.masonry-grid-column-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .masonry-grid-column.masonry-grid-column-2 {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column-reverse;
  }
  .masonry-grid-column.masonry-grid-column-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .masonry-grid-column.masonry-grid-column-4 {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column-reverse;
  }
  a.button.btn-brown {
    margin-top: 0;
  }
  button:not(.slick-dots button).btn-brown {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 30px;
  }
  body.privacy-policy h2.wp-block-heading,
  body.privacy-policy h3.wp-block-heading {
    font-size: 30px;
  }
  .header-links {
    gap: 15px;
  }
  .caption h1 {
    font-size: 30px;
  }
  .slick-dots li {
    width: 13px;
    height: 13px;
  }
  .slick-dots li button {
    width: 13px;
    height: 13px;
  }
  #about-us .info-box h2 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 26px;
    padding-bottom: 0;
  }
  #product-gallery .section-title h2,
  #products .section-title h2 {
    font-size: 26px;
  }
  .video-banner {
    min-height: 70vw;
  }
  .video-banner .video-trigger {
    width: 80px;
    height: 80px;
  }
  .video-banner .video-trigger::before {
    width: 80px;
    height: 80px;
  }
  .video-banner .video-trigger .play-btn {
    width: 23px;
  }
  #quality .section-title h2::before,
  #gallery .section-title h2::before,
  #product-gallery .section-title h2::before {
    top: -20px;
    width: 20%;
  }
  #gallery {
    padding-bottom: 100px;
  }
  #int-banner {
    min-height: 50vw;
  }
  #talent .parallax-bg:first-of-type {
    height: 300px;
  }
  #product-details {
    padding-bottom: 200px;
  }
  .product-info-box ul li {
    width: 100%;
  }
  .product-thumbnail-box {
    flex-wrap: wrap;
  }
  .product-thumbnail-box .img-box {
    width: calc(50% - 8px);
  }
  .product-msg-box {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .product-related-box h3 {
    font-size: 20px;
  }
  .product-related-box .related-products {
    flex-wrap: wrap;
  }
  .product-related-box .related-products .related-product {
    width: calc(50% - 10px);
  }
  .slide {
    padding-top: 120%;
  }
  .caption h1 {
    font-size: 29px;
  }
  .desktop-break {
    display: none;
  }
  .my-masonry-grid-2 {
    gap: 6px;
  }
  .masonry-grid-column {
    gap: 6px;
  }
}
#wpcf7-f244-o1 {
  width: 100%;
  max-width: 450px;
  margin: auto;
}

input[type=submit] {
  border: none;
  background: #e6e6e6;
  width: 100%;
  padding: 10px 20px;
  line-height: 1.5;
}

#wpcf7-f260-o1 form {
  display: flex;
  flex-wrap: wrap;
}/*# sourceMappingURL=style.css.map */