@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
font-family: "Futura";
src: url("../font/Futura-Medium.woff2") format("woff2"),
  url("../font/Futura-Medium.woff") format("woff");
font-weight: 500;
font-style: normal;
font-display: swap;
}

:root {
--primary_color: #fff;
--secondry_color: #000;
--poppins: "Poppins";
--Raleway: "Raleway";
--Futura: "Futura";
}

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

li {
list-style-type: none;
}

a {
text-decoration: none;
}

h1 {
font-size: 45px;
font-weight: 600;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);
}

h2 {
font-size: 40px;
font-weight: 500;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);

}

h3 {
font-size: 35px;
font-weight: 500;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);

}

h4 {
font-size: 24px;
font-weight: 400;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);

}

h5 {
font-size: 20px;
font-weight: 600;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);

}

p {
font-size: 16px;
font-weight: 400;
line-height: 1.48;
color: var(--secondry_color);
font-family: var(--poppins);

}

.primary-btn a {
font-size: 16px;
font-weight: 400;
line-height: 1.48;
padding: 10px 20px;
color: var(--secondry_color);
border: 1px solid var(--secondry_color);
font-family: var(--poppins);
display: inline-block;
border-radius: 4px;
}

.secondry-btn a {
font-size: 16px;
font-weight: 400;
line-height: 1.48;
padding: 10px 20px;
color: var(--primary_color);
background-color: #b87c7c;
font-family: var(--poppins);
display: inline-block;
border-radius:30px;
transition: all 0.5s ease-in-out;
border: 1px solid transparent;
}
.secondry-btn a:hover{
background-color: #fff;
color: #b87c7c;
border-color: #b87c7c;
}

html {
background: var(--primary_color);
}

body {
font-family: var(--poppins);
font-size: 14px;
line-height: 1.4;
color: var(--secondry_color);
}

.container {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
}
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.header-spacing {
  padding-top: 165px;
}

.top-header {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-section {
  flex-shrink: 0;
}

.logo {
  width: 140px;
  height: 80px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-info {
  flex: 1;
  min-width: 250px;
}

.company-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.company-tagline p {
  font-size: 16px;
  color: #b87c7c;
  font-weight: 500;
  margin: 0;
}

.custom-manufacture {
  display: flex;
  align-items: center;
  gap: 5px;
}

.manufacture-text {
  color: #579b90;
  font-weight: 500;
  font-size: 14px;
}

.company-description {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn {
  background: #b87c7c;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;

}

.btn:hover {
  background: #fff;
  color: #b87c7c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(87, 155, 144, 0.3);
  border: 1px solid #b87c7c;
}

/* Navigation Styles */
nav {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

#main-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  justify-content: center;
  align-items: center;
}

#main-menu > li {
  position: relative;
}

#main-menu > li > a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

#main-menu > li > a:hover {
  color: #b87c7c;
  border-bottom-color: #b87c7c;
}

/* Dropdown Styles */
#main-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1001;
}

#main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#main-menu ul li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

#main-menu ul li:last-child {
  border-bottom: none;
}

#main-menu ul a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

#main-menu ul a:hover {
  background-color: #f8f9fa;
  color: #b87c7c;
  padding-left: 25px;
}

/* Nested dropdown */
#main-menu ul ul {
  left: 100%;
  top: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #b87c7c;
  padding: 8px;
  border-radius: 4px;
  z-index: 1002;
}


/* Content spacing */
.content {
  padding: 40px 0;
}

/* banner  */
.banner-sec{
padding: 70px 0;
}
.banner-sec .banner-item {
display: flex !important;
flex-wrap: wrap;
column-gap: 40px;
}

.banner-content {
width: calc(54% - 40px);
}

.banner-img {
width: 46%;
}

.banner-img img {
border-radius: 20px;
width:100%;
}

.banner-content p {
margin: 40px 0;
}

.banner-img img {
border-radius: 20px;
}

.slick-dots {
bottom: -45px;
}

