

/* Slider */


.home_slix_hero{
  height: 100%;
  width: 100%;
  color: #fff;
  position: relative;
}

.home_slix_box{
  padding-top: 40%;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.home_slix_box img {
  animation: home_slix_zoomIn 4s ease-in-out infinite alternate;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

@keyframes home_slix_zoomIn{
  from{transform:scale(1);}
  to{transform:scale(1.08);}
}

.home_slix-content{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  z-index: 9;
  padding:210px 0 210px;
  max-width: 1500px;
  margin: 0 auto;
}

.home_slix_slide div{
  height: 100%;
  width: 100%;
}

.home_slix_container{
  text-align:center;
  position:relative;
}

.home_slix_slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  overflow: hidden;
  border-top-left-radius: calc(var(--gap50) + var(--gap50));
  border-top-right-radius: calc(var(--gap50) + var(--gap50));
}

.home_slix_slide::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000040;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 9;
}

.home_slix-title{
  font-size:clamp(32px,7vw,70px);
  line-height:1.1;
  font-weight:700;
  margin-bottom:25px;
  color: var(--headingColor2);
}

.home_slix-title>span{
  font-weight: 300;
  margin-bottom: 15px;
  display: flex;
  line-height: normal;
  font-size: clamp(22px, 7vw, 60px);
  color: inherit;
  font-family: var(--extafont1);
}


.home_slix-desc{
  font-size: 18px;
  max-width: 750px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #ffffff;
}

.home_slix-desc strong{
  font-style: italic;
}

.home_slix-buttons{
  display:flex;
  justify-content:center;
  gap:var(--gap15);
  flex-wrap:wrap;
  margin-top:var(--gap30);
}

.home_slix-buttons a.custom_btn {
  width: 230px;
}

.home_slix-badge{
  display: inline-flex;
  align-items: center;
  color: var(--peraColor2);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1;
  border-left: 2px solid #FF6D34;
  padding-left: 15px;
}

.home_slix-scroll{
  color: #fff;
  font-size: 24px;
  animation: home_slix-bounce 2s infinite;
  width: 50px;
  height: 50px;
  background: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .35s;
  position: absolute;
  bottom: -17px;
  z-index: 9;
  left: calc(50% - 25px);
  box-shadow: 0 0 0 20px rgba(255, 128, 170, 0.08), 0 30px 80px rgba(255, 128, 170, 0.2);
}

.home_slix-scroll a {
  color: #da251d;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

@keyframes home_slix-bounce{
  0%,100%{transform:translateY(0);}    
  50%{transform:translateY(10px);}    
}


/*=======2 strat =========*/

.home_slix_ecosystem {
  background: #ffffff;
  position: relative;
  z-index: 9;
  overflow: hidden;
}


.home_slix_ecosystem::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart3.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
  opacity: 1;
  z-index: -1;
}

.home_slix_wrapper {
  max-width: 100%;
  height: 700px;
  position: relative;
}

.home_slix_lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home_slix_lines path {
  fill: none;
  stroke: #b7dfe5;
  stroke-width: 3;
  stroke-dasharray: 7;
  stroke-linecap: round;
}

/* Center */

.home_slix_center {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_slix_center::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px dashed #b7dfe5;
  transform: translate(-50%, -50%);
  animation: rotate 20s ease-in-out infinite;
}

@keyframes rotate {
  50% {transform: rotate(360deg);}
  0% {transform: rotate(180deg);}
  100% {transform: rotate(-360deg);}
}

.home_slix_center img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #b7dfe5;
  border-radius: 230px;
  padding: 25px;

  box-shadow: 0 0 0 20px rgba(255, 128, 170, 0.08), 0 30px 80px rgba(255, 128, 170, 0.2);
  animation: animate-pulse 5s linear infinite;
}

