/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}
html {
  scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure {
    margin: 0;
}
a,
button {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
html{
	overflow-x:hidden; 
	direction:rtl;
	scroll-behavior: smooth;
}

body {
    font-family: "Assistant", sans-serif;
    font-size: 19px;
    font-weight: 400;
	font-style: normal;
	color: #000000;
    text-decoration: none;
	direction:rtl;
	padding-top: 0;
}
strong,
b {
	font-weight: bold !important;
}

em {
	font-style: italic !important;
}

.skip-link {
	left: 1px;
}
.wpcf7-form{position:relative;}
.wpcf7-spinner{position:absolute; margin:0; bottom:0; right:0;}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{direction:ltr;}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{margin:10px 0 0;
    padding: 0;
    border: none; color: #dc3232;}
.wpcf7 form.sent .wpcf7-response-output{margin:10px 0 0;
    padding: 0;
    border: none; color:#46b450;}
.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/*.container {
    max-width: 974px;
    padding: 0 15px;
    margin: 0 auto;
}*/
/* ***** End Common Css **** */

.blog-section {
  margin: 0 auto;
  padding: 45px 0px 60px; 
  position:relative;
  width:100%;
}
.newcontainer{
	max-width: 1418px;
	padding: 0px 20px 0px; 
	 margin: 0 auto;
}
.blog-section:before{
	content:'';
	width:100%;
	height:802px;
	position:absolute;
	top:200px;
	background: #F6F4F2;
	mix-blend-mode: multiply;
	right:0;
	z-index:1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 109px;
  align-items: stretch;
  position:relative;
  z-index:2;
  
}

/* Card */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
min-height: 639px;  
}

/* Image hover scale */
.blog-image {
  overflow: hidden;
  border-radius: 20px;
}

.blog-image img {
 width: 100%;
    height: 100%;
    object-fit: cover;     
    display: block;
	 object-position: center center;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/* Category */
.blog-category {
color:#D2B493;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 36px;
margin: 5px 0;
display: inline-block;
margin-right: auto;
}
.blog-category a{
	color:#D2B493;
}
.blog-category a:hover{
	color:#000000;
}


/* Title */
.blog-title {
color: #000000;
text-align: right;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height:44.43px;
margin:11.78px 0 0;
padding-bottom:11.78px;
border-bottom:1px solid #D2B493;
}

/* Meta row */
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.author{
color: #000000;
text-align: right;
font-size: 17px;
font-style: normal;
font-weight: 700;
line-height: 36px;
}
.blog-meta .date{
color: #000000;
font-size: 17px;
font-style: normal;
font-weight: 700;
line-height: 36px;
}
/* Text */
.blog-text {
color: #000000;
text-align: right;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin:0;
padding-left:59px;
margin-top:11px; margin-bottom:11px;
 display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more */
.read-more {
 color: #000000;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.734px;
    display: flex;
    cursor: pointer;
    width: max-content;
    padding: 0;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
	 transition: width 0.3s ease;
	 cursor:pointer;
	 padding: 4.16px 0;
	  margin-top: auto;
}
.read-more:hover{
	color: #D2B493;
}
.read-more:hover path {
  fill: #D2B493;
}

/* Section */
.single-section {
  padding: 65px 0px 20px;
position:relative;
}
.single-section:before{
	content:'';
	position:absolute;
	top:0;
	width:100%;
	height:203px;
	right:0;
	z-index:0;
	background: linear-gradient(77deg, #DFCBB5 32.91%, #796E62 81.25%);
}

/* Container */
.single-container {
  max-width: 1218px;
  margin: 0 auto;
  padding:0 15px;
}

/* Hero */
.single-hero {
  position: relative;
  height: 425px;            
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 39px;
  background: white;
}

.single-hero img {
  width: auto;
  width:100%;
    height: auto;
  object-fit: cover;          
	 object-position: center top;
  transform: translateY(-5%);
  transition: transform 1.3s ease-out;
  max-width: 100%;
    max-height: 100%;
}
.single-hero:hover img {
    transform: translateY(5%);
}

/* Subtitle */
.single-subtitle {
  color: #000000;
text-align: center;
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 51.835px;
margin:8.08px 0 19px;
padding-bottom:19px;
border-bottom:1px solid #D2B493;
}

/* Meta */
.single-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items:center;
}
.single-meta .meta-category{
color: #000000;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 36px;
}
.single-meta .meta-date{
color: #000000;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 29.62px;
}
.single-content{width:100%;
 display:block;
margin-top:50px;
}
.single-content p {
  color: #000000;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin-bottom:40px;
}
a.backto{
color: #000000;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 29.62px;
cursor:pointer;
margin-right:auto;
display: block;
width: max-content;

}
a.backto:hover{
	color:#D2B493;
}
.related{
	width:100%;
	display:block;
	position:relative;
	padding:26px 0 90px;
}
.related:before{
content:'';
width:100%;
height:284px;
top:0;
right:0;
z-index:0;
background: #F6F4F2;
mix-blend-mode: multiply;
position:absolute;
}
.related h2{
color: #000000;
text-align: center;
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 51.835px;
margin:8.5px 0 50px;
}

/* Section */
.story-section {
  padding-top: 49px;
  padding-bottom:67px;
  background: #F6F4F2;
  width:100%;
  display:block;
  margin:0 auto;
	mix-blend-mode: multiply;
}

/* Container */
.story-container {
  max-width: 1279px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Grid */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 149px;
  row-gap: 99px;
}

/* Card */
.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
min-height: 572px;  
}

/* Image */
.story-image {
  height: 273px;
  overflow: hidden;
  border-radius: 20px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease-out; 
}

.story-card:hover .story-image img {
  transform: scale(1.18);
}

/* Tag */
.story-tag {
color:#D2B493;
font-family: "Poppins", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin:0 auto 0 0;
padding: 9.5px 0;
}

/* Title */
.story-title {
color: #000000;
text-align: right;

font-size: 26px;
font-style: normal;
font-weight: 400;
line-height: 38.506px;
margin:0;
padding: 14.75px 0;
border-bottom:1px solid #D2B493;
}

/* Meta */
.story-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  width:100%;
  align-items: center;
    vertical-align: middle;
	padding: 1px 0;
}

.story-author{
color: #000000;
text-align: right;

font-size: 17px;
font-style: normal;
font-weight: 700;
line-height: 36px;
}
.story-date{
color: #000000;

font-size: 17px;
font-style: normal;
font-weight: 700;
line-height: 25.177px;
}

/* Text */
.story-text {
color: #000000;
text-align: right;
font-family: Assistant;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin:0;
padding-left:18px;
display: -webkit-box;
  -webkit-line-clamp: 3;   /* safe for Hebrew */
  -webkit-box-orient: vertical;
}

/* Read more */
.story-read {
 color: #000000;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.734px;
    display: flex;
    cursor: pointer;
    width: max-content;
    padding: 0;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
	 transition: width 0.3s ease;
	 cursor:pointer;
	 padding: 4.16px 0;
	  margin-top: auto;
}
.story-read:hover{
	color: #D2B493;
}
.story-read:hover path {
  fill: #D2B493;
}
.storysingle-container{
	max-width: 1223px;
    margin: 0 auto;
    padding: 0 15px;
}
.storysingle-container .single-hero{
	box-shadow: 1px 1px 14px 4px rgba(0, 0, 0, 0.36);
	background-color:transparent;
	border-radius: 20px;
	background: lightgray -12.089px -88px / 102.079% 144.534% no-repeat;

/* Drop Shadow */
box-shadow: 1px 1px 14px 4px rgba(0, 0, 0, 0.36);
}
.storysingle-container .single-hero img{transform:inherit;}
.storysingle-container .single-hero:hover img {transform:inherit;}
.storynewcontainer{
	max-width: 1279px;
    padding: 0px 15px;
    margin: 0 auto;
}
@supports not (mix-blend-mode: multiply) {
  .blog-section:before,
  .related:before,
  .story-section {
    mix-blend-mode: normal;
    opacity: 0.95;
  }
}

.blog-image img,
.story-image img,
.single-hero img {
  will-change: transform;
}
.blog-text,
.story-text {
  overflow: hidden;
}



.product-section {
  padding: 54px 0 81.63px;
  background: linear-gradient(90deg, #F6F4F2 50%, #D2B493 100%);
	background-blend-mode: multiply;
	mix-blend-mode: multiply;
}

.product-container {
  max-width: 1198px;
  margin: 0 auto;
  padding: 0 15px;
}
.product-container-filter{
  max-width: 1173px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Filters */
.product-filters {
  display: flex;
  gap: 30px;
  margin-bottom: 62px;
  justify-content: space-between;	
  align-items: flex-start;
  max-width: 361px;
}
.tax-product_category .product-filters {max-width:100%;}
.tax-product_treatment .product-filters {max-width:100%;}
.archive .product-filters {max-width:100%;}
/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap:101.97px;
  row-gap:76.63px;
}

/* Card */
.product-card {
  display: flex;
  gap: 0px;
  position: relative;
box-shadow: none;
  transition: box-shadow 600ms ease-out;

  /* 🔥 THIS FIXES THE GLITCH */
  will-change: box-shadow;
  transform: translateZ(0);
  border-radius: 20px;
  background: black;
}

.product-card:hover {
  box-shadow: 1px 1px 14px 4px rgba(0, 0, 0, 0.36);
}

/* Image */
.product-image {
 width: 327px;
 width:265px;
	height: 277px;
border-radius: 20px;
	overflow: hidden;
	margin-right: auto;
	position: relative;
}

.product-image img {
 transition: transform 0.6s ease;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Info */
.product-info {
  color: #fff;
  padding: 26.18px 25.01px;
  width: 100%;
  border-radius: 13px;
	background: #000000;
	
display: flex;
width: 268.028px;
height: 278.37px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 18px;
z-index: 1;
position: absolute;
right: 0;
height: 100%;
}

.product-info h3 {
color: #FFFFFF;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin:0;
}
.product-info hr{
	border-top: 1px solid #D2B493;
    width: 159px;
    border-bottom: none;
border-right: none;
border-left:none;
}

.product-info p {
color: #FFFFFF;
text-align: center;
font-family: "Poppins", Assistant,sans-serif;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin:0;
}
.product-info p span{display:block;}

.product-info .price {
color: #FFFFFF;
text-align: center;
font-family: "Poppins", Assistant,sans-serif;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.product-btn {
  display: inline-block;
  background: #F6F4F2;
  color: #000000;
  padding: 12px 31.94px;
 border-radius: 12px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
border: 0.8px solid #000000;
cursor:pointer;
}
.cosmetics-section .product-btn {
	padding: 12px 31.94px;
	padding:12px 15px;
}
.product-btn:hover{
background: #000000;
color: #F6F4F2;
}


.filter-dropdown {
  width: 100%; /* EXACT from Figma */
  background: #000000;
  border-radius: 9px;
  color: #fff;

  font-family: Assistant, sans-serif;
}

/* Header */
.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0px 16px;
  cursor: pointer;
  height: 44px; 
}

.filter-title {
color: #FFFFFF;
text-align: right;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.filter-arrow {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.filter-dropdown.open .filter-arrow {
  transform: rotate(180deg);
}

/* Body */
.filter-body {
 max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  pointer-events: none;

  padding: 0; /* 👈 KEY FIX */

  transition:
    max-height 0.45s cubic-bezier(.4,0,.2,1),
    opacity 0.25s ease,
    transform 0.35s ease,
    padding 0.25s ease;
}

.filter-dropdown.open .filter-body {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;

  padding: 12px 0 14px; /* 👈 only when open */
}
.filter-body a {
color: #FFFFFF;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
display:block;
padding:10.5px 0;
}

/* OPEN STATE (Variant 2) */
.filter-dropdown.open .filter-body {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.filter-dropdown.open .filter-arrow {
  transform: rotate(180deg);
}

filter-body.mainbody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Checkbox label styling */
.filter-body.mainbody .filter-item {
  display: block;
  width: 100%;
  padding: 10px 0;

  text-align: center;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;

  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hide checkbox */
.filter-body.mainbody input[type="checkbox"],
.filter-body.mainbody input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Active state */
.filter-body.mainbody input[type="checkbox"]:checked + span,
.filter-body.mainbody input[type="radio"]:checked + span{
  color: #D4AF37;
}

.filter-body.mainbody input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

/* Default color */
.filter-body.mainbody .filter-item span {
  color: #FFFFFF;
  transition: 0.3s ease;
}

/* Active color */
.filter-body.mainbody input[type="checkbox"]:checked + span,
.filter-body.mainbody input[type="radio"]:checked + span{
  color: #D4AF37;
}


.cosmetics-section {
  padding: 41px 0 146px;
  background: #F6F4F2;
	mix-blend-mode: multiply;
}

.cosmetics-container {
  max-width: 1198px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Intro */
.cosmetics-intro {
  max-width: 855px;
  margin: 0 auto 112px;
  text-align: center;
}

.cosmetics-intro p {
  color: #000000;
text-align: center;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin:0;
}

.cosmetics-cta {
border-radius: 12px;
border: 0.8px solid #000;
background: #F6F4F2;
color: #000000;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
cursor:pointer;
transition:
    background-color 600ms ease-out,
    color 600ms ease-out;
  will-change: background-color;
  padding: 12px 0px;
    width: 180px;
    display: inline-block;
	margin-top:55px;
	margin-right: auto;
    margin-left: auto;
    display: grid;
}

.cosmetics-cta:hover {
  background: #000000;
  color: #F6F4F2;
}


.results-section {
  padding: 87px 0 100px;
  background: #ffffff;
}

.results-container {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 15px;
}

.results-title {
color: #000000;
text-align: center;
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 51.835px;
margin-bottom:72px;
padding: 8.10px 0;
}

/* Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 column-gap: 43px;
    row-gap: 38px;
}

/* Item */
.result-item {
  text-align: center;
}

/* Images */


.result-images figure {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  border-radius: 18px;
  position:relative;
}

.result-images img {
 position:absolute;
 width:100%;
 height:100%;
 max-width:100%;
 max-height:100%;
 object-fit:cover;
 object-position:center;
}

/* Badge */
.badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #E6D5BE;
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Caption */
.result-caption {
color: #000000;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 27.22px;
margin:10px 0 0;
padding: 13.90px 0;
}

.tipolim-section {
  padding: 72px 0 90px;
  background: #ffffff;
}

.tipolim-container {
  max-width: 1468px;
  margin: 0 auto;
  padding: 0 15px;
}

.tipolim-title {
color: #000000;
text-align: right;
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 51.835px;
/*margin:0 0 40px;*/
position: absolute;
}

/* GRID */
.tipolim-grid {
  display: grid;
  grid-template-columns: repeat(2, 678px);
  column-gap: 82px;
  row-gap: 46px;
  justify-content: start;
}
/* CARD */
.tipolim-card {
  width: 678px;
  height: 457px;
  display: flex;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
justify-content: space-between;
-webkit-transition: all 0.3s linear  !important;
transition: all 0.3s linear !important;
}
.tipolim-card:hover{
	box-shadow: 1px 1px 14px 4px rgba(0, 0, 0, 0.36);
}

/* IMAGE */
.treatment-image {
width: 306px;
height: 100%;
margin-right: auto;
position: relative;
border-radius: 20px 0px 0 20px;
background: lightgray -21px -61.403px / 113.752% 116.818% no-repeat;
}

.treatment-image img {
  transition: transform 0.6s ease;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* CONTENT */
.tipolim-content {
  width: 402px;
  padding: 30px 24px 24.69px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: right;
  border-radius: 0 20px 20px 0;
background: #000000;
    position: absolute;
    right: 0;
    z-index: 1;
    height: 100%;
}

.tipolim-content h3 {
  color: #F6F4F2;
text-align: right;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 37.025px;
margin:0 0 17px;
padding-bottom:10px;
border-bottom:1px solid #D2B493;
max-width:325px;
}

.tipolim-content hr {
  width: 60px;
  border: none;
  border-top: 1px solid #D2B493;
  margin: 0 auto 16px;
}

.tipolim-content p {
color:#F6F4F2;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
margin:0;
max-width:325.541px;
}

/* BUTTON */
.treatment-btn {
background: #F6F4F2;
color: #000000;
text-align: center;
font-family: Assistant;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius: 12px;
border: 0.8px solid #000000;
background: #F6F4F2;
cursor:pointer;
width: 166px;
    height: 48px;
    align-items: center;
    display: flex;
    vertical-align: middle;
    justify-content: center;
	margin-top:auto;
}

.treatment-btn:hover {
  background: #000000;
  color: #F6F4F2;
}

.tipolim-card:nth-child(1) {
  margin-top: 109px;
}

.tipolim-card:nth-child(2n + 4) {
  margin-top: -109px;
}

/* Container */
.container-1425 {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
    width: 100%;
}

/* HERO */
.contact-hero {
  background: #000000;
  padding: 0;
  direction: rtl;
  position:relative;
  overflow-x:hidden;
  min-height: 713px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.contact-hero:before{
background: linear-gradient(90deg, #F6F4F2 0%, #D2B493 100%);
background-blend-mode: multiply;
content:'';
width:464px;
height:100%;
position:absolute;
z-index:0;
left:0;
top:0;
}


.contact-grid {
  display: grid;
  grid-template-columns: 847px auto;
  align-items: center;
  gap: 0px;
  margin-top:8.70%;
}
.contact-imagenew{
	position:absolute;
	top:0;
	left: 6.5%;
}
.contact-imagenew img {
  width: 100%;
  height: auto;
  display: block;
}

/* FORM */
.contact-form {
  color: #fff;
}

.contact-form h1 {
color: #FFFFFF;
text-align: right;
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 51.835px;
margin:0;
padding:10px 0 20px;
}

.contact-form p {
color: #FFFFFF;
text-align: right;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin: 0;
padding: 0 0 21px;

}
.wpcf7-form{direction:rtl;}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{direction:rtl;}

.form-grid p {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  row-gap:12px;
  padding: 0;
}
.form-grid.botom
{
display: grid;
  grid-template-columns: 706px auto;
  gap: 13px;
  row-gap:0px;
  margin-top:12px;
  padding: 0;
}
.form-grid.botom p
{
display: block;
  padding: 0;
}
.form-checkbox{
	position: relative;
margin: 0;
}
.wpcf7-list-item{margin:0;}

.wpcf7-form-control-wrap {width:100%;}


.contact-form input,
.contact-form textarea {
padding: 15.915px 17px;
border-radius: 6px;
border: none;
color: #000000;
text-align: right;
font-family: Assistant;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: 25.177px;
outline:0;
border-radius: 8px;
background: #F1F1F1;
width:100%;
}
.contact-form .form-grid textarea {
 
  height: 57px;
  outline:0;
  resize:none;
  padding: 16px 17px 0;
  width:100%;
}

.contact-form input::-webkit-input-placeholder { 
  color: #000000;
}
.contact-form input::-moz-placeholder {
  color: #000000;
}
.contact-form input:-ms-input-placeholder {
  color: #000000;
}
.contact-form input:-moz-placeholder { 
 color: #000000;
}

.contact-form textarea::-webkit-input-placeholder { 
  color: #000000;
}
.contact-form textarea::-moz-placeholder {
  color: #000000;
}
.contact-form textarea:-ms-input-placeholder {
  color: #000000;
}
.contact-form textarea:-moz-placeholder { 
 color: #000000;
}

.contact-form .wpcf7-submit {
cursor: pointer;
width: 128px;
height: 58px;  
border-radius: 12px;
border: 0.8px solid #F6F4F2;
background: #000000;
color: #F6F4F2;
text-align: center;
font-family: Assistant;
font-size: 21px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.contact-form .wpcf7-submit:hover{
border-radius: 12px;
border: 0.8px solid #F6F4F2;
background: #F6F4F2;
color:#000000;
}

.form-checkbox label{
	color: white;
    text-align: right;
    font-family: Assistant;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	padding-right: 17px;
	position:relative;
}
.form-checkbox label a{color:white; font-weight:bold;}
.form-checkbox input {
    position: absolute;
    left: inherit;
    right: 0;
    top: 5px;
    border-radius: 0px !important;
    width: 11px !important;
    height: 11px;
    opacity: 1;
    visibility: visible;
    background-color: #d9d9d9;
	margin:0;
	padding:6px !important;
	outline:0 !important;
}

.contact-wrp .row{align-items: baseline;}
.contact-wrp .row .form-checkbox label{color:black;}
.contact-wrp .row .form-checkbox label a{color:black;}

/* BOTTOM */
.contact-bottom {
  padding: 87px 0 86px;
  background: #F6F4F2;
  position:relative;
  overflow-x:hidden;
  height: 535px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 523px;
  gap: 0;
  align-items: center;
  height: 100%;
}
.map{
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    width: 1008px;
    height: 535px;
    aspect-ratio: 149 / 78;
}
.map iframe {
 width: 100%;
height: 100%;
border:0;
}

.contact-details p {
color: #000000;
text-align: right;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 68px;
margin:0;
border-bottom:1px solid #D2B493;
padding-right:31px;
}
.contact-details p a{
	color: #000000;
}
.contact-details p a:hover{
	color: #D2B493;
}

.banner-container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
}
.top-banner {
  position: relative;
  padding: 180px 0 205px;
  direction: rtl;
}
.top-banner.treatmentbanner{padding:209px 0 225px;}

.banner-gradient {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height:100%;
  background: linear-gradient(77deg, #DFCBB5 32.91%, #796E62 81.25%);
  z-index: 0;
}
.banner-grid {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  position: relative;
  z-index: 2;
}
.banner-image {
  position: absolute;
    left: 45px;
    bottom: -9px;
}
.treatmentbanner .banner-image {left:130px; bottom:-5px;}

.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.banner-content {
  max-width: 512px;
  margin-left: auto;
  text-align: right;
  color: #FFF;
}

.banner-content h1 {
  font-size: 35px;
  font-weight: 400;
  line-height: 51.835px;
  margin: 0px;
  padding:8px 0;
}

.banner-content p {
  font-family: Assistant;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}
.story-banner{width:100%; clear:both; margin:0; padding:0; position: relative;}
.story-banner .banner-grid{
	display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-banner .banner-image {
  display: flex;
  justify-content: flex-start;
  position:relative;
  bottom: inherit;
    left: inherit;
    max-width: 100%;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.story-banner .banner-content{max-width:391px;}

	.cosmetic-banner{width:100%; clear:both; margin:0; padding:0; position: relative; min-height:661px; display: flex; align-items: center;}
	.cosmetic-banner .banner-container{width:100%;}
	.cosmetic-banner .banner-image{left:125px; bottom:0;}
.story-banner.blog-banner .banner-content{max-width:512px;}

.video-popup{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

/* when open */
.video-popup.active{
    display:flex;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.85);
}

.video-modal{
    position: relative;
    width: 85%;
    max-width: 900px;
    z-index: 2;
    padding: 10px;
    border-radius: 50px;
    margin:0;  
}

.video-container{
    position:relative;
    padding-top:56.25%;
    background:#000;
}

.video-container video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
}
.video-container iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
}

.video-close{
    position:absolute;
    top:-45px;
    right:0;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}
.counter{
    will-change: contents;
}
.page-template-robots .benefits-wrp .titlebar h2{padding: 8.11px 0; line-height: 148.1%;}
.page-template-robots .benefits-wrp .titlebar{margin-bottom:125px;}
.benefits-wrp .titlebar P{
color: #000;
text-align: center;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
margin:0;
}

.video-wrp{width:100%; clear:both; margin:180px auto 140px; padding:0; text-align:center;}
.video_block_image{width:auto; margin:0 auto; text-align:center; position:relative; display: inline-block;}
.video_block_image img{margin: 0 auto;
    object-fit: cover;}
.video_block_image .play-button {
    position: absolute;
    left: 30%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #212121;
    height: 95px;
    width: 95px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video_block_image .play-button img {
    height: auto;
    width: auto;
    max-width: 100%;
	position: relative;
    left: 6px;
}
.top_banner_robots{width:100%; display:block; margin:0; padding:0; position:relative;}
.top_banner_robots:before{
	content:'';
	background: #000000;
	width:50%;
	right:0;
	position:absolute;
	z-index:-1;
	top:0;
	height:100%;
}
.robotscontainer{max-width:1436px; padding:0 15px; margin:0 auto;}
.top_banner_robots .b_main{width:100%; display:grid; grid-template-columns:1fr 1fr; position:relative; z-index:1; padding:23px 0 28px;}

.top_banner_robots .banner_info h1{
color: #F6F4F2;
text-align: right;
font-size: 55px;
font-style: normal;
font-weight: 700;
line-height: 63px;
margin:0;
}
.top_banner_robots .banner_info h2{
color: #F6F4F2;
font-size: 37px;
font-style: normal;
font-weight: 300;
line-height: 58px;
margin:0 0 23px;
}
.top_banner_robots .banner_info p{
color: #F6F4F2;
text-align: right;
font-family: Assistant;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 34px;
margin:0;
max-width:500px;
}
.top_banner_robots .banner_info{position:relative; top:32%;}
.top_banner_robots .banner_image{padding-right:24%;}
.clogo{
	position: absolute;
	left: -6%;
	top: 99px;
	border-radius: 512px;	
}

.rightextrainfo,.leftextrainfo{
    display:none;
    overflow:hidden;
}

.single-products .about-wrp .about-block .row{align-items: baseline;}
.navbar .navbar-nav{direction:rtl;}

.global_section{background:white;}
.global_section .cosmetics-intro{max-width:100%; margin:0 auto;}
.global_section .single-content{margin-top:0px;}
.global_section  ul{list-style:disc; padding-right:20px; text-align:right;}
.global_section  ul li{list-style:disc;}
.global_section  ol{list-style:decimal; padding-right:20px; text-align:right;}
.global_section  ol li{list-style:decimal; margin:0 0 10px; text-align:right;}
.global_section  ul li a,.global_section  ul li{
font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    text-align: center;
    color: #000000;
margin: 0;
text-align:right;
}
.global_section  ul li{ margin:0 0 10px; text-align:right;}
.global_section h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: normal;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.global_section h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 63px;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.global_section h3 {
    font-weight: 500;
    font-size: 35px;
    line-height: normal;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.global_section h4 {
    font-weight: 400;
    font-size: 30px;
    line-height: normal;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.global_section h5 {
    font-weight: 400;
    font-size: 25px;
    line-height: normal;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.global_section h6 {
    font-weight: 400;
    font-size: 22px;
    line-height: normal;
    text-align: right;
    color: #000000;
    margin: 0 0 15px;
}
.management-detail{display:grid; grid-template-columns:1fr 1fr 1fr; column-gap:50px; row-gap:50px;}
.global_section .cosmetics-intro p{text-align:right;}
.not-found .cosmetics-section.global_section{padding:100px 0; text-align:center;}
.not-found .global_section .cosmetics-intro p{text-align:center; font-size:50px; line-height:normal;}
.not-found .global_section .cosmetics-intro p a{color:black;}
.wpcf7-not-valid-tip{font-size:16px;}
.fade{
  opacity:0;
  transition:opacity .6s ease;
}

.fade.show{
  opacity:1;
}
.navbar-nav > li.menu-item-has-children{
    position:static;
	position:relative;
}

.mega-submenu{
    position:absolute;
    top:147%;
    /*left:9%;*/
	right:0;
    width:100%;
    background:#fff;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;

    pointer-events:none;
    z-index:99;
	border-radius: 0 0 20px 20px;
    background: #F6F4F2;
    box-shadow: -8px 9px 11px 0 rgba(0, 0, 0, 0.14);
    /*max-width: 827px;*/
	width:827px;
}
.navbar-nav li.menu-item-has-children:hover > .mega-submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}
.navbar-nav li.menu-item-has-children::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-20px;
    width:100%;
    height:20px;
}
.mega-wrapper{
    animation: megaFade .35s ease;
}

@keyframes megaFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.mega-wrapper{
    max-width:100%;
    margin:auto;
    display:flex;
    gap:15px;
	justify-content: space-between;
}

.mega-card{
    width:320px;
    padding: 8px 23px 8px 50px;
    display: block;
    text-decoration: none;
    transition: .3s;
    max-width: 366px;
    width: 366px;
}

.mega-card-inner{
    display:flex;
    align-items:center;
    gap:15px;
	justify-content: space-between;
	position:relative;
}
ul.sub-menu.mega-submenu li.current-menu-item a{
border-radius: 20px;
background: #EDE6DF;
}
ul.sub-menu.mega-submenu li a{
border-radius: 20px;
background: transparent;
transition: .3s;
}
ul.sub-menu.mega-submenu li a:hover{
	border-radius: 20px;
background: #EDE6DF;
}
ul.sub-menu.mega-submenu li:nth-child(2) .mega-card{
	padding: 8px 30px 8px 47px;
    width: 395px;
    max-width: 395px;
}
.mega-img img{
	height: 101px;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    object-fit: cover;
    width: auto;
    max-width: 100%;
}

.mega-content h4{
    margin:0;
color: #000000;
text-align: right;
font-family: Assistant;
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: 20px;
}

.mega-content p{
margin:0;
color: #000000;
font-family: Assistant;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}

.mega-card.highlight{
    background:#efe7dd;
}

.mega-submenu{
    list-style:none;
    padding:2px 16px 10px;
}

.mega-submenu > li{
    display:inline-block;
}
.mega-wrapper:before{
content:'';
width:1px;
height:89px;
position:absolute;
background: #D2B493; 
left:52%;
top:50%;
transform:translate(-52%,-50%);
}

.result-images figure ul{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    display: flex;
    align-items: center;
}
.result-images figure li{
    width: 50%;
}
.result-images figure span{
    font-weight: 400;
    font-size: 19px;
    text-align: center;
    color: #000000;
    display: table;
    margin: 0 auto;
    width: 84px;
    background: rgba(210, 180, 147, 0.82);
    border-radius: 6px;
    padding: 4px;
}
.page-template-blog-php .banner-content h1{margin:0 0 20px;}
.leftd{border-left:1px solid #D2B493;}
.rightd{padding-right:15%;}
.labtnab{padding-right:40px;}
.rabtnab{padding-right:40px;}
.page-template-robots-php .before-after-technology .technology_slider .slider-box .box-img ul li span{color:#ffffff;}
.techdetail{
position: relative;
    z-index: 9;
    margin-bottom: 110px;	
}
.techdetail h2{
	color: #FFFFFF;
    text-align: right;
    font-family: Assistant;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 148.1%;
}
.techdetail h3{
	color: #FFF;
    text-align: right;
    font-family: Assistant;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 136.1%;
}
.faq-block .collapse {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-block .accordion-item.active .collapse {
    max-height: 1000px; /* large enough value */
}

.single-products .review-wrp .review_slider .slider-box .detail h6{color: #D2B493;}
.foot-icon{display:flex; align-items:center; gap:4px;}
.foot-icon img{max-width:100%; max-height:32px; obeject-fit:cover;}
.review-wrp.newreve .review_slider .slider-box .detail h6{color: #D2B493; font-size: 18px;}
.review-wrp .review_slider .swiper-slide{
	height: auto !important;
    display: flex;
}
.top_banner_robots .banner_image img{max-height:650px;}
.story-title a{color:#000000;}
.swiper.technology_slider.three .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 43px;
}
.swiper.technology_slider.four .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    column-gap: 30px;
}
.swiper.technology_slider.five .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
}
@media (min-width: 768px) {
	.submenu-toggle{display:none;}
	.service-wrp .service-box .box-grid .box-icon{
	position: relative;
    top: -6px;}
	.cent{justify-content: center; display: flex;}
	.cosmetics-banner-wrp .banner-img-mobile{display:none;}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.service-wrp .service-box .box-grid .box-icon{width:80px; height:80px;}
	.cosmetics-banner-wrp{padding:60px 0;}
	.our-products-wrp .products_slider{max-width:80%; margin:0 auto;}
}
@media (min-width: 992px) and (max-width: 1024px) {
.our-products-wrp .products_slider{max-width:70%; margin:0 auto;}
.review-wrp .review_slider .slider-box{margin:15px;}
.review-wrp .review_slider .slider-box:hover{box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.36);}
}
@media (min-width: 992px) {
.technology-block .btn-primary{padding:12px 30.82px;}
.success-stories-wrp .btn-primary.black{padding:12px 32.48px;}
.master-robot-wrp .btn-primary.black{padding:12px 0; width:156.842px;}
.training-center-wrp .btn-primary.black{padding:12px 0; width:156.842px;}
}

@media (min-width: 1025px) {
	.benefits-img img{margin-right:2%;}
	.team-wrp .team_slider{max-width:92%;}
	.product-banner-wrp .product-detail .btn-group .btn-primary:nth-child(1){width:147px; padding-right:0px; padding-left:0px;}
	.product-banner-wrp .product-detail .btn-group .btn-primary:nth-child(2){width:171px; padding-right:0px; padding-left:0px;}
	.tipolim-title{margin-top:-18px;}
	.page-template-robots  .skin-wrp .skin-girl{left:0;}
	.page-template-robots.page-id-421 .skin-wrp .skin-girl{left:10%;}
	.page-template-robots .about-wrp .about-image img{object-position: left; opacity: 0; visibility: hidden;}
	
	.page-template-robots .about-wrp{background:transparent;}
	.page-template-robots .about-wrp .about-image{background-attachment:fixed !important; background-size:auto !important; background-size:auto 100% !important; background-repeat: no-repeat !important;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:nth-child(1){max-width:max-content;}
	.page-template-robots .about-wrp{
		min-height: 500px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
	}
	.page-template-robots .about-wrp .container{width:100%;}
}
@media (min-width: 1200px) {
	.benefits-img img{margin-right:6%;}
	.story-banner .banner-content{position:relative; margin-top:-10%;}
	.page-template-robots .skin-wrp .detail h2{margin:0 0 10px;}
	.page-template-robots .skin-wrp .detail p{margin-bottom:20px;}
	.page-template-robots .skin-wrp .detail p:last-child{margin-bottom:0px;}
	.page-template-robots .about-wrp{min-height: 550px;}
}
@media (min-width: 1025px) and (max-width: 1600px) {
	.benefits-img img{max-width:100%;}
	.benefits-detail ul li a h3{font-size:28px;}
	.benefits-detail ul li a p{font-size:18px; line-height:normal;}
	.benefits-detail ul li a{padding:10px 20px;}
}
@media (min-width:1400px){
 .products_slider .slider-box{
    width:100%;
    height:302px;
    flex:0 0 auto;
  }
  .benefits-img img{margin-right:8%;}
  .page-template-robots .about-wrp{min-height: 580px;}
}
@media (min-width: 1600px) {
	.success-stories-wrp .stories_slider{
		padding: 0 25px;
    max-width: 1480px;
    margin: 0 -25px;
	}
	.benefits-img img{margin-right:10%;}
	.about-wrp .about-block.cosmetics-about-block .about-detail h2{line-height:51.83px; margin:0 0 15px;}
	.page-template-robots  .skin-wrp{padding: 107.08px 0;}
	.page-template-robots.page-id-421 .benefits-img img{margin-right:30%;}
	.page-template-robots .about-wrp{min-height: 779px;}
	.techdetail{margin-bottom: 60px;}
	.page-template-robots.page-id-421 .skin-wrp .skin-girl{left:18%;}
	.single-products .about-wrp .about-image{width:58.35%;}
	.page-template-cosmeticsmain .about-wrp .about-image{width:58.35%;}
	.page-template-robots .skin-wrp .skin-girl{max-height:550px;}
}
@media (min-width: 1801px) {
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6{min-height:295px;}
	 
}
@media (min-width: 2100px) {
.single-products .product-banner-wrp{max-width:1920px; margin:0 auto;}
.single-products .about-technology-wrp{max-width:1920px; margin:0 auto;}
.main-wrpper{max-width:1920px; margin:0 auto;}
}
@media (min-width: 1501px) and (max-width: 1800px) {
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:nth-child(1){border-left:none;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:last-child{border-right:1px solid #D2B493;}
}
@media (min-width: 1200px) and (max-width: 1600px) {
	.container-1425{max-width: 1170px;}
	.contact-hero{min-height: 550px;}
	
}
@media (min-width: 1200px) and (max-width: 1500px) {
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:nth-child(1){border-left:none;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:last-child{border-right:1px solid #D2B493;}
}
@media (min-width: 1200px) and (max-width: 1400px) {
	.clogo{left:-2%; top:40px;}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:nth-child(1){border-left:none;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:last-child{border-right:1px solid #D2B493;}
	.techdetail h3{font-size:24px;}
	.page-template-robots .skin-wrp .skin-girl{left:0%; max-width:65%; max-height: 100%;}
	.page-template-robots .skin-wrp{padding:60px 0;}
	.page-template-robots .faq-wrp .titlebar h2{font-size:24px;}
	.clogo{left:0; top:10px;}
	
}
@media (min-width: 768px) and (max-width: 991px) {
	.techdetail h3{font-size:24px;}
	.page-template-robots .skin-wrp .skin-girl{left:0%; max-width:65%; max-height: 100%;}
	.page-template-robots .skin-wrp{padding:60px 0;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:nth-child(1){border-left:none;}
	.page-template-robots.page-id-421 .cosmetics-about-block .row .col-md-6:last-child{border-right:1px solid #D2B493;}
	.page-template-robots .faq-wrp .titlebar h2{font-size:24px;}
}
@media (max-width:1399px){
  .products_slider .slider-box{
    width:100%;
    aspect-ratio:504/302;
  }
}

@media (hover: none) {
  .product-card:hover {
    box-shadow: none;
  }
}

@media (max-width: 1600px) {
  .blog-grid {
    column-gap: 60px;
    row-gap: 90px;
  }

  .blog-title {
    font-size: 28px;
    line-height: 40px;
  }
  .blog-section:before {
    top: 180px;
    height: 720px;
  }
  .single-hero {
    height: 338px;
  }
  .storysingle-container .single-hero img{width:100%;}

  .single-subtitle,
  .related h2 {
    font-size: 32px;
    line-height: 46px;
  }
  .storysingle-container {
    max-width: 980px;
  }
  .story-container,
  .storynewcontainer {
    max-width: 980px;
  }
  .story-grid {
    column-gap: 100px;
    row-gap: 80px;
  }
  
  .product-container {
    max-width: 1140px;
  }

  .product-container-filter {
    max-width: 1120px;
  }

  .product-grid {
    column-gap: 80px;
    row-gap: 70px;
  }

  .product-image {
    width: 300px;
	 width:265px;
    height: 255px;
  }
  .product-info h3{font-size:20px;}
  .product-info p{font-size:16px;}
  .product-btn{padding:9px 25px;}

  .product-info {
    width: 250px;
  }
   .results-container {
    max-width: 1180px;
  }
	
  .results-title {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 60px;
  }

  .result-images figure {
    height: 270px;
  }
  .tipolim-container {
    max-width: 1468px;
  }

  .tipolim-grid {
    column-gap: 5%;
    row-gap: 44px;
	width: 100%;
	grid-template-columns: repeat(2, 45%);
  }

  .tipolim-card {
    height: 450px;
	width:100%;
  }
  .tipolim-content{
	  width:50%;
	  padding: 10px 15px;
  }
  .tipolim-content p{
	  font-size: 16px;
	  line-height: 22px;
  }
  .form-grid p {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid.botom{
    grid-template-columns: 80% 18%;
  }

  .contact-form .wpcf7-submit {
    width: 100%;
  }
   .top-banner {
    padding: 90px 0 120px;
  }
  .top-banner.treatmentbanner{padding:80px 0 120px;}

  .banner-image {
    left: 20px;
    max-width: 50%;
  }
  .treatmentbanner .banner-image {left:60px;}

  .story-banner .banner-grid{justify-content: space-between;}
  .story-banner .banner-image img{margin-right: auto;
    max-width: 80%;}
	
 .cosmetic-banner {
    min-height: 550px;
  }

  .cosmetic-banner .banner-image {
     left: 20px;
    max-width: 50%;
  }
  .video-modal{
        max-width:900px;
    }
  .page-template-robots .benefits-wrp .titlebar{margin-bottom:100px;}

.video-wrp{
    margin:150px auto 120px;
}

.video_block_image .play-button{
    height:85px;
    width:85px;
    left:32%;
}

.robotscontainer{
        max-width:1170px;
    }

    .top_banner_robots .banner_info h1{
        font-size:52px;
        line-height:60px;
    }

    .top_banner_robots .banner_info h2{
        font-size:34px;
        line-height:52px;
    }

    .top_banner_robots .banner_image{
        padding-right:18%;
    }
	.global_section h1{font-size:54px;}
.global_section h2{font-size:40px; line-height:56px;}
.global_section h3{font-size:32px;}
.global_section h4{font-size:28px;}
.global_section h5{font-size:24px;}
.global_section h6{font-size:21px;}

.global_section ul li,
.global_section ul li a{
    font-size:18px;
    line-height:30px;
}

.management-detail{
    column-gap:40px;
    row-gap:40px;
}

/* center under parent nicely */
.mega-submenu{
    top:134%;
}

.navbar-nav li.menu-item-has-children:hover > .mega-submenu{
   
}

/* spacing balance */
.mega-wrapper{
    gap:15px;
}

/* cards slightly smaller */
.mega-card{
    width:380px;
    max-width:380px;
    padding:10px 20px 10px 40px;
}

/* divider adjust */
.mega-wrapper:before{
    height:95px;
    left:50%;
    transform:translate(-50%,-50%);
}

/* image proportion */
.mega-img img{
    height:95px;
}

/* typography scale */
.mega-content h4{
    font-size:15px;
}

.mega-content p{
    font-size:14px;
}


}
@media (max-width: 1500px) {
  .banner-container{max-width: 1170px;}
  .single-container,
  .newcontainer {
    max-width: 1170px;
  }
}

@media (max-width: 1400px) {
	.tipolim-container{max-width:1170px;}

  .banner-container {
    max-width: 1170px;
  }

  .story-banner .banner-grid {
    gap: 30px;
  }

  .story-banner .banner-image img {
    max-width: 85%;
  }
   .cosmetic-banner {
    min-height: 480px;
  }
    .video-modal{
        max-width:950px;
        padding:12px;
    }
	.page-template-robots .benefits-wrp .titlebar{margin-bottom:90px;}

.benefits-wrp .titlebar p{
    font-size:18px;
    line-height:30px;
}

.video-wrp{
    margin:130px auto 110px;
}

.video_block_image img{
    max-width:95%;
}

.video_block_image .play-button{
    height:80px;
    width:80px;
}

.top_banner_robots .banner_info{
        top:20%;
    }

    .top_banner_robots .banner_info h1{
        font-size:48px;
        line-height:56px;
    }

    .top_banner_robots .banner_info h2{
        font-size:30px;
        line-height:46px;
    }

    .top_banner_robots .banner_info p{
        font-size:22px;
        line-height:32px;
    }

    .top_banner_robots .banner_image{
        padding-right:14%;
    }
.global_section h1{font-size:48px;}
.global_section h2{font-size:36px; line-height:52px;}
.global_section h3{font-size:30px;}
.global_section h4{font-size:26px;}
.global_section h5{font-size:23px;}
.global_section h6{font-size:20px;}

.global_section ul li,
.global_section ul li a{
    font-size:17px;
    line-height:28px;
}

.management-detail{
    grid-template-columns:1fr 1fr;
}

.mega-submenu{
    transform:translateX(-50%) translateY(20px);
    max-width:760px;
    top:120%;
	right: -100%;
}

.navbar-nav li.menu-item-has-children:hover > .mega-submenu{
    /*transform:translateX(-50%) translateY(0);*/
}

.mega-card{
    width:330px;
    max-width:330px;
    padding:8px 18px 8px 35px;
}

.mega-wrapper:before{
    height:80px;
}

}
@media (max-width: 1199px) {
	.product-info {
   gap:10px;
  }
  .single-container,
  .newcontainer {
    max-width: 740px;
  }
  .storysingle-container
  {
    max-width: 740px;
  }
  .cosmetics-container{max-width:980px;}
  .story-container,
  .storynewcontainer {
    max-width: 740px;
  }

  .blog-grid {
    column-gap: 40px;
    row-gap: 70px;
  }

  .blog-card {
    min-height: 580px;
  }

  .blog-category {
    font-size: 16px;
  }

  .blog-title {
    font-size: 26px;
    line-height: 38px;
  }

  .blog-text {
    font-size: 17px;
    line-height: 28px;
    padding-left: 40px;
  }
  .blog-section:before {
    top: 150px;
    height: 640px;
  }
  .single-hero {
    height: 252px;
  }

  .single-subtitle,
  .related h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .single-meta .meta-category,
  .single-meta .meta-date {
    font-size: 18px;
  }

  .single-content p {
    font-size: 18px;
    line-height: 30px;
  }
   .story-grid {
    column-gap: 70px;
    row-gap: 70px;
  }
  
  .story-title {
    font-size: 24px;
    line-height: 34px;
  }

  .story-text {
    font-size: 18px;
    line-height: 30px;
  }
  
  .product-container,
  .product-container-filter {
    max-width: 100%;
    padding: 0 24px;
  }

  .product-grid {
    column-gap: 50px;
    row-gap: 60px;
  }

  .product-image {
    width: 200px;
    height: 240px;
  }

  .product-info h3 {
    font-size: 24px;
  }

  .product-info p,
  .product-info .price {
    font-size: 17px;
  }
  
  .results-container {
    max-width: 100%;
    padding: 0 24px;
  }

  .results-grid {
    column-gap: 32px;
    row-gap: 32px;
  }

  .results-title {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 52px;
  }

  .result-images figure {
    height: 250px;
  }

  .result-caption {
    font-size: 18px;
    line-height: 25px;
  }
  
   /* disable desktop stagger */
  .tipolim-card:nth-child(1),
  .tipolim-card:nth-child(2n + 4) {
    margin-top: 0;
  }

  .tipolim-title {
    position: static;
    margin-bottom: 40px;
  }

  .tipolim-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 40px;
  }

  .tipolim-card {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .treatment-image {
    width: 45%;
  }

  .tipolim-content {
    width: 55%;
    padding: 10px 15px;
  }
   .contact-bottom {
    height: auto;
    padding: 60px 0;
  }

  .map {
    position: relative;
    width: 100%;
    height: 350px;
    left: auto;
    top: auto;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
   .top-banner {
    padding: 120px 0 140px;
  }
  .top-banner.treatmentbanner{padding:60px 0 60px;}

  .banner-image {
    left: 0;
  }
  .treatmentbanner .banner-image {left: 0;}

  .banner-content {
    max-width: 480px;
  }
  
  .banner-container {
    max-width: 980px;
  }

  .story-banner .banner-grid {
    gap: 40px;
  }

  .story-banner .banner-image img {
    max-width: 90%;
  }

  .story-banner .banner-content {
    max-width: 340px;
  }
  .story-banner.blog-banner .banner-content{max-width:400px;}
   .cosmetic-banner {
    min-height: 400px;
  }
  .video-modal{
        max-width:850px;
        padding:12px;
        border-radius:40px;
    }
	
	.page-template-robots .benefits-wrp .titlebar h2{
    padding:12px 0;
}

.page-template-robots .benefits-wrp .titlebar{margin-bottom:70px;}

.benefits-wrp .titlebar p{
    font-size:17px;
    line-height:28px;
}

.video-wrp{
    margin:110px auto 90px;
}

.video_block_image .play-button{
    height:70px;
    width:70px;
}

.top_banner_robots .banner_info{
        top:10%;
    }

    .top_banner_robots .banner_info h1{
        font-size:42px;
        line-height:50px;
    }

    .top_banner_robots .banner_info h2{
        font-size:26px;
        line-height:40px;
    }

    .top_banner_robots .banner_info p{
        font-size:20px;
        line-height:30px;
    }

    .top_banner_robots .banner_image{
        padding-right:8%;
    }
	.global_section h1{font-size:42px;}
.global_section h2{font-size:32px; line-height:46px;}
.global_section h3{font-size:28px;}
.global_section h4{font-size:24px;}
.global_section h5{font-size:22px;}
.global_section h6{font-size:19px;}

.global_section ul li,
.global_section ul li a{
    font-size:16px;
    line-height:27px;
}

.management-detail{
    column-gap:30px;
    row-gap:30px;
}

.mega-submenu{
    max-width:650px;
    padding:10px;
}

.mega-card{
    width:max-content;
    max-width:max-content;
    padding:8px 15px 8px 25px;
}

.mega-img img{
    height:85px;
}

.mega-content h4{
    font-size:14px;
}

.mega-content p{
    font-size:13px;
}

.mega-wrapper:before{
    display:none;
}
.techdetail{margin-bottom: 40px;}
}

@media (max-width: 1024px) {
	.cosmetics-container{max-width:980px;}
	.results-container {max-width:980px;}
	.techdetail{margin-bottom: 30px;}
	.techdetail h2{font-size:24px;}
	.techdetail h3{font-size:22px;}
	.techdetail h3 br{display:none;}
	.page-template-robots .benefits-wrp .titlebar h2{margin-bottom:0px;}
  .newcontainer {
    max-width: 100%;
    padding: 0 24px;
  }

  .blog-grid {
    column-gap: 32px;
    row-gap: 60px;
  }

  .blog-card {
    min-height: auto; /* 👈 release height */
  }

  .blog-title {
    font-size: 24px;
    line-height: 34px;
  }

  .author,
  .blog-meta .date {
    font-size: 15px;
  }

  .blog-text {
    font-size: 16px;
    line-height: 26px;
    padding-left: 24px;
  }
  
  .blog-section:before {
    top: 120px;
    height: 560px;
  }
  .single-section {
    padding: 50px 0 20px;
  }

  .single-section:before {
    height: 160px;
  }

  .single-hero {
    height: 252px;
  }

  .single-subtitle,
  .related h2 {
    font-size: 26px;
    line-height: 38px;
  }

  .single-meta {
    gap: 10px;
  }

  .single-content {
    margin-top: 40px;
  }

  .single-content p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 32px;
  }

  /* disable hover movement on touch devices */
  .single-hero:hover img {
    transform: translateY(-5%);
  }
  
  .single-section {
    padding: 50px 0 20px;
  }

  .single-section:before {
    height: 160px;
  }
  .story-grid {
    column-gap: 40px;
    row-gap: 60px;
  }

  .story-card {
    min-height: auto; 
  }
.story-text {
    -webkit-line-clamp: 4;
  }

.single-hero:hover img,
  .story-card:hover .story-image img {
    transform: none;
  }
  
  .product-filters {
    gap: 20px;
    margin-bottom: 48px;
  }

  .product-grid {
    column-gap: 32px;
    row-gap: 50px;
  }

  .product-card {
    flex-direction: row;
	background: black;
  }
.cosmetics-section{padding:40px 0;}
  .product-image {
    width: 100%;
    height: 240px;
  }

  .product-info {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
  }

  /* Disable hover shadow on touch */
  .product-card:hover {
    box-shadow: none;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 40px;
  }

  .results-section {
    padding: 70px 0 80px;
  }

  .results-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 48px;
  }

  .result-images figure {
    height: 240px;
  }
  .tipolim-grid {
    column-gap: 32px;
    row-gap: 32px;
  }

  .tipolim-content h3 {
    font-size: 23px;
    line-height: 34px;
  }

  .tipolim-content p {
    font-size: 15px;
        line-height: normal;
  }
  .contact-form h1 {
    font-size: 30px;
    line-height: 44px;
  }

  .contact-form p {
    font-size: 17px;
    line-height: 28px;
  }

  .form-grid p {
    grid-template-columns: 1fr;
  }

  .form-grid.botom{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form .wpcf7-submit {
    width: 100%;
  }
  .top-banner {
    padding: 60px 0 60px;
  }
  .top-banner.treatmentbanner{padding:60px 0 60px;}

  .banner-image {
    max-width: 400px;
    bottom: 0;
  }
  

  .banner-content h1 {
    font-size: 30px;
    line-height: 44px;
  }
  .banner-container {max-width: 100%;
  padding: 0 24px;}

  .banner-content p {
    font-size: 17px;
    line-height: 28px;
  }
   .story-banner .banner-grid {
    gap: 30px;
  }

  .story-banner .banner-content {
    max-width: 320px;
  }
  .story-banner.blog-banner .banner-content{max-width:320px;}
   .cosmetic-banner {
    min-height: 350px;
  }

  .cosmetic-banner .banner-image {
     left: 20px;
    max-width: 50%;
  }
  
  .page-template-robots .benefits-wrp .titlebar{margin-bottom:60px;}

.benefits-wrp .titlebar p{
    font-size:16px;
    line-height:27px;
    padding:0 20px;
}

.video-wrp{
    margin:90px auto 80px;
}

.video_block_image img{
    max-width:100%;
}

.video_block_image .play-button{
    height:65px;
    width:65px;
    left:35%;
}

.top_banner_robots .b_main{
        gap:30px;
    }

    .top_banner_robots .banner_info{
        top:0;
    }

    .clogo{
        left:-2%;
    }
	
	
	.global_section h1{font-size:36px;}
.global_section h2{font-size:28px; line-height:40px;}
.global_section h3{font-size:24px;}
.global_section h4{font-size:22px;}
.global_section h5{font-size:20px;}
.global_section h6{font-size:18px;}

.global_section ul li,
.global_section ul li a{
    font-size:15px;
    line-height:25px;
}

.management-detail{
    grid-template-columns:1fr 1fr;
    column-gap:25px;
}
.not-found .cosmetics-section.global_section{padding:80px 0; text-align:center;}
.not-found .global_section .cosmetics-intro p{text-align:center; font-size:45px; line-height:normal;}
.not-found .global_section .cosmetics-intro p a{color:black;}
  
}
@media (min-width: 1025px) and (max-width: 1500px) {
.rightd{padding-right:0;}
.single-products .about-wrp .about-block .about-detail p{max-width:96%;}
}
@media (min-width: 992px) and (max-width: 1199px) {
.leftd{padding-left:10px;}
}
@media (min-width: 768px) and (max-width: 991px) {
.rightd{padding-right:0;}
.leftd{padding-left:10px;}
}
@media(min-width:1200px) and (max-width:1600px){
	.contact-grid{grid-template-columns: 62% auto; margin-top: 2%;}
	.page-template-robots .skin-wrp .skin-girl{max-width:64%; max-height: 500px;}
	.page-template-robots .skin-wrp{padding:80px 0;}
	.page-template-robots .skin-wrp .detail{max-width:500px;}
	.page-template-robots .benefits-wrp .titlebar P{max-width:750px; margin-right:auto; margin-left:auto;}
}
@media(min-width:1025px) and (max-width:1600px){
	
	.contact-imagenew{left: 2%;
    bottom: 0;
    top: inherit;}
	.contact-imagenew img{max-width: 69%;
    margin-right: auto;}
	.contact-hero:before{width:22.5%;}
	.form-grid.botom{row-gap:13px;}
	.map{width:50%;}
	.bottom-grid{grid-template-columns: 45%;}
}
@media(min-width:1025px) and (max-width:1199px){
	.contact-grid{grid-template-columns: 45% auto; margin-top: 2%;}
	.container-1425{max-width: 980px;}
	.contact-hero{min-height: 550px;}
	.contact-imagenew img{max-width: 50%;
    margin-right: auto;}
	.page-template-robots .skin-wrp .skin-girl{max-width:64%; max-height: 400px;}
	.page-template-robots .skin-wrp{padding:80px 0;}
	.page-template-robots .skin-wrp .detail{max-width:500px;}
	.page-template-robots .benefits-wrp .titlebar P{max-width:750px; margin-right:auto; margin-left:auto;}
}
@media(min-width:1024px) and (max-width:1200px){
	.contact-grid{grid-template-columns: 57% auto; margin-top: 2%;}
	.contact-imagenew{left: 2%;
    bottom: 0;
    top: inherit;}
	
	.contact-hero:before{width:22.5%;}
	.form-grid.botom{row-gap:13px;}
}
@media(min-width:1200px) and (max-width:1366px){
.story-container, .storynewcontainer{max-width:980px;}
}
@media(min-width:992px) and (max-width:1199px){
	.robotscontainer{max-width:980px;}
}
@media(min-width:992px) and (max-width:1024px){
	.contact-hero:before{width: 22.5%;}
	.contact-grid{grid-template-columns: 60% auto;}
	.contact-imagenew{left: 2%;
    bottom: 0;
    top: inherit;}
	.contact-imagenew img{max-width: 56%;
    margin-right: auto;}
	.video-modal{
        width:92%;
        border-radius:32px;
    }

    .video-close{
        top:-40px;
        font-size:34px;
    }
	.container-1425{max-width:980px;}
	
}
@media(min-width:768px) and (max-width:992px){
	.contact-grid{grid-template-columns: 55% auto; gap:0px;}
	.contact-imagenew{bottom: 0; left: 1%; top:inherit; text-align: left;}
	.contact-imagenew img{max-width:50%; margin-right:auto;}
	.contact-hero:before{width:22.5%;}
	
	
}
@media(min-width:768px) and (max-width:1024px){
.page-template-cosmeticsmain .benefits-wrp .titlebar h2{margin:0 0 20px;}
.benefits-detail ul{margin:0 0 20px;}
}
@media(min-width:768px) and (max-width:991px){
	.banner-container{max-width: 740px; padding: 0 15px;}
	.newcontainer{max-width: 740px; padding: 0 15px;}
	.results-container {max-width:90%;}
	.container-1425{max-width: 740px; padding: 0 15px;}
}
@media (max-width: 992px) {
.top-banner {
    padding: 60px 0;
  }
  .top-banner.treatmentbanner{padding:60px 0 60px;}
  .banner-content{max-width:45%;}
      .banner-content h1 {
        font-size: 25px;
        line-height: 35px;
    }
	    .banner-content p {
        font-size: 15px;
        line-height: 22px;
    }
	.banner-image{max-width:50%;}
	
	 .story-banner .banner-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 50px;
  }

  .story-banner .banner-image {
    justify-content: center;
  }

  .story-banner .banner-image img {
    margin-right: 0;
    max-width: 420px;
  }

  .story-banner .banner-content {
    margin: 0 auto;
    max-width: 500px;
  }
  .story-banner.blog-banner .banner-content{max-width:450px;}
  
   .cosmetic-banner {
    min-height: 280px;
  }

  .cosmetic-banner .banner-image {
     left: 20px;
    max-width: 50%;
	margin: 0px;
  }
  .video-modal{
        width:94%;
        padding:10px;
    }
	
	.top_banner_robots:before{
        width:100%;
    }

    .top_banner_robots .b_main{
        grid-template-columns:1fr;
        text-align:center;
        padding:60px 0;
    }

    .top_banner_robots .banner_info{
        top:auto;
        order:1;
    }

    .top_banner_robots .banner_image{
        order:1;
        padding-right:0;
        text-align:center;
		position:relative;
    }
	.top_banner_robots .banner_image img{margin:0 auto;}
	

    .top_banner_robots .banner_info h1,
    .top_banner_robots .banner_info h2,
    .top_banner_robots .banner_info p{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .clogo{
        left: 14%;
        top: 10px;
        max-width: 120px;
    }
	
	.navbar-nav > li.menu-item-has-children{
    position:relative;
}

.mega-submenu{
    position:absolute;
    right:-200%;
    transform:none;
    max-width:520px;
    width:520px;
    top:100%;
}

.navbar-nav li.menu-item-has-children:hover > .mega-submenu{
    transform:none;
}

.mega-wrapper{
    /*flex-direction:column;*/
    gap:10px;
	width:100%;
}
ul.sub-menu.mega-submenu li:nth-child(2) .mega-card{
	padding: 8px 15px;
    width: 100%;
    max-width: max-content;
}

.mega-card{
    width:max-content;
    max-width:max-content;
}

.mega-img img{
    height:70px;
}
	
}
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 0 50px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .blog-image {
    border-radius: 16px;
  }

  .blog-category {
    font-size: 15px;
    line-height: 28px;
  }

  .blog-title {
    font-size: 22px;
    line-height: 32px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .blog-text {
    padding-left: 0;
    font-size: 16px;
  }
   .blog-section:before {
		top: 80px;
		height: 300px;
  }
  .single-section {
    padding: 40px 0 10px;
  }

  .single-section:before {
    height: 120px;
  }

   .single-hero {
    height: auto;         
    overflow: visible;     
  }

  .single-hero img {
    height: auto;         
    object-fit: contain; 
    transform: none !important;
	border-radius: 16px;
  }

  .single-hero:hover img {
    transform: none;
  }

  .single-subtitle,
  .related h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
	font-weight:600;
  }

  .single-meta {
    flex-direction: column;
    align-items: flex-start;
	 gap: 6px;
  }

  .single-meta .meta-category,
  .single-meta .meta-date {
    font-size: 16px;
  }

  .single-content p {
    font-size: 16px;
    line-height: 26px;
	margin-bottom:20px;
  }

  .related {
    padding: 20px 0 60px;
  }

  .related:before {
    height: 200px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .story-image {
    height: 240px;
  }

  .story-card {
    min-height: auto;
  }

  .story-text {
    max-height: none;
    -webkit-line-clamp: unset;
    padding-left: 0;
  }
  
  .product-section {
    padding: 40px 0 60px;
  }

  .product-filters {
    flex-direction: column;
    gap: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    row-gap: 31px;
  }
  .product-card{
	  flex-direction: row;
        background: black;
  }

  .filter-dropdown {
    width: 100%;
  }
  .product-image{border-radius: 13px;}
  .product-info{order: 1;
        border-radius: 0 13px 13px 0px; padding: 15px 13px;}

  .product-image {
   height: 227px;
        order: 1;
  }

  .product-info h3 {
    font-size: 22px;
  }
  .results-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .results-section {
    padding: 60px 0 70px;
  }

  .results-title {
    font-size: 24px;
	line-height:normal;
	font-weight:600;
    margin-bottom: 36px;
  }

  .result-images figure {
    height: 230px;
  }

  .result-caption {
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
  }
  
   .tipolim-section {
    padding: 50px 0 60px;
  }

  .tipolim-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .tipolim-card {
    flex-direction: column;
    height: auto;
  }

  .treatment-image {
    width: 100%;
    /*height: 220px;*/
    border-radius: 18px 18px 0 0;
  }

  .treatment-image img {
    position: relative;
	object-position: top;
	width: 100%;
        height: auto;
  }

  .tipolim-content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 0 0 18px 18px;
  }

  .treatment-btn {
    width: 100%;
    margin-top: 20px;
	max-width: 166px;
  }
   
   .top-banner {
    padding: 40px 0 0;
  }
  .top-banner.treatmentbanner{padding: 40px 0 0;}

  .banner-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .banner-image {
    position: relative;
        left: auto;
        bottom: auto;
        max-width: 90%;
        right: 0;
        margin: 40px auto 0;
  }
  
  .treatmentbanner .banner-image {  position: relative;
        left: auto;
        bottom: auto;
        max-width: 90%;
        right: 0;
        margin: 40px auto 0;}

  .banner-content {
    margin: 0 auto;
    max-width:100%;
  }
  .banner-image img{max-width:100%; object-fit:cover; width:auto; height:auto; max-height:100%;}
  
  .story-banner .banner-grid {
    gap: 40px;
  }

  .story-banner .banner-image img {
    max-width: 360px;
  }

  .story-banner .banner-content {
    max-width: 440px;
  }
  .story-banner.blog-banner .banner-content{max-width:450px; padding-top:30px;}
  .banner-content h1{font-size:35px; line-height:normal;}
  .banner-content p{font-size:18px; line-height:27px;}
  .video-modal{
        width:96%;
        border-radius:26px;
        padding:8px;
    }

    .video-close{
        top:-35px;
        font-size:30px;
    }
	
	
	.page-template-robots .benefits-wrp .titlebar h2{
    padding:10px 0;
}

.page-template-robots .benefits-wrp .titlebar{margin-bottom:45px;}

.benefits-wrp .titlebar p{
    font-size:15px;
    line-height:26px;
}

.video-wrp{
    margin:70px auto 70px;
}

.video_block_image .play-button{
    height:58px;
    width:58px;
    left:50%;
    transform:translate(-50%,-50%);
}

 .top_banner_robots .banner_info h1{
        font-size:34px;
        line-height:40px;
    }

    .top_banner_robots .banner_info h2{
        font-size:24px;
        line-height:34px;
    }

    .top_banner_robots .banner_info p{
        font-size:18px;
        line-height:28px;
        max-width:100%;
    }

    .top_banner_robots .b_main{
        gap:30px;
        padding:50px 0 0;
    }
	
	.global_section h1{font-size:30px;}
.global_section h2{font-size:24px; line-height:34px;}
.global_section h3{font-size:22px;}
.global_section h4{font-size:20px;}
.global_section h5{font-size:18px;}
.global_section h6{font-size:17px;}

.global_section ul li,
.global_section ul li a{
    font-size:15px;
    line-height:24px;
}

.management-detail{
    grid-template-columns:1fr;
}

.mega-submenu{
    width:100%;
    max-width:100%;
    border-radius:15px;
}

.mega-card-inner{
    justify-content:flex-start;
    gap:20px;
}

.mega-content{
    text-align:right;
}
	
}

@media (max-width: 767px) {
	.navbar .navbar-nav .nav-link{font-size:20px;}
	.mega-content h4{font-size:17px;}
	.mega-content p{font-size:15px;}
	.not-found .cosmetics-section.global_section{padding:60px 0; text-align:center;}
.not-found .global_section .cosmetics-intro p{text-align:center; font-size:30px; line-height:normal;}
.not-found .global_section .cosmetics-intro p a{color:black;}
	.contact-hero {
    padding: 50px 0 0;
        min-height: inherit;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 30px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0px;
    margin-top: 0;
}
.contact-form{width:100%;}

  .contact-form h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .contact-form p {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-details p {
    font-size: 18px;
    line-height: 46px;
    padding-right: 15px;
  }
  .contact-bottom{padding:40px 0; display: grid; row-gap: 31px;}
  
  .contact-imagenew {
	max-width: 100%;
	position: relative;
	top: inherit;
	left: inherit;
	display: block;
	padding: 0 15px;
	}
	.contact-imagenew img{position:relative; z-index:1;}
	
	.contact-imagenew:before {
    background: linear-gradient(90deg, #F6F4F2 0%, #D2B493 100%);
    background-blend-mode: multiply;
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}

  .map {
    height: 260px;
  }

  .contact-form .wpcf7-submit {
    height: 52px;
    font-size: 18px;
  }
  .contact-hero:before{content:none;}
  .story-banner .banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .cosmetic-banner{display:block; padding-top:40px;}
.cosmetic-banner .banner-image{max-width: 90%;
        margin: 40px auto 0;}
		.story-banner .banner-image{margin:0;}
		 .video-modal{
        width:95%;
        border-radius:22px;
    }

    .video-container{
        padding-top:56.25%;
    }
	
	.benefits-wrp .titlebar p{
    font-size:18px;
    line-height:27px;
}

.video-wrp{
    margin:60px auto 60px;
    padding:0 15px;
}

.video_block_image{
    width:100%;
}

.video_block_image img{
    width:100%;
    height:auto;
}

.video_block_image .play-button{
    height:32.99px;
    width:32.99px;
}

 .robotscontainer{
        padding:0 20px;
		padding:0px;
    }

    .top_banner_robots .banner_image img{
        max-width:100%;
    }
	
	.global_section{
    padding:30px 15px;
}

.global_section h1{font-size:26px;}
.global_section h2{font-size:22px; line-height:30px;}
.global_section h3{font-size:20px;}
.global_section h4{font-size:18px;}
.global_section h5{font-size:17px;}
.global_section h6{font-size:16px;}

.global_section ul li,
.global_section ul li a{
    font-size:14px;
    line-height:23px;
}

.mega-submenu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
}

.navbar-nav li.menu-item-has-children.open > .mega-submenu{
    display:block;
}

.navbar-nav li.menu-item-has-children::after{
    display:none;
}

.mega-card{
    padding:12px;
}

.mega-img img{
    height:60px;
}

.navbar-nav li.menu-item-has-children{
    position:relative;
}
.navbar-nav li.menu-item-has-children a{width: calc(100% - 40px);}

.submenu-toggle{
    cursor:pointer;
    font-size:40px;
    font-weight:600;
    position:absolute;
    left:0px; /* RTL */
    top:0;
    transform:inherit;
           width: 40px;
        height: 40px;
        line-height: 40px;
    text-align:center;
    border-radius:50%;
    transition:.25s;
}

.navbar-nav li.open > a{
    color:#c59d5f;
}

ul.sub-menu.mega-submenu li:nth-child(2) .mega-card{
	padding: 12px;
    width: 100%;
    max-width: 100%;
}
ul.sub-menu.mega-submenu li.current-menu-item a{width:100%;}
ul.sub-menu.mega-submenu li a{width:100%;}
.mega-card-inner{justify-content: space-between;}
.cosmetics-banner-wrp .banner-img-mobile img{width:auto; height:auto; max-width:100%; max-height:100%; object-fit:cover;}
.cosmetics-banner-wrp .banner-img-mobile{margin-top:30px;}
.our-products-wrp .products_slider{padding-right:15px; padding-left:15px;}
.about-wrp::before{background: linear-gradient(79deg, #555 7.83%, #000 15.38%, #666 30.25%, #262626 47.38%, #000 115.4%);
background-blend-mode: multiply; mix-blend-mode: multiply;}
.top_banner_robots .banner_info{order:1; padding:0 20px;}
.top_banner_robots .banner_image{position:relative;}
.top_banner_robots .banner_image img{margin:0 auto;}
.clogo{position: absolute; left: 8%; top: 10px;}
.top_banner_robots .banner_image img.clogo{max-width:120px;}
.page-id-357 .clogo{right:8%; left:inherit;}

.skin-wrp .detail h3{font-size:18px; font-weight:700; text-align:center; margin:0 0 10px;}
.page-template-robots .skin-wrp .detail p{font-size:18px; font-weight:400; text-align:center;}
.page-template-robots .skin-wrp .skin-girl{left: 0; right: 0; margin: 0 auto;}
.page-template-robots .benefits-wrp{padding: 30px 0 0;}
.page-template-robots .benefits-wrp .titlebar h2{margin:0;}
.benefits-detail ul li:last-child{padding-bottom:25px;}
.video_block_image .play-button img{position: relative; left: 2px; max-width:14.09px;}
.page-template-robots .about-wrp::before{mix-blend-mode: multiply; opacity: 0.85;}
.page-template-robots .cosmetics-about-block .row .col-md-6:last-child{display:block;}
.page-template-robots .cosmetics-about-block .row .col-md-6{border-left:none; padding:0 15px 0 0;}
.page-template-robots .cosmetics-about-block .row{margin:0 auto;}
.leftd{border-left:none;}
.rightd{padding-right:0;}
.tipolim-title {font-weight:600; text-align:center;}
.cosmetics-intro p{font-size:18px; line-height:27px;}
.cosmetics-cta{margin-top:30px;}
.cosmetics-intro{margin:0 auto 40px;}
.story-banner{padding-top:30px;}
.page-template-robots .about-wrp .about-image img{opacity: 1; visibility: visible;}
	.page-template-robots .about-wrp{background:none;}
	.mega-wrapper{
	flex-direction: column;
	}
	.mega-card{max-width:100%;}
	ul.sub-menu.mega-submenu li a{width:100%;}
	.mega-card-inner{width:100%;}
	ul.sub-menu.mega-submenu li:nth-child(2) .mega-card{max-width:100%;}
	.product-btn {
    font-size: 16px;
    padding: 11.5px 10px;
	font-weight: 600;
  }
  .product-info p, .product-info .price{font-size:16px;}
  .cosmetics-section{padding:41px 0 40px;}
  .cosmetics-section .product-btn{
	  padding: 11.5px 10px;
	  font-weight:600;
  }
  .product-btn:hover{
	  background: #F6F4F2;
    color: #000000;
  }
   .rabtnab{padding-top:15px;}
   .about-wrp .about-block .about-detail.rabtnab h2{margin-bottom:10px;}
   .single-products .about-wrp .about-block .row{row-gap:20px;}
   .techdetail h2{font-size:22px; margin-bottom:10px;}
   .techdetail h3{font-size:20px;}
   .techdetail{margin-bottom:12px; padding: 0 15px 0 0;}
   .page-template-robots .cosmetics-about-block .row{row-gap:20px;}
   
   .technology_slider {
  width: 100%;
  overflow: hidden;
  direction: rtl;
}
footer .foot-block .foot-icon{justify-content: center;}
footer .foot-block .foot-icon img{margin:0;}

.swiper.technology_slider.three .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr ;
    column-gap: 15px;
	row-gap:15px;
}
.swiper.technology_slider.three .swiper-slide:last-child:nth-child(odd){
    grid-column: span 2;
    justify-self: center;
    max-width: 50%;
  }
.swiper.technology_slider.four .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr ;
    column-gap: 15px;
	row-gap:15px;
}
.swiper.technology_slider.five .swiper-wrapper{
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
	row-gap:15px;
}
}
@media (max-width: 480px) {
   .single-container,
  .newcontainer,
  .story-container,
  .storysingle-container,
  .storynewcontainer {
    padding: 0 16px;
  }
  .banner-container {max-width: 100%;
  padding: 0 16px;}

  .blog-title {
    font-size: 20px;
    line-height: 30px;
  }

  .blog-text {
    font-size: 15px;
    line-height: 24px;
  }

  .read-more {
    font-size: 13px;
  }

  .read-more svg {
    width: 32px;
  }
    .blog-section:before {
    top: 0px;
	height:100%;
  }
  

  .single-subtitle,
  .related h2 {
    font-size: 24px;
    line-height: 30px;
	font-weight:600;
  }

  .single-content p {
    font-size: 15px;
    line-height: 24px;
	margin-bottom:20px;
  }

  a.backto {
    font-size: 16px;
  }
  .story-title {
    font-size: 20px;
    line-height: 30px;
  }

  .story-text {
    font-size: 15px;
    line-height: 24px;
  }

  .story-image {
    height: 200px;
  }

  .story-read {
    font-size: 13px;
  }
  
   .product-container,
  .product-container-filter {
    padding: 0 16px;
  }

  .product-image {
    height: 227px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-info p,
  .product-info .price {
    font-size: 17px;
  }

  .product-btn {
    font-size: 16px;
    padding: 11.5px 10px;
  }
  .cosmetics-section .product-btn{
	  padding: 11.5px 10px;
	  font-weight:600;
  }

  .filter-title {
    font-size: 16px;
  }

  .filter-body a {
    font-size: 14px;
  }
  
  .results-container {
    padding: 0 16px;
  }

  .results-section {
    padding: 50px 0 60px;
  }

  .results-title {
    font-size: 24px;
	font-weight:600;
    line-height: 30px;
    margin-bottom: 28px;
  }

  .result-images figure {
    height: 200px;
    border-radius: 14px;
  }

  .badge {
    font-size: 11px;
    padding: 3px 8px;
  }

  .result-caption {
    font-size: 20px;
    line-height: 22px;
  }
  
  .tipolim-title {
    font-size: 24px;
    line-height: 34px;
	font-weight: 600;
        text-align: center;
  }

  .treatment-image {
 /*   height: 190px;*/
  }

  .tipolim-content {
    padding: 18px;
  }
  
  .story-banner .banner-content {
    max-width: 100%;
    padding: 0 15px;
  }
  .story-banner.blog-banner .banner-content{ max-width: 100%;
    padding: 30px 15px 0;
  }

  .story-banner .banner-image img {
    max-width: 280px;
  }

  .story-banner .banner-grid {
    gap: 30px;
  }
  
  .video-modal{
        width:94%;
        border-radius:18px;
        padding:6px;
    }

    .video-close{
        top:-30px;
        right:5px;
        font-size:26px;
    }
	
	.page-template-robots .benefits-wrp .titlebar{margin-bottom:20px;}

.benefits-wrp .titlebar p{
    font-size:18px;
    line-height:27px;
}

.video-wrp{
    margin:50px auto 50px;
}

.video_block_image .play-button{
    height:32.99px;
    width:32.99px;
}
 .top_banner_robots .banner_info h1{
        font-size:28px;
        line-height:34px;
    }

    .top_banner_robots .banner_info h2{
        font-size:20px;
        line-height:28px;
    }

    .top_banner_robots .banner_info p{
        font-size:16px;
        line-height:24px;
    }

    .top_banner_robots .b_main{
        padding:40px 0 0;
        gap:20px;
    }
	
	.global_section h1{font-size:22px;}
.global_section h2{font-size:20px; line-height:28px;}
.global_section h3{font-size:18px;}
.global_section h4{font-size:17px;}
.global_section h5{font-size:16px;}
.global_section h6{font-size:15px;}

.global_section ul li,
.global_section ul li a{
    font-size:13px;
    line-height:22px;
}

.management-detail{
    row-gap:20px;
}
  
}
