@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

:root {
  /* colors variables */
  --theme-primary: #9F6250;
  --theme-secondary: #5A372C;
  --theme-tertiary: #AD9E8F;
  --tmeme-black: #000;
  --tmeme-bgrey: #202020;
  --theme-white: #fff;
  --theme-grey: #e6e6e6;
  /* transitions variables */
  --transition: all 0.4s ease-in-out;
  /* box-shadow variables */
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  /* gradient variables */
  --gradientright: linear-gradient(to right, #9F6250, #5A372C);
  --gradientbottom: linear-gradient(to bottom, #9F6250, #5A372C);
}

body {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 6.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h4 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 1.5rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin: 0px 30px!important;
    display: inline-flex!important;
    height: auto;
    justify-content: space-between!important;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
    top: 50px;
}









.padding_t {
  padding-top: 6rem;
}

.margin_t {
  margin-top: 6rem;
}

.margin_b {
  margin-bottom: 6rem;
}

.padding_b {
  padding-bottom: 6rem;
}

/* custom css button */
.theme_button {
  max-width: 200px;
  padding: .9rem 2rem;
  border: none;
  position: relative;
  z-index: 1;
  background: var(--theme-secondary);
  color: #fff!important;
  border-radius: 5rem;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: var(--box-shadow);
}

.theme_button::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
  white-space: pre;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}



.theme_button>span {
  display: inline-flex;
  opacity: 0;
  color: #fff;
  transform: translate3d(0, -10px, 0);
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-delay: 0 !important;
}

.theme_button.animate::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.theme_button.animate>span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.theme_button:hover {
  background-color: var(--theme-primary);
}

.theme_button:hover::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}



.theme_button:hover>span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


/* Keyframes */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* flip X animation */
@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }

  25% {
    transform: rotateX(360deg);
  }

  50% {
    transform: rotateX(360deg);
  }

  75% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

/* flip y animation */
@keyframes flipY {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(360deg);
  }

  50% {
    transform: rotateY(360deg);
  }

  75% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

/* beat animation */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.3);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.3);
  }

  40% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

/* theme header */
header {}

.navbar {
  --bs-navbar-padding-y: 0;
  background-color: transparent;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  height: 125px;
}

.navbar-brand {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

}

.navbar-brand img {
  width: 115px;
  background-color: transparent;
  background-blend-mode: lighten;
}

.top_bar {
  flex: 1;
}

.top_social {
  width: 35px;
  height: 35px;
  background-color: var(--theme-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition);
}

.top_social::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background-color: var(--theme-secondary);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
  overflow: hidden;
}

.top_social:hover::after {
  width: 105%;
  height: 105%;
  opacity: 1;
}

.top_social img {
  width: 20px;
  height: 20px;
  z-index: 3;
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}

.social1 img {
  filter: brightness(0) invert(1);
}

.topbar_left a h6 {
  font-size: 1.2rem;
  color: var(--theme-secondary);
}

.topbar_left a h6:hover .top_social::after {
  width: 105%;
  height: 105%;
  opacity: 1;
}


.navbar-nav .nav-item .nav-link {
  color: var(--theme-secondary);
  font-weight: 600;
  font-size: 17px;
  margin-right: 0.8rem;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-primary);
}

.fixed_nav {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: slideDown 0.5s ease forwards;
}

.scrolled_nav {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.scrolled_nav .container-xxl{
  border: 0px!important;
}
.custom_pad_right {
  padding-right: 0%;
}

.custom_pad_left {
  padding-left: 10%;
}
#menu-item-49 {
    padding-right: 12% !important;
}
#menu-item-46 {
    padding-left: 6% !important;
    left: -1% !important;
}
.navbar .nav_btn_bx{
	margin-left: 4%;
}
.navbar-toggler-icon{
	width: 2.5rem;
	height: 3rem;
}
/* hero banner */
/* Hero Video Banner */
#hero_banner {
  height: 80dvh;
  display: flex;
  padding-top: 10%;
  position: relative;
  overflow: hidden;
}
.navbar .container-xxl{
  background-color: rgba(255, 245, 247, 0.7);
  height: 100%;
  border: 2px solid;
  border-bottom: 0px!important;
  border-top: 0px!important;
}
.navbar .bottom__memu{
  border-top: 0px!important;
  border-bottom: none;
}

.top__menu{
  border-bottom: 0px dashed;
}
.fixed_nav .bottom__memu{
    border: 0px!important;
}

