.section-padding {
  padding: 30px 0;
}

#brand_products_result .producst-card-overlay-content img,
#brand_products_result  .producst-card-overlay-content {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#brand_products_result .product_filter_card img {
    object-fit: contain;   
}

.brends-inside .brends-card p {
    width: 100%;
    height: 100%;
}

/* Fırlanan Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Hündürlük müəyyən edin */
    text-align: center;
}

.loading-spinner .spinner {
    border: 8px solid #f3f3f3; /* Gölgelər */
    border-top: 8px solid #3498db; /* Fırlanan rəng */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Fırlanma animasiyası */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title {
  margin-bottom: 20px;
}
.section-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title-content h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.section-title .banner {
  margin-bottom: 15px;
  padding: 10px 23px 10px 44px;
  border-radius: 30px;
  width: fit-content;
  position: relative;
  background: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #404a3d;
  text-transform: capitalize;
  font-style: normal;
  font-weight: normal;
}
.section-title .banner:before {
  content: "🍀";
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 28px;
  line-height:1;
  color: var(--color-1);
  transform: translateX(0%) translateY(-50%);
}
.section-description p {
  font-size: 16px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
}

@media screen and (min-width:768px){
    .section-title .banner{
        font-size:28px;
    }
}
.public-error-notice{
    font-size:16px;
    margin-bottom:14px;
    text-align:center;
    color:red;
}
.success-message{
    text-align:center;
    font-size:16px;
    margin-bottom:20px;
    line-height:1.2;
    color:green;
}
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  z-index: 50;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  background-color: var(--bg-5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}
/*modal*/
.error-page{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    row-gap:20px;
    flex-direction:column;
}
.error-page figure{
    width:128px;
    height:128px;
    margin:0 auto 20px;
}
.error-page figure img{
    width:100%;
    height:100%;
}
.error-page h3{
    font-size:20px;
    font-weight:bold;
    text-align:center;
    color:var(--default);
    margin-bottom:10px;
}
.error-page p{
    font-size:16px;
    text-align:center;
    color:gray;
}
.no-scroll{
  overflow: hidden;
}
.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding:50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-2);
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: var(--bg-4);
}
.customModalHeader button:hover svg {
  fill: black;
}
.custommodal-body {
  padding: 20px;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal-input-wrapper {
  width: 100%;
}
.modal-input-wrapper input {
  width: 100%;
  min-height: 25px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
}
.modal-input-wrapper textarea {
  max-height: 180px;
  height: 100%;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
  resize: vertical;
}
.modal-input-wrapper button {
  position: relative;
  padding: 15px 45px;
  background: var(--default);
  font-size: 17px;
  width: 100%;
  font-weight: 500;
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  border: 1px solid var(--default);
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.modal-input-wrapper button:hover {
  border: 1px solid #026107;
  background: linear-gradient(
    85deg,
    #026107,
    #046d09,
    #026107,
    #026107,
    #088d0f
  );
  animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
  0% {
    background-position: 0% 50%;
  }

  0% {
    background-position: 50% 100%;
  }

  0% {
    background-position: 0% 50%;
  }
}

.modal-input-wrapper .icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.3));
}

.modal-input-wrapper button:hover .icon-1 {
  animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
  transform: rotate(10deg);
}

@keyframes slay-1 {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.modal-input-wrapper .icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.5));
}

.modal-input-wrapper button:hover .icon-2 {
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.modal-input-wrapper .icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.5));
}

.modal-input-wrapper button:hover .icon-3 {
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}

/*modal*/
/* header */

.myHeader {
  position: absolute;
  width: 100%;
  background: transparent;
  padding: 10px 0; 
  z-index: 30;
}
.myHeader.is-sticky {
  backdrop-filter: blur(10px);
  background: var(--white);
  animation: 0.55s ease-in-out slideDown;
  box-shadow: 0 5px 16px var(--box-shadow-1);
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px #dbdbe2;
}
.myHeader.is-sticky .nav-center li span,
.myHeader.is-sticky .nav-center li a {
  color: var(--color-1);
}
.nav-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.logocolor {
  display: none;
}
.logowhite {
  display: block;
}
.myHeader.myHeader.is-sticky .logowhite {
  display: none;
}
.myHeader.myHeader.is-sticky .logocolor {
  display: block;
}
.myHeader.myHeader.is-sticky .navbar_item svg {
  fill: var(--color-1);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
}

.logo img {
  max-width: 150px;
  height: 45px;
  width: 100%;
}

.nav-center {
  display: none;
  justify-content: center;
  align-items: center;
}

.navbar_item {
  position: relative;
  cursor: pointer;
}

.navbar_item svg {
  transition: 0.3s ease-in;
  fill: var(--white);
  margin-left: 5px;
}

.navbar_item:hover svg {
  transform: rotate(180deg);
  transition: 0.3s ease-out;
}

.navbar_item:hover .navbar-dropdown {
  max-height: 200px;
  opacity: 1;
  border-color: var(--bg-3);
  transform: translateY(0);
  visibility: visible;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15),
    0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
  overflow: visible;
}

.nav-center li span {
  display: flex;
  width: fit-content;
  font-size:15px;
  text-transform:capitalize;
  color: var(--white);
  font-weight: 500;
      white-space: nowrap;
  height: 100%;
  align-items: center;
}
.nav-center li a {
  display: flex;
  width: 100%;
  color: var(--white);
  height: 100%;
  align-items: center;
  font-size:14px;
  text-transform:capitalize;
}

.navbar-dropdown {
  margin-top: 40px;
  top: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.5s ease;
  max-height: 0;
  position: absolute;
  border-top: 2px solid;
  padding: 10px;
  left: 0;
  border-radius: 4px;
  background-color: var(--white);
}

.navbar-dropdown li {
  padding: 5px 10px !important;
  transition: 0.3s ease-in;
  border-radius: 10px;
  background: transparent;
}
.navbar-dropdown li a > span {
  color: var(--color-2) !important;
}
.navbar-dropdown li:hover {
  background: #ddd;
}

.nav-center li {
  line-height: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.nav-center li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--bg-3);
  margin-right: 5px;
  border-radius: 50%;
}
.nav-center li a img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.nav-center li a span {
  font-size: 14px;
  font-weight: 500;
}