@keyframes animate-pulse {
  0% {
   box-shadow: 0 0 0 0 rgb(183 223 229),
   0 0 0 0 rgb(183 223 229);
 }
 40% {
  box-shadow:
  0 0 0 50px rgba(255, 109, 74, 0),
  0 0 0 0 rgba(255, 109, 74, 0.7);
}
80% {
  box-shadow:
  0 0 0 50px rgba(255, 109, 74, 0),
  0 0 0 30px rgba(255, 109, 74, 0);
}
100% {
  box-shadow:
  0 0 0 0 rgba(255, 109, 74, 0),
  0 0 0 30px rgba(255, 109, 74, 0);
}
}


/* Nodes */

.home_slix_node {
  position: absolute;
  width: 140px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
  border: 2px solid #ccc;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  cursor: pointer;
  background: #fff;
  padding: 15px;
}

.home_slix_node img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home_slix_node:hover,
.home_slix_node.active {
  background: #00216a;
  box-shadow: 0 0 11px 0px rgb(0 0 0 / 20%);
}


/*.home_slix_node:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(358deg) brightness(108%) contrast(101%);
}
*/
/* Positions */

.home_slix-top {
  top: 40px;
  left: 43%;
  transform: translateX(-50%);
}

.home_slix-top-left {
  top: 80px;
  left: 240px;
}

.home_slix-top-right {
  top: 80px;
  right: 240px;
}

.home_slix-left {
  left: 120px;
  top: 270px;
}

.home_slix-right {
  right: 80px;
  top: 240px;
}

.home_slix-left-bottom {
  left: 120px;
  bottom: 280px;
}

.home_slix-right-bottom {
  right: 120px;
  bottom: 220px;
}

.home_slix-bottom-left {
  left: 220px;
  bottom: 100px;
}

.home_slix-bottom {
  bottom: 30px;
  left: 43%;
  transform: translateX(-50%);
}

.home_slix-bottom-right {
  right: 260px;
  bottom: 80px;
}

/*===*/

.eco_logo{
  transition:.4s;
  cursor:pointer;
}

.eco_logo img{
  transition:.4s;
}

.eco_logo.active img,
.eco_logo:hover img{
  transform:scale(1.08);
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(1181%) hue-rotate(204deg) brightness(118%) contrast(100%);
  filter: invert(1);
}

.eco_logo.active{
  z-index:10;
}

.ego_grid_wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  max-width: 1550px;
  gap: var(--gap50);
  margin: auto;
}

.eco_logo_detail {
  width: 100%;
}

.eco_detail_img{
  margin-bottom: 15px;
}

.eco_detail_img img{
  width: 120px;
}

.eco_detail{
 background: #fff;
 padding: var(--gap50);
 border-radius: var(--gap30);
 box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
 position: relative;
 border-top: 5px solid #00216a;
 width: 100%;
}

.eco_detail span{
 font-size: 14px;
 letter-spacing: 2px;
 color: #0ea5b7;
 font-weight: 800;
}

.eco_detail h4{
  margin:20px 0;
}

.eco_detail a{
  display: inline-flex;
  margin-top: var(--gap15);
  text-decoration: none;
  color: var(--activecolor);
  font-weight: 600;
  font-family: var(--pera_font_family);
  font-size: calc(var(--peraSize) + 2px);
  line-height: var(--pera_line_height);
  transition: 0.4s;
}

.eco_detail a:hover{
  padding-left: 10px;
}


.home_slix_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home_slix_border rect{
  fill: none;
  stroke: #2fbfbc;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* Border ko hide karna */
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;

  transition: stroke-dashoffset 1s ease;
}

.home_slix_node:hover .home_slix_border rect{
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(.19,1,.22,1);
}


/*====*/

@keyframes homeSlixFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}

/*=======2 End =========*/

/* 4 Start */

.home_slix_services{
  background:#f8fafc;
  position: relative;
  z-index: 9;
}

.home_slix_services::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 1;
  z-index: -1;
}

.home_slix_services_heading{
  margin: auto;
  text-align: center;
  margin-bottom: var(--gap50);
}

.home_slix_bento_grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap30);
}

.home_slix_card{
  overflow: hidden;
  background: #fff;
  border-radius: var(--gap30);
  padding: var(--gap30);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
  transition: .4s;
  position: relative;
  z-index: 9;
}

.home_slix_card::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 1;
  z-index: -1;
  transition: 0.4s all;
}