.bottom__memu {
    padding-bottom: 10px;
    border-bottom: 2px dashed;
}
.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
#hero_banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.4) 35%, rgba(0, 212, 255, 0) 55%);
  z-index: 15;
}
.hero_content.container {
    position: relative;
    z-index: 45;
}

#hero_banner h1 {
  color: var(--theme-white);
  font-weight: 600;
  font-family: 'Roboto Slab', serif;
  text-shadow: 0px 4px 3px rgba(19, 19, 18, 0.4),
    0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(12, 12, 12, 0.1);
  font-size: clamp(24px, 4vw, 56px);
}
.hero_content h3{
    padding: 10px 20px;
    background-color: RGB(90,55,44,0.6);
    color: #fff;
    border-radius: 10px;
    width: max-content;
}
.hero_content p {
  color: #fff;
}

.typewriter-text {
  white-space: nowrap;
  overflow: hidden;
  color: var(--theme-primary);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0px 4px 3px rgba(19, 19, 18, 0.4),
    0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(12, 12, 12, 0.1);
}

.cursor {
  color: #fff;
  animation: blink 0.7s step-end infinite;
  opacity: 0;
}

@keyframes blink {
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  #hero_banner {
    padding-top: 20%;
  }
}

/* usp section */

#usp {
  position: relative;
  z-index: 48;
}
.usp_item_wrap {
  border-radius: 1.5rem;
  padding: 18% 20px 20px 20px;
  background-color: var(--theme-secondary);
  position: relative;
  height: 358px;
}

.usp_item {}

.usp_item h4 {
  color: var(--theme-white);
  font-weight: 500;
  height: 75px;
  text-align: center;
  place-content: center;
}

.usp_item p {
  color: var(--theme-grey);
  text-align: justify;
}

.usp_icon {
  width: 12rem;
  height: 12rem;
  border: 10px solid var(--theme-white);
  border-radius: 50%;
  background-color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.usp_icon img {
  width: 70%;
  height: 70%;
  display: block;
  margin: auto;
}

.usp_item_wrap .usp_icon img {
  filter: brightness(0) invert(1);
}

/* about us */
#aboutus {
  background-color: var(--theme-tertiary);
}
#aboutus .row{
	row-gap: 30px;
}
.about_img_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.about_img1 {
  grid-area: 1 / 1 / 2 / 2;
  background-color: var(--theme-secondary);
  height: 30px;
  border-radius: 0px 50% 0px 0px;
  overflow: hidden;
  perspective: 1000px;
}

.about_img1 img {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: flipY 15s linear infinite;
}

.about_img2 {
  grid-area: 1 / 2 / 2 / 3;
  border-radius: 0px 0% 50px 0px;
  overflow: hidden;
  border: 5px solid var(--theme-primary);
	padding: 10px;
}

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

.about_img3 {
  grid-area: 1 / 3 / 2 / 4;
  background-color: blue;
  border-radius: 50px 0% 0px 0px;
  overflow: hidden;
}
.about_img3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about_img4 {
  grid-area: 2 / 1 / 3 / 3;
  background-color: yellow;
  border-radius: 0px 0% 50px 0px;
  overflow: hidden;
}

.about_img4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_img5 {
  grid-area: 2 / 3 / 3 / 4;
  background-color: var(--theme-secondary);
  border-radius: 0px 0% 50px 0px;
  overflow: hidden;
}

.about_img5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heartbeat 9s infinite ease-in-out;
  display: inline-block;
  transform-origin: center;
}

.about_img6 {
  grid-area: 3 / 1 / 4 / 2;
  background-color: var(--theme-secondary);
  border-radius: 0px 0% 50px 0px;
  overflow: hidden;
  perspective: 1000px;
}

.about_img6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transform-style: preserve-3d;
  animation: flip 9s linear infinite;
}

.about_img7 {
  grid-area: 3 / 2 / 4 / 4;
  background-color: transparent;
  border-radius: 50px 0% 50px 0px;
  overflow: hidden;
}

.about_img7 a {
  max-width: 100%;
  height: 100px;
  font-size: 20px;
  font-weight: 700;
}