.nav-right {
  display: flex;
  position:relative;
  gap:10px;
  align-items: center;
}
.e_shop_desk a{
    display:none;
    text-align:center;
}
.myHeader.myHeader.is-sticky .e_shop_desk a{
      background-color:var(--default);
        color: var(--white);
}
.e_shop_desk a{
  position: relative;
  background-color:var(--white);
  border-radius: 5px;
  background-repeat: no-repeat;
  padding:10px 25px;
  color: var(--default);
  border: none;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  cursor:pointer;
}

.e_shop_desk a:before {
  content: "";
  background-color:rgb(0 112 9);
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.e_shop_desk a:hover:before {
  width: 100%;
}
.e_shop_desk a:hover{
    color:#fff;
}
/* language */
.language-area {
  position: relative;
}
.myHeader.is-sticky .language-area button {
  color: var(--color-1);
}
.language-area button {
  display: flex;
  align-items: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 30px;
  color: var(--white);
  background: transparent;
}

.language-area button svg {
  margin-right: 5px;
}

.language-dropdown {
  margin-top: 10px;
  position: absolute;
  border-top: 2px solid var(--bg-3);
  padding: 10px;
  z-index: 10;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  right: 0;
  width: 120px;
  display: none;
  border-radius: 10px;
}

.language-dropdown li {
  padding: 8px 10px;
  background-color: transparent;
      text-transform: capitalize;
  border-radius: 6px;
  color: #202020;
  transition: 0.3s ease-in-out;
}

.active-lang {
  color: darkgreen;
}

.language-dropdown li:hover {
  background: #eee;
}

.language-dropdown li a {
        text-transform: capitalize;
  display: flex;
  align-items: center;
  color: currentColor; 
  font-size: 16px;
  font-weight: 400;
}

.language-dropdown li a img {
  margin-right: 5px;
  width: 35px;
  height: 25px;
  border-radius: 5px;
  object-fit: cover;
}
/*sign*/
.sign-area {
  position: relative;
}
.myHeader.is-sticky .sign-area button {
  color: var(--color-1);
}
.sign-area button {
  display: flex;
  align-items: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 30px;
  color: var(--white);
  background: transparent;
}

.sign-area button svg {
  margin-right: 5px;
}

.sign-dropdown {
  margin-top: 10px;
  position: absolute;
  border-top: 2px solid var(--bg-3);
  padding: 10px;
  z-index: 10;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  right: 0;
  display: none;
  border-radius: 10px;
}

.sign-dropdown li {
  padding: 8px 10px;
  background-color: transparent;
  border-radius: 6px;
  color: #202020;
  transition: 0.3s ease-in-out;
}

.active-lang {
  color: darkgreen;
}

.sign-dropdown li:hover {
  background: #eee;
}

.sign-dropdown li a ,.sign-dropdown li button{
  display: flex;
  align-items: center;
  color: currentColor;
  white-space:nowrap;
  font-size: 16px;
  height:fit-content;
}
.hamburger {
  display: block;
}

.hamburger-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.hamburger-btn svg {
  fill: var(--white);
}

.myHeader.myHeader.is-sticky .hamburger-btn svg {
  fill: var(--color-1);
}
.callAction {
  display:none;
}
.myHeader.myHeader.is-sticky .callAction button{
      background-color:var(--default);
        color: var(--white);
}
.callAction button {
  position: relative;
  background-color:var(--white);
  border-radius: 5px;
  background-repeat: no-repeat;
  padding:10px 25px;
  color: var(--default);
  border: none;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  cursor:pointer;
}

.callAction button::before {
  content: "";
  background-color:rgb(0 112 9);
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.callAction button:hover::before {
  width: 100%;
}
.callAction button:hover{
    color:#fff;
}
/* search */
.search-area {
    position: relative;
    border-radius: 4px;
}

.myHeader.is-sticky .search-area button{
  color: var(--default);
}
.search-area button {
    border: none;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;  
    color:var(--white);
    font-size: 16px;
    background: transparent;
}

.search-drop {
    padding: 10px;
    border-radius: 6px;
    background: #ddd;
    display: none;
    position: absolute;
    right: 0;
    margin-top: 10px;
}

.search-form {
    --input-bg: #fff;
    --padding: 1.5em;
    --rotate: 80deg;
    --gap: 2em;
    --icon-change-color: #15A986;
    --height: 40px;
    width: 200px;
    padding-inline-end: 1em;
    background: var(--input-bg);
    position: relative;
    border-radius: 4px;
}

.search-form label {
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--height);
}

.search-form input {
    width: 100%;
    padding-inline-start: calc(var(--padding) + var(--gap));
    outline: none;
    background: none;
    border: 0;
}

.search-form svg {
    color: #111;
    transition: 0.3s cubic-bezier(.4, 0, .2, 1);
    position: absolute;
    height: 15px;
}

.search-icon {
    position: absolute;
    left: var(--padding);
    transition: 0.3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swap-off {
    transform: rotate(-80deg);
    opacity: 0;
    visibility: hidden;
}

.search-close-btn {
    background: none;
    border: none;
    right: calc(var(--padding) - var(--gap));
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
}

.search-form input:focus~.search-icon {
    transform: rotate(var(--rotate)) scale(1.3);
}

.search-form input:focus~.search-icon .swap-off {
    opacity: 1;
    transform: rotate(-80deg);
    visibility: visible;
    color: var(--icon-change-color);
}

.search-form input:focus~.search-icon .swap-on {
    opacity: 0;
    visibility: visible;
}

.search-form input:valid~.search-icon {
    transform: scale(1.3) rotate(var(--rotate))
}

.search-form input:valid~.search-icon .swap-off {
    opacity: 1;
    visibility: visible;
    color: var(--icon-change-color);
}

.search-form input:valid~.search-icon .swap-on {
    opacity: 0;
    visibility: visible;
}

.search-form input:valid~.search-close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0s;
}

/* search */

.all_sidebar {
	display: block;
}

#mobile_navbar {
	max-width: 400px;
	top: 0;
	right: 0;
	width: 100%;
	background-color: #fcfcfc;
	z-index: 999;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 20px;
	transition: .3s ease-in-out;
	position: fixed;
	height: 100vh;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
}
#mobile_navbar.active_navbar{
	transform: translateX(0%);
	visibility: visible;
	opacity: 1;
}
#mobile_navbar::-webkit-scrollbar {
	width: 5px;
  }
  
  #mobile_navbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  }
  
  #mobile_navbar::-webkit-scrollbar-thumb {
	width: 3px;
	height: auto;
	background-color:#ddd;
	border-radius: 4px;
  }