.slick-dots li button:before {
font-size: 12px;
}

/* Style arrows */
/* .slick-next::before{
content: '\e82c';
right: -18px;
width: 30px;
height: 20px;
background: #403b3b;
}
.slick-prev{
content: '\e82d';
width: 30px;
height: 20px;
background: #403b3b;
left: -75px;
} */

/* products  */

.product-img {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-img-inner {
background: white;
border-radius: 20px;
padding: 60px 40px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-img-title {
text-align: center;
max-width: 1024px;
margin: 0 auto 60px;
}

.product-img-title h2 {
font-size: 42px;
margin-bottom: 30px;
font-weight: 700;
position: relative;
}

.product-img-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #000, #4CB5C5);
border-radius: 2px;
}

.product-img-title p {
margin: 20px 0;
color: #6b7280;
font-size: 16px;
line-height: 1.8;
}

.faq-wrap {
display: flex;
flex-wrap: wrap;
column-gap: 65px;
margin-top: 40px;
}

.faq-wrap-right , .faq-wrap-center{
width: 47%;
}

.faq-wrap-content {
display: flex;
flex-wrap: wrap;
align-content: flex-end;
border: 1px solid rgba(76, 181, 197, 0.2);
padding: 30px;
border-radius: 20px;
position: relative;
margin-top: auto;
overflow: hidden;
z-index: 1;
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9));
backdrop-filter: blur(10px);
}

.faq-wrap-title {
padding-top: 20px;
position: relative;
width: 100%;
margin: 0 0 40px;
}

.faq-wrap-title h3 {
font-size: 32px;
color: #1e40af;
font-weight: 700;
margin-bottom: 20px;
}

.faq-wrap-content-inner h4 {
font-size: 24px;
color: #1e40af;
margin-bottom: 15px;
font-weight: 600;
}

.faq-wrap-content-inner p {
color: #6b7280;
font-size: 15px;
line-height: 1.7;
margin-bottom: 25px;
}

.primary-btn {
background: linear-gradient(45deg, #1e40af, #4CB5C5);
color: white;
border: none;
padding: 15px 30px;
border-radius: 25px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.primary-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.acc-set {
background: white;
height: auto;
margin: 0 0 15px;
border: 1px solid rgba(76, 181, 197, 0.2);
border-radius: 20px;
position: relative;
overflow: hidden;
transition: all 0.4s ease-in-out;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
width: 100%;
}

.acc-set:hover {
border-color: #b87c7c;
box-shadow: 0 8px 30px rgba(76, 181, 197, 0.2);
transform: translateY(-2px);
}

.acc-set > a {
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9));
border-radius: 20px;
color: #b87c7c;
display: flex;
align-items: center;
justify-content: space-between;
font-family: var(--heading_font);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 28px;
padding: 25px 30px;
text-decoration: none;
position: relative;
transition: all 0.5s ease;
}

.acc-set:hover > a {
/* background: linear-gradient(135deg, #1e40af, #1e3a8a); */
color: white;
}

.product-item_img {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, rgba(76, 181, 197, 0.1), rgba(30, 64, 175, 0.1));
border-radius: 12px;
transition: all 0.5s ease;
}

/* .acc-set:hover .product-item_img {
  filter: invert(28%) sepia(94%) saturate(7464%) hue-rotate(169deg) brightness(102%) contrast(106%);

transform: scale(1.1);
} */

.product-item_img img {
width: 30px;
height: 30px;
filter:brightness(0) saturate(100%) invert(75%) sepia(38%) saturate(540%) hue-rotate(315deg) brightness(92%) contrast(80%);
transition: all 0.5s ease;
}

/* .acc-set:hover .product-item_img img {
  filter: invert(28%) sepia(94%) saturate(7464%) hue-rotate(169deg) brightness(102%) contrast(106%);

} */