.aboutus_content .aboutus_headertxt {
  color: var(--theme-secondary);
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.aboutus_content .aboutus_headertxt::after {
  content: "About Us";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 120px);
  position: absolute;
  top: -12dvh;
  left: -10%;
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

.about__img {
  width: 100%;
  height: 150px;
  display: block;
  margin: auto;
  object-fit: cover
}

/* services */
.services_headertxt {
  color: var(--theme-secondary);
  font-weight: 700;
  position: relative;
  z-index: 10;
  text-align: center;
}

.services_headertxt::after {
  content: "Services";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 7dvw;
  position: absolute;
  top: -60px;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

/* slider service */
.condition_slider,
.services_slider {
  margin-bottom: 30px;
  position: relative;
}

.services_slider .owl-item.active.center .slider-card,
.condition_slider .owl-item.active.center .slider-card {
  transform: scale(1.05);
  opacity: 1;
  background: #ff9966;
  background: -webkit-linear-gradient(to bottom, var(--theme-secondary), var(--theme-primary));
  background: linear-gradient(to bottom, var(--theme-secondary), var(--theme-primary));
  overflow: hidden;
  color: var(--theme-grey);
  transition: all 0.3s ease-in-out;
}

.services_slider .owl-item.active.center .slider-card h4,
.condition_slider .owl-item.active.center .slider-card h4 {
  color: var(--theme-white);

}

.services_slider .slider-card,
.condition_slider .slider-card {
  overflow: hidden;
}

.services_slider .slider-card:hover img,
.condition_slider .slider-card:hover img {
  scale: 1.1;
  transition: all 0.3s ease-in-out;
}

.services_slider .slider-card,
.condition_slider .slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 50px 15px 50px 15px;
  border-radius: 8px;
  box-shadow: 0 15px 30px -20px rgb(0 0 0 / 73%);
  transform: scale(0.9);
  opacity: 0.75;
  transition: all 0.3s;
}

.services_slider .slider-card img,
.condition_slider .slider-card img {
  width: 100%;
  height: 250px;
  /* height: 100px; */
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}

.services_slider .owl-nav .owl-prev,
.condition_slider .owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  opacity: 1;
  font-size: 40px !important;
  z-index: 1;
  color: var(--theme-secondary) !important;
}

.services_slider .owl-nav .owl-next,
.condition_slider .owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  opacity: 1;
  font-size: 40px !important;
  z-index: 1;
  color: var(--theme-secondary) !important;
}

.services_slider .owl-nav .owl-next:hover,
.condition_slider .owl-nav .owl-next:hover {
  color: var(--theme-primary) !important;
}

.services_slider .owl-dots,
.condition_slider .owl-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.services_slider.owl-dots .owl-dot,
.condition_slider .owl-dots .owl-dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ccc !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}

.services_slider .owl-dots .owl-dot.active,
.condition_slider .owl-dots .owl-dot.active {
  background: var(--theme-primary) !important;
}

.slider-card p,
.slider-card h4 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--tmeme-black);
	height: 52px;
}

.services_slider .owl-item.active.center .slider-card p,
.condition_slider .owl-item.active.center .slider-card p {
  color: var(--theme-grey);
}

.slider_card_text {
  padding: 20px;
}

.slider-card_img {
  overflow: hidden;
}

/* practice slider */
.practices_headertxt {
  color: var(--theme-secondary);
}

.practices_headertxt::after {
  content: "Conditions";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 7dvw;
  position: absolute;
  top: -60px;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

/* team slider */
.team_headertxt {
  color: var(--theme-secondary);
}

.team_headertxt::after {
  content: "Team";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 7dvw;
  position: absolute;
  top: -60px;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

/*  */
.member_card {
  height: 380px;

  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.534);
  /* height: 450px; */
  /* overflow: hidden; */
  background-color: var(--theme-secondary);
  transition: .4s;
  margin-bottom: 50px;
}

.member_card:hover {
  height: 400px;
  transition: .4s;
}

.member_imgBx {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1/1;
  /* height: 200px; */
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.479);
  overflow: hidden;
  transition: .4s;

}

.member_imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member_card:hover .member_imgBx {
  width: 35%;
  /* aspect-ratio: 1/1; */
  transition: .4s;
}

.member_card .member_content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.member_card .member_content .content_details {
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  transition: .4s;
  transform: translateY(200px);
}

.member_content .content_details h3 {
  font-weight: 700;
  color: var(--theme-white);
  margin-bottom: 10px;
  line-height: 1.2em;
}

.member_content .content_details p.designation {
  font-weight: 500;
  color: var(--theme-tertiary);
  text-transform: uppercase;
}

.member_content .content_details .details_data p {
  font-weight: 400;
  color: var(--theme-grey);
  margin-bottom: 10px;
  text-transform: capitalize;
  visibility: hidden;
}

.member_card:hover .member_content .content_details .details_data p {
  visibility: visible;
  transition: .4s;
}

.member_card:hover .member_content .content_details {
  transform: translateY(20%);
  transition: .4s;
}