.home_slix_card:hover::before {
  bottom: 0px;
}



/*============*/

.home_slix_card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,.1);
}

.home_slix_icon{
 margin-bottom: var(--gap25);
}

.home_slix_icon img {
 height: 80px;
 width: 130px;
 object-fit: contain;
 display: flex;
 align-items: center;
 justify-content: center;
 object-position: left;
}

.home_slix_card h3{
  font-size: var(--h5_size);
  line-height: var(--h5_lineheight);
}

.home_slix_card span{
  color: var(--peraColor4);
  font-size: 14px;
  font-weight: 700;
}

/* vission and mission start */

.ebx_mv_section {
  position: relative;
  background: #f2f4f6;
  z-index: 9;
  overflow: hidden;
}

.ebx_mv_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart3.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
  opacity: 1;
  z-index: -1;
  background-attachment: fixed;
}

.ebx_mv_center_line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #3158e0, transparent);
  transform: translateX(-50%);
}

/* VISION */

.ebx_vision_block {
  max-width: 1200px;
  margin: 0 auto var(--gap50);
  text-align: center;
  background: #fff;
  padding: var(--gap50);
  border-radius: var(--gap50);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  position: relative;
  border-bottom: 3px solid var(--bgColor6);
}

.ebx_vision_block p.custom_pera {
  max-width: 100%;
}

.ebx_vision_block .custom_heading {
  margin-bottom: 0;
}

/* MISSION */

.ebx_mission_heading {
  margin: 0 auto var(--gap50);
  text-align: center;
  position: relative;
}

.ebx_mission_timeline {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.ebx_mission_item {
  width: calc(50% - 50px);
  background: #fff;
  border-radius: var(--gap30);
  padding: var(--gap30);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  display: flex;
  gap:  var(--gap30);
  align-items: flex-start;
  position: relative;
  text-align: right;
}

.ebx_mission_item:nth-child(even) {
  margin-left: auto;
  text-align: left;
}

.ebx_mission_item::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #3158e0;
}

.ebx_mission_item:nth-child(odd)::before {
  right: -50px;
}

.ebx_mission_item:nth-child(even)::before {
  left: -50px;
}

.ebx_mission_number {
  font-size: 42px;
  color: #3158e0;
  min-width: 70px;
  font-weight: 700;
  opacity: 0.4;
}

.ebx_mission_content h3 {
  font-size: var(--h4_size);
  line-height: var(--h4_lineheight);
  margin-bottom: 10px;
}

/* vission and mission End */

/* ==================================( Redesign About us section start )==================================== */

.ebiz_about{
  background:#f8f8f8;
  position: relative;
}

.ebiz_about_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap50);
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

.ebiz_about_img {
  display: flex;
  gap: 15px;
}

.eai_box {
  position: relative;
  width: 100%;
  padding-top: 74%;
  overflow: hidden;
  height: 400px;
}

.eai_box img {
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  transition: 0.7s ease;
}

.eai_box img:hover{
  object-position: right;
}

.eai_box:first-child{
 margin-top: 200px; 
}

.about_quotes {
  background-color: #de2c2c0f;
  font-style: italic;
  padding: var(--gap30);
  border-radius: var(--gap15);
  margin-bottom: var(--gap15);
}

.about_little_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--gap30);
}

.abl_box {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 5px;

}

.abl_box h6{
 font-size: var(--h6_size);
 line-height: 1;
 font-weight: 500;
 margin: 0;
 text-align: center;
 color: #36a6dd;
}

.abl_box i {
  font-size: 20px;
  color: var(--headingColor2);
  border: 2px solid;
  box-shadow: 0 0 10px #ccc;
  opacity: 1;
  width: 50px;
  height: 50px;
  background-color: #36a6dd;
  padding: 10px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

/* ==================================( Redesign About us section End )==================================== */


/* last footer Start */


.cta_ebiz{
  background-color: var(--bgColor5);
}

.cta_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--gap30);
}

.cta_box h2 {
  color: var(--headingColor2);
  flex: 1;
}

/* last footer End */


