/*
* Template Name: UntreeStore
* Template Author: Untree.co
* Author URI: https://untree.co/
* License: https://creativecommons.org/licenses/by/3.0/
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300&family=Poppins:wght@400;500&family=Roboto+Slab:wght@300;400;500&family=Roboto:wght@700&display=swap');

body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #6a6a6a;
  font-size: 14px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #2f2f2f;
  cursor: pointer;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

a.more {
  font-weight: 600;
}
ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background-Header) !important;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 100;
}

/*=============== NAV ===============*/

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--color-Header);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: 600;
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin-top: 3px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;

  }
  .nav__list li{
    padding: 10px;
  }
  .product-header{
    display: none; 
  }
  .nav__link{
    width: fit-content;
    color: var(--text-color) !important;
    text-shadow: none !important;
  }
  .icon-header{
    width: 70% !important;
  }
  .nav{
    width: 30% !important;
  }
}
.nav__link {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-Header);
  padding-right: 0 !important;
  padding-left: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Show menu */
.show-menu {
  opacity: 1;
  top: 4rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}
.nav-link .seacrh-svg {
  width: 24px;
  height: 24px;
}
.icon-header{
  display: flex;
  align-items: center;
  justify-content: right;
  width: 13%;
}
/*=============== DROPDOWN ===============*/

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  color: var(--text-color) !important;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: 600;
  transition: background-color .3s;
  position: relative;
  width: fit-content;
}
.dropdown__menu{
  padding-left: 2rem;
  padding-top: 0.7rem;
}
.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: hsl(220, 20%, 18%);
}
.nav{
  width: 87%;
}
.headeri{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__list li a:before,
.dropdown__link:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background: var(--main-color);
  height: 2px;
  opacity: 1;
  visibility: visible;
  width: 0;
  -webkit-transition: .15s all ease-out;
  -o-transition: .15s all ease-out;
  transition: .15s all ease-out;
}
.nav__list li a:after,
.dropdown__link::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -11px;
  background: var(--main-color);
  opacity: 1;
  visibility: visible;
  width: 0;
  -webkit-transition: .15s all ease-out;
  -o-transition: .15s all ease-out;
  transition: .15s all ease-out;
}
.nav__list li a:hover,
.dropdown__link:hover {
  opacity: 1;
}

.nav__list li a:hover:before,
.dropdown__link:hover::before {
  width: calc(100% - 0px);
}

.nav__list li a:hover:after,
.dropdown__link:hover::after {
  width: 6px;
  height: 6px;
}

.nav__listli.active a,
.active .dropdown__link{
  opacity: 1;
}

.nav__list li.active a:before,
.active .dropdown__link::before {
  width: calc(100% - 0px);
}

