:root {
  --primary-color: #966e36;
  --secondary-color: #4d7251;
  --card-bg-color: #c3c7ae;
  --body-bg-color: #f2e7d1;
  --bs-btn-active-bg: #966e36;
  --bs-btn-active-border-color:#966e36;
  --dark:#000;
  --white: #fff;
  --radius:10px;
  --radius-sm:4px;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}

::-moz-selection {
  background: var(--primary-color);
  color: #fff;
}

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

li {
  list-style-type: none;
}

body {
  background-color: var(--body-bg-color);
  font-family: "Poppins", sans-serif !important;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: all 0.5s;
}
a:hover {
  color: var(--primary-color);
}

header {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/*
0 - 600: Phone
600 - 900: Tablet portrait
900 - 1200: Tablet landscape
1200 - 1800: Normal styles
1800+ : Big Desktop
1em = 16px
The smaller device rules always should write below the bigger device rules
Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component
*/
.fw-600 {
  font-weight: 600;
}

.font-w500 {
  font-weight: 500 !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

textarea.form-control {
  min-height: 150px;
  resize: none;
}

.rounded {
  border-radius: var(--radius) !important;
}

.btn {
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 5px;
  font-weight: 600;
}
@media only screen and (max-width: 47.9375rem) {
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
}
.btn.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
.btn.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.overlay-1 {
  position: relative;
  z-index: 1;
}
.overlay-1:after {
  position: absolute;
  content: "";
  background-color: var(--dark);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.scroltop {
  background: var(--secondary-color);
  bottom: 1.875rem;
  color: var(--white) !important;
  cursor: pointer;
  display: none;
  height: 3.125rem;
  line-height: 3.125rem;
  margin: 0;
  position: fixed;
  right: 1.875rem;
  text-align: center;
  width: 50px;
  z-index: 999;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 50%;
}

.scroltop:hover i {
  animation: toTopFromBottom 0.8s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.row > * {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media only screen and (max-width: 47.9375rem) {
  .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.main-header .cate-item.dropdown {
  position: relative;
}
.main-header .cate-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.main-header .cate-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .cate-item.dropdown:hover .nav-link {
  color: var(--primary-color);
}
.main-header .logo {
  margin: auto;
  padding-right: 47px;
}
@media only screen and (max-width: 74.9375rem) {
  .main-header .logo {
    margin: unset;
  }
}
.main-header .logo img {
  width: 97px;
  padding: 9px 0;
}
@media only screen and (max-width: 35.9375rem) {
  .main-header .logo img {
    padding: 0px 0;
  }
}
.main-header .navbar-toggler {
  padding: 0;
  border: 0;
}
.main-header .navbar-toggler:focus {
  box-shadow: unset;
}
.main-header .navbar {
  height: 3.75rem;
}
@media only screen and (max-width: 61.9375rem) {
  .main-header .navbar {
    height: auto;
  }
}
.main-header a {
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
}

@media only screen and (max-width: 74.9375rem) {
  .main-header .social-media-mobile {
    padding-left: 1rem;
  }
  .main-header .social-media-mobile ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
  }
  .main-header .social-media-mobile ul li {
    width: 2.188rem;
    height: 2.188rem;
    background-color: var(--secondary-color);
    display: inline-block;
    text-align: center;
    line-height: 2.188rem;
    border-radius: var(--radius-sm);
  }
  .main-header .social-media-mobile ul li a {
    color: var(--white);
  }
  .main-header .mobile-logo img {
    width: 6.25rem;
    margin-bottom: 1.25rem;
  }
  .main-header .menu-content a {
    display: block;
    text-align: left;
    margin: 0.438rem 1rem;
    padding: 0.313rem 0;
    color: #000;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
  }
  .main-header .menu-content a:last-child {
    border-bottom: 0;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 17.5rem;
    height: 100%;
    background: var(--body-bg-color);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .mobile-menu.show {
    transform: translateX(0);
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 35.9375rem) {
  .mobile-menu a {
    font-size: 0.875rem;
  }
  .feature-section .hex-shape svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.footer {
  background: var(--card-bg-color);
  padding: 3.125rem 0 1.25rem;
}
.footer .address-section {
  padding-left: 0;
}
.footer .address-section li {
  display: inline-flex;
}
.footer .address-section li i {
  margin-right: 10px;
  font-size: 1.125rem;
}
.footer .brand-media {
  width: 7.5rem;
  margin-bottom: 1.25rem;
}
.footer .footer-social {
  margin-top: 0.9375rem;
}
.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  margin-right: 0.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.875rem;
}
.footer .footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-0.1875rem);
}

.footer-logo {
  font-weight: 700;
  width: 180px;
}
.footer-logo img {
  width: 100%;
}

.footer-title {
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-family: "Roboto";
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  font-size: 0.875rem;
}
.footer-bottom p {
  margin-bottom: 0;
}

.hero-btn {
  background: #946f3a;
  color: #fff;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 0.3125rem;
  font-weight: 600;
}
@media only screen and (max-width: 47.9375rem) {
  .hero-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
}
.hero-btn:hover {
  background: #946f3a;
  color: #fff;
}

.fassi-media {
  width: 100%;
}
@media only screen and (max-width: 74.9375rem) {
  .fassi-media {
    width: 20%;
  }
}
@media only screen and (max-width: 35.9375rem) {
  .fassi-media {
    width: 50%;
  }
}

.btn-lg {
  padding: 0.625rem 5.4375rem;
}

.spacing {
  padding-left: 4.375rem;
}
@media only screen and (max-width: 74.9375rem) {
  .spacing {
    padding-left: 0;
  }
}

.hero-section {
  height: 32.5rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url("../images/01.jpg");
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  object-position: top;
}
@media only screen and (max-width: 35.9375rem) {
  .hero-section {
    height: 23.9375rem;
  }
}
.hero-section .hero-content {
  color: #fff;
}
.hero-section .hero-content h1 {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (max-width: 35.9375rem) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-section .hero-content p {
  font-size: 1.125rem;
  margin: 0.9375rem 0;
  max-width: 25rem;
}
@media only screen and (max-width: 35.9375rem) {
  .hero-section .hero-content p {
    font-size: 1rem;
  }
}
.hero-section .hero-content h6 {
  font-size: 1rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.9375rem;
}

.feature-section {
  padding: 3.75rem 0;
  padding-top: 6.25rem;
}
@media only screen and (max-width: 35.9375rem) {
  .feature-section {
    padding-top: 3.125rem;
  }
}
.feature-section .padding-separetor {
  padding-left: 4.375rem;
}
.feature-section .feature-card {
  background: var(--card-bg-color);
  padding: 1.5625rem 1.1875rem;
  border-radius: 1.25rem;
  transition: 0.3s;
  border: 0.125rem solid var(--primary-color);
  position: relative;
  height: -webkit-fill-available;
  cursor: pointer;
}
@media only screen and (max-width: 47.9375rem) {
  .feature-section .feature-card {
    margin-bottom: 3.625rem;
  }
}
.feature-section .feature-card:hover {
  transform: translateY(-0.3125rem);
}
.feature-section .feature-card h5 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
  margin-top: 2.125rem;
}
.feature-section .feature-card h5 a {
  color: var(--dark);
}
@media only screen and (max-width: 74.9375rem) {
  .feature-section .feature-card h5 {
    font-size: 1.125rem;
  }
}
.feature-section .feature-card p {
  font-size: 0.8125rem;
  color: var(--dark);
  margin-bottom: 0;
  font-weight: 600;
}
.feature-section .icon-box {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 0.9375rem;
  background: linear-gradient(145deg, #caa56c, #b89358);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.5rem;
  color: #fff;
}
.feature-section .hex-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -153%);
  background-image: url("../images/icon/shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 76px;
  height: 89px;
  line-height: 88px;
}
@media only screen and (max-width: 35.9375rem) {
  .feature-section .hex-shape {
    transform: translate(-50%, -144%);
  }
}

.brand-section {
  padding: 3.75rem 0;
}
@media only screen and (max-width: 61.9375rem) {
  .brand-section {
    padding: 1.875rem 0;
  }
}
.brand-section .brand-subtitle {
  font-size: 1rem;
  background: var(--primary-color);
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border-radius: 1.875rem;
  color: #fff;
  margin-bottom: 0.875rem;
}
.brand-section .section-title {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 35.9375rem) {
  .brand-section .section-title {
    font-size: 1.5rem;
  }
}
.brand-section .product-main-img {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand-section .product-box {
  border: 0.125rem solid var(--primary-color);
  border-radius: 1.25rem;
}
@media only screen and (max-width: 74.9375rem) {
  .brand-section .product-box {
    width: 43%;
  }
}
@media only screen and (max-width: 35.9375rem) {
  .brand-section .product-box {
    width: 100%;
  }
}
.brand-section .product-box img {
  width: 100%;
}
.brand-section .connector img {
  width: 34%;
  position: absolute;
  left: 29%;
  top: 0.875rem;
}
@media only screen and (max-width: 74.9375rem) {
  .brand-section .connector img {
    display: none;
  }
}

.gold-text {
  color: var(--primary-color);
  font-size: 1.875rem;
  font-weight: 600;
}
@media only screen and (max-width: 35.9375rem) {
  .gold-text {
    font-size: 1.25rem;
  }
}

.content-inner {
  text-align: center;
  max-width: 31.25rem;
  margin: auto;
}
.content-inner.style-1 {
  text-align: left;
  margin: unset;
}

.page-wapper {
  background-image: url("../images/02.jpg");
  width: 100%;
  height: 21.875rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-wapper:after {
  content: "";
  position: absolute;
  background-color: var(--dark);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}

.page-content {
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--white);
}

.breadcrumb {
  margin: 0;
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius);
  backdrop-filter: blur(0.1875rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.breadcrumb li {
  color: var(--white);
  font-size: 0.875rem;
}

.breadcrumb li a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.5rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

.product-card .product-header {
  border: 0.0625rem solid var(--primary-color);
  border-radius: var(--radius);
  margin-bottom: 0.625rem;
}
.product-card .product-header img {
  width: 100%;
}
.product-card .title {
  font-size: 1.25rem;
  font-weight: 600;
}
.product-card .product-body .product-body-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.product-card .product-body .product-body-bottom img {
  width: 5rem;
}
.product-card .product-body .product-body-bottom h6 {
  font-size: 1rem;
  margin-bottom: 0;
}
.product-card .product-footer {
  border-top: 0.0625rem solid var(--primary-color);
}
.product-card .product-footer .product-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .product-footer .product-footer-bottom img {
  width: 5rem;
}
.product-card .product-footer .product-footer-bottom h6 {
  font-size: 1rem;
  margin-bottom: 0;
}

@media only screen and (max-width: 61.9375rem) {
  .product-card {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .product-card .product-body .product-body-bottom h6,
  .product-card .product-footer .product-footer-bottom h6 {
    font-size: 1rem;
  }
  .product-card .title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 35.9375rem) {
  .page-title {
    font-size: 1.625rem;
  }
  .page-wapper {
    height: 15.625rem;
  }
  .product-detail-media img {
    margin-bottom: 1.25rem;
  }
  .btn-lg {
    padding: 0.625rem 1.25rem;
    display: block;
  }
}
.product-detail-media img {
  width: 100%;
}

.produc-details-right h2 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 35.9375rem) {
  .produc-details-right h2 {
    font-size: 18px;
  }
}
.produc-details-right h3 {
  font-size: 24px;
}
@media only screen and (max-width: 35.9375rem) {
  .produc-details-right h3 {
    font-size: 20px;
  }
}
.produc-details-right .benefits-list li {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  list-style-type: disc;
}
.produc-details-right .strock {
  margin-bottom: 14px;
}
.produc-details-right .strock span {
  font-size: 1rem;
}
.produc-details-right .exprirs-box {
  display: block;
}
.produc-details-right .media-img {
  width: 100px;
}
.produc-details-right .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.produc-details-right .product-table td {
  padding: 8px;
  border-bottom: 1px solid var(--primary-color);
}
.produc-details-right .product-table td:first-child {
  width: 40%;
  color: var(--dark);
}
.produc-details-right .product-table td:last-child {
  color: var(--dark);
}

.product-accordion .accordion-button {
  background-color: #c3c7ae;
  color: var(--secondary-color);
  font-weight: 500;
}
.product-accordion .accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234d7251' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.product-accordion .accordion-button:focus {
  box-shadow: unset;
}
.product-accordion .accordion-body {
  background-color: var(--card-bg-color);
  font-size: 0.9rem;
}

iframe {
  display: block;
}

.contact-left-box .contact-item {
  display: flex;
  align-items: start;
  border-bottom: 0.0625rem dashed #888;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
.contact-left-box .contact-item:last-child {
  border-bottom: 0;
}
.contact-left-box .contact-item .contact-icon {
  width: 3.125rem;
  height: 3.125rem;
  min-width: 3.125rem;
  margin-right: 1rem;
  border: 0.125rem solid var(--primary-color);
  display: inline-block;
  text-align: center;
  line-height: 3.125rem;
  border-radius: var(--radius);
  background-color: var(--card-bg-color);
}
@media only screen and (max-width: 35.9375rem) {
  .contact-left-box .contact-item .contact-icon {
    line-height: 2.75rem;
  }
}
.contact-left-box .contact-item .contact-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3125rem;
}
@media only screen and (max-width: 35.9375rem) {
  .contact-left-box .contact-item .contact-content h3 {
    font-size: 1.125rem;
  }
}
.contact-left-box .contact-item .contact-content p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.contact-right-box .sub-heading {
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  display: block;
}
.contact-right-box .sub-heading:after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  top: 1.625rem;
  left: 0;
  width: 5.25rem;
  height: 0.125rem;
}
.contact-right-box .form-control {
  height: 3rem;
  border-radius: var(--radius);
  border: 0.0625rem solid var(--primary-color);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
}
.contact-right-box .form-control:focus {
  box-shadow: unset;
}

.faq-item {
  display: flex;
  gap: 1.875rem;
  padding: 1.875rem 0;
  border-top: 0.0625rem dashed var(--primary-color);
}
@media only screen and (max-width: 35.9375rem) {
  .faq-item {
    gap: 0.375rem;
    padding: 1.25rem 0;
  }
}
.faq-item:first-child {
  border: 0;
}
@media only screen and (max-width: 74.9375rem) {
  .faq-item:first-child {
    border-top: 0.0625rem dashed var(--primary-color);
  }
}

.faq-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
  min-width: 3.75rem;
}
@media only screen and (max-width: 35.9375rem) {
  .faq-number {
    font-size: 1.5rem;
    min-width: 2.5rem;
  }
}

.faq-content h4 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 35.9375rem) {
  .faq-content h4 {
    font-size: 1.3125rem;
    overflow: visible;
    -webkit-box-orient: horizontal;
  }
}
.faq-content p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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