.member_social a i {

  font-size: 20px;
  color: var(--title-color);
  transition: .4s;
}

.member_social a i:hover {
  /* color: var(--theme-color2); */
  opacity: .7;
  transition: .4s;
}

.gap-6 {
  row-gap: 100px;
}

.mb-8 {
  margin-bottom: 80px;
}

.our_member_wrap .member_social {
  gap: 10px;
}

.our_member_wrap .member_content .content_details p {
  padding-bottom: 5px;
}

/*  */

/* blogs */
#blogs {
  background-color: var(--theme-tertiary);
}

.Blogs_headertxt {
  color: var(--theme-secondary);
}

.Blogs_headertxt::after {
  content: "Blogs";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 6dvw;
  position: absolute;
  top: -40px;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

/* Card */
.blog-card {
  background-color: var(--theme-white);
  border: none;
  box-shadow: 10px 10px 93px rgba(0, 0, 0, 0.75);
  padding: 0 20px 20px 20px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.Blogs_card1 {
  background-color: var(--theme-grey);
}

.blog-card .thumbnail {
  overflow: hidden;
  position: relative;
  bottom: 30px;
  border-radius: 15px;
  transition: 0.3s ease-in-out;
  background-color: var(--tmeme-black);
  width: 80%;
  margin: auto;
}

.blog-card .thumbnail img {
  width: 100%;
  height: 200px;
  margin: auto;
  display: block;
  object-fit: cover;
  border-radius: 15px;

}

.blog-card h4 {
  color: #5A372C;
}

.blog-card .author {
  background-color: var(--theme-primary);
  border-radius: 20px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.5rem;
}

.blog-card:hover .thumbnail img {
  scale: 1.1;
  transition: 0.3s ease-in-out;
}

.blog-card .cont_right {}

.blog-card .author img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 6px;
}

.blog-card h6 {
  color: white;
  margin-bottom: 0;
}


.blog-card p {
  line-height: 1.5;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}

.blog-card .date {
  position: absolute;
  left: 20px;
  bottom: -100px;
  color: #C3C3C3;
  text-align: center;
}

.blog-card .fab {
  position: absolute;
  right: 20px;
  bottom: -30px;
  width: 60px;
  height: 60px;
  background-color: var(--theme-secondary);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.75);
}

.blog-card:hover .fab {
  scale: .9;
  transition: 0.3s ease-in-out;
  background-color: #9F6250;
}

.blog-card:hover .fab i {
  transform: rotate(-90deg);
  transition: 0.3s ease-in-out;
}

/* footer call */
#footer_call, #footer_call2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px 0 50px 0;
  position: relative;
  z-index: 0;
  /* background: var(--theme-tertiary)!important; */
}
#footer_call2 {
	background-color: var(--theme-tertiary);
	padding:  50px 0 50px 0;
}
/* #footer_call::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
} */
.call_text {
  width: 50%;
  position: relative;
  z-index: 99;
}

.call_headertxt {
  width: 100%;
  font-weight: 700;
  color: var(--theme-primary);
  margin-bottom: 20px;
  line-height: 1.2em;
  position: relative;
  z-index: 99;
  left: 0;

}

/*.footer_call_wrapper .theme_button:hover::before {
    opacity: 9;
    transform: translate3d(0, 100%, 0);
    top: -60px;
}
.footer_call_wrapper .theme_button::before {
    content: attr(data-text);
    position: absolute;
}*/




.call_bodytxt {
  width: 80%;
  color: #000;
}

.call_bodytxt span {
  font-size: 1.8rem;
}

#footer_call .theme_button,  #footer_call2 .theme_button {
  max-width: 70%;
  padding: 30px 150px;
  font-size: 2rem;
  height: 50px;
}

.footer_call_button {
  width: 45%;
  position: relative;
  z-index: 99;
}

/* .call_headertxt::after{
  content: "Book Now";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 7dvw;
  position: absolute;
  top: -40px;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.4;
  pointer-events: none;
  white-space: nowrap;
} */
.footer_logo {
  width: 200px;
  height: 200px;
  align-content: center;
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  border: 10px solid var(--theme-white);
  padding: 10px;
  border-radius: 100%;
  background-color: var(--theme-white);
}

.footer_logo img {
  width: 80%;
  display: block;
  margin: auto;
  object-fit: contain;
}

#footer {
  background-color: var(--theme-tertiary);
}

.quick_links ul li a {
  display: flex;
  align-items: center;
}