.nav__list li.active a:after,
.active .dropdown__link::after {
  width: 6px;
  height: 6px;
}
.nav-item{
  position: relative;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {

  .nav__link {
    padding-inline: 1rem;
  }
}
.nav__toggle {
  position: relative;
width: 32px;
height: 32px;
}
/* For large devices */
@media screen and (min-width: 1118px) {
  .dropdown__item{
    display: none;
    cursor: pointer; 
  }
  .container {
    margin-inline: auto;
  }

  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 1.7rem;
    align-items: center;
    margin-bottom: 0;
  }
  .nav__link {
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}
.hero {
  padding: calc(4rem - 30px) 0 0rem 0;
}

.carousel {
  background-size: cover;
  height: 950px;
  overflow: hidden;
  min-height: 600px;
}

@media (min-width: 768px) {
  .hero {
    padding: calc(4rem - 30px) 0 4rem 0;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: calc(8rem - 30px) 0 8rem 0;
  }
}



@media (min-width: 992px) {
  .hero .intro-excerpt1 {
    position: absolute;
    top: 30%;
    left: 3%;
    width: calc(36.4%);
  }

  .hero .intro-excerpt2 {
    width: 100%;
    height: 100%;
    text-align: center;
  }
}

.logo-kast {
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  justify-content: space-between;
}

.backgroundi {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(20, 20, 20, 0.50);
  top: 0;
  z-index: 0;
}

.hero h1 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.intro-excerpt1 h1,
.intro-excerpt2 h1 {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 1;
  position: relative;
}

.intro-excerpt1 p {
  color: #FFF;
  text-align: justify;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 1400px) {
  .hero h1 {
    font-size: 54px;
  }
}

.hero p {
  color: #FFF;
  text-align: justify;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
}

.btn {
  font-weight: 600;
  padding: 10px 23px;
  border-radius: 10px;
  color: #ffffff;
  background: #2f2f2f;
  border-color: #2f2f2f;
}

.btn:hover {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
}

.btn:active,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.btn-primary {
  background: #3b5d50;
  border-color: #3b5d50;
}

.btn.btn-secondary {
  border-radius: 10px;
  background: var(--main-color);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  border: none;
  font-size: 14px;
}

.tns-outer {
  position: relative;
}

.tns-nav {
  position: absolute;
  bottom: 3px;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.tns-nav-active {
  background-color: var(--main-color) !important;
  border: none !important;
}

.tns-nav button {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 7px;
}

.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.btn-white-outline:hover {
  border-color: white;
  color: #ffffff;
}

.section-title {
  color: var(--main-color);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product-section {
  padding: 7rem 0;
}

.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 120px;
  cursor: pointer;
  border: 2px solid #EEEDED;
  background: #FFF;
}

.product-section .product-item .product-thumbnail {
  margin-bottom: 40px;
  position: relative;
  top: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  width: 100%;
  height: 412px;
  object-fit: contain;
}

.product-section .product-item h3 {
  color: var(--main-color) !important;
  text-align: center;
  font-size: 2.5em;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-name{
  height: 140px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-section .product-item strong {
  font-weight: 800 !important;
  font-size: 18px !important;
}

.product-section .product-item h3,
.product-section .product-item strong {
  color: #2f2f2f;
  text-decoration: none;
}

.feature {
  margin-bottom: 30px;
}

.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.feature .icon:before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  background: rgba(59, 93, 80, 0.2);
  border-radius: 50%;
  right: -8px;
  bottom: 0;
}

.feature h3 {
  font-size: 14px;
  color: #2f2f2f;
}

.feature p {
  font-size: 14px;
  line-height: 22px;
  color: #6a6a6a;
}

.custom-list {
  width: 100%;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #3b5d50;
  position: absolute;
  left: 0;
  top: 8px;
}


.before-footer-section {
  padding: 7rem 0 12rem 0 !important;
}

.blog-section {
  padding: 60px 60px;
  padding-top: 0;
}

.blog-section .post-entry a {
  text-decoration: none;
}

.blog-section .post-entry .post-thumbnail {
  display: block;
}

.blog-section .post-entry .post-thumbnail img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.hover-catalogue{
  display: none;
}
.blog-section .post-entry:hover .post-thumbnail img,
.blog-section .post-entry:focus .post-thumbnail img {
  opacity: .7;
}
.blog-section .post-entry:hover .hover-catalogue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(53, 52, 52, 0.59);
}
.blog-section .post-entry .hover-catalogue h1 {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  bottom: 12px;
}
.image-category{
  max-height: 225px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.footer-section {
  padding: 50px 0;
  background: linear-gradient(95deg, var(--background-Footer) 0.12%, var(--background-Footer) 95.95%);
  overflow: hidden;
}

.footer-section .relative {
  position: relative;
}
.logos-footer{
  display: none;
}
.revesrs{
  display: flex;
  align-items: center;
}
.footer-section .subscription-form {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
.flexii{
  display: flex;
}
@media (max-width: 1400px) {
  .flexii{
  display: block;
}
}
@media (min-width: 992px) {
  .footer-section .subscription-form {
    margin-top: 0px;
    margin-bottom: 80px;
  }
}

.footer-section .subscription-form h3 {
  font-size: 18px;
  font-weight: 500;
  color: #3b5d50;
}

.footer-section .subscription-form .form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}

.footer-section .subscription-form .form-control:active,
.footer-section .subscription-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #3b5d50;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.list-unstyled li a span {
  color: var(--text-FooterColor);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 5px;
}

.list-unstyled li a svg {
  width: 13px;
  height: 13px;
  margin-top: -4px;
}

.description-footer h4 {
  color: var(--text-FooterColor);
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.description-footer p {
  color: var(--text-FooterColor);
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.social-footer {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
}

.social-footer img {
  height: 24px;
}
.blocki{
  display: none;
}
.bottom-footer li {
  border-right: 1px solid var(--text-FooterColor);
  height: 25px;
  line-height: 25px;
}
.sss{
  width: 100%;
}
.bottom-footer li a {
  color: var(--text-FooterColor);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 34px;
}

.footer-section .subscription-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.footer-section .subscription-form .form-control::-moz-placeholder {
  font-size: 14px;
}

.footer-section .subscription-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}

.footer-section .subscription-form .form-control:-moz-placeholder {
  font-size: 14px;
}

.footer-section .subscription-form .btn {
  border-radius: 10px !important;
}

.footer-section .links-wrap {
  margin-top: 0px;
}

@media (min-width: 992px) {
  .footer-section .links-wrap {
    margin-top: 54px;
  }
}

.footer-section .links-wrap ul li {
  margin-bottom: 10px;
}


.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
}

.footer-section .custom-social li a {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  display: inline-block;
  background: var(--text-FooterColor);
}

.footer-section .custom-social li a span {
  margin: 0 !important;
  color: var(--main-color);
}

.footer-section .border-top {
  border-color: #dce5e4;
}

.footer-section .border-top.copyright {
  font-size: 14px !important;
}

.untree_co-section {
  padding: 7rem 0;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #3b5d50;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.form-control::-moz-placeholder {
  font-size: 14px;
}

.form-control:-ms-input-placeholder {
  font-size: 14px;
}

.form-control:-moz-placeholder {
  font-size: 14px;
}

.service {
  line-height: 1.5;
}

.service .service-icon {
  border-radius: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #3b5d50;
  margin-right: 20px;
  color: #ffffff;
}

textarea {
  height: auto !important;
}

.site-blocks-table {
  overflow: auto;
}
.couponcode-wrap input {
  border-radius: 10px !important;
}

.text-primary {
  color: #3b5d50 !important;
}

.thankyou-icon {
  position: relative;
  color: #3b5d50;
}

.thankyou-icon:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 93, 80, 0.2);
}