#mobile_navbar .cancel_logo_mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #f1ebeb;
}

.cancel_logo_mobile .logo_mobile {
	margin: 0;
	width: auto;
	height: 45px;
}

.cancel_logo_mobile .logo_mobile a {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.cancel_logo_mobile .logo_mobile a img {
	width: 100%;
	height: 100%;
}

.cancel_logo_mobile .cancel_button {
	width: 25px;
	height: 25px;

}

.cancel_logo_mobile .cancel_button #cancel {
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.cancel_logo_mobile .cancel_button svg {
	width: 100%;
	height: 100%;
	fill:#221f1f;
	opacity: .8;
}

.mobile_list .mobile_nav_item {
	width: 100%;
}

.mobile_list .mobile_nav_item .mobile_nav_links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
	padding: 10px 0;
	color: #000;
	border-bottom: 1px solid #f1ebeb;
}

.mobile_nav_item .mobile_nav_submenu {
	padding-left: 20px;
	display: none;
}

.mobile_nav_submenu li a {
	display: block;
	width: 100%;
	padding: 10px 0;
	color: #000;
	font-weight: bold;
	opacity: .8;
	border-bottom: 1px solid #ddd;
}

.mobile_nav_item:last-child {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop-item{
    margin-top:20px;
}
.mobile_getQuete {
display:flex;
	width: 100%;
	overflow: hidden;
	padding: 1rem 2.5rem 1rem 2.5rem;
	border: 0;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 500;
	background: transparent;
	color:#fff;
	    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
}

.mobile_getQuete:hover {
	cursor: pointer;
}

.mobile_getQuete>span {
	position: relative;
	z-index: 3;
}

.mobile_getQuete::before,
.mobile_getQuete::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 300%;
	height: 100%;
	opacity: 0;
}

.mobile_getQuete::before {
	background: #1d1d1d repeating-linear-gradient(50deg, transparent, transparent 10px,  #1d1d1d56 10px,  #575555 20px);
}

.mobile_getQuete::after {
	z-index: 2;
	background: linear-gradient( #1d1d1d 30%, transparent 100%);
}

@keyframes loading_49100 {
	0% {
	  translate: 25px 0;
	}
  
	100% {
	  translate: -30px 0;
	}
  }
.mobile_getQuete::before {
	animation: loading_49100 0.6s infinite linear;
  }  
.mobile_getQuete::before,
.mobile_getQuete::after {
	opacity: 1;
}
.overlay-mobile{
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color:rgba(0,0,0,0.3);
	z-index: 40;
	inset:0;
	display: none;
}
.e_shop_mob a{
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--default);
    color:var(--white);
    font-size:16px;
    width:100%;
    min-height:40px;
}

@media (min-width:576px) and (max-width:992px) {

	.mobile_nav_item:last-child {
		justify-content: flex-start;
	}
}
/*@media screen and (min-width:768px){*/
  
/*    .search-area button{*/
/*        font-size:20px;*/
/*    }*/
/*    .sign-area button{*/
/*        font-size:20px;*/
/*    }*/
/*    .language-area button{*/
/*        font-size:20px;*/
/*    }*/
/*}*/
/* hero slider */
.heroSlider {
  height: 98vh;
  margin: 20px auto;
  overflow: hidden;
  background: var(--bg-1);
  width: 98%;
  overflow: hidden;
  position:relative;
  border-radius: 30px;
}

.myHeroSlider {
  width: 100%;
  height: 100%;
}
.myhero-slider {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}
.myhero-slider:after {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.myhero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  background: transparent;
}
.hero-slider-content {
  position: relative;
  z-index: 1;
  width:100%;
}
.hero-slider-content h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-slider-content p {
  font-size: 16px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
  width: 100%;
  text-overflow: ellipsis;
}

.hero-pagination {
  position: absolute;
  z-index: 10;
     right: 30px !important;
  width: unset !important;
  height: 100%;
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  left: unset !important;
}
.hero-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 10px 0 !important;
  display: block;
  opacity: 0.7;
  background: white;
}
.hero-pagination-active-bullet {
  outline: 1px solid #fff;
  outline-offset: 4px;
}
@media screen and (min-width:768px){
    .hero-slider-content h3{
        font-size:46px;
    }
}
@media screen and (min-width:992px){
    .hero-slider-content h3{
        font-size:60px;
        width:80%;
    }
    .hero-slider-content p
    {
        font-size:17px;
    }
}

/* about home */
.discover-us {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}
.discover_us_bg{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  height: 100%;
  width: 90%;
  z-index: 1;
  background: var(--bg-4);
}
.discover-us .container{
  position: relative;
  z-index: 2;
}
.discover-us .section-title-content h3 {
  color: var(--white);
}
.discover-us .row {
  row-gap: 20px;
  align-items: center;
}
.advantages-area {
  margin-top: 20px;
}
.advantages-area .row {
  align-items: unset;
}
.aboutImagesGallery {
  border-radius: 20px;
  position: relative;
}
.aboutImagesGallery figure{
    overflow:hidden;
    width:100%;  
    height: 250px;
}
.aboutImagesGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advantages-icons-slide {
  position: absolute;
  right: 0;
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  bottom: 0px;
  background: var(--bg-3);
  height: 50px;
  width: 60px;
}
.advantages-icons-slide img {
  width: 24px;
  height: 24px;
  filter: invert(0) brightness(0);
}