.quick_links ul li a,
.quick_reach ul li a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--theme-secondary);
  transition: all 0.3s ease-in-out;
}

.quick_links1 ul li a::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  mask: url('./../../images/logo&icons/logo-icon.png') no-repeat center;
  -webkit-mask: url('./../../images/logo&icons/logo-icon.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: transform 0.9s ease-in-out;
  margin-right: 6px;
}

.quick_links1 ul li a:hover::before {
  background-color: #5A372C;
  transform: rotateY(360deg);
}

.quick_links ul li a:hover,
.quick_reach ul li a:hover {
  color: var(--theme-primary);
}

.quick_reach ul li {
  text-align: center;
}

.footer_icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer_icon {
  /* width: calc(100% - 30%); */
  justify-content: center;
  gap: 1.5rem;
}

.quick_links2 li a {
  justify-content: end;
}

/* .quick_links2 li a::after{
  content: "";
  margin-left: 10px;
  background-image: url(./../../images/logo&icons/logo-icon.png);
  width: 25px;
  height: 25px;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
} */
.quick_links2 li a::after {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  mask: url('./../../images/logo&icons/logo-icon.png') no-repeat center;
  -webkit-mask: url('./../../images/logo&icons/logo-icon.png') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: transform 0.9s ease-in-out;
  margin-left: 1rem;
}

.quick_links2 li a:hover::after {
  background-color: #5A372C;
  transform: rotateY(360deg);
}


.footer_socials .footer_social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition);
  padding: 8px;
}

.footer_socials .footer_social.top_facebook {
  background-color: #3b5998;
}

.footer_socials .footer_social.top_instagram {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  ;
}

.footer_socials .footer_social.top_linkedin {
  background-color: #0077b5;
}

.footer_socials .footer_social.top_whatsapp {
  background-color: #25d366;
}

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

/* footer bottom */
.footer_bottom {
  background-color: #4b453f;
}

.footer_bottom p a {
  color: var(--theme-primary) !important;
}

.footer_bottom p:hover a {
  color: var(--theme-white) !important;
  font-weight: 400;
  text-decoration: underline;
}

/* ⚫❗❗⚫breadcrumb⚫❗❗⚫ */
.page_breadcrumb {
		padding: 75px 0 40px;
	}
.page_breadcrumb {
/*   padding: 180px 0 120px; */
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.breadcrumb .breadcrumb-item a {
  color: var(--theme-white);
  font-size: 16px;
  font-weight: 400;
}

.breadcrumb .breadcrumb-item a:hover,
.breadcrumb .breadcrumb-item.active {
  color: var(--theme-secondary);
  font-weight: 500;
}

.page_breadcrumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-color: #9f625080;
}

.breadcrumb_wrapper {
  position: relative;
  z-index: 2;
}

/* ⚫❗❗⚫Page About us⚫❗❗⚫ */
#aboutus.page_about_us {
  background-color: transparent;
}

.whychooseus_img_wrap {
  width: 100%;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
}

.whychooseus_img_wrap figure.figure1 {
  width: 100%;
  height: 100%;
}

.whychooseus_img_wrap figure.figure1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure2_position {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 300px;
  height: 150px;
  /* border: .5rem solid var(--theme-white); */
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  overflow: hidden;
  border-top: .5rem solid var(--theme-white);
  border-left: .5rem solid var(--theme-white);
}

.figure2_position img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure2_position figure {
  position: relative
}

.figure2_position figure::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(211, 143, 88, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
}

.figure2_position figure:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.chooseus_usp_item {
  background-color: var(--theme-grey);
  border-radius: .5rem;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
}

.chooseus_usp_icon {
  width: 70px;
  height: 70px;
  background-color: var(--theme-secondary);
  padding: 10px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.chooseus_usp_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(2);

}

.chooseus_usp_content {
  width: 100%;
}

.chooseus_usp_content h5 {
  margin-bottom: 5px;
}

#whychooseus {
  background-color: var(--theme-tertiary);
}

.whyus_headertxt {
  color: var(--theme-secondary);
}

.whyus_headertxt::after {
  content: "Why Us";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 100px;
  position: absolute;
  top: -70%;
  left: 0%;
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}
.page_about_us .row{
	row-gap: 0 !important;
}
.page_about_us ol, #whychooseus ol{
	list-style: disc;
	padding-left: 30px;
}
/* ⚫❗❗⚫Page Contact us⚫❗❗⚫ */ 
#page_contact .contact_icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme-secondary);
  border-radius: 50%;
  padding: 10px;
  margin-right: 10px;
}