.acc-content {
/* background: linear-gradient(135deg, #f8fafc, #e2e8f0); */
display: none;
padding: 0 30px 25px;
margin: 0;
opacity: 0;
transition: all 0.5s ease;
}

.acc-set:hover .acc-content {
display: block;
animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
from {
    opacity: 0;
    max-height: 0;
    padding-bottom: 0;
}
to {
    opacity: 1;
    max-height: 300px;
    padding-bottom: 25px;
}
}

.acc-content li {
list-style: none;
margin-bottom: 12px;
position: relative;
padding-left: 20px;
}

.acc-content li::before {
content: '▶';
position: absolute;
left: 0;
color: #b87c7c;
font-size: 12px;
top: 8px;
}

.acc-content li a {
color: #000;
display: inline-block;
text-decoration: none;
font-weight: 500;
font-size: 14px;
position: relative;
transition: all 0.3s ease;
padding: 5px 0;
}

.acc-content li a::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #b87c7c;
transition: width 0.5s ease;
border-radius: 1px;
}

.acc-content li a:hover {
color: #b87c7c;
padding-left: 10px;
}

.acc-content li a:hover::after {
width: 100%;
}

.acc-set:last-child {
margin-bottom: 0;
}

.faq-wrap-content::after {
content: '';
position: absolute;
border-radius: 281px;
opacity: 0.1;
background: #b87c7c;
filter: blur(100px);
width: 281px;
height: 281px;
right: -140px;
top: -141px;
z-index: -1;
}

/* Custom Icons for each category */
.face-care-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CB5C5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
background-size: 24px;
background-repeat: no-repeat;
background-position: center;
}

.hair-care-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CB5C5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
background-size: 24px;
background-repeat: no-repeat;
background-position: center;
}

/* service  */

.service {
padding: 100px 0;
}

.service-title {
text-align: center;
max-width: 1024px;
margin: 0 auto;
}

.service-title p {
margin: 20px 0;
}

.service-content {
display: flex;
flex-wrap: wrap;
column-gap: 30px;
padding-top: 50px;
}

.service-content-left {
width: calc(50% - 30px);
}

.service-content-rght-item{
position: relative;
overflow: hidden;
margin-bottom: 20px;
}
.service-content-rghtimg{
height: 100%;
}
.service-content-rghtimg img {
width: 100%;
height: 100%;
transition: transform 0.3s ease;
}

.service-content-rght-item .service-content-rghttext {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
display: flex;
flex-direction: column;
justify-content: center;
}

.service-content-rght-item:hover .service-content-rghttext {
opacity: 1;
cursor: pointer;

}

.iservice-content-rghtimg:hover img {
transform: scale(1.05);
}
.service-content-rght {
width: 50%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 20px;

}
.service-content-rghttext h4 , .service-content-rghttext p{
color: #fff;
}


.service-content-leftimg img {
border-radius: 5px;
width:100%;
}

.service-content-lefttext {
background-color: #f7f7f7;
border-radius: 5px;
border: 1px solid #f0f0f0;
padding: 25px;
}

.service-content-lefttext h4,
.service-content-lefttext p {
margin: 20px 0;
}


.service-content-rghttext p {
margin: 20px 0;
}

/* process-sec  */
.process-sec{
    padding-bottom: 20px;
}
.process-title {
text-align: center;
}

.process-title h6 {
font-size: 14px;
font-weight: 700;
margin: 20px 0;
}

.process-content-img {
width: 65px;
height: 65px;
background-color: #b87c7c;
display: inline-block;
text-align: center;
border-radius: 50%;
justify-content: center;
display: flex;
align-items: center;
    margin: 0 auto 65px;
}
.process-content-img::after {
  content: '';
  position: absolute;
  background-image: url(../image/process-line.png);
  width: 10%;
  height: 83px;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  bottom: 85px;
  top: 34px;
    left: 0;
    right: 0;
    margin: 0 auto;
  z-index: -1;
}
.process-content-inner:nth-child(even) .process-content-img::after {
  content: '';
top: 45px;
}
.process-content-img img {
width: 40px;
height: 40px;
}