/*======================( Contact us page css Start )======================*/
/*======================( Contact us page css Start )======================*/
/*======================( Contact us page css Start )======================*/

.inner_pages {
  border-top: 1px solid #eee;
  background-color: #f8fafc;
}

.inner_page_header {
  background-color: #0e1f44;
  position: relative;
  z-index: 9;
}

.inner_page_header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart3.png);
  background: url(../images/footer-bg.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
  opacity: 1;
  z-index: -1;
}


.inner_page_header .custom_heading {
  margin-bottom: 0;
}

.inner_page_header .custom_heading .custom_title{
  color: var(--headingColor2);
}

.inner_page_header .custom_heading .custom_pera{
  color: var(--peraColor6);
  font-size: calc(var(--peraSize) + 1px);
}



/* Left side*/

.ebInfoCard {
  background: #fff;
  border-radius: var(--gap25);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 0;
}

.ebInfoTop {
  background: linear-gradient(135deg, #0d1b3d, #1c4ea1);
  padding: var(--gap30);
}

.ebInfoTop h3 {
  color: var(--headingColor2);
}
.ebInfoTop p {
  color: var(--peraColor6);
}

.ebInfoBody {
  padding: var(--gap30);
}

.ebInfoItem{
  display: flex;
  gap: 14px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.ebInfoIcon {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #edf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--headingColor3);
}

.ebInfoItem i {
  color: var(--headingColor4);
  font-size: 16px;
}

.ebInfoText h5 {
  font-size: var(--h5_size);
  margin-bottom: 5px;
}

.ebInfoText p, .ebInfoText a {
  color: var(--peraColor3);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.ebInfoText a:hover{
  color: var(--activecolor);
  transform: translateX(5px);
}

.ebSocial {
  display: flex;
  gap: 10px;
  margin-top: var(--gap25);
}

.ebSocial a{
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--activecolor);
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.ebSocial a:hover{
 animation: ebWiggle .7s ease;
}

@keyframes ebWiggle{
  0%,100%{
    transform: rotate(0deg);
  }
  20%{
    transform: rotate(-10deg);
  }
  40%{
    transform: rotate(10deg);
  }
  60%{
    transform: rotate(-6deg);
  }
  80%{
    transform: rotate(6deg);
  }
}


/* left side*/

.ebiz_contact_section{
  background:#f8fafc;
  position: relative;
  z-index: 9;
}

.ebiz_contact_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/bgart3.png);
  background: url(../images/bgart6.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
  opacity: 0.2;
  z-index: -1;
}

.ebiz_contact_wrapper{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap50);
  align-items: flex-start;
  max-width: var(--innercontainer);
  margin-left: auto;
  margin-right:  auto;
}

.ebiz_contact_item{
  display:flex;
  gap:20px;
  margin-bottom:25px;
  align-items:flex-start;
}

.ebiz_contact_item i{
  width:55px;
  height:55px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0ea5b7;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ebiz_contact_item h6{
  margin-bottom:5px;
}

.ebiz_contact_item a{
  text-decoration:none;
  color:inherit;
}

.ebiz_contact_form_box{
 background: #fff;
 padding: var(--gap50);
 border-radius: var(--gap30);
 box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.ebiz_form_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.ebiz_input_box{
  margin-bottom:20px;
}

.ebiz_input_box input,
.ebiz_input_box textarea,
.ebiz_input_box select{
  width: 100%;
  border: 1px solid #e5e7eb;
  padding: 16px 22px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  transition: .3s;
  font-family: inherit;
  font-weight: 600;
  color: var(--peraColor3);
}

.ebiz_input_box input:focus,
.ebiz_input_box textarea:focus,
.ebiz_input_box select:focus{
  border-color:var(--activecolor);
  box-shadow:0 0 0 4px rgba(14,165,183,.12);
}

.ebiz_input_box  .custom-select-box{
  position: relative;
  width: 100%;
}

.ebiz_input_box  select{    
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: .3s;
}
.ebiz_input_box select option{
  font-size: 15px;
  font-weight: 500;
}

.ebiz_input_box  .custom-select-box::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 13px;
  height: 13px;
  background: url(../images/arrow_down.png);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}


/*======================( Contact us page css End )======================*/


/*======================( Privacy Policy page css Start )======================*/



/*========================== Privacy page strat ==========================*/
/*========================== Privacy page strat ==========================*/
/*========================== Privacy page strat ==========================*/

html{
  scroll-behavior: smooth;
}

.privacy-policy-section .cms_updated strong {
  font-size: 18px;
  border-left: 2px solid #ff8c21;
  padding-left: 15px;
  color: var(--activecolor);
}

.privacy-policy-page{
  background: var(--bgWhite);
  padding: var(--gap30);
  border-radius: var(--gap30);
}

.privacy-policy-sidebar-title {
  font-size: var(--fs-h2);
  padding-bottom: var(--gap20);
  margin-bottom: var(--gap30);
  border-bottom: 1px solid #00000017;
}

.privacy-policy-layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--gap30);
}