#page_contact .contact_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

#page_contact .contact_details {
  background-color: var(--theme-grey);
  border-radius: .5rem;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 150px !important;
}

#page_contact .contact_details::after {
  content: "";
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100px;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(173, 158, 143, 1) 0%, rgba(159, 98, 80, 1) 64%, rgba(90, 55, 44, 1) 100%);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

#page_contact .contact_details:hover::after {
  width: 300%;
  right: -100%;
  top: -100%;
}

#page_contact .contact_details:hover h5,
#page_contact .contact_details:hover p {
  color: var(--theme-white);
  transition: 0.5s ease-in-out;
}

#page_contact .contact_text {
  width: calc(100% - 80px);
}

#page_contact .contact_details_wrap {
  position: absolute;
  z-index: 3;
  width: 90%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_contact .contact_text h5,
#page_contact .contact_text p {
  transition: 0.5s ease-in-out;
  color: var(--theme-secondary);
}

.page_contact_form {
  background-color: var(--theme-grey);
}

.page_contact_form .page_form_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in-out;
  background: url(./../../images/contact/contact2.jpg);
  background-size: auto 155%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.page_contact_form .page_form_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact_form_wrapper {
  background-color: var(--theme-tertiary);
  padding: 3rem;
  border-radius: 2rem;
}

.contact_title {
  color: var(--theme-secondary);
}

.contact_title::after {
  content: "Contact Us";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: min-max(3.8rem, 4dvh);
  position: absolute;
  top: -45%;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

.contact_form_body form input,
.contact_form_body form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 3px solid var(--theme-secondary);
  border-right: 3px solid var(--theme-secondary);
  box-shadow: 2px 3px 3px 2px #9236014f;
  outline: none;
  border-radius: 6px;
  font-size: 17px;
  padding: 6px 10px;
  color: var(--theme-white) !important;
}

.contact_form_body form input:focus,
.contact_form_body form textarea:focus {
  background-color: #9f625063;
  outline: none;
  box-shadow: 2px 3px 3px 2px #9236014f;
  border: none;
  border-bottom: 3px solid var(--theme-secondary);
  border-right: 3px solid var(--theme-secondary);
  color: var(--theme-secondary);
  color: var(--theme-white);
}

input:active,
textarea:active {
  background-color: #9F6250;
  outline: none;
  color: var(--theme-white);
}

input:hover,
textarea:hover {
  background-color: #9F6250;
  outline: none;
  color: var(--theme-white);
}

.contact_form_body form input::placeholder,
.contact_form_body form textarea::placeholder {
  color: var(--theme-white);
}

#map iframe {
  width: 100%;
  height: 350px;
}

/* ⚫❗❗⚫Page Team ⚫❗❗⚫ */
#page_team .member_card {
  height: 410px;

}

.page_team_headertxt {
  color: var(--theme-secondary);
}

.page_team_headertxt::after {
  content: "Our Team";
  color: var(--theme-primary);
  font-weight: 900;
  font-size: clamp(2rem, 7dvw, 8.5rem);
  position: absolute;
  top: -85%;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 9;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}

/* ⚫❗❗⚫Page team Details us⚫❗❗⚫ */
.member_details_img {
  padding: 5rem;
  border-radius: 1.5rem;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  background-color: var(--theme-secondary);
}

.member_details_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 6px rgba(189, 189, 189, 0.438);
}

.member_details_title {
  color: var(--theme-secondary);
}

.member_page_logo figure {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;

}

.team_logo_main {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.team_logo_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member_page_logo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
  /* margin: 5rem; */
}

.member_page_contact {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details_call span {
  color: var(--theme-secondary);
  font-size: 2rem;
  font-weight: 600;
}

.details_call:hover span {
  color: var(--theme-primary);
  font-size: 1.9rem;
}

.details_call:hover img {
  scale: 1.1;
}
/* ⚫❗❗⚫Page Service⚫❗❗⚫ */
#page_services_wrap .slider-card{
  margin: 15px 0 15px;
}
#page_services_wrap .slider-card .theme_button{
  color: #fff !important;
}
/* ⚫❗❗⚫Page Service details ⚫❗❗⚫ */
.page-service-single {
  padding: 10rem 0;
}
.page-service-single h2{
   margin-bottom:0px;
   padding-top: 2%;
/*    font-size: 4rem; */
}

.page-single-sidebar {
  position: sticky;
  top: 2rem;
  margin-right: 2rem;
  z-index: 98;	
}