.aboutAdvantagesNavigation li {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
  background-color: transparent;
  row-gap: 20px;
  padding: 20px;
  margin-bottom: 10px;
  transition: 0.4s ease-in-out;
  border-bottom: 1px solid;
  border-bottom-color: var(--border-4);
}
.aboutAdvantagesNavigation li:hover {
  border-radius: 10px;
  background-color: var(--white);
}
.aboutAdvantagesNavigation li.activePagination {
  border-radius: 10px;
  background-color: var(--white);
}
.aboutAdvantagesNavigation li:last-child {
  border-bottom: unset;
}
.aboutAdvantagesFigure img {
  margin-right: 10px;
  filter: invert(1);
  transition: 0.3s ease-in-out;
}
.aboutAdvantagesFigure {
    display:flex;
    align-items:center;
    width:100%;
}
.aboutAdvantagesArticle{
    width:100%;
}
.aboutAdvantagesNavigation li.activePagination .aboutAdvantagesNavigation li{
  filter: unset;
}
.aboutAdvantagesNavigation li:hover .aboutAdvantagesFigure h5,
.aboutAdvantagesNavigation li:hover .aboutAdvantagesArticle p{
  color: var(--color-1);
}
.aboutAdvantagesNavigation li.activePagination .aboutAdvantagesFigure  img{
filter: invert(0);
}
.aboutAdvantagesNavigation li.activePagination .aboutAdvantagesFigure  h5,
.aboutAdvantagesNavigation li.activePagination .aboutAdvantagesArticle p {
  color: var(--color-1);
}

.aboutAdvantagesFigure h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  transition: 0.3s ease-in-out;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: var(--white);
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  text-transform: capitalize;
}
.aboutAdvantagesArticle p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-align: center;
  -webkit-line-clamp: unset;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  line-height: 1.2;
  width: 100%;
  color: var(--white);
  opacity: 0.7;
  -webkit-box-orient: unset;
  text-transform: capitalize;
}