.privacy-policy-sidebar{
  position: sticky;
  top: 150px;
  height: max-content;
  background-color: var(--bgColor2);
  padding: var(--gap20);
  border-radius: var(--gap20);
}

.privacy-policy-nav{
  list-style:none;
  padding:0;
  margin:0;
}

.privacy-policy-nav-item{
  margin-bottom:5px;
}

.privacy-policy-nav-link{
 display: block;
 padding: 12px 18px;
 text-decoration: none;
 color: var(--peraColor3);
 border-radius: 8px;
 transition: all .3s ease;
 font-weight: 600;
}

.privacy-policy-nav-link:hover,
.privacy-policy-nav-link.active{
 background: #ff8c21;
 color: var(--peraColor2);
 box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
 border-left: 3px solid #0f172a;
}

.privacy-policy-content{
  display:flex;
  flex-direction:column;
  gap:var(--gap15);
}

.privacy-policy-section{
  background: #ffffff;
  padding: var(--gap30);
  border-radius: var(--gap15);
  box-shadow: 0 15px 40px rgb(0 0 0 / 15%);
  scroll-margin-top: 0;
}

.privacy-policy-section h4 {
  margin-bottom: 10px;
  line-height: 1.2;
}

.privacy-policy-section p,
.privacy-policy-section li{
  color: var(--peraColor3);
  line-height: 1.5;
  font-weight: 500;
  font-size: var(--peraSize);
}

.privacy-policy-section p{
  margin-bottom: 15px
}

.privacy-policy-section p a:hover{
  color: #ff8c21;
}

.privacy-policy-section li{
  margin-bottom: 6px;
  list-style: disc;
}    

.privacy-policy-section p:last-child,
.privacy-policy-section li:last-child{
  margin-bottom: 0;
}

.privacy-policy-section ul{
  margin-bottom: 15px;
  padding-left: 25px;
}

.privacy-policy-section p a,
.privacy-policy-section ul li a{
  font-weight: 700;
  color: var(--bgColor6);
  font-style: italic;
  text-decoration: none;
}

.privacy-policy-section>strong {
  margin-bottom: 15px;
  display: inline-block;
}

.privacy-policy-section strong,
.privacy-policy-section ul li strong  {
  color: #000;
}

.privacy-policy-section p strong{
  font-weight: 700;
  color: #000;
}

.privacy-policy-section h4,
.privacy-policy-section h5,
.privacy-policy-section h6{
  /*  margin-bottom: 10px;*/
}


/* table css start */


.table-scroll {
  width: 100%;
  margin-bottom: 15px;

}

/* Desktop default */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-p);
  line-height: 1.6;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: #f5f5f5;
  font-weight: 600;
}

.cookie-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.cookie-table tbody tr:hover {
  background: #f1f1f1;
}

/* ========================= */
/* ðŸ“± ONLY BELOW 600px SCROLL */
/* ========================= */
@media (max-width: 600px) {

  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-table td {
    white-space: nowrap;padding: 10px;}

  }



  /* table css End */






  /*========================== Privacy page End ==========================*/
  /*========================== Privacy page End ==========================*/
  /*========================== Privacy page End ==========================*/