.page-service-single .contact_form_body {
  background-color: var(--theme-tertiary);
  padding: 3rem 2rem;
  border-radius: 2rem;
}

.page-service-single header h2,
.our-faqs-section h2 {
  color: var(--theme-secondary);
}

.page-service-single .contact_form_body h3 {
  color: var(--theme-secondary);
  text-align: center;
  margin-bottom: 2rem;
}

.service-catagery-list h3 {
  text-align: center;
  color: var(--theme-secondary);
}

.service-catagery-list nav ul li {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  background-color: var(--theme-secondary);
  position: relative;
  overflow: hidden;
}

.service-catagery-list nav ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(35%, -40%);
  width: 10rem;
  height: 10rem;
  background-color: var(--theme-primary);
  border: 4px solid var(--theme-tertiary);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all .6s;
}

.service-catagery-list nav ul li:hover::after {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.service-catagery-list nav ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: .5rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
  background-image: url("./../../images/logo&icons/logo-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  z-index: 11;
}

.service-catagery-list nav ul li a span {
  color: var(--theme-white);
  font-weight: 600;
  font-size: 2rem;
  text-align: start;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 20;
}

.sidebar-cta-box {
  box-shadow: rgba(93, 67, 50, 0.486) 0px 30px 60px -12px inset, rgba(197, 97, 4, 0.493) 0px 18px 36px -18px inset;
  padding: 2rem 3rem;
  border-radius: 2rem;
}

.sidebar-cta-box .icon-box {
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.sidebar-cta-box .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(30%) sepia(15%) saturate(334%) hue-rotate(329deg) brightness(95%) contrast(115%);
}

.sidebar-cta-box .sidebar-cta-content h3 {
  color: var(--theme-secondary);
}

.sidebar-cta-contact-item p {
  margin-bottom: 0;
}

.cta-contact-item-content {
  color: var(--theme-secondary);
  font-weight: 500;
}

.sidebar-cta-contact-item:hover .cta-contact-item-content {
  color: var(--theme-primary);
}

.sidebar-cta-contact-item:hover .icon-box img {
  scale: 1.1;
  transition: all 0.3s ease-in-out;
}

article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coaching-institutes ul {
  padding-left: 4rem;
}

.coaching-institutes ul li {
  list-style: disc;
}

.coaching-institutes ul li::marker {
  color: var(--theme-secondary);
  font-size: 2.5rem;
}

.coaching-single-image figure {
  height: 400px;
  border-radius: 2rem;
  overflow: hidden;
}

.coaching-single-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coaching-entry-image figure {
  height: 350px;
  border-radius: 2rem;
  overflow: hidden;
}

.coaching-institutes .coaching-entry-list-image figure {
  height: 400px;
  border-radius: 2rem;
  overflow: hidden;
}

.coaching-institutes .coaching-entry-list-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coaching-institutes .coaching-entry-list-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-faqs-section {
  background-color: var(--theme-tertiary);
}

.accordion-item h2 button {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--theme-white);
  background-color: var(--theme-secondary);
}

.our-faqs-section .accordion-button:not(.collapsed) {
  color: var(--theme-white);
  background-color: var(--theme-primary);
}
/* ⚫❗❗⚫all blogs page⚫❗❗⚫ */
.blogs_heading_wrapping h2 {
  color: var(--theme-secondary);
}