.banner {
  background: #F5F5F5;
  margin-top: 60px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerdest{
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 200px;
}
.bannerdest h1{
  color: var(--main-color);
  font-size: calc(1rem + 1.5vw);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 80px;
  text-align: center;
}
.bannier {
  display: flex;
  justify-content: center;
}

.bannier .image-banner img {
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  object-fit: cover;
  box-shadow: 8px 8px 19px 0px rgba(0, 0, 0, 0.25);
  max-height: 310px;
  min-height: 300px;
}

.bannier .description-banner {
  display: flex;
  justify-content: left;
  align-items: baseline;
  flex-direction: column;
  margin-left: 45px;
}
.bannerdest .bannier .description-banner span{
  color: var(--text-color);
  text-align: justify;
  font-size: calc(18px + 4px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bannier .description-banner h1 {
  color: var(--main-color);
  font-size: calc(1rem + 1.5vw);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.bannier .description-banner span {
  color: var(--text-color);
  text-align: justify;
  font-size: calc(13px + 4px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

.animation {
  height: 340px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.newslatter {
  margin-top: 100px;
  margin-bottom: 150px;
}

.news {
  background: #FFF;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.06);
  padding: 32px 100px;
}

.news h1 {
  color: var(--text-color);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.news span {
  color: var(--main-color);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.news .form-control {
  border-radius: 5px;
  border: 1px solid #FFD4AD;
  background: #FFF;
  height: 43px;
  margin-bottom: 13px;
}

.news-option {
  display: flex;
  flex-direction: column;
}

.op2 {
  display: flex;
  justify-content: space-between;
}

.op2 select {
  width: calc(53% - 0px);
  height: 43px;
  border-radius: 5px;
  border: 1px solid #FFD4AD;
  background: #FFF;
  color: var(--text-color);
  font-size: 13px;
  text-align: center;
}

.op2 button {
  width: 161px;
  height: 44px;
  border-radius: 5px !important;
  font-size: 14px;
  box-shadow: none !important;
  margin-right: 0 !important;
}

.btni {
  background: transparent;
  border: none;
  padding: .5rem .5rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content,
.dropdown-content1,
.dropdown-content2,
.dropdown-content3
 {
  display: none;
  position: absolute;
  width: 300px;
  z-index: 1;
  border-radius: 2px;
  background: rgba(40, 35, 28, 0.52);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  right: 0;
  top: 58px;
  padding: 15px;
}

.login-drop,
.login-drop1,
.login-drop2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-drop span,
.login-drop1 span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}

.login-drop input,
.login-drop1 input {
  border-radius: 5px;
  border: 0.3px solid #FFF;
  margin-bottom: 7px;
  background: transparent;
  color: #fff;
  opacity: 0.8;
  outline: none;
}
.login-drop2 h1{
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.login-drop2 p{
  color: #FFF;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 10px;
cursor: pointer;
width: 170px;
}
.login-drop2 p:hover{
border-bottom: 1px solid #fff;
}
.dropdown-content a,
.dropdown-content1 a{
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show,
.show1,
.show2,
.show3 {
  display: block;
}

.little-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
}
.hover-little-cart{
  border-bottom: none;
  padding: 5px 10px;
}

.hover-little-cart:hover{
  background-color: var(--main-color);
}
.little-cart span{
  color: var(--text-color);
text-align: justify;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 3px;
}

.little-cart i{
  color: red;
font-size: 13px;
margin-left: 10px;
cursor: pointer;
}
.dropdown-content .btn-little-cart{
  margin: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
.dropdown-content a{
  color: #fff !important;
  width: 110px;
  height: 35px;
  line-height: 12px;
  margin-top: 5px;
  margin-right: 0 !important;
}

.banner1 {
  width: 100%;
  display: flex;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 95px 50px;
}

.banner1-text {
  margin-top: 30px;
}

.banner1-text h1 {
  color: var(--main-color);
  font-size: calc(1rem + 1.5vw);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.banner1-text p {
  color: var(--text-color);
  text-align: justify;
  font-size: calc(13px + 2px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner1-images {
  display: flex;
  justify-content: center;
}

.banner1-images img {
  margin-right: 15px;
  height: 568px;
}

.banner1-images .img2,
.banner1-images .img4 {
  margin-top: 80px;
}

.bigUserDiv,
.bigUserDiv1,
.bigUserDiv2{
  position: fixed;
  inset: 0;
  background-color: rgb(0, 0, 0, .45);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 99;
}

.userDiv,
.userDiv1,
.userDiv2,
.userDiv3 {
  width: 80%;
  border-radius: 37px;
  background: rgba(255, 255, 255, 0.91);
  padding: 40px;
  position: relative;
}

.userDivResp {
  background-color: unset;
  width: unset;
  padding: 0 30px;
  padding-top: 10px;
  overflow-y: auto;
}

.inscription {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formulaire-ins {
  width: 32%;
  display: flex;
  flex-direction: column;
}

.formulaire-ins span {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.formulaire-ins input {
  border-radius: 5px;
  border: 1px solid var(--main-color);
  width: 100%;
  height: 43px;
  margin-bottom: 10px;
  outline: none;
  padding-left: 10px !important;
  padding: 5px;
  color: var(--text-color);
  font-size: 15px;
}

.button-inscription {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 15px;
  height: 58px;
  align-items: center;
}
.title-commande, .title-commande1{
  display: flex;
  align-items: center;
}
.title-commande p{
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: var(--main-color);
  margin-right: 1px;
}
.title-commande1 p{
  color: var(--text-color);
  text-align: justify;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.all-commande, 
.all-commande1 {
  display: flex;
  align-items: center;
}
.one-commande{
  display: flex;
  flex-direction: column;
  padding-top: 15px !important;
  padding-right: 10px;
}
.one-commande1{
  display: flex;
  flex-direction: column;
  padding-top: 15px !important;
  padding-right: 10px;
}
.one-commande p{
  margin-bottom: 8px;
  color: var(--text-color);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.one-commande1 p,
.one-commande1 span{
  color: var(--text-color);
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}
.one-commande1 i{
  color: red;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
}
.total-cart{
  width: 40%;
  float: right;
  margin-top: 25px;
  margin-bottom: 30px;
}
.left-total{
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(0, 0, 0, 0.27);
padding-right: 30px;
padding-top: 12px;
padding-bottom:12px ;
}
.left-total p{
  color: rgba(90, 90, 90, 0.51);
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin: 0;
}
.left-total span{
  color: var(--text-color);
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.why-choose-section {
  margin-top: 120px;
}

.why-choose-section img {
  width: 480px;
  height: 480px;
}

.why-choose-section p {
  color: var(--text-color);
  text-align: justify;
  font-size: calc(13px + 4px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.why-choose-section .bb {
  width: 100%;
  text-align: center;
}

.banner-entreprise {
  height: 870px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 300px 0 300px 0;
  margin-top: -100px;
}
.service{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px;
}
.bloge1{
  width: 50%;
  margin-left: 20px;
}
.banner-entre {
  width: 100%;
  background: #F5F5F5;
}

.banner-entre1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px;
  height: 460px;
}

.banner-entre h1 {
  color: var(--main-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}

.banner-entre p {
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.image-entre {
  width: 100%;
  height: 100%;
  text-align: right;
}

.banner-entre img {
  width: 452px;
  height: 467px;
}

.service {
  margin-bottom: 100px;
}

.support {
  display: flex;
  justify-content: center;
  background: #F5F5F5;
}

.support img {
  width: 300px;
  height: 273px;
}

.description-support {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.description-support h1 {
  color: var(--main-color);
  font-size: calc(0.5rem + 1vw);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.description-support span {
  color: var(--text-color);
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.description-support a {
  color: var(--main-color) !important;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-detail {
  padding-top: 100px;
  padding-bottom: 100px;
}
.product-slider {
  display: flex;
}

.big-image {
  flex: 1;
  border-radius: 20px;
  height: 610px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-width: 425px !important;
  border: 1px solid #DBD9D9;
}
.big-image .product_images img {
  width: 374px;
  height: 374px;
}
.small-images {
  height: 610px;
  overflow: scroll;
  padding-right: 10px;
  margin-left: 20px;
  padding-top: 2px;
  width: 210px;
}
.product_images{
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.smal1 {
  border-radius: 20px;
  height: 192px !important;
  width: 192px !important;
  border: 1px solid #DBD9D9;
  margin-bottom: 10px;
}

/* Slick slider styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

/* Additional styles for navigation arrows, etc. */

.description-details h1 {
  color: var(--main-color);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 35px;
}

.description-details p {
  color: var(--text-color);
  text-align: justify;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-right: 20px;
}
.product-available{
  color: var(--main-color) !important;
  margin-bottom: 24px;
  font-size: 16px !important;
}
.option-detail {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}

.variant1 {
  display: flex;
  flex-direction: column;
}

.variant1 h1 {
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.check-variant {
  display: flex;
  justify-content: left;
}

.telecharger {
  width: 100%;
  border-radius: 13px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 12px 12px 16px 22px;
}

.telecharger h1 {
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.telecharger span {
  color: var(--text-color);
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  text-transform: capitalize;
}

.telecharger svg {
  margin-right: 5px;
  width: 10px;
  height: 13px;
}

.labell {
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 25px;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
}

.checkmark1 {
  position: absolute;
  top: 0;
  left: 0;
}

/* Hide the browser's default radio button */
.labell input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.labell input:checked~.checkmark,
.labell input:checked~.checkmark1 {
  border-radius: 3px;
  border: 0.5px solid var(--main-color);
  width: 50px;
  height: 25px;
}

.checkmark:after,
.checkmark1:after {
  content: "";
  position: absolute;
  display: none;
}

.labell input:checked~.checkmark:after .labell input:checked~.checkmark1:after {
  display: block;
}

.quantitéé {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 15px;
}
.quantitéé input[type="number"]{
  width: 45px;
  text-align: center;
  border: none;
  background: transparent;
  outline: none;
}
.quantitéé span {
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 10px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}

.qty_detail {
  width: 66px;
  height: 35px;
  border-radius: 3px;
  border: 0.5px solid var(--main-color);
  color: var(--text-color);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 40px;
  display: flex;
  align-items: center;
  position: relative;
}
.qty_detail .step{
  background: transparent;
  border: none;
  height: 60%;
  position: absolute;
}
.grand-contact{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.detail-contact, .form-contacti{
width: 50%;
}

.description-contact{
  width: 57%;
  text-align: center;
  margin: 60px auto;
}
.description-contact span{
  color: var(--text-color);
text-align: center;
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.news1 {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  border-right: 1px solid var(--main-color);
}
.news1 span{
  color: var(--main-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.news1 input{
  border-radius: 5px;
  border: 1px solid #FFD4AD;
  background: #FFF;
  height: 43px;
  width: 77%;
  margin-bottom: 10px;
}
.news1 textarea{
  width: 77% !important;
  border-radius: 5px;
  border: 1px solid #FFD4AD;
  background: #FFF;
  height: 200px !important;
}
.detail-contact{
padding-left: 70px;
}
.detail-contact h1{
  color: var(--main-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 17px;
}
.detail-contact img{
  width: 16px;
height: 16px;
margin-right: 13px;
}
.detail-contact a{
color: var(--text-color);
text-align: justify;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
padding-left: 40px;
}
.detail-contact svg{
  width: 24px;
height: 15px;
margin-right: 13px;
vertical-align: baseline;
}

.section-Ratiat{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0px 130px 0px;
  border-bottom: 1px solid var(--main-color);
}
.section-Ratiat .image-ratiat{
  width: 30%;
  height: calc(100% - 0px);
  margin-right: 80px;
}
.section-Ratiat .image-ratiat img{
  width: 400px;
height: 400px;
background: #D9D9D9;
}
.section-Ratiat .text-ratiat{
  display: flex;
  flex-direction: column;
  width: 65%;
}
.section-Ratiat .text-ratiat h1{
  color: var(--main-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.section-Ratiat .text-ratiat p{
  color: var(--text-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.section-Ratiat .text-ratiat img{
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.section-Ratiat .text-ratiat svg{
  width: 13px;
  height: 18px;
  margin-right: 15px;
}
.banner-text-distributeur{
  padding: 160px 120px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-text-distributeur span{
  color: var(--text-color);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search-distr{
  position: absolute;
  z-index: 8;
  background: rgba(255, 122, 0, 0.92);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 20%;
  left: 4%;
}
.search-distr h1{
  color: #FFF;
  text-align: justify;
  font-size: 31.5px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.search-distr input{
  background: transparent;
  color: #fff;
  outline: none;
  position: relative;
  border-radius: 10px;
  border: 1px solid #FFF;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  height: 42px;
  width: 100%;
  padding: 0 12px;
}
.search-distr input::placeholder{
  color: #fff;
}
.search-distr button{
  position: absolute;
  right: 7%;
  border: none;
  background: none;
  color: #fff;
  font-size: 18px;
  top: 47%;
  border-left: 1px solid #fff;

}
.search-distr select{
  width: 100%;
  border-radius: 10px;
  border: 1px solid #FFF;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  background: transparent;
  color: #fff;
  padding: 0 12px;
  outline: none;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: var(--main-color);
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

.drag {
  cursor: move;
}

.dragElm {
  opacity: 0.4;
  z-index: 9999;
}

.draggable-source--is-dragging {
  opacity: 0.4;
  z-index: 1;
}

.draggable-mirror {
  z-index: 999;
  box-shadow: 0 0.4rem 3rem #000;
  background-color: #fff;
}

/* --------------------------------loader --------------------------*/

/* --------------------------------loader --------------------------*/
.ldld.full::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
}

.ldld.default::before,
.ldld.full::before,
.ldld.ldbtn::before,
.ldld.bare::before {
  content: " ";
  display: block;
  background: 0;
  animation: ldld-default 0.5s ease-in-out infinite;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
}

.ldld.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.ldld.running {
  visibility: visible;
  opacity: 1;
}

.ldld {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

@keyframes ldld-default {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* Loader styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 100001;
  opacity: 1;
  transition: opacity 0.5s;
}

.loader_two {
  --sizeLoader: 60px;
  --sizeLoaderHalf: calc(var(--sizeLoader) / 2);
  --stepBtf: calc(var(--sizeLoader) / 10);
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: var(--sizeLoader);
  height: var(--sizeLoader);
  top: 50%;
left: 50%;
}

.loader_two:hover {
  cursor: progress;
}

.loader {
  max-width: 15rem;
  width: 100%;
  height: auto;
  stroke-linecap: round;
}

circle {
  fill: none;
  stroke-width: 3.5;
  animation-name: preloader;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 170px 170px;
  will-change: transform;
}

circle:nth-of-type(1) {
  stroke-dasharray: 550px;
}

circle:nth-of-type(2) {
  stroke-dasharray: 500px;
}

circle:nth-of-type(3) {
  stroke-dasharray: 450px;
}

circle:nth-of-type(4) {
  stroke-dasharray: 300px;
}

circle:nth-of-type(1) {
  animation-delay: -0.15s;
}

circle:nth-of-type(2) {
  animation-delay: -0.3s;
}

circle:nth-of-type(3) {
  animation-delay: -0.45s;
}

circle:nth-of-type(4) {
  animation-delay: -0.6s;
}

@keyframes preloader {
  50% {
    transform: rotate(360deg);
  }
}
#flDebugTemplatePanel-content{
  overflow: scroll;
}
.cart-summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  /* Pagination styles */
  .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin-top: 20px;
  }

  .pagination li {
    margin: 0 5px;
  }

  .pagination li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
  }
  .pagination .active a {
    color: #ff8000;
  }

  .carouselContent{
    width: 100%;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    margin: auto;
    padding-top: 8rem;
  }
  .name-carousel{
    max-width: 700px;
    margin-bottom: 20px;
  }
  .desc-carousel{
    max-width: 600px;
    border-top: 3px solid #fff;
  padding-top: 30px;
  }
  .desc-carousel h3{
    color: var(--text-CollectionColor);
  text-align: justify;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: var(--text-CollectionSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
  }
  .name-carousel span{
  font-size: var(--title-CollectionSize);
  font-weight: 600;
  color: var(--title-CollectionColor);
  text-transform: capitalize;
  line-height: 66px;
    }
    @media (max-width: 1300px) {
    .product-slider{
      flex-direction: column;
    }
    .big-image{
      max-width: 100% !important;
      height: 500px;
      flex: auto;
      margin-bottom: 20px;
    }
    .small-images{
      width: 100%;
      padding: 0 !important;
      margin: 0 !important;
      height: auto;
      display: flex;
    }
    .smal1{
      margin-bottom: 0;
      margin-right: 10px;
    }

    }
  @media (max-width: 1199px) { 
    .image-category{
      max-height: 185px;
    }
    .product-section .product-item .product-thumbnail {
      height: 300px;
    }
    .blog-section .post-entry .hover-catalogue h1{
      font-size: 1em;
    }
    .email-suub{
      width: 75% !important;
    }
    .name-carousel span{
      font-size: 36px;
  }
  .carouselContent{
    padding-top: 11rem !important;
  }
  .name-carousel{
    max-width: 600px;
  }
  .carousel{
    height: auto;
  }

  .smal1 {
    height: 182px !important;
    max-width: 182px !important;
    min-width: 182px !important;
  }
  .userDiv3{
    width: 100%;
  }
  .title-commande1 p{
    font-size: 20px;
  }
  .service{
    flex-direction: column;
  }
  .bloge1{
    width: 100%;
    margin-bottom: 40px;
  }
  .description-support span{
    font-size: 21px;
  line-height: 36px;
  }
  .banner1-images img{
    height: 430px;
  }
  .intro-excerpt1 h1, .intro-excerpt2 h1{
    font-size: 40px;
  }
  .product-section .product-item h3{
    font-size: 1.8em;
  }
  .section-Ratiat{
    padding: 130px 0px 81px 0px;
  }
  .section-Ratiat .image-ratiat{
    width: 35%;
  }
  .section-Ratiat .image-ratiat img{
    width: 330px;
  height: 330px;
  }
  .section-Ratiat .text-ratiat{
    width: 59%;
  }
  .section-Ratiat .text-ratiat h1{
    font-size: 30px;
  }
  .section-Ratiat .text-ratiat p{
    font-size: 15px;
  }
  }
@media (max-width: 991px) {
  .image-category{
    max-height: 245px;
  }
  .loader_two{
    top: 44% ;
    left: 44%;
  }
  .product-section .product-item h3 {
    font-size: 2em;
  }
  .blog-section .post-entry .hover-catalogue h1{
    font-size: 1em;
  }
  .email-suub{
    width: 90% !important;
  }
  .carouselContent{
    padding: 7rem 2rem 2rem 2rem !important;
  }

  .hero{
    padding: 0;
    padding-top: 30px;
  }
  .carousel{
    min-height: 500px;
  }
  .big-image{
    height: 800px;
  }
  .quantitéé,
  .option-detail{
padding-left: 20px;
  }
  .description-details,
  .not-add{
    padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
  }
  .total-cart{
    width: 100%;
  float: inherit;
  margin-top: 60px;
  }
  .table-wishlist th{
    font-size: 20px !important;
  }
  .wishlist-img{
    max-width: 170px !important;
  }
  .name-carousel{
    max-width: 400px;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
  }
  .name-carousel span {
    line-height: 50px;
    font-size: 40px;
  }
  .desc-carousel{
    border: none;
    padding-top: 0;
    max-width: 500px;
  }
  .banner1{
    flex-direction: column-reverse;
  background-image: none !important;
  align-items: center;
  }
  .banner1-text{
    width: 80%;
    margin-top: 70px;
    text-align: center;
  }
  .banner1-text h1{
    text-align: center;
    font-size: 40px;
  }
  .newslatter{
    margin-bottom: 90px;
    margin-top: 0;
  }
  .banner1-text p{
    font-size: 18px;
    text-align: center;
  }
  .banner1-images{
    width: 100%;
  }
  .banner1-images img{
    height: 404px;
  }
  .bannier{
    flex-direction: column !important;
    align-items: center !important;
  }
  .image-banner{
    width: 80%;
  text-align: center;
  }
  .bannier .image-banner img{
    width: 466px;
  height: 282px;
  }
  .bannier .description-banner{
    width: 95%;
  align-items: center;
  margin-top: 40px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  }
  .bannier .description-banner h1{
    font-size: 40px;
  }
  .bannier .description-banner span{
    font-size: 18px !important;
    text-align: center !important;
  }
  .bannerdest{
    margin-bottom: 80px;
  }
  .section-title{
    text-align: center;
    font-size: 40px;
  }
  .logos-footer{
    display: block;
    text-align: center;
  }
  .footer-logo-wrap{
    display: none;
  }
  .noni{
    display: none;
  }
  .blocki{
    display: block;
    max-width: 330px;
  }
  .flexx-social{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .description-footer{
    width: 76%;
  margin: 0 auto;
  }
  .description-footer h4{
    font-size: 15px;
  }
  .description-footer p{
    font-size: 13px;
    margin-top: 8px;
  }
  .bottom-footer li{
    margin-right: 13px !important;
  }
  .bottom-footer {
    padding-left: 0 !important;
  }
  .bottom-footer li a {
    font-size: 12px;
    margin-right: 13px;
  }
  .sss{
    width: auto;
  }
  .hero{
    height: 412px !important;
  }
  .intro-excerpt1{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 88px;
  }
  .intro-excerpt1 h1, .intro-excerpt2 h1{
    font-size: 31px;
    margin-bottom: 10px;
    text-align: center;
  }
  .why-choose-section img {
    width: 380px;
    height: 380px;
  }
  .why-choose-section p{
    font-size: 16px;
    margin-top: 40px;
  }
  
  .banner-entre1{
    height: auto;
    padding: 10px;
  }
  .banner-entre h1{
    font-size: 27px;
  }
  .banner-entre p{
    font-size: 12px;
  }
  .banner-entre img{
    width: 300px;
    height: 300px;
  }
  .banner-entreprise {
    height: auto;
    padding: 130px 0 130px 0;
    background-image: none !important;
  }
  .support img{
    width: 270px;
    height: 250px;
  }
  .service{
    padding: 50px;
    padding-top: 0;
    margin-bottom: 50px;
  }
  .description-support span{
    font-size: 15px;
  line-height: 25px;
  }
  .hero p{
    font-size: 17px;
    text-align: center;
  }
  .logo-kast svg{
    width: 60px;
    height: 80px;
  }
  .section-Ratiat{
    flex-direction: column;
    padding-bottom: 50px;
  }
  .section-Ratiat .image-ratiat{
    text-align: center;
    width: 100%;
    margin-right: 0;
  }
  .section-Ratiat .image-ratiat img{
    width: 380px;
  height: 380px;
  }
  .section-Ratiat .text-ratiat{
    width: 100%;
    margin-top: 40px;
  }
  .section-Ratiat .text-ratiat h1{
    font-size: 36px;
  }
  .section-Ratiat .text-ratiat img {
    width: 14px;
    height: 14px;}
    .section-Ratiat .text-ratiat p{
      font-size: 14px;
    }
    .bannerdest h1{
      margin-bottom: 20px;
    }
    .banner-text-distributeur{
      padding: 58px 90px;
    }
    .banner-text-distributeur span{
      font-size: 15px;
    }
    .description-contact{
      width: 88%;
    }
    .description-contact span{
    font-size: 20px;
    }
    .news1 span{
      font-size: 13px;
    }
    .detail-contact h1{
      font-size: 20px;
    }
    .detail-contact a{
      font-size: 14px;
    }
    .smal1 {
      max-width: 312px !important;
      min-width: 312px !important;
      height: 312px !important;
    }
}
@media (max-width: 767px) {
  .image-category{
    max-height: 355px;
  }
  .product-section .product-item .product-thumbnail {
    height: 460px;
  }
  .product-section .product-item h3 {
    font-size: 2.5em;
  }
  .blog-section .post-entry .hover-catalogue h1{
    font-size: 2em;
  }
  .news{
    padding: 30px 30px;
  }
  .name-carousel span{
   line-height: 50px;
  }
  .big-image {
    height: 500px;
  }
  .detail-contact h1{
    font-size: 18px;
  }
  .detail-contact a{
    font-size: 13px;
  }
  .op2 select{
    width: 100% !important;
  }
  .smal1{
    max-width: 237px !important;
    min-width: 237px !important;
   height: 237px !important;
  }
}
@media (max-width: 620px) {
  .smal1{
    max-width: 188px !important;
    min-width: 188px !important;
    height: 188px !important;
  }
}
@media (max-width: 540px) {
  .image-category{
    max-height: 275px;
  }
  .op2 select{
    width: 90% !important;
  }
  .blog-section .post-entry .hover-catalogue h1{
    font-size: 1em;
  }
  .op2 button{
    width: 110px;
  }
  .name-carousel span{
    font-size: 20px !important;
    line-height: 33px;
    }
    .name-carousel{
      margin-bottom: 0;
    }
    .desc-carousel h3{
      font-size:13px !important;
      margin-bottom: 15px;
    }

    .desc-carousel{
      padding-top: 13px;
    }
    .carousel{
      min-height: auto;
    }
    .grand-contact{
      flex-direction: column-reverse;
    }
    .detail-contact, .form-contacti {
      width: 80%;
      margin: 0 auto;
    }
    .detail-contact{
      padding-left: 0;
      text-align: center;
    }
    .detail-contact h1{
      font-size: 30px;
    }
    .detail-contact a{
      padding-left: 5px;
      font-size: 16px;
    }
    .news1{
      border-right: none;
    }
    .news1 span{
      font-size: 15px;
    }
    .news1 input{
      width: 100%;
    }
    .news1 textarea{
      width: 100% !important;
    }
    .description-contact span{
      font-size: 14px;
    }
    .dropdown-content, .dropdown-content1, .dropdown-content2, .dropdown-content3{
      right: -16px;
    }
    .section-Ratiat{
      padding: 60px 0;
    }
    .section-Ratiat .text-ratiat {
      width: 90%;
      margin-top: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--main-color);
    }
    .section-Ratiat{
      border: none;
    }
    .bannier .image-banner img{
      width: 390px;
      height: 220px;
      max-height: 220px;
      min-height: 220px; 
    }
    .intro-excerpt1{
      width: 100% !important;
    }
    .smal1 {
      height: 162px !important;
      max-width: 162px !important;
    min-width: 162px !important;
    }
}
@media (max-width: 450px) {
  .product-section .product-item .product-thumbnail {
    height: 420px;
  }
  .respons-search{
    right: -100px !important;
  }
  .dropdown-content, .dropdown-content1, .dropdown-content2, .dropdown-content3{
    right: -40px;
  }
  .name-carousel{
    max-width: 200px;
    padding-bottom: 0;
  }
  .name-carousel span{
    font-size: 18px !important;
    line-height: 30px;
  }
  .desc-carousel{
    max-width: 285px;
  }
  .desc-carousel h3{
    font-size: 11px !important;
  }
  .btn.btn-secondary{
    font-size: 11px;
  }
  .carousel{
    background-size: 100% 100%;
  }
  .banner1-images img{
    height: 215px;
    margin-right: 7px;
  }
  .banner1-text{
    width: 100%;
  }
  .banner1-text h1,
  .bannier .description-banner h1,
  .section-title{
    font-size: 22px;
  }
  .banner1-text p{
    font-size: 11px;
  }
  .banner1{
    padding-bottom: 0;
  }
  .bannier .image-banner img{
    max-height: 310px;
  min-height: 136px;
  height: 136px;
    width: auto;
  }
  .bannier .description-banner{
    width: 100%;
  }
  .bannier .description-banner span{
    font-size: 11px !important;
  }
  .animation{
    height: 120px;
  }
  .description-footer{
width: 100%;
  }
  .description-footer h4{
    font-size: 12px;
  }
  .description-footer p,
  .list-unstyled li a span{
    font-size: 11px;
  }
  .footer-section .custom-social li{
    margin: 0;
  }
  .social-footer svg{
width: 105px;
  }
  .bottom-footer li{
    margin-right: 0 !important;
  }
  .bottom-footer li a{
    font-size: 11px;
    margin-right: 4px;
    margin-left: 4px;
  }
  .blocki{
    max-width: 210px;
  }
  .hero{
    height: 220px !important;
    background-size: 100% 100%;
  }
  .intro-excerpt1{
    margin-top: 54px;
  }
  .intro-excerpt1 h1{
    margin-bottom: 5px;
    font-size: 20px;
    
  }
  .intro-excerpt2 h1{
    margin-top: 58px !important;
    margin-bottom: 12px;
    font-size: 18px;
  }
  .intro-excerpt1 svg{
    width: 71px;
  }
  .why-choose-section img{
    width: 280px;
    height: 280px;
  }
  .why-choose-section p{
    font-size: 11px;
  }
  .banner-entre h1{
    font-size: 15px;
    margin-bottom: 20px;
  }
  .banner-entre p {
    font-size: 8px;
  }
  .banner-entre img{
    width: 158px;
    height: 165px;
  }
  .banner-entreprise{
    padding: 130px 0 60px 0;
  }
  .service{
    padding: 18px;
  }
  .bloge1{
    margin-left: 0;
  }
  .support img{
    width: 150px;
    height: 150px;
  }
  .description-support{
    padding: 10px;
  }
  .description-support span{
    font-size: 9px;
    line-height: 15px;
  }
  .description-support a{
    font-size: 12px;
  }
  .blog-section{
    padding: 12px 17px;
  }
  .catalogg{
    padding: 0 !important;
  margin-bottom: 15px !important;
  padding-right: 0 !important;
  }
  .hero p{
    font-size: 10px;
  }
  .product-section .product-item{
    padding-bottom: 90px;
  }
  .product-name{
    height: 70px;
  }
  .product-section .product-item h3{
    font-size: 20px;
  }
  .logo-kast{
    padding-left: 20px;
  padding-right: 20px;
  }
  .logo-kast svg{
    width: 37px;
    height: 44px;
  }
  .option-detail{
    flex-direction: column;
  }
  .op2 select{
    width: 100% !important;
    margin-bottom: 20px;
  }
  .description-details h1{
    font-size: 25px;
  }
  .description-details p{
    font-size: 12px;
  }
  .detail-contact, .form-contacti{
    width: 100%;
  }
  .detail-contact h1{
    font-size: 20px;
  }
  .detail-contact a{
    font-size: 13px;
  }
  .detail-contact svg{
    width: 19px;
  height: 11px;
  margin-right: 11px;
  }
  .search-distr{
    padding: 10px 10px;
  height: 98px;
  }
  .search-distr h1{
    font-size: 17px;
  margin-bottom: 8px;
  }
  .section-Ratiat .image-ratiat img{
    width: 280px;
    height: 280px;
  }
  .section-Ratiat .text-ratiat h1 {
    font-size: 28px;
  }
  .section-Ratiat .text-ratiat p {
    font-size: 12px;
  }
  .bannerdest{
    margin-bottom: 0;
    margin-top: 0;
  }
  .bannier .image-banner img{
    width: 243px;
  }
  .banner-text-distributeur {
    padding: 45px 20px;
  }
  .banner-text-distributeur span {
    font-size: 12px;
  }
  .not-add{
    text-align: center;
  }
  .smal1 {
    height: 133px !important;
    max-width: 133px !important;
    min-width: 133px !important;
  }
}
@media (max-width: 380px) {
  .product-section .product-item .product-thumbnail {
    height: 340px;
  }
  .image-category{
    max-height: 225px;
  }
  .smal1{
    height: 108px !important;
    max-width: 108px !important;
    min-width: 108px !important;
  }
}