/* products card */
.products-section {
position:relative;
}
.products-navigation{
   
    display:flex;
    align-items:center;
    
    width:100%;
    justify-content:space-between;
    height:fit-content;
}
.products-navigation button{
    width:40px;
    border:none;
     position:absolute;
     transition:.3s ease-in-out;
    top:50%;
    z-index:10;
    transform:translateY(-50%);
    height:40px;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--default);
    border-radius:50%;
    cursor:pointer;
    background:var(--white);
}
.product-navigation-prev{
    left:0;
}
.product-navigation-next{
    right:0;
}
.products-navigation button:hover{
    background:var(--default);
    color:var(--white);
}
.products-card {
  background: #eee;
  padding: 1rem;
  border-radius: 8px;
  overflow:hidden;
  position:relative;
}
.products-card:hover > article a {
    background:var(--bg-3);
    color:var(--white);
}
.products-card-overlay{
    height:66%;
    width:100%;
    opacity:0;
    visibility:hidden;
    overflow:hidden;
    transform:translateY(-100%);
    transition:.3s ease-in-out;
    padding:20px 10px;
    text-align:center;
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction:column;
    background:var(--white);
}
.producst-card-overlay-content{
    color:var(--default);
    font-size:13px;
    line-height:1.2;
    overflow:hidden;
    text-align:start;
}
.producst-card-overlay-content ul{
    display:flex;    
    gap:10px;
    align-items:center;
    justify-content: space-between;
    flex-wrap:wrap;
    
}
.producst-card-overlay-content ul li:not(:last-child){
    margin-bottom:10px;
}
.producst-card-overlay-content ul li:before{
    content:'🌱';
    margin-right:5px;
}
.products-card-overlay a{
    width:100px;
    height:45px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--default);
    color:var(--white);
    margin-top:5px;
}
.products-card figure {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 240px;
}
.products-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-card article {
  padding: 10px 0;
}
.products-card article h4 {
  font-size: 16px;
  font-weight: 500;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform:capitalize;
  height: 45px;
  color: var(--color-2);
  margin-bottom: 0.5rem;
}
.products-card article p {
  line-height: 1.2;
  font-size: 16px;
  color: var(--color-3);
}
.products-card article span {
  font-size: 20px;
  font-style: normal;
  color: var(--color-1);
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
.products-card article a {
  display: flex;
  height: 35px;
  margin-top: 10px;
  color: var(--white);
  align-items: center;
  justify-content: center;
  transition:.3s ease-in-out;
  width: 100%;
  border-radius: 20px;
  background: var(--default);
}
.products-pagination {
  position: relative;
  bottom: -20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-bullet {
  width: 10px;
  height: 10px;
  background: var(--bg-6);
  opacity: 1;
}
.products-active-bullet {
  width: 18px;
  height: 18px;
  background: var(--bg-3);
}

/* products category */
.product-category .row {
  row-gap: 20px;
}
.product-main-wrapper {
  display: flex;
  row-gap: 20px;
  flex-wrap: wrap;
}
.product-main-filter {
  width: 100%;
}
.product-filter-drop {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 10px 30px;
  background: var(--default);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.product-filter-drop svg {
  margin-left: 10px;
}
.product-main-filter {
  position: relative;
}
.product-main-filter ul {
  position: absolute;
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  max-height: 300px;
  overflow-y: auto;
  border-radius:10px;
  z-index: 3;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.product-main-filter ul.active-list {
  display: block;
}
.product-main-filter ul li {
  padding: 10px 5px;
  transition: 0.3s ease-in-out;
  color: var(--default);
  font-size: 13px;
  overflow:hidden;
  line-height: 1.2;
  text-align: start;
  cursor: pointer;
  display:flex;
  gap:20px;
  align-items:center;
}
.product-main-filter ul li span{
    color:currentColor;
}
.product-main-filter ul li img{
    width:24px;
    height:24px;
    object-fit:contain;
    transform:translateX(1000%);
    transition:.3s ease-in-out;
}
.product-main-filter ul li:hover > img{
      transform:translateX(0%);
}
.product-main-filter ul li.active-item > img{
      transform:translateX(0%);
}
.product-main-filter ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
  margin-bottom:5px;
}

.product-main-filter ul li.active-item {
  background: #ddd;
  color: var(--black);
  border-radius: 10px;
}
.product-main-filter ul li:hover {
  background: #ddd;
  color: var(--black);
  border-radius: 10px;
}
.product-main-area {
  width: 100%;
}
.product-card-kate {
  width: 100%;
  height: 245px;
  border-radius: 4px;
  overflow: hidden;
}
.product-card-kate a {
  display: block;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.product-card-kate a h4 {
  position: relative;
  z-index: 2;
  bottom: 20px;
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
  transition: 0.3s all ease;
  font-size: 16px;
}
.product-card-kate a img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
  inset: 0;
}
.product_kate_logo{
  inset: unset !important;
    width: 100px !important;
    height: auto !important;
    left: 10px !important;
    top: 0px !important;
}
.product-card-kate a::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #78b187);
  width: 100%;
  height: 160px;
  bottom: 0px;
  left: 0;
  transition: 0.3s all ease;
}
.product-card-kate a:hover:after {
  opacity: 0.5;
}
.product-main-category {
  display: none;
}
.product-main-category .row{
    row-gap:20px;
}
.product-main-category.selected-category {
  display: block;
}
/* product category card */
.products-category-card {
  width: 100%;
  height: 300px;
}
.products-category-card a {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-category-card a:hover > img {
  transform: scale(1.1);
}
.products-category-card a:after {
  inset: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index:2;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
}
.products-category-card a:hover:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.products-category-card a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  inset: 0;
}
.products-category-card a > h4 {
  width: 100%;
  height: fit-content;
  padding: 10px;
     font-weight: 600;
    text-align: center;
  position:relative;
  z-index:6;
  color: var(--white);
}

@media screen and (min-width: 992px) {
  .products-card:hover .products-card-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .product-main-filter ul {
    position: unset;
    display: block;
    max-height: 515px;
    margin: 0;
    overflow-y: auto;
  }
 .product-main-filter ul::-webkit-scrollbar {
  width: 2px;
}

.product-main-filter ul::-webkit-scrollbar-track {
  background: #5acc3449;
}

.product-main-filter ul::-webkit-scrollbar-thumb {
  background: #5bcc34;
}
  .product-filter-drop {
    display: none;
  }
  .product-main-filter {
    width: 300px;
    height: fit-content;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /*padding: 12px;*/
  }
  .product-main-area {
    width: calc(100% - 320px);
    padding: 0 12px;
  }
}
/*products category end*/
/*brends*/
/* brends */
.brends .row,.brends-inside .row {
    row-gap: 24px;
}

.brends-card {
    background-color: #fafbfd;
    border: none;
    border-radius: 15px;
    height: 120px;
    padding: 15px;
}

.mouse-cursor-gradient-tracking {
    position: relative;
    font-size: 1.2rem;
    border: none;
    color: white;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.brends-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

.mouse-cursor-gradient-tracking::before {
    --size: 0;
    content: '';
    position: absolute;
    z-index: 1;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #dbdbe2, transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.mouse-cursor-gradient-tracking:hover::before {
    --size: 1000px;
}

/* blog-navigation */
.blog-navigation {
  display: none;
  align-items: center;
}
.notNavigation {
  display: none !important;
}
.blog-navigation button:not(:first-child) {
  margin-left: 10px;
}
.blog-navigation button {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  cursor: pointer;
  line-height: 50px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid var(--border-2);
  color: var(--pbmit-agrimo-blackish-color);
  transition: all 500ms ease;
}
.blog-navigation button:hover {
  background: var(--bg-2);
  color: var(--white);
}
.blog-card-figure {
  position: relative;
  border-radius: 30px;
  transition: 0.3s ease-in;
  overflow: hidden;
  height: 250px;
}
.blog-card-figure img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.blog-card-figure h6 {
  font-size: 14px;
  line-height: 24px;
  z-index: 10;
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-block;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  padding: 5px 15px 3px 15px;
  margin-bottom: 5px;
  border-radius: 15px;
  background: var(--white);
  color: var(--color-1);
}
.blog-card-figure img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.readmore {
  bottom: 6px;
  right: 6px;
  position: absolute;
  transition: all 0.5s ease 0s;
  width: 45px;
  display: flex;
  align-items: center;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  justify-content: center;
  background: var(--bg-3);
  color: var(--color-3);
}
.readmore svg {
  transition: transform 0.4s ease-in, opacity 0.4s ease-in;
}
.readmore-svg2 {
  transform: scale(0.26) translate(-60px, 54px);
}
.readmore-svg1 {
  transform: scale(1) translate(-7px, 0px);
}
.blog-card-content {
  padding: 20px 10px;
}
.blog-card-publish-list {
  display: flex;
  align-items: center;
  justify-content: start;
}
.blog-card-publish-list li {
  display: flex;
  align-items: center;
  color: var(--color-3);
}
.blog-card-publish-list li svg {
  margin-right: 5px;
  color: var(--color-1);
  width: 16px;
  height: 16px;
}
.blog-card-publish-list li:not(:first-child) {
  margin-left: 20px;
}
.blog-card-title {
  height: 50px;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}
.blog-card-content a {
  color: var(--color-3);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  line-height: 1.2;
}

.blog-card:hover .blog-card-figure img {
  transform: scale(1.1);
}
.blog-card:hover .blog-card-content a {
  color: var(--color-1);
}
.blog-card:hover .readmore {
  background: var(--bg-4);
}
.blog-card:hover .readmore-svg2 {
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  color: var(--white);
  transform: scale(1) translate(8px, -1px);
}
.blog-card:hover .readmore-svg1 {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: scale(0.26) translate(60px, -50px);
}
/* footer */
.footer {
  background-image: url("/assets/img/footer-bg-img_cleared.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  background-attachment: scroll;
}
.footer-head {
  padding: 20px 0;
}
.footer-head .row {
  row-gap: 20px;
}
.footer-logo a {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  align-items: center;
  width: fit-content;
  height: fit-content;
}
.footer-logo a img {
  width: 150px;
  height: auto;
}
.footer-logo a span {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--default);
}
.footer-left-content {
  margin-top: 20px;
}
.footer-left-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-2);
}
.footer-left-content ul li::before {
  content: unset;
}
.footer-left-content ul {
  display: flex;
  align-items: center;
}
.footer-left-content ul li {
  width: 2.5rem;
  background: var(--bg-1);
  height: 2.5rem;
  border-radius: 50%;
  color: var(--color-1);
  transition: 0.3s ease-in-out;
}
.footer-left-content ul li:not(:first-child) {
  margin-left: 10px;
}
.footer-left-content ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: currentColor;
  justify-content: center;
}
.footer-left-content ul li:hover {
  background: var(--color-1);
  color: var(--white);
}
.footer-right .row {
  row-gap: 20px;
}
.footer-right-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-right-head h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-2);
  display: none;
}
.footer-right-content h4 {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  color: var(--color-2);
  margin-bottom: 12px;
}