.process-content-inner {
margin: 0 auto;
text-align: center;
position: relative;
}

.process-content-inner:nth-child(5)::after,
.process-content-inner:nth-child(10)::after {
display: none;
}

.process-content {
display: grid;
grid-template-columns:repeat(10 , 1fr);
gap: 30px;
padding-top: 70px;
}
.process-content-inner:nth-child(even) .process-content-img::after {
  transform: rotate(180deg);
}
.process-content-inner:nth-child(even) .process-content-img{
margin: 50px 27px;
background-color: #b6a8a8;
}
.process-content-inner:nth-child(even){
    flex-direction: column-reverse;
  display: flex;

}
/* footer  */
.footer {
padding: 100px 0;
background-color: black;
}

.footer-inner {
padding-bottom: 50px;
border-bottom: 1px solid #fff;
display: flex;
flex-wrap: wrap;
column-gap: 30px;
}

.footer-right {
width: 30%;
}

.footer-left {
width: calc(70% - 30px);
display: flex;
flex-wrap: wrap;
column-gap: 30px;

}

.footer-content p {
font-size: 18px;
color: #FFF;
margin: 20px 0;
}

.social-icon {
display: flex;
flex-wrap: wrap;
column-gap: 10px;
}

.social-icon-img {
width: 30px;
height: 28px;
}

.footer-left-menu {
width: calc(31.33% - 4px);
}

.footer-left-menu h6 {
font-size: 16px;
font-weight: 500;
color: #fff;
margin-bottom: 20px;
}

.footer-left-menu ul {
display: block;
}

.footer-left-menu li {
margin-bottom: 10px;
}

.footer-left-menu li a {
color: #fff;
}
.footer .logo-img{
  width: 110px;
  height: 65px;
  filter: brightness(0) invert(1);
}
.location-img {
width: 26px;
height: 25px;
}
.three-column-right-content .location-img{
  filter: invert(1);
}
.three-column-right-content .location a{
  color: #000;

}
.location p {
color: #fff;
width: calc(100% - 36px);
}

.location {
display: flex;
flex-wrap: wrap;
column-gap: 10px;
margin-bottom: 20px;
}