.page-service-single.page-blogs-single .page-single-sidebar {
  margin-right: 0;
  margin-left: 2rem;
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li a .more_blog_details {
  width: calc(100% - 13rem);
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li a .more_blog_details p,
.page-service-single.page-blogs-single .service-catagery-list nav ul li a .more_blog_details span {
  color: var(--theme-white);
  font-weight: 300;
  font-size: 1.4rem;
  text-align: start;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 20;
  width: 100%;
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li a .more_blog_details span {
  color: var(--theme-tertiary);
  font-weight: 500;
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li a figure {
  width: 12rem;
  height: 8rem;
  border-radius: .8rem;
  overflow: hidden;
  position: relative;
  z-index: 80;
  margin-right: 1rem;
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-service-single.page-blogs-single .service-catagery-list nav ul li::before {
  top: 23%;
  right: .3rem;
}

.next_prev {
  background-color: var(--theme-tertiary);
  border-radius: 2rem;
}

.prev img {
  transform: rotate(180deg);
}

.prev img,
.next img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(48%) saturate(300%) hue-rotate(320deg) brightness(90%);
  width: 50px;
}

.prev,
.next {
  background-color: var(--theme-white);
  padding: .4rem .8rem;
  border-radius: 5rem;
  width: 200px;
  box-shadow: -3px -3px 8px 0 #fff, 15px 15px 30px 0 #00000017;
  transform: scale(1);
}

.prev p,
.next p {
  color: var(--theme-primary);
  font-weight: 600;
}

.prev:hover,
.next:hover {
  transform: scale(.9);
}

.prev:hover img,
.next:hover img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(31%) saturate(296%) hue-rotate(325deg) brightness(92%) contrast(88%);
  ;
}

.prev:hover p,
.next:hover p {
  color: var(--theme-secondary);
}


 /* ⚫❗❗⚫Faq page⚫❗❗⚫ */
.faq_top {}

.career_top_wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: var(--theme-tertiary);
  border-radius: 20px;
  overflow: hidden;
}

.career_top_wrapper::before {
  content: 'Faq';
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 900;
  color: #f16f04;
  opacity: .2;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  border-radius: 20px;
  overflow: hidden;
}
.faq-heading{
  color: var(--theme-secondary);
}

.faq-heading::after {
  content: 'Faq';
  position: absolute;
  top: -50px;
  left: calc(50%);
  transform: translateX(-50%);
  font-size: 7dvw;
  font-weight: 900;
  color: var(--theme-primary);
  opacity: .2;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}
.our-faqs-section.page__faq  #faqaccordion{
  width: 80%;
  margin: auto;
}
/*  */
#mega-menu-wrap-primary #mega-menu-primary{
	padding: 0 0 0 30px !important;
}
ul#mega-menu-primary {
    display: flex !important;
    justify-content: space-between;
}
div#mega-menu-wrap-primary {
    width: calc(100% - 200px);
}
li#mega-menu-item-46 {
    padding-left: 80px !important;
  }
li#mega-menu-item-44 {
    padding-right: 80px !important;
}
.page-service-single .wp-block-list{
	margin-left: 30px;
}
.page-service-single .wp-block-list li{
	list-style: disc;
}
.side_fixed_btn{
	position: fixed;
	top: 30%;
	right: 0;
/* 	transform: rotate(90deg); */
	z-index: 98;
	background-color: var(--theme-secondary);
	padding: 8px 6px 8px 8px;
	border-radius: 40px 0 0 40px;
}
.side_fixed_btn a{
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	border: 2px solid #fff;
	border-radius: 60px 0 0 60px;
	padding: 15px 4px 15px 8px;
	background: transparent;
	transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
	position: relative;
	overflow: hidden;
  	display: inline-flex;
  	gap: 0;
}
.side_fixed_btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-primary);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: -1;
}
.side_fixed_btn a:hover {
  transform: scale(.9);
  box-shadow: 0 2px 10px rgb(237 145 66 / 75%);
}

.side_fixed_btn a:hover::after {
  transform: translateY(0);
	
}

.side_fixed_btn a span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: letter-appear 5s ease-in-out infinite;
  white-space: pre;
}

.side_fixed_btn a span:nth-child(1) { animation-delay: calc(0 * 0.15s); }
.side_fixed_btn a span:nth-child(2) { animation-delay: calc(1 * 0.15s); }
.side_fixed_btn a span:nth-child(3) { animation-delay: calc(2 * 0.15s); }
.side_fixed_btn a span:nth-child(4) { animation-delay: calc(3 * 0.15s); }
.side_fixed_btn a span:nth-child(5) { animation-delay: calc(4 * 0.15s); }
.side_fixed_btn a span:nth-child(6) { animation-delay: calc(5 * 0.15s); }
.side_fixed_btn a span:nth-child(7) { animation-delay: calc(6 * 0.15s); }
.side_fixed_btn a span:nth-child(8) { animation-delay: calc(7 * 0.15s); }

@keyframes letter-appear {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
#practices .slider_card_text p{
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quick_links ul li a span, .quick_reach ul li a span{
    place-content: center;  
}
.blog-card .cont_right h4{
	height: 84px;
}
.career_top .row{
	row-gap: 30px;
}
.dscf7-captcha-container {
    background: transparent !important;
}
.dscf7-captcha-container span.wpcf7-form-control-wrap input{
	background-color: transparent;
    border: none !important;
    border-bottom: 3px solid var(--theme-secondary) !important;
    border-right: 3px solid var(--theme-secondary) !important;
    box-shadow: 2px 3px 3px 2px #9236014f;
    outline: none;
    border-radius: 6px;
    font-size: 17px;
    padding: 6px 10px;
    color: var(--theme-white) !important;
}