.footer-right-links {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer-right-links li a,
.footer-right-links li p {
  color: var(--color-3);
  line-height: 1.2;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  transition: 0.3s ease-in;
}
.footer-right-links li a:hover {
  color: var(--default);
}
.footer-right-links li p span,
.footer-right-links li a span {
    width:calc(100% - 21px);
}
.footer-right-links li p svg,
.footer-right-links li a svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  color: var(--default);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-bottom-wrapper {
  flex: 0 0 auto;
  width: 100%;

  padding: 30px 0;
  border-top: 1px solid var(--border-1);
}
.footer-bottom-wrapper .row {
  row-gap: 20px;
  flex-wrap: wrap-reverse;
}
.copyright {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-1);
}
.copyright a {
  margin-left: 5px;
  text-decoration: underline;
  font-size: 16px;
  color: var(--color-2);
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.copyright a:hover {
  text-decoration: none;
}
.siteby-content {
  height: auto;
  width: 150px;
}
@media screen and (min-width:992px){
    .footer-right-content h4{
        line-height:65px;
    }
}
/* progress  */

/* progress naviagtion */
.navigation-bar {
  height: 300px;
  width: 100%;
  width: 98%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navigation-bar:after{
 position: absolute;
  inset: 0;
  content: "";
  transition: 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}
.navigation-bar img {
  width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.navigation-bar-content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.navigation-bar-content h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  text-transform:capitalize;
}
.customSpeed {
  display: none;
  margin-top: 20px;
  color: var(--white);
  font-size: 18px;
}
.customSpeed .speedbar .over> span,
.customSpeed .speedbar .over> a {
  color: currentColor;
  font-size: 16px;
}
@media screen and (min-width:576px){
    .customSpeed{
        display:block;
    }
    .navigation-bar-content h1{
        font-size:28px;
        margin-bottom:20px;
    }
}


/*call action*/
/* contact action */

.contact-action {
    padding: 40px 0px;
    width:98%;
    border-radius:20px;
    position:relative;
    margin:15px auto;
    background:url('/assets/img/banner.webp') center/cover no-repeat;
}
.contact-action:after{
    content:'';
    position:absolute;
    inset:0;   
    border-radius: 20px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}
.contact-action .row {
    row-gap: 20px;
    position:relative;
    z-index:2;
    justify-content: space-between;
}

.contact-action-title h3 {
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-action-title p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    color: #fff;
}

.contact-action-forms {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    row-gap: 15px;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.contact-action-forms>* {
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.contact-action-wrapper input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: none;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    appearance: none;
    border:none;
    height: 60px;
    border-radius:0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-action-btn button {
    background: var(--bg-3);
    padding: 13px 27px;
    color: var(--default);
    border-radius: 5px;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid transparent;
    font-size: 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-action-btn button:hover {
    color:var(--white);
    background-color: var(--default);
    border-color: var(--default);
}

@media screen and (min-width:576px) {
    .contact-action-title h3 {
        font-size: 35px;
    }
}

@media screen and (min-width:768px) {
 
    .contact-action-wrapper input{
        border-radius:1.75rem;
    }
    .contact-social{
    justify-content: space-between;
    gap: unset;
    row-gap: 10px;
    }
}

@media screen and (min-width: 375px) {
  .advantages-icons-slide {
    right: 0px;
  }

  .advantages-icons-slide {
    height: 50px;
    width: 80px;
    right: 0px;
  }

}
@media screen and (min-width: 576px) {
  .aboutImagesGallery figure{
   
    height: 400px;
   
  }
.aboutImagesGallery figure{
     overflow: unset;
    border-radius: unset;
     clip-path: polygon(
      3.384% 0.182%,
      3.384% 0.182%,
      3.002% 0.341%,
      2.634% 0.546%,
      2.282% 0.793%,
      1.948% 1.081%,
      1.634% 1.408%,
      1.341% 1.773%,
      1.071% 2.172%,
      0.826% 2.604%,
      0.608% 3.067%,
      0.418% 3.558%,
      0.317% 3.841%,
      0.317% 3.841%,
      0.271% 3.982%,
      0.229% 4.125%,
      0.192% 4.27%,
      0.16% 4.418%,
      0.133% 4.567%,
      0.111% 4.717%,
      0.094% 4.87%,
      0.082% 5.023%,
      0.074% 5.177%,
      0.072% 5.332%,
      0.072% 94.749%,
      0.072% 94.749%,
      0.074% 94.904%,
      0.082% 95.058%,
      0.094% 95.211%,
      0.111% 95.363%,
      0.133% 95.514%,
      0.16% 95.663%,
      0.192% 95.811%,
      0.229% 95.956%,
      0.271% 96.099%,
      0.317% 96.239%,
      0.418% 96.529%,
      0.418% 96.529%,
      0.563% 96.907%,
      0.725% 97.271%,
      0.903% 97.617%,
      1.096% 97.946%,
      1.303% 98.257%,
      1.524% 98.548%,
      1.759% 98.819%,
      2.006% 99.069%,
      2.264% 99.296%,
      2.534% 99.501%,
      2.74% 99.642%,
      2.74% 99.642%,
      2.84% 99.707%,
      2.941% 99.765%,
      3.044% 99.816%,
      3.148% 99.861%,
      3.254% 99.899%,
      3.361% 99.93%,
      3.468% 99.954%,
      3.577% 99.972%,
      3.686% 99.982%,
      3.796% 99.986%,
      39.641% 100.047%,
      39.641% 100.047%,
      50.412% 100.059%,
      58.89% 100.066%,
      65.358% 100.059%,
      70.1% 100.03%,
      73.401% 99.968%,
      75.545% 99.866%,
      76.815% 99.714%,
      77.497% 99.504%,
      77.874% 99.227%,
      78.23% 98.874%,
      78.23% 98.874%,
      78.354% 98.752%,
      78.476% 98.625%,
      78.595% 98.493%,
      78.71% 98.357%,
      78.823% 98.215%,
      78.933% 98.069%,
      79.039% 97.918%,
      79.142% 97.762%,
      79.242% 97.603%,
      79.339% 97.438%,
      79.339% 97.438%,
      79.571% 96.966%,
      79.76% 96.509%,
      79.912% 96.012%,
      80.031% 95.421%,
      80.122% 94.681%,
      80.19% 93.738%,
      80.24% 92.537%,
      80.277% 91.024%,
      80.306% 89.145%,
      80.332% 86.844%,
      80.332% 86.844%,
      80.36% 84.482%,
      80.388% 82.593%,
      80.425% 81.112%,
      80.481% 79.973%,
      80.565% 79.11%,
      80.685% 78.459%,
      80.851% 77.953%,
      81.072% 77.527%,
      81.357% 77.116%,
      81.715% 76.654%,
      81.715% 76.654%,
      82.045% 76.223%,
      82.339% 75.882%,
      82.654% 75.619%,
      83.049% 75.422%,
      83.579% 75.282%,
      84.303% 75.185%,
      85.278% 75.122%,
      86.561% 75.08%,
      88.21% 75.048%,
      90.282% 75.016%,
      96.022% 74.931%,
      96.022% 74.931%,
      96.241% 74.92%,
      96.46% 74.895%,
      96.677% 74.856%,
      96.892% 74.804%,
      97.106% 74.737%,
      97.316% 74.657%,
      97.525% 74.563%,
      97.73% 74.456%,
      97.932% 74.335%,
      98.13% 74.201%,
      98.13% 74.201%,
      98.13% 74.201%,
      98.334% 74.056%,
      98.523% 73.909%,
      98.698% 73.761%,
      98.861% 73.611%,
      99.012% 73.458%,
      99.151% 73.302%,
      99.28% 73.141%,
      99.399% 72.975%,
      99.51% 72.803%,
      99.613% 72.624%,
      99.613% 72.624%,
      99.613% 72.624%,
      99.698% 72.448%,
      99.776% 72.264%,
      99.844% 72.075%,
      99.904% 71.88%,
      99.955% 71.681%,
      99.997% 71.477%,
      100.03% 71.271%,
      100.053% 71.061%,
      100.068% 70.849%,
      100.072% 70.635%,
      100.045% 38.152%,
      100.003% 5.328%,
      100.003% 5.328%,
      100% 5.173%,
      99.993% 5.02%,
      99.98% 4.867%,
      99.963% 4.715%,
      99.94% 4.565%,
      99.913% 4.416%,
      99.881% 4.269%,
      99.844% 4.124%,
      99.803% 3.982%,
      99.757% 3.841%,
      99.656% 3.55%,
      99.656% 3.55%,
      99.51% 3.172%,
      99.348% 2.81%,
      99.17% 2.464%,
      98.977% 2.136%,
      98.77% 1.826%,
      98.548% 1.536%,
      98.314% 1.265%,
      98.067% 1.017%,
      97.809% 0.79%,
      97.539% 0.586%,
      97.338% 0.445%,
      97.338% 0.445%,
      97.238% 0.38%,
      97.136% 0.322%,
      97.033% 0.27%,
      96.928% 0.225%,
      96.822% 0.187%,
      96.715% 0.156%,
      96.606% 0.132%,
      96.497% 0.115%,
      96.388% 0.104%,
      96.278% 0.101%,
      50.325% 0.061%,
      50.325% 0.061%,
      42.799% 0.062%,
      35.641% 0.066%,
      28.948% 0.072%,
      22.818% 0.08%,
      17.351% 0.091%,
      12.644% 0.104%,
      8.795% 0.12%,
      5.903% 0.138%,
      4.067% 0.159%,
      3.384% 0.182%
    );
}
  .advantages-icons-slide {
    height: 80px;
    display: flex;
    width: 80px;
    right: 0px;
  }
}

@media screen and (min-width: 768px) {
  /* header */
  .call_action-btn {
    display: flex;
  }
 
  /* abouts image */
  .advantages-icons-slide {
    width: 120px;
  }
  .aboutAdvantagesNavigation li {
    flex-wrap: unset;
    justify-content: unset;
  }
    
  .aboutAdvantagesFigure h5 {
    -webkit-line-clamp: 2;
    text-align: unset;
    -webkit-box-orient: vertical;
  }
  .aboutAdvantagesFigure{
    width: 180px;
}
  .aboutAdvantagesArticle{
    width:calc(100% - 180px);
}
  .aboutAdvantagesArticle p {
    text-align: unset;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  /* blog */
  .blog-card-content a {
    font-size: 22px;
  }
  /* footer */
  .footer-right-head h2 {
    font-size: 30px;
    line-height: 70px;
  }
  .siteby-content {
    float: right;
  }
  .footer-right-head {
    display: block;
  }
  .blog-navigation {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  /* header */
  .nav-center {
    display: flex;
  }
     .callAction {
    display: block;
  }
.nav-right:after{
    display:block;
}
  .logo img {
    max-width: 150px;
  }

 
    .products-card article h4{
    font-size: 18px;
  }
  /* advantages */
  .advantages-icons-slide {
    width: 80px;
    height: 80px;
    right: 2px;
    bottom: 10px;
  }
  /*contact action*/
  
  
  /* footer */
  /*.footer-bottom-wrapper {*/
  /*  width: 66.66666667%;*/
  /*}*/
}

@media screen and (min-width: 1200px) {
    .e_shop_desk a{
        display:block;
    }
  /* header */
  .nav-center li a span {
    font-size: 15px;
  }
       .hamburger {
    display: none;
  }
  /* products card */
  .products-card-readmore {
    right: 0px !important;
  }
  .advantages-icons-slide {
    width: 90px;
    height: 90px;
    right: 8px;
    bottom: 0px;
  }
 
}
 

/* static umud */
.static_body{
  background: #f4f4f4c2;
}
.static_footer{
  background: #fff;
}
.static_page_all h1{
  font-size: 28px;
  font-weight: 600;
  padding: 0 0 40px;
  border-bottom: 1px solid #dbdbe2;
}
.static_page_content {
  line-height: 1.3;
  display: flex;
  gap: 20px;
  text-align:justify;
padding:20px 0;
  flex-direction: column;
}
.static_page_content img{
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  max-height: 300px;
}
.static_page_text img{
  display: none !important;
}
.static_page_text{
  font-size: 17px;
 
  
}
.static_page_form{
  padding: 30px 0;
}
.static_page_form h4{
  font-size: 21px;
}
.static_page_form_social{
  align-items: center;
  gap: 9px;
  padding: 20px 0;
}
.static_page_form_social a{
  margin: 0 20px 0 0;
  width: 38px;
  height: 38px;
  color: aliceblue;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  transition: .3s;
}
.static_page_form_social_face{
  background: #3b5998;
}
.static_page_form_social_ins{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.static_page_form_social_tiktok{
  background: #1c1f23;
}
.static_page_form_social_twitter{
  background: #1DA1F2;
}
.static_page_form-wrapper{
  display: flex;
  align-items: center;
  padding: 40px 20px;
  gap: 15px;
  border: 1px solid #dbdbe2;
  border-radius: 20px;
  flex-wrap: wrap;
}
.static_page_form-wrapper h5{
  flex: 0 0 100%;
  font-size: 23px;
}
.static_page_form-wrapper input{
  flex:0 0 100%;
  position: relative;
  background: #eee;
  padding: 14px 10px;
  font-family: "Roboto", sans-serif;
  border: none;
  outline: none;
  border-radius: 5px;
}
.static_page_form-wrapper textarea{
  width: 100%;
  min-height: 140px;
  height:100%;
  max-height: 200px;
  background: #eee;
  border: none;
  max-width: 100%;
  flex: 0 0 100%;
  resize:vertical;
  outline: none;
  padding: 14px 10px;
  border-radius: 5px;
}
.static_page_form-wrapper button{
  padding: 14px 10px;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  transition: .3s;
  border: 1px solid transparent;
  outline: none;
  background: var(--default);
  cursor: pointer;
  color: #fff;
}
.static_page_form-wrapper button:hover{
  border-color: var(--default);
  background: transparent;
  color: var(--default);
}

@media screen and (min-width:576px){
    .static_page_form-wrapper input{
          flex: 0 0 calc(50% - 10px);
        
    }
}
@media  (min-width:992px) and (max-width:1200px){
    .static_page_form-wrapper input{
        flex:0 0 100%;
    }
}
@media screen and (min-width:992px){
    .static_page_content{
      padding: 30px 50px 30px 0;
  border-right: 1px solid #dbdbe2;
    }
    .static_page_all h1{
        font-size:40px;
    }
    .static_page_text{
    max-height: 200px;
    overflow-y: auto;
    padding: 0 10px;
    word-spacing:-1px;
    }
}
/* static umud end */

/* main page services */
.services_section{
  padding: 50px 0;
}
.services_main_card{
  position: relative;
  height: 350px;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
}
.services_main_card img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  transition: .3s;
}
.services_main_card:hover img{
  transform: scale(1.15);
}
.services_main_card::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.services_main_card h4{
  position: relative;
  z-index: 3;
  transition: .6s;
  font-size: 35px;
}
.services_main_card:hover h4{
    transform: translateY(-500px);
}
.services_main_card p{
  position: absolute;
  transition: .3s;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  font-size: 18px;
  visibility: hidden;
  text-align: center;
  width: 100%;
  padding: 0 35px;
  line-height: 1.3;
  z-index: 3;
      display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.services_main_card:hover p{
  opacity: 1;
  visibility: visible;
  top: 50%;
}
/* main page services end */


table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}


table th,
table td {
  overflow: hidden;
  text-align: start;
}


@media screen and (max-width: 1200px) {
  table {
    border: 0;
  }
    table tr td:first-child{
        display:none;
    }
 
table td{
    padding:10px !important;
}
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table td {
    display: block;
    font-size: 0.8em;
    text-align: right;
  }

  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table td:last-child {
    border-bottom: 0;
  }
}




/*corporative price*/
.corporative-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  color: #525252;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
 

.corporative-table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 0.35em;
}

.corporative-table  th,
.corporative-table td {
  overflow: hidden;
  padding: 0.625em;
  text-align: start;
}
 .corporative-table td img{
    width:100%;
    max-width:150px;
    height:auto;
    margin:0 auto;
    max-height:50px;
 }
.corporative-table th {
    line-height:1.2;
  font-size:14px;
  border:1px solid #ddd;
  font-weight:normal;
  text-transform: capitalize;
}

@media screen and (max-width: 1200px) {
.corporative-table {
    border: 0;
  }

 .corporative-table caption {
    font-size: 1.3em;
  }

 .corporative-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .corporative-table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }

 .corporative-table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }

.corporative-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

.corporative-table td:last-child {
    border-bottom: 0;
  }
}

.select-hidden {
  display: none;
  opacity:0;
  transition:.3s ease-in-out;
}
.corporativ_btn{
    display:none;
}
.corporativ_btn a span{
   white-space: nowrap;
}
.corporativ_btn a{
    position: relative;
    background-color: var(--white);
    border-radius: 5px;
    background-repeat: no-repeat;
    padding: 10px 15px;
    color: var(--default);
    border: none;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.myHeader.myHeader.is-sticky .corporativ_btn a {
    background-color: var(--default);
    color: var(--white);
}

@media screen and (min-width:992px){
    .corporativ_btn{
        display:block;
    }
}

.navigation{
    display:none;
}

.navigation .pages{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
}
.page_next-prev span > svg,.page_next-prev span a > svg{
    width:20px;
    height:20px;
}
.navigation .pages span,.navigation .pages a{
   width: 30px;
    border: 1px solid var(--default);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.navigation .pages span{
    color:#fff;
    background:var(--default);
}


.page_next-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

#addcomment{
    display:none !important;
}