.copyright {
padding-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.copyright-right p {
color: #fff;
}

.copyright-left {
display: flex;
flex-wrap: wrap;
column-gap: 20px;
}

a {
font-size: 14px;
font-weight: 300;
color: #fff;
}


/* content & img  */

.text-title {
margin-bottom: 50px;
}

.text-title-sec {
padding: 100px 0;
}

.text-title h2 {
color: #000;
text-align: center;
}

.text-title-wrap {
display: flex;
flex-wrap: wrap;
column-gap: 20px;
align-items: center;
}

.text-left-content-wrap {
width: calc(33.33% - 40px);
}

.text-title-img {
width: 33.33%;
height: 412px;
}

.text-title-img img {
border-radius: 100%;
object-fit: cover;
width: 100%;
height: 100%;
}

.text-right-content-wrap {
width: 33.33%
}

.text-left-content {
display: flex;
flex-wrap: wrap;
align-items: center;
column-gap: 20px;
margin-bottom: 30px;
}

.text-left-content-inner {
width: calc(100% - 96px);
}

.text-left-content-img {
  width: 70px;
  height: 69px;
  border: 2px solid #f0811a;
  border-radius: 34px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.text-left-content-img img {
  object-fit: cover;
  border-radius: 100%;
  width: 34px;
  height: 34px;
}


/* form-sec  */

.form-sec {
padding: 50px 0;
background: linear-gradient(to top, #b87c7c 65%, #fff 34%);
}

.form-inner {
display: flex;
flex-wrap: wrap;
column-gap: 40px;
}

.form-left {
width: calc(60% - 40px);
}

.form-right {
width: 40%;
background-color: #fff;
padding: 30px 40px;
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
border-radius: 20px;
}

.form-title h4 {
font-weight: 700;
margin-bottom: 20px;
}

.form-title {
padding-bottom: 50px;
}
.form-addres {
padding-top: 50px;
}
.form-contry {
display: flex;
object-fit: cover;
flex-wrap: wrap;
column-gap: 10px;
padding-bottom: 20px;
}
.form-contry p{
color: #fff;
}
.form-contry img {
width: 50px;
height: 30px;
object-fit: cover;
}

.form-call li {
display: flex;
flex-wrap: wrap;
column-gap: 10px;
align-items: center;
margin-bottom: 20px;
}

.call-num {
width: calc(100% - 50px);
}

.call-img {
width: 40px;
height: 40px;
border: 1px solid #fff;
border-radius: 25px;
padding: 11px 12px;
display: flex;
align-items: center;
justify-content: center;
}
.call-img img {
width: 24px;
height: 24px;
}
/* form  */

.form-title {
font-size: 28px;
font-weight: 600;
color: #333;
margin-bottom: 30px;
text-align: left;
}

.form-group {
margin-bottom: 20px;
}

.form-row {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.form-row .form-group {
flex: 1;
margin-bottom: 0;
}

.form-group label {
display: block;
color: #666;
font-size: 14px;
margin-bottom: 8px;
font-weight: 500;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 0;
border: none;
border-bottom: 2px solid #e0e0e0;
background: transparent;
font-size: 15px;
color: #333;
outline: none;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
border-bottom-color: #b87c7c;
}

.form-group textarea {
resize: vertical;
min-height: 100px;
padding-top: 12px;
}

.recaptcha-container {
margin: 25px 0;
display: flex;
justify-content: flex-start;
}

.recaptcha-mock {
border: 1px solid #d3d3d3;
background: #f9f9f9;
padding: 15px;
border-radius: 3px;
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: #555;
cursor: pointer;
transition: background-color 0.3s ease;
}

.recaptcha-mock:hover {
background: #f0f0f0;
}

.recaptcha-checkbox {
width: 20px;
height: 20px;
border: 2px solid #d3d3d3;
background: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.recaptcha-checkbox.checked {
background: #4CAF50;
border-color: #4CAF50;
}

.recaptcha-checkbox.checked::after {
content: '✓';
color: white;
font-weight: bold;
font-size: 14px;
}

.recaptcha-logo {
margin-left: auto;
font-size: 10px;
color: #666;
}

.submit-btn {
width: 100%;
background: #b87c7c;
color: white;
border: none;
border-radius: 8px;
padding: 15px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
text-transform: uppercase;
letter-spacing: 1px;
border: 1px solid transparent;
}

.submit-btn:hover {
background: #fff;
color: #b87c7c;
border-color: #b87c7c;
transform: translateY(-2px);
}

.submit-btn:active {
transform: translateY(0);
}

/* privetlable    */
.two-column-sec{
padding-bottom: 100px;
}
.privet-baner-inner {
width: 100%;
height: auto;
padding: 50px 0;
}
.privet-baner-inner img{
  width: 100%;
}
.one-column-content{
padding-bottom: 100px ;
}
.one-column-content-inner h2 , .one-column-content-inner p{
margin-bottom: 30px;
}
.two-column-wrap {
display: flex;
flex-wrap: wrap;
align-items: center;
column-gap: 40px;
}
.two-column-content {
width: calc(55% - 40px);
}
.two-column-img {
width: 45%;
}
.two-column-img img{
width: 100%;
}
.two-column-content h2{
margin-bottom: 20px;
}
.privet-lab{
padding-top: 100px;
}
/* three-column-sec  --> */

.three-column-sec {
background-color: #f6f6f6;
padding: 70px 0;
}
.three-column-inner {
display: flex;
flex-wrap: wrap;
column-gap: 70px;
}
.three-column-left-content {
width: calc(41.33% - 140px);
}
.three-column-center-img {
width: 25.33%;
height: 352px;
}
.three-column-center-img img{
  width: 100%;
}
.three-column-right-content {
width: 33.33%;
}
.three-column-left-content h4 {
margin-bottom: 30px;
font-weight: 700;
}
.three-column-right-content p:first-child {
margin-bottom: 30px;
}
.three-column-right-content  .location p{
color: #000;
}

/* manufacturing  */

.manufacturing-banner{
  padding:20px  0;
  width: 100%;
}
.manufacturing-banner img{
  width: 100%;
}
.our-plant{
padding: 50px 0;
}
.our-plant-inner{
display: flex;
flex-wrap: wrap;
}
.our-plant-right {
width: calc(100% - 28%);
padding-left: 70px;
}
.our-plant-left {
width: 28%;
}
.our-plant-left img{
  width: 100%;
    height: 100%;
  object-fit: cover;
}
.our-plant-right-img img{
  width: 100%;
}
.our-plant-right h2 , .our-plant-right p { margin-bottom: 20px;
}
.manufacturering-plant{
background-color: #fbfbfb;
padding: 70px 0;
}
.manufacturering-plant-title h2{
margin-bottom: 40px;
}
.mnufacturering-plant-list{
display: flex;
flex-wrap: wrap;
}
.mnufacturering-plant-list-left{
width: calc(100% - 50%);
}
.mnufacturering-plant-list-right{
width: 50%;
padding-left: 70px;
position: relative;}

.mnufacturering-plant-list-right::before{
content: '';
border-left: 2px dashed #B3B3B3;
position: absolute;
height: 100%;
top: 0;
left: 30px;
}
.mnufacturering-plant-list ul li{
padding: 10px 0;
display: flex;
position: relative;
padding-left: 35px;
}
.mnufacturering-plant-list ul li::before {
content: '';
background-image: url(../image/angles-right-solid-full.svg);
width: 20px;
height: 14px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: absolute;
left: 0px;
}
.accredtation-sec{
padding: 70px 0;
}
.accredtation-left{
width: calc(100% - 50%);
}
.accredtation-left h3{
margin-bottom: 30px;
}
.accredtation-left p{
margin-bottom: 20px;
}
.accredtation-right{
width: 50%;
padding-left: 70px;
}
.accredtation-right img{
  width: 100%;
}
.accredtation-iner{
display:flex;
flex-wrap: wrap;
}

.research{
padding-bottom: 70px;
}
.research-inner{
display: flex;
flex-wrap: wrap;
align-items: end;
}
.research-left{
width: calc(100% - 50%);
}
.research-left img{
width: 100%;
}
.research-right{
width: 50%;
padding-left: 70px;
}
.contact-banner{
padding: 70px 0;
}
.contact-banner img{
  width: 100%;
}



/* Navbar */
nav {
border-top: 1px solid #868383;
}


.menu-toggle {
display: none;
color: #000;
padding: 15px 20px;
cursor: pointer;
text-align: center;
font-size: 35px;
position: absolute;
top: -60px;
}

nav ul {
display: flex;
list-style: none;
justify-content: center;
column-gap: 50px;
}

nav ul li {
position: relative;
}

nav ul li a {
color: #000;
padding: 15px 20px;
display: block;
text-decoration: none;
    font-size: 18px;
        font-weight: 500;
        transition: all 0.5s ease-in-out;
}

nav ul li a:hover {
  color: #579b90;
}

/* Dropdown */
nav ul li ul {
position: absolute;
top: 100%;
left: 0;
background: #cfc8c8;
min-width: 210px;
display: none;
flex-direction: column;
}

nav ul li:hover > ul {
display: flex;
}

/* Sub Dropdown */
nav ul li ul li ul {
left: 100%;
top: 0;
background:#cfc8c8 ;
display: none;
z-index: 1;
}

nav ul li ul li:hover > ul {
display: flex;
}
.two-column-content p{
  margin-bottom: 20px;
}